Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 0069
CommitLineData
afda344b
PH
1# Exim test configuration 0069
2
3LOG_SELECTOR=
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/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
7da3cb7c
JH
15disable_ipv6 = true
16
afda344b
PH
17domainlist local_domains = test.ex : myhost.ex
18
19acl_smtp_rcpt = check_recipient$local_part
20sender_unqualified_hosts = +include_unknown: ^ten-1\\.test\\.ex
21LOG_SELECTOR
22
23# ------ ACL ------
24
25begin acl
26
27check_recipientx:
28 accept hosts = :
29 deny hosts = +include_unknown : ^ten-1\\.test\\.ex
30 accept domains = +local_domains
31 deny message = relay not permitted
32
33check_recipienty:
34 accept hosts = non.existent.invalid : V4NET.0.0.13
35 deny message = "Denied"
36
37check_recipientz:
38 accept hosts = +ignore_unknown : non.existent.invalid : V4NET.0.0.13
39 deny message = "Denied"
40
d52120f2
PH
41check_recipienta:
42 accept hosts = :
43 deny hosts = +include_defer : test.again.dns
44 accept domains = +local_domains
45 deny message = relay not permitted
46
47check_recipientb:
48 accept hosts = test.again.dns : V4NET.0.0.13
49 deny message = "Denied"
50
51check_recipientc:
52 accept hosts = +ignore_defer : test.again.dns : V4NET.0.0.13
53 deny message = "Denied"
54
afda344b 55# End