Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 0217
1 # Exim test configuration 0217
2
3 HAP=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8 log_selector = +pipelining
9
10 # ----- Main settings -----
11
12 qualify_domain = test.ex
13 ignore_bounce_errors_after = 0s
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 bounce:
21 driver = redirect
22 allow_defer
23 allow_fail
24 data = :fail: just discard
25 retry_use_local_part
26 senders = :
27
28 client:
29 driver = accept
30 retry_use_local_part
31 transport = send_to_server
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 send_to_server:
39 driver = smtp
40 allow_localhost
41 command_timeout = 1s
42 hosts = 127.0.0.1
43 port = PORT_S
44 HAP
45 max_rcpt = 1000
46
47 # ----- Retry -----
48
49
50 begin retry
51
52 * * F,5d,10s
53
54
55 # End