update to pre-4.87 master
[exim.git] / test / confs / 0157
CommitLineData
afda344b
PH
1# Exim test configuration 0157
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
bfe645c1 9tls_advertise_hosts =
afda344b
PH
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = check_recipient
14
15domainlist local_domains = test.ex
16hostlist relay_hosts = V4NET.0.0.1 : V4NET.0.0.2
17qualify_domain = test.ex
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 accept hosts = :
25 accept domains = +local_domains
26 accept hosts = V4NET.0.0.1
27 endpass
28 message = invalid sender
29 senders = userx@test.ex
30 accept hosts = +relay_hosts
31 deny message = relay not permitted
32
33# End