chiark / gitweb /
spam.m4: Rename X-SpamAssassin-* headers to X-Distorted-SpamAssassin-*.
[exim-config] / config.m4
1 ### -*-m4-*-
2 ###
3 ### Basic configuration settings 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 ## Master domain name.
25 DEFCONF(master_domain, distorted.org.uk)
26
27 ## List of home-system mail domain names.  This can be empty if we only
28 ## provide service for special-purpose domanis.
29 DEFCONF(sysdomains, CONF_master_domain)
30
31 ## The smarthost for satellite hosts.
32 DEFCONF(smarthost, mail.distorted.org.uk)
33
34 ## The user who runs verification filters.
35 DEFCONF(filter_user, Debian-exim)
36
37 ## Administrative groups.
38 DEFCONF(admin_groups, root : adm)
39 DEFCONF(trusted_groups, root : adm)
40
41 ## Where the spam filter is.
42 DEFCONF(spamd_address, 172.29.199.179)
43 DEFCONF(spamd_port, 783)
44
45 ## Default spam limit for incoming mail (multiplied by ten).
46 DEFCONF(spam_max, 50)
47
48 ## Userv stuff for debugging.
49 DEFCONF(userv_opts, )
50
51 ## Which interfaces to listen on.  Exim checks for the literal string `::0'
52 ## when setting things up: don't use `::', or we'll be tripped up by Linux's
53 ## demented non-`IPV6_V6ONLY' behaviour.
54 DEFCONF(interfaces, m4_ifelse(MODE, satellite, 127.0.0.1 ; ::1,
55                               0.0.0.0 ; ::0))
56
57 ## Main and submission port numbers.  (This is sometimes tweaked for
58 ## testing.)
59 DEFCONF(smtp_port, 25)
60 DEFCONF(submission_port, 587)
61
62 ## Locations of other configuration files.
63 DEFCONF(sysconf_dir, /etc/mail)
64 DEFCONF(userconf_dir, $home/.mail)
65 DEFCONF(alias_file, /etc/aliases)
66 DEFCONF(ca_dir, /etc/ca)
67
68 ## User address suffix handling.
69 DEFCONF(user_suffix_list, +* : -*)
70 DEFCONF(user_extaddr_fixup, ${sg {$local_part_suffix}{^[-+]}{}})
71
72 ## Other hosts allowed to relay mail through us.
73 DEFCONF(relay_clients, +trusted)
74
75 ## TLS-related settings.  We're assuming GNUTLS here, rather than OpenSSL.
76 ## For local connections we are very strict.  For random clients, we try
77 ## fairly hard to encourage any kind of crypto on the grounds that probably
78 ## nobody can verify our certificate anyway.
79 DEFCONF(good_ciphers, NONE<::>m4_dnl
80 :+VERS-TLS1.2:+VERS-TLS1.1:+VERS-TLS1.0<::>m4_dnl
81 :+DHE-RSA:+DHE-DSS<::>m4_dnl
82 :+AES-256-CBC:+AES-128-CBC<::>m4_dnl
83 :+SHA256:+SHA384:+SHA512:+SHA1<::>m4_dnl
84 :+SIGN-RSA-SHA512:+SIGN-RSA-SHA384:+SIGN-RSA-SHA256:+SIGN-DSA-SHA256<::>m4_dnl
85 :+CTYPE-X.509<::>m4_dnl
86 :+COMP-NULL<::>m4_dnl
87 )
88 DEFCONF(acceptable_ciphers, NORMAL<::>m4_dnl
89 :-MD5<::>m4_dnl
90 )
91
92 ###----- That's all, folks --------------------------------------------------