Fix CVE-2016-1531
[exim.git] / test / confs / 0478
1 # Exim test configuration 0478
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/SERVER%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12 tls_advertise_hosts =
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = accept
17 deliver_drop_privilege
18
19
20 # ----- Routers -----
21
22 begin routers
23
24 r1:
25   driver = accept
26   transport = t1
27
28
29 # ----- Transports -----
30
31 begin transports
32
33 t1:
34   driver = smtp
35   port = PORT_D
36   hosts = ${if eq {$sender_host_address}{}{$local_part}{V4NET.0.0.2}}
37   allow_localhost
38   connect_timeout = 1s
39
40
41 # ----- Retry -----
42
43 begin retry
44
45 * *  F,1d,2h
46
47
48 # End