Fix CVE-2016-1531
[exim.git] / test / confs / 3208
1 # Exim test configuration 3208
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 qualify_domain = test.ex
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12 tls_advertise_hosts =
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = check_recipient
17
18 domainlist local_domains = !*relay.ex : test.ex : testhack.ex : \
19   testhack2.ex : testdb;defer
20
21 domainlist relay_domains = test.ex : testhack.ex : testhack2.ex : \
22   yesrelay.ex : testdb;defer
23
24 percent_hack_domains = !*relay.ex : !test.ex : testhack.ex : testdb;defer
25
26
27 # ----- ACL -----
28
29 begin acl
30
31 check_recipient:
32   # Exim 3 had no checking on -bs messages
33   accept  hosts = :
34   accept  domains = +local_domains
35   accept  domains = +relay_domains
36   deny    message = relay not permitted
37
38 # End