Fix CVE-2016-1531
[exim.git] / test / confs / 2025
1 # Exim test configuration 2025
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = accept
18
19 log_selector =  +tls_peerdn+tls_certificate_verified
20
21 queue_only
22 queue_run_in_order
23
24 tls_advertise_hosts = *
25
26 tls_require_ciphers = ${if eq{$sender_host_address}{HOSTIPV4}\
27                       {IDEA-CBC-MD5}{!RSA_AES_256:DES-CBC3-SHA}}
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
35 # ----- Routers -----
36
37 begin routers
38
39 client:
40   driver = accept
41   condition = ${if eq {SERVER}{server}{no}{yes}}
42   retry_use_local_part
43   transport = send_to_server
44
45
46 # ----- Transports -----
47
48 begin transports
49
50 send_to_server:
51   driver = smtp
52   allow_localhost
53   hosts = HOSTIPV4 : 127.0.0.1
54   hosts_require_tls = HOSTIPV4
55   port = PORT_D
56
57
58 # ----- Retry -----
59
60
61 begin retry
62
63 * * F,5d,10s
64
65
66 # End