Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 5402
1 # Exim test configuration 5402
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
11 acl_smtp_rcpt = acl_rcpt
12
13 # ----- ACLs -------
14
15 begin acl
16
17 acl_rcpt:
18 .ifdef OPT
19 warn control = cutthrough_delivery
20 .endif
21 accept verify = recipient/callout=use_sender
22
23
24 # ----- Routers -----
25
26 begin routers
27
28 all:
29 driver = manualroute
30 domains = ! +local_domains
31 route_list = * 127.0.0.1
32 self = send
33 transport = smtp
34 no_more
35
36
37 # ----- Transports -----
38
39 begin transports
40
41 smtp:
42 driver = smtp
43 interface = HOSTIPV4
44 port = PORT_S
45 hosts_try_fastopen = :
46
47
48 # End