Fix CVE-2016-1531
[exim.git] / test / confs / 2027
1 # Exim test configuration 2027
2
3 SERVER =
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = accept
17
18 queue_only
19 queue_run_in_order
20
21 tls_advertise_hosts = *
22 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
23 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
24 tls_try_verify_hosts = 127.0.0.1
25 tls_verify_hosts = HOSTIPV4
26 tls_verify_certificates = DIR/aux-fixed/cert1
27
28 # ----- Routers -----
29
30 begin routers
31
32 client:
33   driver = accept
34   condition = ${if eq {SERVER}{server}{no}{yes}}
35   retry_use_local_part
36   transport = send_to_server
37
38 server:
39   driver = accept
40   retry_use_local_part
41   transport = local_delivery
42
43
44 # ----- Transports -----
45
46 begin transports
47
48 local_delivery:
49   driver = appendfile
50   file = DIR/test-mail/$local_part
51   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
52   user = CALLER
53
54 send_to_server:
55   driver = smtp
56   allow_localhost
57   hosts = ${if eq{$local_part}{userx}{127.0.0.1}{HOSTIPV4}}
58   port = PORT_D
59
60 # End