Testsuite: build a generic tls enabled client: client-anytls
[exim.git] / test / confs / 5651
... / ...
CommitLineData
1# Exim test configuration 5651
2# OCSP stapling, client
3
4SERVER =
5
6exim_path = EXIM_PATH
7keep_environment = ^EXIM_TESTHARNESS_DISABLE_[O]CSPVALIDITYCHECK$
8host_lookup_order = bydns
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13chunking_advertise_hosts =
14primary_hostname = server1.example.com
15
16.ifdef _HAVE_DMARC
17dmarc_tld_file =
18.endif
19
20
21# ----- Main settings -----
22
23domainlist local_domains = test.ex : *.test.ex
24
25acl_smtp_rcpt = check_recipient
26acl_smtp_data = check_data
27
28log_selector = +tls_peerdn
29remote_max_parallel = 1
30
31tls_advertise_hosts = *
32
33# Set certificate only if server
34tls_certificate = ${if eq {SERVER}{server}\
35{DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
36fail\
37}
38tls_privatekey = ${if eq {SERVER}{server}\
39{DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
40fail}
41
42# from cmdline define
43tls_ocsp_file = OPT
44
45
46# ------ ACL ------
47
48begin acl
49
50check_recipient:
51 accept domains = +local_domains
52 deny message = relay not permitted
53
54check_data:
55 warn condition = ${if def:h_X-TLS-out:}
56 logwrite = client claims: $h_X-TLS-out:
57 accept
58
59
60# ----- Routers -----
61
62begin routers
63
64client:
65 driver = accept
66 condition = ${if eq {SERVER}{server}{no}{yes}}
67 retry_use_local_part
68 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
69 {${if eq{$local_part}{norequire} {2} \
70 {${if eq{$local_part}{smtps} {4}{3}}} \
71 }}}
72
73server:
74 driver = redirect
75 data = :blackhole:
76 #retry_use_local_part
77 #transport = local_delivery
78
79
80# ----- Transports -----
81
82begin transports
83
84local_delivery:
85 driver = appendfile
86 file = DIR/test-mail/${bless:$local_part}
87 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
88 user = CALLER
89
90send_to_server1:
91 driver = smtp
92 allow_localhost
93 hosts = HOSTIPV4
94 port = PORT_D
95 hosts_try_fastopen = :
96 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
97 tls_verify_cert_hostnames =
98 hosts_require_tls = *
99 hosts_request_ocsp = :
100 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
101 (${listextract {${eval:$tls_out_ocsp+1}} \
102 {notreq:notresp:vfynotdone:failed:verified}})
103
104send_to_server2:
105 driver = smtp
106 allow_localhost
107 hosts = HOSTIPV4
108 port = PORT_D
109 hosts_try_fastopen = :
110 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
111 tls_verify_cert_hostnames =
112 hosts_require_tls = *
113# note no ocsp mention here
114 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
115 (${listextract {${eval:$tls_out_ocsp+1}} \
116 {notreq:notresp:vfynotdone:failed:verified}})
117
118send_to_server3:
119 driver = smtp
120 allow_localhost
121 hosts = 127.0.0.1
122 port = PORT_D
123 hosts_try_fastopen = :
124 helo_data = helo.data.changed
125 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
126 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
127 tls_try_verify_hosts =
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 (${listextract {${eval:$tls_out_ocsp+1}} \
133 {notreq:notresp:vfynotdone:failed:verified}})
134
135send_to_server4:
136 driver = smtp
137 allow_localhost
138 hosts = 127.0.0.1
139 port = PORT_D
140 hosts_try_fastopen = :
141 helo_data = helo.data.changed
142 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
143 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
144 tls_verify_cert_hostnames =
145 protocol = smtps
146 hosts_require_tls = *
147 hosts_require_ocsp = *
148 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
149 (${listextract {${eval:$tls_out_ocsp+1}} \
150 {notreq:notresp:vfynotdone:failed:verified}})
151
152
153# ----- Retry -----
154
155
156begin retry
157
158* * F,5d,1s
159
160
161# End