Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0130
CommitLineData
afda344b
PH
1# Exim test configuration 0130
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12
13acl_smtp_rcpt = check_recipient
14
15domainlist local_domains = test.ex
16hostlist relay_hosts = V4NET.0.0.0
17qualify_domain = test.ex
18
19
20# ----- ACL -----
21
22begin acl
23
24check_recipient:
25 deny message = unrouteable address
26 !verify = recipient
27 accept domains = +local_domains
28 accept hosts = +relay_hosts
29 deny message = relay not permitted
30
31
32# ----- Routers -----
33
34begin routers
35
36islocal:
37 driver = manualroute
38 domains = ! +local_domains
39 route_list = "* localhost byname"
40 transport = smtp
41 no_more
42
43
44# ----- Transports -----
45
46begin transports
47
48smtp:
49 driver = smtp
50
51
52# ----- Retry -----
53
54
55begin retry
56
57* * F,1d,15m
58
59
60# End