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