Merge branch 'master'
[exim.git] / test / confs / 0091
CommitLineData
afda344b
PH
1# Exim test configuration 0091
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = check_recipient
16acl_smtp_data = check_message
17domainlist local_domains = test.ex : *.test.ex
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 deny hosts = ! V4NET.0.0.1
25 !verify = sender
26 accept domains = +local_domains
27 deny message = relay not permitted
28
29check_message:
30 require verify = header_sender
31 accept
32
33
34# ----- Routers -----
35
36begin routers
37
38localuser:
39 driver = accept
40 local_parts = userx
41 verify_only
42
43
44# End