Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 0305
CommitLineData
afda344b
PH
1# Exim test configuration 0305
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
9domainlist ok_domains = ${if eq{$domain}{ten-1.test.ex}{$domain}}
10
11acl_smtp_rcpt = acl1
12
13# ----- ACLs -----
14
15begin acl
16
17acl1:
18 accept domains = +ok_domains
19
20
21# ------ Routers ------
22
23begin routers
24
25r1:
26 driver = accept
27 domains = +ok_domains
28 verify_only
29
30
31# End