Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0124
1 # Exim test configuration 0124
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 acl_smtp_rcpt = check_recipient
9
10 domainlist local_domains = test.ex
11 hostlist relay_hosts = *.friendly.test.ex
12 qualify_domain = test.ex
13
14
15 # ----- ACL -----
16
17 begin acl
18
19 check_recipient:
20   accept  hosts = :
21   accept  domains = +local_domains
22   accept  hosts = +relay_hosts
23   deny    message = relay not permitted
24
25
26 # End