Merge from master into 4.next
[exim.git] / test / confs / 0062
CommitLineData
afda344b
PH
1# Exim test configuration 0062
2
4fab92fb
HSHR
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
10acl_smtp_data = check_message
11
12domainlist local_domains = test.ex : myhost.ex
13
14domainlist relay_domains = test.ex
15hostlist relay_hosts = *-2.test.ex : *-3-alias.test.ex
16
17
18# ----- ACL -----
19
20begin acl
21
22check_recipient:
23 accept domains = +local_domains
24 accept domains = +relay_domains
25 accept hosts = +relay_hosts
26 deny message = relay not permitted
27
28check_message:
29 accept
30
31# End