1 # Exim test configuration 5608
2 # OCSP stapling, client, events
7 host_lookup_order = bydns
8 primary_hostname = server1.example.com
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_name = CALLER_NAME
15 # ----- Main settings -----
17 domainlist local_domains = test.ex : *.test.ex
19 acl_smtp_rcpt = check_recipient
20 acl_smtp_data = check_data
22 log_selector = +tls_peerdn
23 remote_max_parallel = 1
25 tls_advertise_hosts = *
27 # Set certificate only if server
29 tls_certificate = ${if eq {SERVER}{server}\
30 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
34 #{DIR/aux-fixed/exim-ca/example.com/CA/CA.pem}\
36 tls_privatekey = ${if eq {SERVER}{server}\
37 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
48 accept domains = +local_domains
49 deny message = relay not permitted
52 warn condition = ${if def:h_X-TLS-out:}
53 logwrite = client claims: $h_X-TLS-out:
57 accept condition = ${if !eq {msg} {${listextract{1}{$event_name}}}}
58 warn logwrite = client ocsp status: $tls_out_ocsp \
59 (${listextract {${eval:$tls_out_ocsp+1}} \
60 {notreq:notresp:vfynotdone:failed:verified}})
69 condition = ${if eq {SERVER}{server}{no}{yes}}
71 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
72 {${if eq{$local_part}{norequire} {2} \
73 {${if eq{$local_part}{smtps} {4}{3}}} \
80 #transport = local_delivery
83 # ----- Transports -----
89 file = DIR/test-mail/$local_part
90 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
93 # nostaple: deliberately do not request cert-status
99 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
100 tls_verify_cert_hostnames =
101 hosts_require_tls = *
102 hosts_request_ocsp = :
103 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
104 event_action = ${acl {logger}}
106 # norequire: request stapling but do not verify
112 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
113 tls_verify_cert_hostnames =
114 hosts_require_tls = *
115 # note no ocsp mention here
116 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
117 event_action = ${acl {logger}}
119 # (any other name): request and verify
125 helo_data = helo.data.changed
126 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
127 tls_verify_cert_hostnames =
128 hosts_require_tls = *
129 hosts_require_ocsp = *
130 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
131 event_action = ${acl {logger}}
133 # (any other name): request and verify, ssl-on-connect
139 helo_data = helo.data.changed
140 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
141 tls_verify_cert_hostnames =
143 hosts_require_tls = *
144 hosts_require_ocsp = *
145 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
146 event_action = ${acl {logger}}