Docs: indexing of retry final-cutoff
[exim.git] / test / confs / 2125
CommitLineData
afda344b
PH
1# Exim test configuration 2125
2
3SERVER=
4
d4dc049f
JH
5.include DIR/aux-var/tls_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = accept
12
13log_selector = +tls_peerdn+tls_certificate_verified
14
15queue_only
16queue_run_in_order
17
18tls_advertise_hosts = *
19
20tls_require_ciphers = ${if eq{$sender_host_address}{HOSTIPV4}\
64e653f4 21 {AES256}{AES128}}
afda344b
PH
22
23# Set certificate only if server
24
25tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
27
9e9ad3ee
JH
28.ifdef _OPT_OPENSSL_NO_TLSV1_3_X
29openssl_options = +no_tlsv1_3
30.endif
afda344b
PH
31
32# ----- Routers -----
33
34begin routers
35
36client:
37 driver = accept
38 condition = ${if eq {SERVER}{server}{no}{yes}}
39 retry_use_local_part
40 transport = send_to_server
41
42
43# ----- Transports -----
44
45begin transports
46
47send_to_server:
48 driver = smtp
49 allow_localhost
50 hosts = HOSTIPV4 : 127.0.0.1
51 hosts_require_tls = HOSTIPV4
64e653f4 52 tls_require_ciphers = AES128-SHA
afda344b 53 port = PORT_D
610ff438 54 tls_try_verify_hosts = :
afda344b
PH
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,5d,10s
63
64
65# End