Fix CVE-2016-1531
[exim.git] / test / confs / 0447
1 # Exim test configuration 0447
2
3 INSERT=
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/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14
15 # ----- Main settings -----
16
17 qualify_domain = test.ex
18
19 #----- Routers -----
20
21 begin routers
22
23 r0:
24   driver = dnslookup
25   domains = *.test.again.dns
26   transport = t1
27
28 r1:
29   driver = accept
30   transport = t1
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 # A connection timeout of 999999 turns connection refused into connection
38 # timeout when running in the test harness.
39
40 t1:
41   driver = smtp
42   hosts = 127.0.0.1
43   port = PORT_S
44   allow_localhost
45   connect_timeout = 999999s
46
47
48 # ----- Retry -----
49
50 begin retry
51
52 INSERT
53 #* timeout_dns     F,1d,13s
54 * timeout_connect F,1d,1m
55 * timeout         F,1d,2m
56 * auth_failed     F,1d,10m
57 * *               F,1d,3m
58
59
60 # End