Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0286
CommitLineData
afda344b
PH
1# Exim test configuration 0286
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13qualify_domain = test.ex
14queue_only
15remote_max_parallel = 2
16
17
18# ----- Routers -----
19
20begin routers
21
22bounces:
23 driver = redirect
24 senders = :
25 data = :blackhole:
26
27all:
28 driver = manualroute
29 route_list = * 127.0.0.1 byname
30 self = send
31 transport = smtp
32
33
34# ----- Transports -----
35
36begin transports
37
38smtp:
39 driver = smtp
40 port = PORT_S
41 max_rcpt = 2
42 connection_max_messages = 3
43
44
45# ----- Retry -----
46
47
48begin retry
49
50* * F,1h,10m
51
52
53# End