Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 5841
CommitLineData
cf260049
JH
1# Exim test configuration 5841
2# DANE/OpenSSL - ciphers option
3
4SERVER=
9e9ad3ee 5LIST=
cf260049
JH
6
7.include DIR/aux-var/tls_conf_prefix
8
9primary_hostname = myhost.test.ex
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = accept logwrite = "rcpt ACL"
14
15log_selector = +received_recipients +tls_peerdn +tls_certificate_verified
16
17tls_advertise_hosts = *
18
19# Set certificate only if server
20CDIR2 = DIR/aux-fixed/exim-ca/example.com/server1.example.com
21
22tls_certificate = ${if eq {SERVER}{server} {CDIR2/fullchain.pem}fail}
23tls_privatekey = ${if eq {SERVER}{server} {CDIR2/server1.example.com.unlocked.key}fail}
24
25# Permit two specific ciphers
f94aac30 26tls_require_ciphers = DHE-RSA-CAMELLIA256-SHA:ECDHE-RSA-AES256-GCM-SHA384
cf260049 27
9e9ad3ee
JH
28# Force TLS1.2 so that the ciphers choice works
29
30.ifdef _OPT_OPENSSL_NO_TLSV1_3_X
31openssl_options = +no_tlsv1_3
32.endif
33
cf260049
JH
34# ----- Routers -----
35begin routers
36
37client:
38 driver = dnslookup
39 condition = ${if eq {SERVER}{}}
bffc2609 40 ignore_target_hosts = <; 0::0/0
cf260049
JH
41 dnssec_request_domains = *
42 self = send
43 transport = send_to_server
44 errors_to = ""
45
46server:
47 driver = redirect
48 data = :blackhole:
49
50# ----- Transports -----
51begin transports
52
53send_to_server:
54 driver = smtp
55 allow_localhost
56 port = PORT_D
047d31cb 57 hosts_try_fastopen = :
cf260049
JH
58 hosts_try_dane = *
59 tls_verify_certificates = CDIR2/ca_chain.pem
60
61 # Some commonly-available cipher, we hope
62 tls_require_ciphers = ECDHE-RSA-AES256-GCM-SHA384
9e9ad3ee 63 dane_require_tls_ciphers = LIST
cf260049
JH
64
65# ----- Retry -----
66begin retry
67* * F,5d,10s
68
69# End