Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 0342
... / ...
CommitLineData
1# Exim test configuration 0342
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = check_rcpt
10
11
12# ----- ACLs -----
13
14begin acl
15
16check_rcpt:
17 deny message = unverifiable
18 !verify = recipient
19 accept
20
21
22# ----- Routers -----
23
24begin routers
25
26dnslookup:
27 driver = dnslookup
28 transport = remote_smtp
29 widen_domains = test.ex
30
31
32# ----- Transports -----
33
34begin transports
35
36remote_smtp:
37 driver = smtp
38 hosts_try_fastopen = :
39
40
41# ----- Retry -----
42
43
44begin retry
45
46* * F,5d,10s
47
48
49# End