Fix CVE-2016-1531
[exim.git] / test / confs / 2110
CommitLineData
afda344b
PH
1# Exim test configuration 2110
2
3SERVER =
e97957bc 4HOSTS = 127.0.0.1 : HOSTIPV4
afda344b
PH
5
6exim_path = EXIM_PATH
bc3c7bb7 7keep_environment =
afda344b
PH
8host_lookup_order = bydns
9primary_hostname = myhost.test.ex
afda344b
PH
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
1a47b633
JH
17log_selector = +outgoing_port
18
afda344b
PH
19acl_smtp_rcpt = accept
20
21queue_only
22queue_run_in_order
23
24# Set certificate only if server
25
26tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
27tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
28
29tls_advertise_hosts = HOSTIPV4
30
31
32# ----- Routers -----
33
34begin routers
35
36client:
37 driver = accept
38 condition = ${if eq {SERVER}{server}{no}{yes}}
39 retry_use_local_part
40 transport = send_to_server
41
42
43# ----- Transports -----
44
45begin transports
46
47send_to_server:
48 driver = smtp
49 allow_localhost
e97957bc 50 hosts = HOSTS
afda344b
PH
51 hosts_require_tls = *
52 port = PORT_D
53
e97957bc
PH
54
55# ----- Retry -----
56
57begin retry
58
59* tls_required
60* * F,1d,5m
61
afda344b 62# End