Fix CVE-2016-1531
[exim.git] / test / confs / 0216
1 # Exim test configuration 0216
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 tls_advertise_hosts =
14
15
16 # ----- Main settings -----
17
18 acl_smtp_rcpt = accept
19 queue_only
20 queue_run_in_order
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 client:
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
36 begin transports
37
38 send_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
49 begin retry
50
51 * * F,5d,10s
52
53
54 # End