Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0216
CommitLineData
afda344b
PH
1# Exim test configuration 0216
2
3SERVER=
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/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = accept
17queue_only
18queue_run_in_order
19
20
21# ----- Routers -----
22
23begin routers
24
25client:
26 driver = accept
27 condition = ${if eq {SERVER}{server}{no}{yes}}
28 retry_use_local_part
29 transport = send_to_server
30
31
32# ----- Transports -----
33
34begin transports
35
36send_to_server:
37 driver = smtp
38 allow_localhost
39 hosts = 127.0.0.1
40 port = PORT_D
41 max_rcpt = 0
42
43
44# ----- Retry -----
45
46
47begin retry
48
49* * F,5d,10s
50
51
52# End