Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0230
CommitLineData
afda344b
PH
1# Exim test configuration 0230
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# ----- Main settings -----
14
15domainlist local_domains = test.ex : *.test.ex
16acl_smtp_rcpt = check_recipient
17log_selector = \
18 +incoming_port \
19 +incoming_interface \
20 +smtp_connection
21queue_only
22queue_run_in_order
23
24
25# ----- ACL -----
26
27begin acl
28
29check_recipient:
30 accept hosts = :
31 accept domains = +local_domains
32 deny message = relay not permitted
33
34
35# ----- Routers -----
36
37begin routers
38
aeaf5db3
JH
39.ifdef RT
40to_server:
41 driver = manualroute
42 transport = remote
43 route_list = * 127.0.0.1
44 self = send
45.endif
46
afda344b
PH
47fail_remote_domains:
48 driver = redirect
49 domains = ! +local_domains
50 data = :fail: unrouteable mail domain "$domain"
51
52server:
53 driver = accept
54 retry_use_local_part
55 transport = local_delivery
56
57
58# ----- Transports -----
59
60begin transports
61
62local_delivery:
63 driver = appendfile
64 file = DIR/test-mail/$local_part
65 headers_add = Port: $sender_host_port
66 user = CALLER
67
aeaf5db3
JH
68remote:
69 driver = smtp
70 port = PORT_D
afda344b
PH
71
72# ----- Retry -----
73
74begin retry
75
76* * F,5d,10s
77
78# End