Testsuite: fix problem with parsing retry records spanning midnight.
[exim.git] / test / confs / 0417
CommitLineData
afda344b
PH
1# Exim test configuration 0417
2
3RETURN_ERROR_DETAILS = false
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7rfc1413_query_timeout = 0s
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15primary_hostname = mail.test.ex
16qualify_domain = test.ex
17
18acl_smtp_rcpt = rcpt
19smtp_return_error_details = RETURN_ERROR_DETAILS
20
21
22# ----- ACLs -----
23
24begin acl
25
26rcpt:
27 require verify = sender
28
29
30# ----- Routers -----
31
32begin routers
33
34r1:
35 driver = dnslookup
36 transport = t1
37
38
39# ----- Transports -----
40
41begin transports
42
43t1:
44 driver = smtp
45
46# End