Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 0150
CommitLineData
afda344b
PH
1# Exim test configuration 0150
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8domainlist local_domains = test.ex
9qualify_domain = test.ex
10
11
12# ----- Routers -----
13
14begin routers
15
16all:
17 driver = accept
18 retry_use_local_part
19 transport = appendfile
20
21
22# ----- Transports -----
23
24begin transports
25
26appendfile:
27 driver = appendfile
28 file = DIR/test-mail/$local_part
29 user = CALLER
30
31
32# End