Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 0461
1 # Exim test configuration 0461
2
3 FALLBACK=fallback_hosts = 127.0.0.1
4 ROUTE_DATA=V4NET.0.0.1
5 RETRY1=1s
6 RETRY2=2s
7
8 .include DIR/aux-var/std_conf_prefix
9
10 primary_hostname = myhost.test.ex
11
12
13 # ----- Main settings -----
14
15 qualify_domain = test.ex
16
17
18 # ----- Routers -----
19
20 begin routers
21
22 r0:
23 driver = accept
24 senders = :
25 transport = t2
26
27 r1:
28 driver = manualroute
29 route_data = ROUTE_DATA
30 transport = t1
31 FALLBACK
32
33 # ----- Transports -----
34
35 begin transports
36
37 t1:
38 driver = smtp
39 port = PORT_S
40 hosts_try_fastopen = :
41 connect_timeout = 1s
42 allow_localhost
43
44 t2:
45 driver = appendfile
46 file = DIR/test-mail/${bless:$local_part}
47 user = CALLER
48
49
50 # ----- Retry -----
51
52 begin retry
53
54 V4NET.0.0.1 * F,1s,RETRY1
55 V4NET.0.0.2 * F,1s,RETRY2
56 * * F,1d,1s
57
58
59 # End