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