Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 5820
CommitLineData
360c0492 1# Exim test configuration 5800
12ee8cf9
JH
2# DANE
3
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
12ee8cf9
JH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = accept
17
360c0492 18log_selector = +tls_peerdn
12ee8cf9
JH
19
20queue_only
21queue_run_in_order
22
23tls_advertise_hosts = *
360c0492
JH
24# needed to force generation
25tls_dhparam = historic
12ee8cf9
JH
26
27# Set certificate only if server
28
360c0492
JH
29tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
82525c6f 31
360c0492
JH
32#tls_verify_hosts = *
33#tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
12ee8cf9
JH
34
35
36# ----- Routers -----
37
38begin routers
39
40client:
360c0492
JH
41 driver = accept
42 condition = ${if eq {SERVER}{server}{no}{yes}}
43 retry_use_local_part
12ee8cf9
JH
44 transport = send_to_server
45
46server:
47 driver = redirect
48 data = :blackhole:
49
50
51# ----- Transports -----
52
53begin transports
54
55send_to_server:
56 driver = smtp
57 allow_localhost
360c0492 58 hosts = 127.0.0.1
12ee8cf9 59 port = PORT_D
360c0492
JH
60# tls_certificate = DIR/aux-fixed/cert2
61# tls_privatekey = DIR/aux-fixed/cert2
62# tls_verify_certificates = DIR/aux-fixed/cert2
7a31d643 63
12ee8cf9
JH
64
65# ----- Retry -----
66
67
68begin retry
69
70* * F,5d,10s
71
72
73# End