Pull strict-aliasing fix for sockaddr_46.
[exim.git] / test / confs / 2014
CommitLineData
afda344b
PH
1# Exim test configuration 2014
2
3CRL=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = check_recipient
17
18log_selector = +tls_peerdn
19
20queue_only
21queue_run_in_order
22
23tls_advertise_hosts = *
24
25tls_certificate = DIR/aux-fixed/cert1
26tls_privatekey = DIR/aux-fixed/cert1
27
28tls_verify_hosts = HOSTIPV4
29tls_try_verify_hosts = *
30tls_verify_certificates = DIR/aux-fixed/cert2
31tls_crl = CRL
32
33
34# ------ ACL ------
35
36begin acl
37
38check_recipient:
39 deny message = certificate not verified: peerdn=$tls_peerdn
40 ! verify = certificate
41 accept
42
43
44# ----- Routers -----
45
46begin routers
47
48abc:
49 driver = accept
50 retry_use_local_part
51 transport = local_delivery
52
53
54# ----- Transports -----
55
56begin transports
57
58local_delivery:
59 driver = appendfile
60 file = DIR/test-mail/$local_part
61 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
62 user = CALLER
63
64# End