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