tidying
[exim.git] / test / confs / 5700
... / ...
CommitLineData
1# Exim test configuration 5700
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
20
21# ----- Routers -----
22
23begin routers
24
25dump_bounces:
26 driver = redirect
27 senders = :
28 data = :blackhole:
29
30others:
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
41begin transports
42
43smtp:
44 driver = smtp
45 port = PORT_S
46 command_timeout = 1s
47 final_timeout = 1s
48 event_action = ${acl {logger}}
49
50# End