Doc: clarify the syntax of the "begin <section>"
[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
afda344b
PH
11spool_directory = DIR/spool
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept
16
17log_selector = +tls_peerdn
18
19queue_only
20queue_run_in_order
21
22tls_advertise_hosts = *
23
24
25# ----- Routers -----
26
27begin routers
28
29abc:
30 driver = accept
31 transport = t1
32
33
34# ----- Transports -----
35
36begin transports
37
38t1:
39 driver = smtp
40 hosts = 127.0.0.1
41 allow_localhost
42 port = PORT_D
43
44
45# ----- Retry -----
46
47begin retry
48
49* * F,1d,1d
50
51# End