Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0063
1 # Exim test configuration 0063
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : myhost.ex
10 domainlist relay_domains = test.ex
11
12 hostlist relay_hosts = ^[^\\d]+2
13
14 acl_smtp_rcpt = check_recipient
15
16
17 # ------ ACL ------
18
19 begin acl
20
21 check_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