Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 3211
CommitLineData
afda344b
PH
1# Exim test configuration 3211
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = check_recipient
10
11
12# ------ ACL ------
13
14begin acl
15
16check_recipient:
17 accept verify = recipient
18
19
20# ----- Routers -----
21
22begin routers
23
24r1:
25 driver = dnslookup
26 local_part_prefix = r1-
27 domains = !testdb;fail
28 verify_only
29
30skipped:
31 driver = redirect
32 verify_only
33 data = ${lookup testdb{fail}}
34 debug_print = +++ sender_address = <$sender_address>
35
36temp:
37 driver = dnslookup
38 verify_only
39
40# End