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