Early-pipe: invalidate cache on a failure of required-auth
[exim.git] / test / confs / 5410
CommitLineData
99400968 1# Exim test configuration 5410
4ed8d31a 2
d4dc049f
JH
3.include DIR/aux-var/tls_conf_prefix
4
4ed8d31a 5primary_hostname = myhost.test.ex
4ed8d31a
JH
6
7# ----- Main settings -----
8
9log_selector = +smtp_confirmation
10tls_advertise_hosts = *
11tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
12
13domainlist local_domains = test.ex : *.test.ex
14
15acl_smtp_rcpt = ${if eq {SERVER}{server}{queue}{cutthrough}}
16
17# ----- ACLs -------
18
19begin acl
20
21cutthrough:
22 accept control = cutthrough_delivery
23 verify = recipient
24
25queue:
26 accept control = queue_only
27
28# ----- Routers -----
29
30begin routers
31
32all:
33 driver = manualroute
34 domains = ! +local_domains
35 route_list = * 127.0.0.1
36 self = send
37 address_data = $local_part
38 transport = smtp
39 no_more
40
41
42# ----- Transports -----
43
44begin transports
45
46smtp:
47 driver = smtp
48 interface = HOSTIPV4
49 port = PORT_D
277b9979 50 hosts_try_fastopen = :
99400968
JH
51 hosts_avoid_tls = ${if eq {$address_data}{usery}{*}{:}}
52 hosts_verify_avoid_tls = ${if eq {$address_data}{userz}{*}{:}}
610ff438 53 tls_try_verify_hosts = :
4ed8d31a
JH
54
55
56# End