Fix CVE-2016-1531
[exim.git] / test / confs / 5820
1 # Exim test configuration 5800
2 # DANE
3
4 SERVER=
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 rfc1413_query_timeout = 0s
11 spool_directory = DIR/spool
12 log_file_path = DIR/spool/log/SERVER%slog
13 gecos_pattern = ""
14 gecos_name = CALLER_NAME
15
16 # ----- Main settings -----
17
18 acl_smtp_rcpt = accept
19
20 log_selector =  +tls_peerdn
21
22 queue_only
23 queue_run_in_order
24
25 tls_advertise_hosts = *
26 # needed to force generation
27 tls_dhparam = historic
28
29 # Set certificate only if server
30
31 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
32 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
33
34 #tls_verify_hosts = *
35 #tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
36
37
38 # ----- Routers -----
39
40 begin routers
41
42 client:
43   driver = accept
44   condition = ${if eq {SERVER}{server}{no}{yes}}
45   retry_use_local_part
46   transport = send_to_server
47
48 server:
49   driver = redirect
50   data = :blackhole:
51
52
53 # ----- Transports -----
54
55 begin transports
56
57 send_to_server:
58   driver = smtp
59   allow_localhost
60   hosts = 127.0.0.1
61   port = PORT_D
62 #  tls_certificate = DIR/aux-fixed/cert2
63 #  tls_privatekey = DIR/aux-fixed/cert2
64 #  tls_verify_certificates = DIR/aux-fixed/cert2
65
66
67 # ----- Retry -----
68
69
70 begin retry
71
72 * * F,5d,10s
73
74
75 # End