Doc: clarify the syntax of the "begin <section>"
[exim.git] / test / confs / 5608
... / ...
CommitLineData
1# Exim test configuration 5608
2# OCSP stapling, client, events
3
4SERVER =
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = server1.example.com
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
20acl_smtp_data = check_data
21
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
51check_data:
52 warn condition = ${if def:h_X-TLS-out:}
53 logwrite = client claims: $h_X-TLS-out:
54 accept
55
56logger:
57 accept condition = ${if !eq {msg} {${listextract{1}{$event_name}}}}
58 warn logwrite = client ocsp status: $tls_out_ocsp \
59 (${listextract {${eval:$tls_out_ocsp+1}} \
60 {notreq:notresp:vfynotdone:failed:verified}})
61 accept
62
63# ----- Routers -----
64
65begin routers
66
67client:
68 driver = accept
69 condition = ${if eq {SERVER}{server}{no}{yes}}
70 retry_use_local_part
71 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
72 {${if eq{$local_part}{norequire} {2} \
73 {${if eq{$local_part}{smtps} {4}{3}}} \
74 }}}
75
76server:
77 driver = redirect
78 data = :blackhole:
79 #retry_use_local_part
80 #transport = local_delivery
81
82
83# ----- Transports -----
84
85begin transports
86
87local_delivery:
88 driver = appendfile
89 file = DIR/test-mail/$local_part
90 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
91 user = CALLER
92
93# nostaple: deliberately do not request cert-status
94send_to_server1:
95 driver = smtp
96 allow_localhost
97 hosts = HOSTIPV4
98 port = PORT_D
99 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
100 tls_verify_cert_hostnames =
101 hosts_require_tls = *
102 hosts_request_ocsp = :
103 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
104 event_action = ${acl {logger}}
105
106# norequire: request stapling but do not verify
107send_to_server2:
108 driver = smtp
109 allow_localhost
110 hosts = HOSTIPV4
111 port = PORT_D
112 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
113 tls_verify_cert_hostnames =
114 hosts_require_tls = *
115# note no ocsp mention here
116 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
117 event_action = ${acl {logger}}
118
119# (any other name): request and verify
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/CA/CA.pem
127 tls_verify_cert_hostnames =
128 hosts_require_tls = *
129 hosts_require_ocsp = *
130 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
131 event_action = ${acl {logger}}
132
133# (any other name): request and verify, ssl-on-connect
134send_to_server4:
135 driver = smtp
136 allow_localhost
137 hosts = 127.0.0.1
138 port = PORT_D
139 helo_data = helo.data.changed
140 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
141 tls_verify_cert_hostnames =
142 protocol = smtps
143 hosts_require_tls = *
144 hosts_require_ocsp = *
145 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
146 event_action = ${acl {logger}}
147
148
149# ----- Retry -----
150
151
152begin retry
153
154* * F,5d,1s
155
156
157# End