Fix CVE-2016-1531
[exim.git] / test / confs / 2119
1 # Exim test configuration 2119
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = check_recipient
15
16 log_selector = +tls_peerdn
17
18 queue_only
19 queue_run_in_order
20
21 tls_advertise_hosts = *
22
23 tls_certificate = DIR/aux-fixed/cert1
24 tls_privatekey = DIR/aux-fixed/cert1
25
26 tls_verify_hosts = HOSTIPV4
27 tls_verify_certificates = DIR/aux-fixed/cert2
28
29
30 # ------ ACL ------
31
32 begin acl
33
34 check_recipient:
35   accept  hosts = :
36   deny    hosts = HOSTIPV4
37          !encrypted = AES256-SHA:\
38                       AES256-GCM-SHA384:\
39                       AES128-GCM-SHA256:\
40                       IDEA-CBC-MD5:\
41                       DES-CBC3-SHA:\
42                       DHE-RSA-AES256-SHA:\
43                       DHE-RSA-AES256-GCM-SHA384:\
44                       DHE_RSA_AES_256_CBC_SHA1:\
45                       DHE_RSA_3DES_EDE_CBC_SHA:\
46                       ECDHE-RSA-AES256-GCM-SHA384:\
47                       ECDHE-RSA-AES128-GCM-SHA256
48   accept
49
50
51 # ----- Routers -----
52
53 begin routers
54
55 abc:
56   driver = accept
57   retry_use_local_part
58   transport = local_delivery
59
60
61 # ----- Transports -----
62
63 begin transports
64
65 local_delivery:
66   driver = appendfile
67   file = DIR/test-mail/$local_part
68   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
69   user = CALLER
70
71 # End