testsuite: abstract out common conf settings
[exim.git] / test / confs / 0063
CommitLineData
afda344b
PH
1# Exim test configuration 0063
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 local_domains = test.ex : myhost.ex
10domainlist relay_domains = test.ex
11
12hostlist relay_hosts = ^[^\\d]+2
13
14acl_smtp_rcpt = check_recipient
15
16
17# ------ ACL ------
18
19begin acl
20
21check_recipient:
22 accept domains = +local_domains
23 accept domains = +relay_domains
24 accept hosts = +relay_hosts
25 deny message = relay not permitted
26
27# End