Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 2032
CommitLineData
a7fec7a7
JH
1# Exim test configuration 2032 (close copy of 2002)
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
a7fec7a7
JH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = check_recipient
14
15log_selector = +tls_peerdn
16
17queue_only
18queue_run_in_order
19
20tls_advertise_hosts = 127.0.0.1 : HOSTIPV4
21
22tls_certificate = DIR/aux-fixed/exim-ca/example.com/server2.example.com/server2.example.com.pem
23tls_privatekey = DIR/aux-fixed/exim-ca/example.com/server2.example.com/server2.example.com.unlocked.key
24
25tls_verify_hosts = HOSTIPV4
26tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/certdir
27
28
29# ------ ACL ------
30
31begin acl
32
33check_recipient:
34 accept hosts = :
35 deny hosts = HOSTIPV4
36 !encrypted = AES256-SHA : \
37 AES256-GCM-SHA384 : \
38 IDEA-CBC-MD5 : \
39 DES-CBC3-SHA : \
40 DHE_RSA_AES_256_CBC_SHA1 : \
41 DHE_RSA_3DES_EDE_CBC_SHA : \
42 RSA_AES_256_CBC_SHA1
43 warn logwrite = ${if def:tls_in_ourcert \
44 {Our cert SN: <${certextract{subject}{$tls_in_ourcert}}>} \
45 {We did not present a cert}}
46 accept condition = ${if !def:tls_in_peercert}
47 logwrite = Peer did not present a cert
48 accept logwrite = SN <${certextract {subject} {$tls_in_peercert}}>
49
50
51# ----- Routers -----
52
53begin routers
54
55abc:
56 driver = accept
57 retry_use_local_part
58 transport = local_delivery
59 headers_add = tls-certificate-verified: $tls_certificate_verified
60
61
62# ----- Transports -----
63
64begin transports
65
66local_delivery:
67 driver = appendfile
68 file = DIR/test-mail/$local_part
69 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
70 user = CALLER
71
72# End