Docs: clarify downconversion of internationalized addresses
[exim.git] / test / confs / 0214
... / ...
CommitLineData
1# Exim test configuration 0214
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = check_recipient
10acl_smtp_data = check_message
11
12domainlist local_domains = test.ex
13
14
15# ----- ACL -----
16
17begin acl
18
19check_recipient:
20 accept hosts = :
21 accept domains = +local_domains
22 deny message = relay not permitted
23
24check_message:
25 require verify = header_syntax
26 accept
27
28
29# End