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