Fix CVE-2016-1531
[exim.git] / test / confs / 0216
CommitLineData
afda344b
PH
1# Exim test configuration 0216
2
3SERVER=
4
5exim_path = EXIM_PATH
bc3c7bb7 6keep_environment =
afda344b
PH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
afda344b
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
23f3dc67 13tls_advertise_hosts =
afda344b
PH
14
15
16# ----- Main settings -----
17
18acl_smtp_rcpt = accept
19queue_only
20queue_run_in_order
21
22
23# ----- Routers -----
24
25begin routers
26
27client:
28 driver = accept
29 condition = ${if eq {SERVER}{server}{no}{yes}}
30 retry_use_local_part
31 transport = send_to_server
32
33
34# ----- Transports -----
35
36begin transports
37
38send_to_server:
39 driver = smtp
40 allow_localhost
41 hosts = 127.0.0.1
42 port = PORT_D
43 max_rcpt = 0
44
45
46# ----- Retry -----
47
48
49begin retry
50
51* * F,5d,10s
52
53
54# End