testsuite: abstract out common conf settings
[exim.git] / test / confs / 2132
1 # Exim test configuration 2132 (close copy of 2102)
2
3 .include DIR/aux-var/tls_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = check_recipient
10
11 log_selector = +tls_peerdn
12
13 queue_only
14 queue_run_in_order
15
16 tls_advertise_hosts = 127.0.0.1 : HOSTIPV4
17
18 tls_certificate = DIR/aux-fixed/exim-ca/example.com/server2.example.com/server2.example.com.pem
19 tls_privatekey = DIR/aux-fixed/exim-ca/example.com/server2.example.com/server2.example.com.unlocked.key
20
21 tls_verify_hosts = HOSTIPV4
22 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/certdir
23
24
25 # ------ ACL ------
26
27 begin acl
28
29 check_recipient:
30   accept  hosts = :
31   deny    hosts = HOSTIPV4
32          !encrypted = AES256-SHA : \
33                       AES256-GCM-SHA384 : \
34                       AES128-GCM-SHA256 : \
35                       IDEA-CBC-MD5 : \
36                       DES-CBC3-SHA : \
37                       DHE-RSA-AES256-SHA : \
38                       DHE-RSA-AES256-GCM-SHA384 : \
39                       DHE_RSA_AES_256_CBC_SHA1 : \
40                       DHE_RSA_3DES_EDE_CBC_SHA : \
41                       ECDHE-RSA-AES256-GCM-SHA384 : \
42                       ECDHE-RSA-AES128-GCM-SHA256
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
53 begin routers
54
55 abc:
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
64 begin transports
65
66 local_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