Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0157
CommitLineData
afda344b
PH
1# Exim test configuration 0157
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
12acl_smtp_rcpt = check_recipient
13
14domainlist local_domains = test.ex
15hostlist relay_hosts = V4NET.0.0.1 : V4NET.0.0.2
16qualify_domain = test.ex
17
18# ----- ACL -----
19
20begin acl
21
22check_recipient:
23 accept hosts = :
24 accept domains = +local_domains
25 accept hosts = V4NET.0.0.1
26 endpass
27 message = invalid sender
28 senders = userx@test.ex
29 accept hosts = +relay_hosts
30 deny message = relay not permitted
31
32# End