Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 0531
1 # Exim test configuration 0531
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10 log_selector = +sender_on_delivery
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 bounces:
18 driver = accept
19 senders = :
20 transport = t1
21
22 smartuser:
23 driver = accept
24 retry_use_local_part
25 transport = lmtp
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 t1:
33 driver = appendfile
34 file = DIR/test-mail/${bless:$local_part}
35 user = CALLER
36
37 lmtp:
38 driver = smtp
39 allow_localhost
40 hosts = 127.0.0.1
41 port = PORT_S
42 hosts_try_fastopen = :
43 protocol = LMTP
44
45
46 # ----- Retry -----
47
48
49 begin retry
50
51 retry.test.ex * F,1s,1s
52
53
54 # End