OpenSSL: SSLKEYLOGFILE support
[exim.git] / test / confs / 5651
CommitLineData
2b4a568d
JH
1# Exim test configuration 5651
2# OCSP stapling, client
3
4SERVER =
5
e5489333
JH
6exim_path = EXIM_PATH
7keep_environment = ^EXIM_TESTHARNESS_DISABLE_[O]CSPVALIDITYCHECK$
8host_lookup_order = bydns
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13chunking_advertise_hosts =
d4dc049f 14primary_hostname = server1.example.com
2b4a568d 15
e5489333
JH
16.ifdef _HAVE_DMARC
17dmarc_tld_file =
18.endif
19
20
2b4a568d
JH
21# ----- Main settings -----
22
23domainlist local_domains = test.ex : *.test.ex
24
25acl_smtp_rcpt = check_recipient
44662487
JH
26acl_smtp_data = check_data
27
2b4a568d
JH
28log_selector = +tls_peerdn
29remote_max_parallel = 1
30
31tls_advertise_hosts = *
32
33# Set certificate only if server
34tls_certificate = ${if eq {SERVER}{server}\
35{DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
36fail\
37}
38tls_privatekey = ${if eq {SERVER}{server}\
39{DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
40fail}
41
42# from cmdline define
0a6583ae 43tls_ocsp_file = OPT
2b4a568d
JH
44
45
46# ------ ACL ------
47
48begin acl
49
50check_recipient:
51 accept domains = +local_domains
52 deny message = relay not permitted
53
44662487
JH
54check_data:
55 warn condition = ${if def:h_X-TLS-out:}
56 logwrite = client claims: $h_X-TLS-out:
57 accept
58
2b4a568d
JH
59
60# ----- Routers -----
61
62begin routers
63
64client:
65 driver = accept
66 condition = ${if eq {SERVER}{server}{no}{yes}}
67 retry_use_local_part
68 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
44662487
JH
69 {${if eq{$local_part}{norequire} {2} \
70 {${if eq{$local_part}{smtps} {4}{3}}} \
71 }}}
2b4a568d
JH
72
73server:
74 driver = redirect
75 data = :blackhole:
76 #retry_use_local_part
77 #transport = local_delivery
78
79
80# ----- Transports -----
81
82begin transports
83
84local_delivery:
85 driver = appendfile
86 file = DIR/test-mail/$local_part
87 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
88 user = CALLER
89
90send_to_server1:
91 driver = smtp
92 allow_localhost
93 hosts = HOSTIPV4
94 port = PORT_D
95 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 96 tls_verify_cert_hostnames =
2b4a568d 97 hosts_require_tls = *
44662487 98 hosts_request_ocsp = :
018058b2
JH
99 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
100 (${listextract {${eval:$tls_out_ocsp+1}} \
101 {notreq:notresp:vfynotdone:failed:verified}})
2b4a568d
JH
102
103send_to_server2:
44662487
JH
104 driver = smtp
105 allow_localhost
106 hosts = HOSTIPV4
107 port = PORT_D
108 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 109 tls_verify_cert_hostnames =
44662487
JH
110 hosts_require_tls = *
111# note no ocsp mention here
018058b2
JH
112 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
113 (${listextract {${eval:$tls_out_ocsp+1}} \
114 {notreq:notresp:vfynotdone:failed:verified}})
44662487
JH
115
116send_to_server3:
2b4a568d
JH
117 driver = smtp
118 allow_localhost
119 hosts = 127.0.0.1
120 port = PORT_D
121 helo_data = helo.data.changed
122 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
123 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
610ff438 124 tls_try_verify_hosts =
01a4a5c5 125 tls_verify_cert_hostnames =
2b4a568d
JH
126 hosts_require_tls = *
127 hosts_require_ocsp = *
018058b2
JH
128 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
129 (${listextract {${eval:$tls_out_ocsp+1}} \
130 {notreq:notresp:vfynotdone:failed:verified}})
2b4a568d 131
44662487 132send_to_server4:
2b4a568d
JH
133 driver = smtp
134 allow_localhost
135 hosts = 127.0.0.1
136 port = PORT_D
137 helo_data = helo.data.changed
138 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
139 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 140 tls_verify_cert_hostnames =
2b4a568d
JH
141 protocol = smtps
142 hosts_require_tls = *
143 hosts_require_ocsp = *
018058b2
JH
144 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
145 (${listextract {${eval:$tls_out_ocsp+1}} \
146 {notreq:notresp:vfynotdone:failed:verified}})
2b4a568d
JH
147
148
149# ----- Retry -----
150
151
152begin retry
153
154* * F,5d,1s
155
156
157# End