Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 5003
1 # Exim test configuration 5003
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 qualify_domain = test.ex
9
10
11 # ----- Routers -----
12
13 begin routers
14
15 all:
16 driver = accept
17 retry_use_local_part
18 transport = local_delivery${if eq{$local_part}{dir3}{2}}
19
20
21 # ----- Transports -----
22
23 begin transports
24
25 local_delivery:
26 driver = appendfile
27 directory = DIR/test-mail/${bless:$local_part}
28 maildir_format
29 quota = 1.5K
30 user = CALLER
31
32 local_delivery2:
33 driver = appendfile
34 directory = DIR/test-mail/${bless:$local_part}/
35 maildir_format
36 quota = 1.5K
37 user = CALLER
38
39
40 # ----- Retry -----
41
42
43 begin retry
44
45 * * F,5d,1d
46
47
48 # End