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