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