Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 0550
CommitLineData
41c7c167
PH
1# Exim test configuration 0550
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
41c7c167 5primary_hostname = myhost.test.ex
41c7c167
PH
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 allow_localhost
28 helo_data = \
29 ${if eq{$sending_ip_address}{127.0.0.1}{Tweedledum}{Tweedledee}} \
30 to $host [$host_address]
31
32
33# ------ Retry ------
34
35begin retry
36
37* * F,1d,1d
38
39# End