Fix CVE-2016-1531
[exim.git] / test / confs / 2103
1 # Exim test configuration 2103
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 rfc1413_query_timeout = 0s
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = check_recipient
16
17 queue_only
18 queue_run_in_order
19
20 tls_certificate = DIR/aux-fixed/cert1
21 tls_privatekey = DIR/aux-fixed/cert1
22
23 tls_advertise_hosts = *
24
25
26 # ------ ACL ------
27
28 begin acl
29
30 check_recipient:
31   deny   message = unacceptable cipher $tls_cipher
32         !encrypted = ${if eq {$sender_host_address}{HOSTIPV4}{IDEA-CBC-MD5}{*}}
33   accept
34
35
36 # ----- Routers -----
37
38 begin routers
39
40 abc:
41   driver = accept
42   retry_use_local_part
43   transport = local_delivery
44
45
46 # ----- Transports -----
47
48 begin transports
49
50 local_delivery:
51   driver = appendfile
52   file = DIR/test-mail/$local_part
53   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
54   user = CALLER
55
56
57 # ----- Retry -----
58
59
60 begin retry
61
62 * * F,5d,10s
63
64
65 # End