Don't issue env warning if env is empty
[exim.git] / test / confs / 0056
... / ...
CommitLineData
1# Exim test configuration 0056
2
3exim_path = EXIM_PATH
4keep_environment =
5host_lookup_order = bydns
6primary_hostname = myhost.ex
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11tls_advertise_hosts =
12
13# ----- Main settings -----
14
15domainlist local_domains = test.ex : myhost.ex
16domainlist relay_domains = *
17
18acl_smtp_rcpt = check_recipient
19
20
21# ------ ACL ------
22
23begin acl
24
25check_recipient:
26 accept domains = +local_domains
27 accept domains = +relay_domains
28 deny message = relay not permitted
29
30# End