Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0455
CommitLineData
afda344b
PH
1# Exim test configuration 0455
2
3HOSTS_MAX_TRY=4
4
4fab92fb
HSHR
5.include DIR/aux-var/std_conf_prefix
6
afda344b
PH
7
8# ----- Main settings -----
9
10acl_not_smtp = non
11
12ignore_bounce_errors_after = 0s
13qualify_domain = test.ex
f3d7df6c 14disable_ipv6
afda344b
PH
15
16
17# ----- ACLs -----
18
19begin acl
20
21non:
22 warn senders = :
23 control = queue_only
24 accept
25
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 driver = dnslookup
33 transport = smtp
34
35
36# ----- Transports -----
37
38begin transports
39
40smtp:
41 driver = smtp
42 connect_timeout = 1s
43 hosts_max_try = HOSTS_MAX_TRY
44
45
46# ----- Retry -----
47
48begin retry
49
50* * F,2s,1s
51
52# End