Fix CVE-2016-1531
[exim.git] / test / confs / 2020
CommitLineData
afda344b
PH
1# Exim test configuration 2020
2
3SERVER=
4
5exim_path = EXIM_PATH
bc3c7bb7 6keep_environment =
afda344b
PH
7host_lookup_order = bydns
8log_file_path = DIR/spool/log/SERVER%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11primary_hostname = myhost.test.ex
afda344b
PH
12spool_directory = DIR/spool
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = accept
17
18log_selector = +tls_peerdn
19
20queue_only
21queue_run_in_order
22
23tls_advertise_hosts = *
24
25
26# ----- Routers -----
27
28begin routers
29
30abc:
31 driver = accept
32 transport = t1
33
34
35# ----- Transports -----
36
37begin transports
38
39t1:
40 driver = smtp
41 hosts = 127.0.0.1
42 allow_localhost
43 port = PORT_D
44
45
46# ----- Retry -----
47
48begin retry
49
50* * F,1d,1d
51
52# End