Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0574
CommitLineData
b0d68adc
JH
1# Exim test configuration 0574
2
3exim_path = EXIM_PATH
4keep_environment =
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/SERVER%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11tls_advertise_hosts =
12
13# ----- Main settings -----
14
15acl_smtp_mail = chk_mail
16acl_smtp_rcpt = chk_rcpt
17acl_smtp_data = chk_data
18
19queue_only
20
21# ----- ACL -----
22
23begin acl
24
25chk_mail:
26 accept control = debug/tag=_1
27
28chk_rcpt:
29 accept control = debug/kill
30
31chk_data:
32 accept control = debug/tag=_2/opts=+all
33
34# End