Testsuite: fix problem with parsing retry records spanning midnight.
[exim.git] / test / confs / 0227
CommitLineData
afda344b
PH
1# Exim test configuration 0227
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex
15
16acl_smtp_rcpt = check_recipient
17acl_smtp_data = check_data
18
19
20# ----- ACL -----
21
22begin acl
23
24check_recipient:
25 warn senders = ^uncheckable2@
26 control = no_multiline_responses
27 accept hosts = V4NET.0.0.4
28 deny hosts = V4NET.0.0.1
29 !verify = sender/callout=no_cache
30 deny hosts = V4NET.0.0.3
31 log_message = ($recipient_verify_failure)
32 !verify = recipient/callout=no_cache
33 deny hosts = V4NET.0.0.5
34 log_message = ($sender_verify_failure)
35 !verify = sender/callout=no_cache/check_postmaster
36 require verify = sender
37 accept domains = +local_domains
38 deny message = relay not permitted
39
40check_data:
41 deny hosts = V4NET.0.0.4
42 !verify = header_sender/callout=no_cache
43 accept
44
45
46# ----- Routers -----
47
48begin routers
49
50mxt3:
51 driver = dnslookup
52 domains = mxt3.test.ex
53 self = send
54 transport = smtp
55
56localhost1:
57 driver = manualroute
58 domains = localhost1
59 route_list = * 127.0.0.1 byname
60 self = send
61 transport = smtp
62 no_more
63
64lmtp:
65 driver = manualroute
66 domains = remote.lmtp
67 route_list = * 127.0.0.1
68 transport = lmtp
69 self = send
70
71all:
72 driver = manualroute
73 domains = ! +local_domains
74 route_list = * "127.0.0.1 : HOSTIPV4" byname
75 self = send
76 transport = smtp
77 no_more
78
79
80# ----- Transports -----
81
82begin transports
83
84smtp:
85 driver = smtp
86 port = PORT_S
87
88lmtp:
89 driver = smtp
90 port = PORT_S
91 protocol = lmtp
92
93
94# ----- Retry -----
95
96begin retry
97
98* * F,5d,10s
99
100
101# End