Testsuite: fix problem with parsing retry records spanning midnight.
[exim.git] / test / confs / 0306
CommitLineData
afda344b
PH
1# Exim test configuration 0306
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
14acl_smtp_rcpt = rcpt
15trusted_users = CALLER
16
17
18# ------ ACLs ------
19
20begin acl
21
22rcpt:
23 accept endpass
24 verify = recipient
25
26
27# ------ Routers ------
28
29begin routers
30
31r1:
32 driver = redirect
33 domains = lists.test.ex
34 local_part_suffix = -request
35 file = DIR/aux-fixed/TESTNUM/$local_part$local_part_suffix
36
37r2:
38 driver = redirect
39 domains = lists.test.ex
40 senders = ${if exists {DIR/aux-fixed/TESTNUM/$local_part}\
41 {lsearch;DIR/aux-fixed/TESTNUM/$local_part}{*}}
42 file = DIR/aux-fixed/TESTNUM/$local_part
43 forbid_pipe
44 forbid_file
45 one_time
46 skip_syntax_errors
47 errors_to = $local_part-request@lists.test.ex
48 syntax_errors_to = $local_part-request@lists.test.ex
49
50r3:
51 driver = redirect
52 domains = lists.test.ex
53 allow_fail
54 data = :fail: $local_part@lists.test.ex is a closed mailing list
55
56r4:
57 driver = accept
58 senders = :
59 transport = t1
60
61r5:
62 driver = accept
63 transport = t2
64
65
66# ------ Transports ------
67
68begin transports
69
70t1:
71 driver = appendfile
72 file = DIR/test-mail/$local_part
73 user = CALLER
74
75t2:
76 driver = appendfile
77 file = /dev/null
78 user = CALLER
79
80# End