Certificate-related routines only present when TLS is supported
[exim.git] / test / confs / 5600
CommitLineData
f5d78688
JH
1# Exim test configuration 5600
2# OCSP stapling, server
3
4CRL=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = server1.example.com
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
44662487
JH
17acl_smtp_connect = check_connect
18acl_smtp_mail = check_mail
f5d78688
JH
19acl_smtp_rcpt = check_recipient
20
21log_selector = +tls_peerdn
22
23queue_only
24queue_run_in_order
25
26tls_advertise_hosts = *
27
28tls_certificate = DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.pem
29tls_privatekey = DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key
30
31tls_verify_hosts = HOSTIPV4
32tls_try_verify_hosts = *
33tls_verify_certificates = DIR/aux-fixed/cert2
34tls_crl = CRL
35tls_ocsp_file = OCSP
36
37
38# ------ ACL ------
39
40begin acl
41
44662487
JH
42check_connect:
43 accept logwrite = acl_conn: ocsp in status: $tls_in_ocsp
44
45check_mail:
46 accept logwrite = acl_mail: ocsp in status: $tls_in_ocsp
47
f5d78688
JH
48check_recipient:
49 deny message = certificate not verified: peerdn=$tls_peerdn
50 ! verify = certificate
51 accept
52
53
54# ----- Routers -----
55
56begin routers
57
58abc:
59 driver = accept
60 retry_use_local_part
61 transport = local_delivery
62
63
64# ----- Transports -----
65
66begin transports
67
68local_delivery:
69 driver = appendfile
70 file = DIR/test-mail/$local_part
71 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
72 user = CALLER
73
74# End