Fix CVE-2016-1531
[exim.git] / test / confs / 5420
CommitLineData
99400968 1# Exim test configuration 5420
4ed8d31a
JH
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
4ed8d31a
JH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
4ed8d31a
JH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14log_selector = +smtp_confirmation
15tls_advertise_hosts = *
16tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
17
18domainlist local_domains = test.ex : *.test.ex
19
20acl_smtp_rcpt = ${if eq {SERVER}{server}{queue}{cutthrough}}
21
22# ----- ACLs -------
23
24begin acl
25
26cutthrough:
27 accept control = cutthrough_delivery
28 verify = recipient
29
30queue:
31 accept control = queue_only
32
33# ----- Routers -----
34
35begin routers
36
37all:
38 driver = manualroute
39 domains = ! +local_domains
40 route_list = * 127.0.0.1
41 self = send
42 address_data = $local_part
43 transport = smtp
44 no_more
45
46
47# ----- Transports -----
48
49begin transports
50
51smtp:
52 driver = smtp
53 interface = HOSTIPV4
54 port = PORT_D
99400968
JH
55 hosts_avoid_tls = ${if eq {$address_data}{usery}{*}{:}}
56 hosts_verify_avoid_tls = ${if eq {$address_data}{userz}{*}{:}}
4ed8d31a
JH
57
58
59# End