vhost.m4: Rename `route' to `virtual_route'.
[exim-config] / lists.m4
1 ### -*-m4-*-
2 ###
3 ### Lists of addresses and suchlike for distorted.org.uk Exim configuration
4 ###
5 ### (c) 2012 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This program is free software; you can redistribute it and/or modify
11 ### it under the terms of the GNU General Public License as published by
12 ### the Free Software Foundation; either version 2 of the License, or
13 ### (at your option) any later version.
14 ###
15 ### This program is distributed in the hope that it will be useful,
16 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ### GNU General Public License for more details.
19 ###
20 ### You should have received a copy of the GNU General Public License
21 ### along with this program; if not, write to the Free Software Foundation,
22 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 SECTION(global, lists)m4_dnl
25 ## Definitions for known networks.
26 hostlist localnet = <; \
27 127.0.0.0/8 ; ::1
28 hostlist border = <; \
29 62.49.204.144/28 ; 2001:470:1f09:1b98::/64 ; \
30 212.13.198.64/28 ; 2001:ba8:0:1d9::/64
31 hostlist trusted = <; \
32 +localnet ; +border ; \
33 172.29.199.0/24 ; 2001:ba8:1d9::/49 ; 2001:470:9740::/49
34 hostlist allnets = <; \
35 +localnet ; +border ; \
36 172.29.198.0/23 ; 2001:ba8:1d9::/48 ; 2001:470:9740::/48
37
38 ## Domains we're authoritative for.
39 domainlist thishost = @ : @[] : \
40 ${map {${extract {${extract {1}{.}{$primary_hostname}}} \
41 { telecaster=tele \
42 stratocaster=strat }}} \
43 {$item.$qualify_domain}}
44 domainlist public = +thishost : distorted.org.uk
45 domainlist known = +public : \
46 ${if exists{CONF_sysconf_dir/domains.conf} \
47 {partial0-lsearch; CONF_sysconf_dir/domains.conf} \
48 {}}
49
50 ## Some magic lists used because `match_local_parts' and friends don't expand
51 ## their right-hand sides.
52 localpartlist dom_users = ${expand:KV(users, {$value}{*})}
53 localpartlist dom_locals = ${expand:KV(locals, {$value}{+user_extaddr})}
54 localpartlist user_extaddr = ^CONF_user_extaddr_regexp
55 addresslist user_extaddr = ^CONF_user_extaddr_regexp
56
57 DIVERT(null)
58 ###----- That's all, folks --------------------------------------------------