Another small test tweak.
[exim.git] / test / confs / 2020
CommitLineData
afda344b
PH
1# Exim test configuration 2020
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7log_file_path = DIR/spool/log/SERVER%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10primary_hostname = myhost.test.ex
11rfc1413_query_timeout = 0s
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