Merge from master into 4.next
[exim.git] / test / confs / 5402
CommitLineData
4fab92fb
HSHR
1# Exim test configuration 5402
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9domainlist local_domains = test.ex : *.test.ex
10
11acl_smtp_rcpt = acl_rcpt
12
13# ----- ACLs -------
14
15begin acl
16
17acl_rcpt:
18.ifdef OPT
19 warn control = cutthrough_delivery
20.endif
21 accept verify = recipient/callout=use_sender
22
23
24# ----- Routers -----
25
26begin routers
27
28all:
29 driver = manualroute
30 domains = ! +local_domains
31 route_list = * 127.0.0.1
32 self = send
33 transport = smtp
34 no_more
35
36
37# ----- Transports -----
38
39begin transports
40
41smtp:
42 driver = smtp
43 interface = HOSTIPV4
44 port = PORT_S
45
46
47# End