Account properly for quoted or 2047-encoded MIME parameters while walking headers...
[exim.git] / test / confs / 5840
CommitLineData
37ff4e03 1# Exim test configuration 5840
12ee8cf9
JH
2# DANE
3
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_smtp_rcpt = accept
18
e5cccda9 19log_selector = +received_recipients +tls_peerdn +tls_certificate_verified
12ee8cf9 20
12ee8cf9
JH
21queue_run_in_order
22
23tls_advertise_hosts = *
24
25# Set certificate only if server
82525c6f
JH
26CDIR1 = DIR/aux-fixed
27CDIR2 = DIR/aux-fixed/exim-ca/example.com/server1.example.com
12ee8cf9 28
82525c6f 29tls_certificate = ${if eq {SERVER}{server} \
281e72e4 30 {${if or {{eq {DETAILS}{ta}} {eq {DETAILS}{ca}}} \
82525c6f
JH
31 {CDIR2/fullchain.pem}\
32 {CDIR1/cert1}}}\
33 fail}
34
35tls_privatekey = ${if eq {SERVER}{server} \
281e72e4 36 {${if or {{eq {DETAILS}{ta}} {eq {DETAILS}{ca}}} \
82525c6f
JH
37 {CDIR2/server1.example.com.unlocked.key}\
38 {CDIR1/cert1}}}\
39 fail}
12ee8cf9 40
12ee8cf9
JH
41# ----- Routers -----
42
43begin routers
44
45client:
cf2b569e 46 driver = dnslookup
82525c6f 47 condition = ${if eq {SERVER}{}}
cf2b569e
JH
48 dnssec_request_domains = *
49 self = send
12ee8cf9
JH
50 transport = send_to_server
51
52server:
53 driver = redirect
54 data = :blackhole:
55
56
57# ----- Transports -----
58
59begin transports
60
61send_to_server:
62 driver = smtp
63 allow_localhost
12ee8cf9 64 port = PORT_D
12ee8cf9 65
281e72e4
JH
66 hosts_try_dane = *
67 hosts_require_dane = !thishost.test.ex
594706ea
JH
68 hosts_request_ocsp = ${if or { {= {4}{$tls_out_tlsa_usage}} \
69 {= {0}{$tls_out_tlsa_usage}} } \
70 {*}{}}
281e72e4
JH
71 tls_try_verify_hosts = thishost.test.ex
72 tls_verify_certificates = CDIR2/ca_chain.pem
73
7a31d643 74
12ee8cf9
JH
75
76# ----- Retry -----
77
78
79begin retry
80
81* * F,5d,10s
82
83
84# End