1 # Exim test configuration 2012
2 # TLS client: verify certificate from server - fails
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
13 gecos_name = CALLER_NAME
16 S1 = FX/exim-ca/example.com/server1.example.com
19 CERT1 = S1/server1.example.com.pem
20 KEY1 = S1/server1.example.com.unlocked.key
25 # ----- Main settings -----
27 acl_smtp_rcpt = accept
29 log_selector = +tls_peerdn+tls_certificate_verified
34 tls_advertise_hosts = *
36 # Set certificate only if server
38 tls_certificate = ${if eq {SERVER}{server}{CERT1}fail}
39 tls_privatekey = ${if eq {SERVER}{server}{KEY1}fail}
42 tls_verify_certificates = ${if eq {SERVER}{server}{CERT2}fail}
51 condition = ${if eq {SERVER}{server}{yes}{no}}
58 transport = send_to_server_failcert
65 transport = send_to_server_retry
71 transport = send_to_server_crypt
77 transport = send_to_server_req_fail
83 transport = send_to_server_req_failname
89 transport = send_to_server_req_passname
92 # ----- Transports -----
96 # this will fail to verify the cert at HOSTIPV4 so fail the crypt requirement
97 send_to_server_failcert:
101 hosts_require_tls = HOSTIPV4
103 tls_certificate = CERT2
104 tls_privatekey = CERT2
106 tls_verify_certificates = CA2
107 tls_try_verify_hosts =
108 tls_verify_cert_hostnames =
110 # this will fail to verify the cert at HOSTIPV4 so fail the crypt, then retry on 127.1; ok
111 send_to_server_retry:
114 hosts = HOSTIPV4 : 127.0.0.1
115 hosts_require_tls = HOSTIPV4
117 tls_certificate = CERT2
118 tls_privatekey = CERT2
120 tls_verify_certificates = \
121 ${if eq{$host_address}{127.0.0.1}{CA1}{CA2}}
122 tls_try_verify_hosts =
123 tls_verify_cert_hostnames =
125 # this will fail to verify the cert but continue unverified though crypted
126 send_to_server_crypt:
130 hosts_require_tls = HOSTIPV4
132 tls_certificate = CERT2
133 tls_privatekey = CERT2
135 tls_verify_certificates = CA2
136 tls_try_verify_hosts = *
137 tls_verify_cert_hostnames =
139 # this will fail to verify the cert at HOSTIPV4 and fallback to unencrypted
140 send_to_server_req_fail:
145 tls_certificate = CERT2
146 tls_privatekey = CERT2
148 tls_verify_certificates = CA2
150 tls_verify_cert_hostnames =
152 # this will fail to verify the cert name and fallback to unencrypted
153 send_to_server_req_failname:
158 tls_certificate = CERT2
159 tls_privatekey = CERT2
161 tls_verify_certificates = CA1
162 tls_verify_cert_hostnames = server1.example.net : server1.example.org
165 # this will pass the cert verify including name check
166 send_to_server_req_passname:
171 tls_certificate = CERT2
172 tls_privatekey = CERT2
174 tls_verify_certificates = CA1
175 tls_verify_cert_hostnames = noway.example.com : server1.example.com