Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / confs / 0201
... / ...
CommitLineData
1# Exim test configuration 0201
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9
10
11# ----- Routers -----
12
13begin routers
14
15r1:
16 driver = accept
17 transport = t1
18
19
20# ----- Transports -----
21
22begin transports
23
24t1:
25 driver = smtp
26 hosts = 127.0.0.1
27 allow_localhost
28 port = PORT_S
29 hosts_try_fastopen = :
30 transport_filter = /bin/sh -c 'cat; exit 99'
31
32
33# ----- Retry -----
34
35
36begin retry
37
38* * F,5d,1d
39
40
41# End