Cutthrough: expand transport dkim_domain option when testing for dkim signing
[exim.git] / test / confs / 0483
CommitLineData
afda344b
PH
1# Exim test configuration 0483
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = a1
16
17queue_only
18
19# ----- ACL -----
20
21begin acl
22
23a1:
24 require recipients = lsearch;DIR/aux-fixed/TESTNUM.list
25 require senders = lsearch;DIR/aux-fixed/TESTNUM.list
26 warn log_message = sender_data=$sender_data recipient_data=$recipient_data
27 require verify = recipient
28 accept
29
30
31# ----- Routers -----
32
33begin routers
34
35r1:
36 driver = accept
37 senders = lsearch;DIR/aux-fixed/TESTNUM.list
38 debug_print = sender_data=$sender_data
39 transport = t1
40
41
42# ----- Transports -----
43
44begin transports
45
46t1:
47 driver = appendfile
48 file = /dev/null
49 user = CALLER
50
51# End