Testsuite: fix problem with parsing retry records spanning midnight.
[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
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16domainlist local_domains = test.ex : myhost.ex
17
18acl_smtp_rcpt = check_recipient$local_part
19sender_unqualified_hosts = +include_unknown: ^ten-1\\.test\\.ex
20LOG_SELECTOR
21
22# ------ ACL ------
23
24begin acl
25
26check_recipientx:
27 accept hosts = :
28 deny hosts = +include_unknown : ^ten-1\\.test\\.ex
29 accept domains = +local_domains
30 deny message = relay not permitted
31
32check_recipienty:
33 accept hosts = non.existent.invalid : V4NET.0.0.13
34 deny message = "Denied"
35
36check_recipientz:
37 accept hosts = +ignore_unknown : non.existent.invalid : V4NET.0.0.13
38 deny message = "Denied"
39
d52120f2
PH
40check_recipienta:
41 accept hosts = :
42 deny hosts = +include_defer : test.again.dns
43 accept domains = +local_domains
44 deny message = relay not permitted
45
46check_recipientb:
47 accept hosts = test.again.dns : V4NET.0.0.13
48 deny message = "Denied"
49
50check_recipientc:
51 accept hosts = +ignore_defer : test.again.dns : V4NET.0.0.13
52 deny message = "Denied"
53
afda344b 54# End