blob: 442f8e85e5ef753f77ab0917fc1c099d89149666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Exim test configuration 3202
.include DIR/aux-var/std_conf_prefix
primary_hostname = myhost.test.ex
# ----- Main settings -----
# Use first three components of address to select ACL
acl_smtp_rcpt = acl_${sg{${tr{$sender_host_address}{.}{_}}}{^(.*)_.*\$}{\$1}}
# ----- ACLs -----
begin acl
acl_1_1_1:
accept hosts = net-testdb;defer
acl_1_1_2:
deny domains = testdb;defer
acl_1_1_3:
require local_parts = testdb;defer
# End
|