1 # Exim test configuration 5651
2 # OCSP stapling, client
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
28 tls_certificate = ${if eq {SERVER}{server}\
29 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
32 tls_privatekey = ${if eq {SERVER}{server}\
33 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
45 accept domains = +local_domains
46 deny message = relay not permitted
49 warn condition = ${if def:h_X-TLS-out:}
50 logwrite = client claims: $h_X-TLS-out:
60 condition = ${if eq {SERVER}{server}{no}{yes}}
62 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
63 {${if eq{$local_part}{norequire} {2} \
64 {${if eq{$local_part}{smtps} {4}{3}}} \
71 #transport = local_delivery
74 # ----- Transports -----
80 file = DIR/test-mail/$local_part
81 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
89 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
90 tls_verify_cert_hostnames =
92 hosts_request_ocsp = :
93 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
94 (${listextract {${eval:$tls_out_ocsp+1}} \
95 {notreq:notresp:vfynotdone:failed:verified}})
102 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
103 tls_verify_cert_hostnames =
104 hosts_require_tls = *
105 # note no ocsp mention here
106 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
107 (${listextract {${eval:$tls_out_ocsp+1}} \
108 {notreq:notresp:vfynotdone:failed:verified}})
115 helo_data = helo.data.changed
116 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
117 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
118 tls_try_verify_hosts =
119 tls_verify_cert_hostnames =
120 hosts_require_tls = *
121 hosts_require_ocsp = *
122 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
123 (${listextract {${eval:$tls_out_ocsp+1}} \
124 {notreq:notresp:vfynotdone:failed:verified}})
131 helo_data = helo.data.changed
132 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
133 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
134 tls_verify_cert_hostnames =
136 hosts_require_tls = *
137 hosts_require_ocsp = *
138 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
139 (${listextract {${eval:$tls_out_ocsp+1}} \
140 {notreq:notresp:vfynotdone:failed:verified}})