Merge branch 'master' into 4.next
[exim.git] / test / confs / 0447
1 # Exim test configuration 0447
2
3 INSERT=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9
10 # ----- Main settings -----
11
12 qualify_domain = test.ex
13
14 #----- Routers -----
15
16 begin routers
17
18 r0:
19 driver = dnslookup
20 domains = *.test.again.dns
21 transport = t1
22
23 r1:
24 driver = accept
25 transport = t1
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 # A connection timeout of 999999 turns connection refused into connection
33 # timeout when running in the test harness.
34
35 t1:
36 driver = smtp
37 hosts = 127.0.0.1
38 port = PORT_S
39 allow_localhost
40 connect_timeout = 999999s
41
42
43 # ----- Retry -----
44
45 begin retry
46
47 INSERT
48 #* timeout_dns F,1d,13s
49 * timeout_connect F,1d,1m
50 * timeout F,1d,2m
51 * auth_failed F,1d,10m
52 * * F,1d,3m
53
54
55 # End