Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0199
1 # Exim test configuration 0199
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_expn = check_expn
10 domainlist local_domains = test.ex : *.test.ex
11 trusted_users = CALLER
12
13
14 # ----- ACL -----
15
16 begin acl
17
18 check_expn:
19   accept  hosts = 127.0.0.1
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 make_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
33 fail_remote_domains:
34   driver = redirect
35   domains = ! +local_domains
36   allow_fail
37   data = :fail: unrouteable mail domain "$domain"
38
39 expand:
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