Fix CVE-2016-1531
[exim.git] / test / confs / 5740
CommitLineData
4b4a0e99 1# Exim test configuration 5740
774ef2d7 2# OCSP stapling, client, events
018058b2
JH
3
4SERVER =
5
6exim_path = EXIM_PATH
bc3c7bb7 7keep_environment = ^EXIM_TESTHARNESS_DISABLE_[O]CSPVALIDITYCHECK$
018058b2
JH
8host_lookup_order = bydns
9primary_hostname = server1.example.com
018058b2
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
21acl_smtp_data = check_data
22
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
52check_data:
53 warn condition = ${if def:h_X-TLS-out:}
54 logwrite = client claims: $h_X-TLS-out:
55 accept
56
57logger:
774ef2d7 58 accept condition = ${if !eq {msg} {${listextract{1}{$event_name}}}}
018058b2
JH
59 warn logwrite = client ocsp status: $tls_out_ocsp \
60 (${listextract {${eval:$tls_out_ocsp+1}} \
61 {notreq:notresp:vfynotdone:failed:verified}})
62 accept
63
64# ----- Routers -----
65
66begin routers
67
68client:
69 driver = accept
70 condition = ${if eq {SERVER}{server}{no}{yes}}
71 retry_use_local_part
72 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
73 {${if eq{$local_part}{norequire} {2} \
74 {${if eq{$local_part}{smtps} {4}{3}}} \
75 }}}
76
77server:
78 driver = redirect
79 data = :blackhole:
80 #retry_use_local_part
81 #transport = local_delivery
82
83
84# ----- Transports -----
85
86begin transports
87
88local_delivery:
89 driver = appendfile
90 file = DIR/test-mail/$local_part
91 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
92 user = CALLER
93
94# nostaple: deliberately do not request cert-status
95send_to_server1:
96 driver = smtp
97 allow_localhost
98 hosts = HOSTIPV4
99 port = PORT_D
100 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 101 tls_verify_cert_hostnames =
018058b2
JH
102 hosts_require_tls = *
103 hosts_request_ocsp = :
104 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
774ef2d7 105 event_action = ${acl {logger}}
018058b2
JH
106
107# norequire: request stapling but do not verify
108send_to_server2:
109 driver = smtp
110 allow_localhost
111 hosts = HOSTIPV4
112 port = PORT_D
113 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 114 tls_verify_cert_hostnames =
018058b2
JH
115 hosts_require_tls = *
116# note no ocsp mention here
117 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
774ef2d7 118 event_action = ${acl {logger}}
018058b2
JH
119
120# (any other name): request and verify
121send_to_server3:
122 driver = smtp
123 allow_localhost
124 hosts = 127.0.0.1
125 port = PORT_D
126 helo_data = helo.data.changed
127 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 128 tls_verify_cert_hostnames =
018058b2
JH
129 hosts_require_tls = *
130 hosts_require_ocsp = *
131 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
774ef2d7 132 event_action = ${acl {logger}}
018058b2
JH
133
134# (any other name): request and verify, ssl-on-connect
135send_to_server4:
136 driver = smtp
137 allow_localhost
138 hosts = 127.0.0.1
139 port = PORT_D
140 helo_data = helo.data.changed
141 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
01a4a5c5 142 tls_verify_cert_hostnames =
018058b2
JH
143 protocol = smtps
144 hosts_require_tls = *
145 hosts_require_ocsp = *
146 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
774ef2d7 147 event_action = ${acl {logger}}
018058b2
JH
148
149
150# ----- Retry -----
151
152
153begin retry
154
155* * F,5d,1s
156
157
158# End