PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 5407
CommitLineData
f83a760f
JH
1# Exim test configuration 5407
2
3# any options on the cutthrough_delivery control
4CONTROL=
5
6# optional verify-callout
7OPT=
8
9.include DIR/aux-var/std_conf_prefix
10
11primary_hostname = myhost.test.ex
12
13log_selector = +received_recipients
14queue_only
15
16# ----- Main settings -----
17
18domainlist local_domains = test.ex : *.test.ex
19
20acl_smtp_rcpt = ar
21
22
23# ----- ACLs -----
24
25begin acl
26
27ar:
28 accept
29 control = cutthrough_deliveryCONTROL
30 OPT
31 logwrite = rcpt for $local_part@$domain
32
33# ----- Routers -----
34
35begin routers
36
37all:
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
47begin transports
48
49smtp:
50 driver = smtp
51
52# End