Testsuite: unbreak testcase
[exim.git] / test / confs / 0251
CommitLineData
afda344b
PH
1# Exim test configuration 0251
2
3SERVER =
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = check_recipient
12
13domainlist local_domains = test.ex : *.test.ex
14
15# ----- ACL -----
16
17begin acl
18
19check_recipient:
20 deny message = unrouteable address
21 !verify = recipient
22 accept domains = +local_domains
23 deny message = relay not permitted
24
25
26# ----- Routers -----
27
28begin routers
29
30exeter_listr:
31 driver = redirect
32 no_check_local_user
33 domains = listr.test.ex
34 errors_to = ${local_part}-request@test.ex
7d99cba1 35 file = DIR/aux-fixed/TESTNUM.list.${bless:$local_part}
afda344b
PH
36 forbid_file
37 forbid_pipe
38 one_time
39 require_files = DIR/aux-fixed/TESTNUM.restrict.${local_part}
40 retry_use_local_part
41 senders = ${if exists{DIR/aux-fixed/TESTNUM.restrict.${local_part}} \
ba74fb8d 42 {${bless:DIR/aux-fixed/TESTNUM.restrict.${local_part}}}{zzzz}}
afda344b
PH
43 syntax_errors_to = ${local_part}-request@test.ex
44
45exeter_listf:
46 driver = accept
47 domains = listr.test.ex
48 no_more
49 retry_use_local_part
50 transport = not_allowed
51
52
53# ----- Transports -----
54
55begin transports
56
57not_allowed:
58 driver = autoreply
59
60
61# ----- Retry -----
62
63
64begin retry
65
66* * F,5d,10s
67
68
69# End