Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 3208
CommitLineData
afda344b
PH
1# Exim test configuration 3208
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5primary_hostname = myhost.test.ex
6qualify_domain = test.ex
afda344b
PH
7
8# ----- Main settings -----
9
10acl_smtp_rcpt = check_recipient
11
12domainlist local_domains = !*relay.ex : test.ex : testhack.ex : \
13 testhack2.ex : testdb;defer
14
15domainlist relay_domains = test.ex : testhack.ex : testhack2.ex : \
16 yesrelay.ex : testdb;defer
17
18percent_hack_domains = !*relay.ex : !test.ex : testhack.ex : testdb;defer
19
20
21# ----- ACL -----
22
23begin acl
24
25check_recipient:
26 # Exim 3 had no checking on -bs messages
27 accept hosts = :
28 accept domains = +local_domains
29 accept domains = +relay_domains
30 deny message = relay not permitted
31
32# End