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