Fix CVE-2016-1531
[exim.git] / test / confs / 0455
1 # Exim test configuration 0455
2
3 HOSTS_MAX_TRY=4
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/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12 tls_advertise_hosts =
13
14 # ----- Main settings -----
15
16 acl_not_smtp = non
17
18 ignore_bounce_errors_after = 0s
19 qualify_domain = test.ex
20 disable_ipv6
21
22
23 # ----- ACLs -----
24
25 begin acl
26
27 non:
28   warn senders = :
29        control = queue_only
30   accept
31
32
33 # ----- Routers -----
34
35 begin routers
36
37 r1:
38   driver = dnslookup
39   transport = smtp
40
41
42 # ----- Transports -----
43
44 begin transports
45
46 smtp:
47   driver = smtp
48   connect_timeout = 1s
49   hosts_max_try = HOSTS_MAX_TRY
50
51
52 # ----- Retry -----
53
54 begin retry
55
56 *                *  F,2s,1s
57
58 # End