Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 0113
CommitLineData
afda344b
PH
1# Exim test configuration 0113
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8acl_smtp_rcpt = check_recipient
9acl_smtp_data = check_message
10
11domainlist local_domains = test.ex
12qualify_domain = test.ex
13
14
15# ----- Routers -----
16
17begin routers
18
19deliver:
20 driver = accept
21 condition = ${if eq{$original_local_part}{second}{yes}{no}}
22 retry_use_local_part
23 transport = appendfile
24
25first:
26 driver = redirect
27 no_check_local_user
28 file = DIR/aux-fixed/TESTNUM.forward
29 forbid_file
30 forbid_pipe
31 local_parts = first
32 one_time
33 retry_use_local_part
34
35second:
36 driver = redirect
37 allow_defer
38 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
39 retry_use_local_part
40
41
42# ----- Transports -----
43
44begin transports
45
46appendfile:
47 driver = appendfile
0d2e392e 48 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
49 user = CALLER
50
51
52# ----- Retry -----
53
54
55begin retry
56
57* * F,5d,1d
58
59
60# End