Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 3208
CommitLineData
afda344b
PH
1# Exim test configuration 3208
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
7qualify_domain = test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
23f3dc67 12tls_advertise_hosts =
afda344b
PH
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = check_recipient
17
18domainlist local_domains = !*relay.ex : test.ex : testhack.ex : \
19 testhack2.ex : testdb;defer
20
21domainlist relay_domains = test.ex : testhack.ex : testhack2.ex : \
22 yesrelay.ex : testdb;defer
23
24percent_hack_domains = !*relay.ex : !test.ex : testhack.ex : testdb;defer
25
26
27# ----- ACL -----
28
29begin acl
30
31check_recipient:
32 # Exim 3 had no checking on -bs messages
33 accept hosts = :
34 accept domains = +local_domains
35 accept domains = +relay_domains
36 deny message = relay not permitted
37
38# End