Fix CVE-2016-1531
[exim.git] / test / confs / 0130
CommitLineData
afda344b
PH
1# Exim test configuration 0130
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14
15acl_smtp_rcpt = check_recipient
16
17domainlist local_domains = test.ex
18hostlist relay_hosts = V4NET.0.0.0
19qualify_domain = test.ex
20
21
22# ----- ACL -----
23
24begin acl
25
26check_recipient:
27 deny message = unrouteable address
28 !verify = recipient
29 accept domains = +local_domains
30 accept hosts = +relay_hosts
31 deny message = relay not permitted
32
33
34# ----- Routers -----
35
36begin routers
37
38islocal:
39 driver = manualroute
40 domains = ! +local_domains
41 route_list = "* localhost byname"
42 transport = smtp
43 no_more
44
45
46# ----- Transports -----
47
48begin transports
49
50smtp:
51 driver = smtp
52
53
54# ----- Retry -----
55
56
57begin retry
58
59* * F,1d,15m
60
61
62# End