Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 0553
CommitLineData
4c590bd1
PH
1# Exim test configuration 0553
2
3DCF =
4SERVER =
5
d4dc049f
JH
6.include DIR/aux-var/std_conf_prefix
7
4c590bd1 8primary_hostname = myhost.test.ex
4c590bd1
PH
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = check_recipient
13
14queue_only
15
16# ----- ACL -----
17
18begin acl
19
20check_recipient:
21 # Callouts accepted with a delay
22 accept senders = :
23 delay = 1s
24
25 # Non-callouts do the callout
26 accept verify = recipient/callout
27 DCF
28
29
30# ----- Routers -----
31
32begin routers
33
34t1:
35 driver = manualroute
36 route_list = * 127.0.0.1 byname
37 self = send
38 transport = smtp
39
40
41# ----- Transports -----
42
43begin transports
44
45smtp:
46 driver = smtp
47 port = PORT_D
48 command_timeout = 2s
49
50
51# ----- Retry -----
52
53begin retry
54
55* * F,5d,10s
56
57
58# End