1 # Exim test configuration 5651
2 # OCSP stapling, client
7 host_lookup_order = bydns
8 primary_hostname = server1.example.com
9 rfc1413_query_timeout = 0s
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
29 tls_certificate = ${if eq {SERVER}{server}\
30 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
33 tls_privatekey = ${if eq {SERVER}{server}\
34 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
46 accept domains = +local_domains
47 deny message = relay not permitted
50 warn condition = ${if def:h_X-TLS-out:}
51 logwrite = client claims: $h_X-TLS-out:
61 condition = ${if eq {SERVER}{server}{no}{yes}}
63 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
64 {${if eq{$local_part}{norequire} {2} \
65 {${if eq{$local_part}{smtps} {4}{3}}} \
72 #transport = local_delivery
75 # ----- Transports -----
81 file = DIR/test-mail/$local_part
82 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
90 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
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 hosts_require_tls = *
104 # note no ocsp mention here
105 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
106 (${listextract {${eval:$tls_out_ocsp+1}} \
107 {notreq:notresp:vfynotdone:failed:verified}})
114 helo_data = helo.data.changed
115 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
116 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
117 hosts_require_tls = *
118 hosts_require_ocsp = *
119 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
120 (${listextract {${eval:$tls_out_ocsp+1}} \
121 {notreq:notresp:vfynotdone:failed:verified}})
128 helo_data = helo.data.changed
129 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
130 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
132 hosts_require_tls = *
133 hosts_require_ocsp = *
134 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
135 (${listextract {${eval:$tls_out_ocsp+1}} \
136 {notreq:notresp:vfynotdone:failed:verified}})