Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 2100
CommitLineData
afda344b
PH
1# Exim test configuration 2100
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
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# Set certificate only if server
25
26tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
27tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
28
29tls_verify_hosts = *
30tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
31
32
33# ----- Routers -----
34
35begin routers
36
37client:
38 driver = accept
39 condition = ${if eq {SERVER}{server}{no}{yes}}
40 retry_use_local_part
41 transport = send_to_server
42
43
44# ----- Transports -----
45
46begin transports
47
48send_to_server:
49 driver = smtp
50 allow_localhost
51 hosts = 127.0.0.1
52 port = PORT_D
53 tls_certificate = DIR/aux-fixed/cert2
54 tls_privatekey = DIR/aux-fixed/cert2
55 tls_verify_certificates = DIR/aux-fixed/cert2
610ff438 56 tls_try_verify_hosts = :
afda344b
PH
57
58
59# ----- Retry -----
60
61
62begin retry
63
64* * F,5d,10s
65
66
67# End