Testtsuite: portability
[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 hosts_try_fastopen = :
40 allow_localhost
41 connect_timeout = 999999s
42
43
44 # ----- Retry -----
45
46 begin retry
47
48 INSERT
49 #* timeout_dns F,1d,13s
50 * timeout_connect F,1d,1m
51 * timeout F,1d,2m
52 * auth_failed F,1d,10m
53 * * F,1d,3m
54
55
56 # End