More new test committing.
[exim.git] / test / confs / 0447
CommitLineData
afda344b
PH
1# Exim test configuration 0447
2
3INSERT=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14
15# ----- Main settings -----
16
17qualify_domain = test.ex
18
19#----- Routers -----
20
21begin routers
22
23r0:
24 driver = dnslookup
25 domains = *.test.again.dns
26 transport = t1
27
28r1:
29 driver = accept
30 transport = t1
31
32
33# ----- Transports -----
34
35begin transports
36
37# A connection timeout of 999999 turns connection refused into connection
38# timeout when running in the test harness.
39
40t1:
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
50begin retry
51
52INSERT
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