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