1 # Exim test configuration 5740
2 # OCSP stapling, client, events
7 keep_environment = ^EXIM_TESTHARNESS_DISABLE_[O]CSPVALIDITYCHECK$
8 host_lookup_order = bydns
9 primary_hostname = server1.example.com
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
13 gecos_name = CALLER_NAME
16 # ----- Main settings -----
18 domainlist local_domains = test.ex : *.test.ex
20 acl_smtp_rcpt = check_recipient
21 acl_smtp_data = check_data
23 log_selector = +tls_peerdn
24 remote_max_parallel = 1
26 tls_advertise_hosts = *
28 # Set certificate only if server
30 tls_certificate = ${if eq {SERVER}{server}\
31 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
35 #{DIR/aux-fixed/exim-ca/example.com/CA/CA.pem}\
37 tls_privatekey = ${if eq {SERVER}{server}\
38 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
49 accept domains = +local_domains
50 deny message = relay not permitted
53 warn condition = ${if def:h_X-TLS-out:}
54 logwrite = client claims: $h_X-TLS-out:
58 accept condition = ${if !eq {msg} {${listextract{1}{$event_name}}}}
59 warn logwrite = client ocsp status: $tls_out_ocsp \
60 (${listextract {${eval:$tls_out_ocsp+1}} \
61 {notreq:notresp:vfynotdone:failed:verified}})
70 condition = ${if eq {SERVER}{server}{no}{yes}}
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}}} \
81 #transport = local_delivery
84 # ----- Transports -----
90 file = DIR/test-mail/$local_part
91 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
94 # nostaple: deliberately do not request cert-status
100 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
101 tls_verify_cert_hostnames =
102 hosts_require_tls = *
103 hosts_request_ocsp = :
104 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
105 event_action = ${acl {logger}}
107 # norequire: request stapling but do not verify
113 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
114 tls_verify_cert_hostnames =
115 hosts_require_tls = *
116 # note no ocsp mention here
117 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
118 event_action = ${acl {logger}}
120 # (any other name): request and verify
126 helo_data = helo.data.changed
127 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
128 tls_verify_cert_hostnames =
129 hosts_require_tls = *
130 hosts_require_ocsp = *
131 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
132 event_action = ${acl {logger}}
134 # (any other name): request and verify, ssl-on-connect
140 helo_data = helo.data.changed
141 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
142 tls_verify_cert_hostnames =
144 hosts_require_tls = *
145 hosts_require_ocsp = *
146 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
147 event_action = ${acl {logger}}