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