Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 5407
1 # Exim test configuration 5407
2
3 # any options on the cutthrough_delivery control
4 CONTROL=
5
6 # optional verify-callout
7 OPT=
8
9 .include DIR/aux-var/std_conf_prefix
10
11 primary_hostname = myhost.test.ex
12
13 log_selector = +received_recipients
14 queue_only
15
16 # ----- Main settings -----
17
18 domainlist local_domains = test.ex : *.test.ex
19
20 acl_smtp_rcpt = ar
21
22
23 # ----- ACLs -----
24
25 begin acl
26
27 ar:
28 accept
29 control = cutthrough_deliveryCONTROL
30 OPT
31 logwrite = rcpt for $local_part@$domain
32
33 # ----- Routers -----
34
35 begin routers
36
37 all:
38 driver = manualroute
39 domains = ! +local_domains
40 route_list = * 127.0.0.1::PORT_S
41 self = send
42 transport = smtp
43
44
45 # ----- Transports -----
46
47 begin transports
48
49 smtp:
50 driver = smtp
51
52 # End