Merge branch 'master' into 4.next
[exim.git] / test / confs / 0199
CommitLineData
afda344b
PH
1# Exim test configuration 0199
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_expn = check_expn
10domainlist local_domains = test.ex : *.test.ex
11trusted_users = CALLER
12
13
14# ----- ACL -----
15
16begin acl
17
18check_expn:
19 accept hosts = 127.0.0.1
20
21
22# ----- Routers -----
23
24begin routers
25
26make_local:
27 driver = manualroute
28 domains = over.the.rainbow
29 pass_router = expand
30 route_list = * 127.0.0.1 byname
31 self = pass
32
33fail_remote_domains:
34 driver = redirect
35 domains = ! +local_domains
36 allow_fail
37 data = :fail: unrouteable mail domain "$domain"
38
39expand:
40 driver = redirect
41 allow_defer
42 allow_fail
43 data = a,b,c
44 local_parts = somewhere
45 retry_use_local_part
46
47
48# End