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