Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 5700
1 # Exim test configuration 5700
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 acl_smtp_rcpt = accept
9 acl_smtp_data = accept
10
11 event_action = ${acl {logger}}
12
13
14 # ----- ACL -----
15
16 begin acl
17
18 .include DIR/aux-fixed/event-logger-acl
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 dump_bounces:
26   driver = redirect
27   senders = :
28   data = :blackhole:
29
30 others:
31   driver = manualroute
32   route_list = * 127.0.0.1 byname
33   self = send
34   transport = smtp
35   errors_to = ""
36   no_more
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 smtp:
44   driver = smtp
45   port = PORT_S
46   hosts_try_fastopen =  :
47   command_timeout = 1s
48   final_timeout = 1s
49   event_action =   ${acl {logger}}
50
51 # End