Testsuite: fix problem with parsing retry records spanning midnight.
[exim.git] / test / confs / 0552
1 # Exim test configuration 0552
2
3 DDF=
4 SERVER=
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 acl_not_smtp = check_not
18 acl_smtp_connect = check_connect
19 acl_smtp_rcpt = check_rcpt
20
21 queue_only
22
23 # ----- ACL -----
24
25 begin ACL
26
27 check_connect:
28 accept DDF
29
30 check_rcpt:
31 accept delay = 1s
32
33 check_not:
34 accept delay = 1s
35 logwrite = Accept non-SMTP
36
37
38 # ----- Routers -----
39
40 begin routers
41
42 r1:
43 driver = accept
44 transport = t1
45
46
47 # ----- Transports -----
48
49 begin transports
50
51 t1:
52 driver = smtp
53 port = PORT_D
54 hosts = 127.0.0.1
55 allow_localhost
56 command_timeout = 2s
57
58
59 # ----- Retry -----
60
61 begin retry
62
63 * * F,1d,1s
64
65
66 # End