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