Add caseless option to verify=not_blind. Bug 2356
[exim.git] / test / confs / 5707
CommitLineData
95938464
JH
1# Exim test configuration 5707
2
3.include DIR/aux-var/std_conf_prefix
4
5
6# ----- Main settings -----
7
8acl_smtp_rcpt = accept
9acl_smtp_data = accept
10
11event_action = ${acl {logger}}
12
13
14# ----- ACL -----
15
16begin acl
17
18.include DIR/aux-fixed/event-logger-acl
19
20conn_deny:
21 accept !condition = ${if eq {tcp:connect}{$event_name}}
22 deny logwrite = Denying tcp connection
23 message = deny
24
25# ----- Routers -----
26
27begin routers
28
29dump_bounces:
30 driver = redirect
31 senders = :
32 data = :blackhole:
33
34others:
35 driver = manualroute
36 route_list = * 127.0.0.1 byname
37 self = send
38 transport = smtp
39 errors_to = ""
40 no_more
41
42
43# ----- Transports -----
44
45begin transports
46
47smtp:
48 driver = smtp
49 port = PORT_S
50 event_action = ${acl {conn_deny}}
51
52# ----- Retry -----
53begin retry
54* * F,5d,10s
55
56# End