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