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