chiark / gitweb /
user-spam.m4: Fix indentation in the output.
[exim-config] / lists.m4
CommitLineData
185b5456
MW
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
24SECTION(global, lists)m4_dnl
25## Definitions for known networks.
26hostlist localnet = <; \
27 127.0.0.0/8 ; ::1
4ff4ad42
MW
28hostlist thishost = <; \
29 +localnet ; @[]
adf15c37 30hostlist foreign = <; \
adf15c37 31 212.13.198.76 ; 2001:ba8:0:1d9::1:1
185b5456 32hostlist border = <; \
adf15c37 33 ! +foreign ; \
185b5456
MW
34 62.49.204.144/28 ; 2001:470:1f09:1b98::/64 ; \
35 212.13.198.64/28 ; 2001:ba8:0:1d9::/64
36hostlist trusted = <; \
37 +localnet ; +border ; \
38 172.29.199.0/24 ; 2001:ba8:1d9::/49 ; 2001:470:9740::/49
39hostlist allnets = <; \
40 +localnet ; +border ; \
41 172.29.198.0/23 ; 2001:ba8:1d9::/48 ; 2001:470:9740::/48
42
43## Domains we're authoritative for.
44domainlist thishost = @ : @[] : \
45 ${map {${extract {${extract {1}{.}{$primary_hostname}}} \
46 { telecaster=tele \
47 stratocaster=strat }}} \
48 {$item.$qualify_domain}}
e913c999 49domainlist public = +thishost : CONF_sysdomains
185b5456 50
6d7af7e4
MW
51## All of the `standard' local parts which ought to be provided by a domain.
52localpartlist required = postmaster : abuse
53
185b5456
MW
54DIVERT(null)
55###----- That's all, folks --------------------------------------------------