Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 0522
CommitLineData
afda344b
PH
1# Exim test configuration 0522
2
3TIMEOUTDEFER=
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11qualify_domain = test.ex
12
13
14# ----- Routers -----
15
16begin routers
17
18r0:
19 driver = accept
20 senders = :
21 transport = t0
22
23r1:
24 driver = accept
25 local_parts = nofilter
26 transport = t1
27
28r2:
29 driver = accept
30 transport = t2
31
32
33
34# ----- Transports -----
35
36begin transports
37
38t0:
39 driver = appendfile
40 file = DIR/test-mail/$local_part
41 user = CALLER
42
43t1:
44 driver = pipe
45 timeout = 1s
46 command = /bin/sleep 2
47 TIMEOUTDEFER
48
49t2:
50 driver = pipe
51 timeout = 5s
52 command = /bin/cat
53 transport_filter = /bin/sleep 2
54 transport_filter_timeout = 1s
55 TIMEOUTDEFER
56
57
58# ----- Retry -----
59
60begin retry
61
62* * F,1h,1m
63
64
65# End