Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0604
CommitLineData
a39bd74d
JB
1# Exim test configuration 0604
2# Send many messages in hopes of tripping continuation records code
3
4hostlist loopback = <; 127.0.0.0/8 ; 0.0.0.0 ; ::1 ; 0000:0000:0000:0000:0000:ffff
5untrusted_set_sender = *
6
7SERVER =
8
9exim_path = EXIM_PATH
10host_lookup_order = bydns
11#primary_hostname = myhost.test.ex
12rfc1413_query_timeout = 0s
13spool_directory = DIR/spool
14log_file_path = DIR/spool/log/SERVER%slog
15log_selector = +sender_on_delivery
16gecos_pattern = ""
17gecos_name = CALLER_NAME
18
19# ----- Main settings -----
20
21acl_smtp_rcpt = accept
22
23queue_only
24queue_run_in_order
25
26# ----- Routers -----
27
28begin routers
29
30client:
31 driver = accept
32 condition = ${if eq {SERVER}{server}{no}{yes}}
33 transport = send_to_server
34
35server:
36 driver = accept
37 transport = send_to_server
38
39
40# ----- Transports -----
41
42begin transports
43
44send_to_server:
45 driver = smtp
46 connection_max_messages = 0
47 allow_localhost
48 hosts = 127.0.0.1
49 port = PORT_D
50 interface = ${if eq {$sender_address_domain}{dustybelt.tld} {127.0.0.1}{127.0.0.2}}
51
52# ----- Retry -----
53
54begin retry
55
56* * F,5d,10s
57
58# End
59