Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / confs / 0461
CommitLineData
afda344b
PH
1# Exim test configuration 0461
2
3FALLBACK=fallback_hosts = 127.0.0.1
4ROUTE_DATA=V4NET.0.0.1
b6d22362
PH
5RETRY1=1s
6RETRY2=2s
afda344b 7
d4dc049f
JH
8.include DIR/aux-var/std_conf_prefix
9
afda344b 10primary_hostname = myhost.test.ex
afda344b
PH
11
12
13# ----- Main settings -----
14
15qualify_domain = test.ex
16
17
18# ----- Routers -----
19
20begin routers
21
22r0:
23 driver = accept
24 senders = :
25 transport = t2
26
27r1:
28 driver = manualroute
29 route_data = ROUTE_DATA
30 transport = t1
31 FALLBACK
32
33# ----- Transports -----
34
35begin transports
36
37t1:
38 driver = smtp
39 port = PORT_S
277b9979 40 hosts_try_fastopen = :
afda344b
PH
41 connect_timeout = 1s
42 allow_localhost
43
44t2:
45 driver = appendfile
0d2e392e 46 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
47 user = CALLER
48
49
50# ----- Retry -----
51
52begin retry
53
b6d22362
PH
54V4NET.0.0.1 * F,1s,RETRY1
55V4NET.0.0.2 * F,1s,RETRY2
afda344b
PH
56* * F,1d,1s
57
58
59# End