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
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = accept
18 queue_only
19 queue_run_in_order
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 client:
27   driver = accept
28   condition = ${if eq {SERVER}{server}{no}{yes}}
29   retry_use_local_part
30   transport = send_to_server
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 send_to_server:
38   driver = smtp
39   allow_localhost
40   hosts = 127.0.0.1
41   port = PORT_D
42   max_rcpt = 0
43
44
45 # ----- Retry -----
46
47
48 begin retry
49
50 * * F,5d,10s
51
52
53 # End