Fix CVE-2016-1531
[exim.git] / test / confs / 0025
CommitLineData
afda344b
PH
1# Exim test configuration 0025
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15domainlist local_domains = test.ex
16domainlist relay_domains = ten-1.test.ex
17
18acl_smtp_rcpt = acl_local
19
20# ------ ACLs ------
21
22begin acl
23
24acl_local:
25 # Pass on for non-remote input (should all be)
26 require message = this message should not occur
27 hosts = :
28
29 # The redundant hosts check is just to ensure it works
30 accept verify = sender
31 verify = recipient
32 hosts = :
33
34# ------ Routers ------
35
36begin routers
37
38r1:
39 driver = dnslookup
40 domains = ! +local_domains
41 transport = dev_null
42 no_more
43
44r2:
45 driver = accept
46 local_parts = userx : postmaster
47 transport = local_delivery
48
49
50# ------ Transports ------
51
52begin transports
53
54dev_null:
55 driver = appendfile
56 file = /dev/null
57 user = CALLER
58
59local_delivery:
60 driver = appendfile
61 file = DIR/test-mail/$local_part
62 user = CALLER
63
64# End