Merge branch 'master' into 4.next
[exim.git] / test / confs / 0548
CommitLineData
8852dff2
PH
1# Exim test configuration 0548
2
3SERVER=
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
8852dff2
PH
7
8# ----- Main settings -----
9
10acl_smtp_connect = acl_connect
11acl_smtp_rcpt = acl_rcpt
12qualify_domain = test.ex
273f34d0 13queue_run_in_order
8852dff2
PH
14
15
16# ----- ACLs -----
17
18begin acls
19
20acl_connect:
21 defer message = host deferred
22 hosts = thishost.test.ex
23 accept
24
25acl_rcpt:
26 defer message = Recipient deferred
27
28
29# ----- Routers -----
30
31begin routers
32
33smarthost:
34 driver = accept
35 transport = smtp
36
37
38# ----- Transports -----
39
40begin transports
41
42smtp:
43 driver = smtp
44 hosts = HOSTIPV4 : thishost.test.ex
45 allow_localhost
46 port = PORT_D
47
48
49# ----- Retry -----
50
51begin retry
52
f6f261e6 53thishost.test.ex * F,20s,2s
8852dff2
PH
54* * F,1s,1s; F,1s,5s
55
56# End