lists.m4: Update the IP address lists following server move.
[exim-config] / base.m4
CommitLineData
185b5456
MW
1### -*-m4-*-
2###
3### Basic 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###--------------------------------------------------------------------------
25### Global settings.
26
27SECTION(global, priv)m4_dnl
b1d083dd 28admin_groups = CONF_admin_groups
e8fc7835 29trusted_groups = CONF_trusted_groups
185b5456
MW
30prod_requires_admin = false
31
32SECTION(global, logging)m4_dnl
33log_file_path = : syslog
34log_selector = \
35 +smtp_confirmation \
36 +tls_peerdn
37log_timezone = true
38syslog_duplication = false
39syslog_timestamp = false
40
41SECTION(global, daemon)m4_dnl
42local_interfaces = <; CONF_interfaces
ad4e4191 43extra_local_interfaces = <; 0.0.0.0 ; ::0
185b5456
MW
44
45SECTION(global, resource)m4_dnl
46deliver_queue_load_max = 8
5ac82fb4 47message_size_limit = 500M
185b5456
MW
48queue_only_load = 12
49smtp_accept_max = 16
50smtp_accept_queue = 32
51smtp_accept_reserve = 4
52smtp_load_reserve = 10
53smtp_reserve_hosts = +trusted
54
55SECTION(global, policy)m4_dnl
56host_lookup = *
57
58SECTION(global, users)m4_dnl
59gecos_name = $1
60gecos_pattern = ([^,:]*)
61
62SECTION(global, incoming)m4_dnl
ceb81bc4
MW
63rfc1413_hosts = *
64rfc1413_query_timeout = 10s
185b5456 65received_header_text = Received: \
2cf9db84 66 ${if def:sender_rcvhost \
9384ef4f 67 {from $sender_rcvhost\n\t} \
2cf9db84
MW
68 {${if def:sender_ident \
69 {from ${quote_local_part:$sender_ident} }}}}\
185b5456 70 by $primary_hostname \
b92689d6
MW
71 (Exim $version_number)\
72 ${if def:tls_cipher {\n\t} { }}\
185b5456
MW
73 ${if def:received_protocol \
74 {with $received_protocol \
b92689d6 75 ${if def:tls_cipher {(cipher=$tls_cipher)}}}}\n\t\
185b5456 76 ${if def:sender_address \
43e6fc69 77 {(envelope-from $sender_address\
185b5456 78 ${if def:authenticated_id \
8fa6a843
MW
79 {; auth=${quote_local_part:$authenticated_id}} \
80 {${if and {{def:authenticated_sender} \
81 {match_address{$authenticated_sender} \
82 {*@CONF_master_domain}}} \
83 {; auth=${quote_local_part:\
84 ${local_part:\
85 $authenticated_sender}}}}}})\n\t}}\
185b5456
MW
86 id $message_exim_id\
87 ${if def:received_for {\n\tfor $received_for}}
88
89SECTION(global, smtp)m4_dnl
90smtp_return_error_details = true
91accept_8bitmime = true
e3c9c427 92chunking_advertise_hosts =
185b5456 93
5918499b
MW
94SECTION(global, env)m4_dnl
95keep_environment =
96
185b5456
MW
97SECTION(global, process)m4_dnl
98extract_addresses_remove_arguments = false
99headers_charset = utf-8
100qualify_domain = CONF_master_domain
12d3b444 101untrusted_set_sender = *
75c86bd1
MW
102local_from_check = false
103local_sender_retain = true
185b5456
MW
104
105SECTION(global, bounce)m4_dnl
106delay_warning = 1h : 24h : 2d
107
6aae076f 108SECTION(global, tls)m4_dnl
1dda4df9 109tls_certificate = CONF_certlist
6aae076f
MW
110tls_privatekey = CONF_sysconf_dir/server.key
111tls_advertise_hosts = ${if exists {CONF_sysconf_dir/server.key} {*}{}}
112tls_dhparam = CONF_ca_dir/dh-param-2048.pem
113tls_require_ciphers = ${if or {{={$received_port}{CONF_submission_port}} \
114 {match_ip {$sender_host_address}{+trusted}}} \
115 {CONF_good_ciphers} \
116 {CONF_acceptable_ciphers}}
117tls_verify_certificates = CONF_ca_dir/ca.cert
118tls_verify_hosts = ${if eq{$acl_c_mode}{submission} {} {+allnets}}
119
185b5456
MW
120DIVERT(null)
121###--------------------------------------------------------------------------
122### Access control lists.
123
124SECTION(global, acl-after)
125SECTION(global, acl)m4_dnl
126acl_smtp_helo = helo
127SECTION(acl, misc)m4_dnl
128helo:
a891f462
MW
129 ## Don't worry if this is local submission. MUAs won't necessarily
130 ## have a clear idea of their hostnames. (For some reason.)
131 accept condition = ${if !eq{$acl_c_mode}{submission}}
132
fe8f2338
MW
133 ## Check that the caller's claimed identity is actually plausible.
134 ## This seems like it's a fairly effective filter on spamminess, but
135 ## it's too blunt a tool. Rather than reject, add a warning header.
136 ## Only we can't do this the easy way, so save it up for use in MAIL.
137 ## Also, we're liable to get a subsequent HELO (e.g., after STARTTLS)
138 ## and we should only care about the most recent one.
139 warn set acl_c_helo_warning = false
140 !condition = \
4ff4ad42
MW
141 ${if and {{match_ip {$sender_host_address} \
142 {<; 127.0.0.0/8 ; ::1}} \
143 {match_domain {$sender_helo_name} \
144 {localhost : +thishost}}}}
145 !condition = \
fe8f2338
MW
146 ${if exists {CONF_sysconf_dir/helo.conf} \
147 {${lookup {$sender_helo_name} \
148 partial0-lsearch \
149 {CONF_sysconf_dir/helo.conf} \
150 {${if match_ip \
151 {$sender_host_address} \
4587a704 152 {<; $value}}}}}}
fe8f2338
MW
153 !verify = helo
154 set acl_c_helo_warning = true
185b5456
MW
155
156 accept
157
158SECTION(global, acl)m4_dnl
284c9d7e
MW
159acl_not_smtp_start = not_smtp_start
160SECTION(acl, misc)m4_dnl
161not_smtp_start:
162 ## Record the user's name.
163 warn set acl_c_user = $sender_ident
e9015968 164 set acl_m_user = $sender_ident
284c9d7e
MW
165
166 ## Done.
167 accept
168
169SECTION(global, acl)m4_dnl
185b5456
MW
170acl_smtp_mail = mail
171SECTION(acl, mail)m4_dnl
172mail:
173
fe8f2338 174 ## If we stashed a warning header about HELO from earlier, we should
2f0841ce
MW
175 ## add it now. Only don't bother if the client has authenticated
176 ## successfully for submission (because we can't expect mobile
177 ## clients to be properly set up knowing their names), or it's one of
178 ## our own satellites (because they're either properly set up anyway,
179 ## or satellites using us as a smarthost).
fe8f2338 180 warn condition = $acl_c_helo_warning
2f0841ce
MW
181 !condition = ${if eq{$acl_c_mode}{submission}}
182 !hosts = +allnets
61295d9c
MW
183 WARNING_HEADER(BADHELO,
184 <:Client's HELO doesn't match its IP address.\n\t\
185 helo-name=$sender_helo_name \
186 address=$sender_host_address:>)
fe8f2338 187
185b5456
MW
188 ## Always allow the empty sender, so that we can receive bounces.
189 accept senders = :
190
5051a30f
MW
191 ## Ensure that the sender looks valid.
192 require acl = mail_check_sender
185b5456
MW
193
194 ## If this is directly from a client then hack on it for a while.
195 warn condition = ${if eq{$acl_c_mode}{submission}}
12d3b444 196 control = submission/sender_retain
185b5456 197
284c9d7e
MW
198 ## Insist that a local client connect through TLS.
199 deny message = Hosts within CONF_master_domain must use TLS
200 !condition = ${if eq{$acl_c_mode}{submission}}
201 hosts = +allnets
202 !encrypted = *
203
204 ## Check that a submitted message's sender address is allowable.
205 require acl = mail_check_auth
206
185b5456
MW
207SECTION(acl, mail-tail)m4_dnl
208 ## And we're done.
209 accept
210
5051a30f
MW
211SECTION(acl, misc)m4_dnl
212mail_check_sender:
213
214 ## See whether there's a special exception for this sender domain.
215 accept senders = ${LOOKUP_DOMAIN($sender_address_domain,
216 {KV(senders, {$value}{})},
217 {})}
218
219 ## Ensure that the sender is routable. This is important to prevent
220 ## undeliverable bounces.
221 require message = Invalid sender; \
222 ($sender_verify_failure; $acl_verify_message)
223 verify = sender
224
225 ## We're good, then.
226 accept
227
185b5456
MW
228SECTION(global, acl)m4_dnl
229acl_smtp_connect = connect
230SECTION(acl, connect)m4_dnl
231connect:
232SECTION(acl, connect-tail)m4_dnl
e12c9586 233 ## Configure variables according to the submission mode.
185b5456 234 warn acl = check_submission
e12c9586
MW
235
236 ## Done.
185b5456
MW
237 accept
238
239check_submission:
240 ## See whether this message needs hacking on.
4ff4ad42 241 accept !hosts = +thishost
185b5456
MW
242 !condition = ${if ={$received_port}{CONF_submission_port}}
243 set acl_c_mode = relay
244
245 ## Remember to apply submission controls.
246 warn set acl_c_mode = submission
54341a70 247 control = no_enforce_sync
185b5456
MW
248
249 ## Done.
250 accept
251
252SECTION(global, acl)m4_dnl
253acl_smtp_rcpt = rcpt
254SECTION(acl, rcpt)m4_dnl
255rcpt:
256
257 ## Reject if the client isn't allowed to relay and the recipient
258 ## isn't in one of our known domains.
e4666f2d
MW
259 require message = Relaying not permitted
260 acl = check_relay
185b5456
MW
261
262 ## Ensure that the recipient is routable.
263 require message = Invalid recipient \
264 ($recipient_verify_failure; $acl_verify_message)
265 verify = recipient
266
e4666f2d
MW
267SECTION(acl, misc)m4_dnl
268check_relay:
269 ## Accept either if the client is allowed to relay through us, or if
270 ## we're the correct place to send this mail.
271
272 ## Known clients and authenticated users are OK.
a0375fd9
MW
273 accept hosts = CONF_relay_clients
274 accept authenticated = *
e4666f2d
MW
275
276 ## Known domains are OK.
a0375fd9 277 accept domains = +public
e4666f2d
MW
278
279 ## Finally, domains in our table are OK, unless they say they aren't.
a0375fd9
MW
280 accept domains = \
281 ${if exists{CONF_sysconf_dir/domains.conf} \
e4666f2d 282 {partial0-lsearch; CONF_sysconf_dir/domains.conf}}
a0375fd9 283 condition = DOMKV(service, {$value}{true})
e4666f2d
MW
284
285 ## Nope, that's not allowed.
286 deny
287
185b5456
MW
288SECTION(acl, rcpt-tail)m4_dnl
289 ## Everything checks out OK: let this one go through.
290 accept
291
292SECTION(global, acl)m4_dnl
293acl_smtp_data = data
294SECTION(acl, data)m4_dnl
295data:
5d2f8b65
MW
296 ## Don't accept messages with overly-long lines.
297 deny message = line length exceeds SMTP permitted maximum: \
298 $max_received_linelength > 998
299 condition = ${if >{$max_received_linelength}{998}}
185b5456
MW
300
301SECTION(acl, data-tail)m4_dnl
302 accept
303
304SECTION(global, acl)m4_dnl
305acl_smtp_expn = expn_vrfy
306acl_smtp_vrfy = expn_vrfy
e4fe8925 307SECTION(acl, misc)m4_dnl
185b5456
MW
308expn_vrfy:
309 accept hosts = +trusted
310 deny message = Suck it and see
311
312DIVERT(null)
313###--------------------------------------------------------------------------
284c9d7e
MW
314### Verification of sender address.
315
316SECTION(acl, misc)m4_dnl
317mail_check_auth:
318
319 ## If this isn't a submission then it doesn't need checking.
320 accept condition = ${if !eq{$acl_c_mode}{submission}}
321
322 ## If the caller hasn't formally authenticated, but this is a
323 ## loopback connection, then we can trust identd to tell us the right
324 ## answer. So we should stash the right name somewhere consistent.
325 warn set acl_c_user = $authenticated_id
4ff4ad42 326 hosts = +thishost
284c9d7e 327 !authenticated = *
ff4c943d 328 condition = ${if def:sender_ident}
284c9d7e
MW
329 set acl_c_user = $sender_ident
330
ff4c943d 331 ## User must be authenticated by now.
284c9d7e 332 deny message = Sender not authenticated
ff4c943d 333 condition = ${if !def:acl_c_user}
284c9d7e 334
e9015968
MW
335 ## Set the per-message authentication flag, since we now know that
336 ## there's a sensible value.
337 warn set acl_m_user = $acl_c_user
338
284c9d7e
MW
339 ## All done.
340 accept
341
342DIVERT(null)
343###--------------------------------------------------------------------------
185b5456
MW
344### Common options for forwarding routers.
345
346## We're pretty permissive here.
347m4_define(<:FILTER_BASE:>,
348 <:driver = redirect
349 modemask = 002
350 check_owner = false
351 check_group = false
352 allow_filter = true
353 allow_defer = true
354 allow_fail = true
355 forbid_blackhole = false
356 check_ancestor = true:>)
357
358## Common options for forwarding routers at verification time.
359m4_define(<:FILTER_VERIFY:>,
360 <:verify_only = true
361 user = CONF_filter_user
362 forbid_filter_dlfunc = true
363 forbid_filter_logwrite = true
364 forbid_filter_perl = true
365 forbid_filter_readsocket = true
366 forbid_filter_run = true
367 file_transport = dummy
368 directory_transport = dummy
369 pipe_transport = dummy
370 reply_transport = dummy:>)
371
372## Transports for redirection filters.
373m4_define(<:FILTER_TRANSPORTS:>,
7ab75d6f 374 <:file_transport = mailbox
185b5456
MW
375 directory_transport = maildir
376 pipe_transport = pipe
377 reply_transport = reply:>)
378
7ab75d6f
MW
379m4_define(<:FILTER_ROUTER:>,
380<:$1_vrf:
381 $2
382 FILTER_VERIFY<::>$3
383$1:
384 $2
385 verify = no
386 FILTER_TRANSPORTS<::>$4:>)
387
185b5456
MW
388DIVERT(null)
389###--------------------------------------------------------------------------
3e031e77
MW
390### Common routers.
391
392SECTION(routers, alias)m4_dnl
393## Look up the local part in the address map.
394alias:
395 driver = redirect
396 allow_fail = true
397 allow_defer = true
398 user = CONF_filter_user
399 FILTER_TRANSPORTS
400 local_parts = nwildlsearch; CONF_alias_file
401 data = ${expand:$local_part_data}
402SECTION(routers, alias-opts)m4_dnl
403
404DIVERT(null)
405###--------------------------------------------------------------------------
185b5456
MW
406### Some standard transports.
407
408m4_define(<:USER_DELIVERY:>,
409 <:delivery_date_add = true
410 envelope_to_add = true
411 return_path_add = true:>)
412
1e5ccd7c
MW
413m4_define(<:APPLY_HEADER_CHANGES:>,
414 <:headers_add = m4_ifelse(<:$1:>, <::>,
415 <:$acl_m_hdradd:>,
416 <:${if def:acl_m_hdradd{$acl_m_hdradd\n}}\
417 $1:>)
418 headers_remove = m4_ifelse(<:$2:>, <::>,
419 <:$acl_m_hdrrm:>,
420 <:${if def:acl_m_hdrrm{$acl_m_hdrrm:}}\
421 $2:>):>)
422
5d2f8b65
MW
423m4_define(<:SMTP_DELIVERY:>,
424 <:## Prevent sending messages with overly long lines. The use of
425 ## `message_size_limit' here is somewhat misleading.
426 message_size_limit = ${if >{$max_received_linelength}{998}{1}{0}}:>)
427
185b5456 428SECTION(transports)m4_dnl
fa5a92c6
MW
429## A standard transport for remote delivery. By default, try to do TLS, and
430## don't worry too much if it's not very secure: the alternative is sending
431## in plaintext anyway. But all of this can be overridden from the
beb15dae
MW
432## `domains.conf' file. Annoyingly, the `tls_dh_min_bits' setting isn't
433## expanded before use, so we can't set it the obvious way. Instead, encode
434## it into the transport name. This is very unpleasant, of course.
534d411b
MW
435smtp:
436 driver = smtp
1e5ccd7c 437 APPLY_HEADER_CHANGES
534d411b 438 tls_require_ciphers = CONF_acceptable_ciphers
7b50997d 439 tls_dh_min_bits = 508
534d411b
MW
440 tls_tempfail_tryclear = true
441
beb15dae
MW
442m4_define(<:SMTP_TRANS_DHBITS:>,
443 <:driver = smtp
5d2f8b65 444 SMTP_DELIVERY
1e5ccd7c 445 APPLY_HEADER_CHANGES
ae9744ce 446 hosts_try_auth = *
fa5a92c6 447 hosts_require_tls = DOMKV(tls-peer-ca, {*}{})
ae9744ce
MW
448 hosts_require_auth = \
449 ${if bool {DOMKV(require-auth, {$value}{false})} {*}{}}
fa5a92c6
MW
450 tls_certificate = DOMKV(tls-certificate, {${expand:$value}}fail)
451 tls_privatekey = DOMKV(tls-private-key, {${expand:$value}}fail)
452 tls_verify_certificates = DOMKV(tls-peer-ca, {${expand:$value}}fail)
453 tls_require_ciphers = \
454 DOMKV(tls-ciphers,
455 {${extract {${expand:$value}} \
456 { good = CONF_good_ciphers \
457 any = CONF_acceptable_ciphers } \
458 {$value} \
459 {${expand:$value}}}} \
460 {CONF_acceptable_ciphers})
beb15dae
MW
461 tls_dh_min_bits = $1
462 tls_tempfail_tryclear = true:>)m4_dnl
7b50997d
MW
463smtp_dhbits_512:
464 SMTP_TRANS_DHBITS(508)
465smtp_dhbits_768:
466 SMTP_TRANS_DHBITS(764)
beb15dae
MW
467smtp_dhbits_1024:
468 SMTP_TRANS_DHBITS(1020)
469smtp_dhbits_2048:
7b50997d 470 SMTP_TRANS_DHBITS(2044)
185b5456
MW
471
472## Transport to a local SMTP server; use TLS and perform client
473## authentication.
474smtp_local:
475 driver = smtp
5d2f8b65 476 SMTP_DELIVERY
1e5ccd7c 477 APPLY_HEADER_CHANGES
185b5456 478 hosts_require_tls = *
163774f0 479 tls_certificate = CONF_sysconf_dir/client.certlist
185b5456
MW
480 tls_privatekey = CONF_sysconf_dir/client.key
481 tls_verify_certificates = CONF_ca_dir/ca.cert
482 tls_require_ciphers = CONF_good_ciphers
b6d74252 483 tls_dh_min_bits = 2046
185b5456 484 tls_tempfail_tryclear = false
10c331d7
MW
485 authenticated_sender_force = true
486 authenticated_sender = \
487 ${if def:acl_m_user {$acl_m_user@CONF_master_domain} \
488 {${if def:authenticated_sender {$authenticated_sender} \
489 fail}}}
185b5456
MW
490
491## A standard transport for local delivery.
492deliver:
493 driver = appendfile
1e5ccd7c 494 APPLY_HEADER_CHANGES
185b5456 495 file = /var/mail/$local_part
8f6af4ae
MW
496 group = mail
497 mode = 0600
498 mode_fail_narrower = false
185b5456
MW
499 USER_DELIVERY
500
501## Transports for user filters.
502mailbox:
503 driver = appendfile
1e5ccd7c 504 APPLY_HEADER_CHANGES
8f6af4ae 505 initgroups = true
185b5456
MW
506 USER_DELIVERY
507
508maildir:
509 driver = appendfile
1e5ccd7c 510 APPLY_HEADER_CHANGES
185b5456 511 maildir_format = true
8f6af4ae 512 initgroups = true
185b5456
MW
513 USER_DELIVERY
514
515pipe:
516 driver = pipe
1e5ccd7c 517 APPLY_HEADER_CHANGES
8f6af4ae
MW
518 path = ${if and {{def:home} {exists{$home/bin}}} {$home/bin:} {}}\
519 /usr/local/bin:/usr/local/sbin:\
520 /usr/bin:/usr/sbin:/bin:/sbin
521 initgroups = true
522 umask = 002
523 return_fail_output = true
524 log_output = true
185b5456
MW
525
526## A special dummy transport for use during address verification.
527dummy:
528 driver = appendfile
529 file = /dev/null
530
531DIVERT(null)
532###--------------------------------------------------------------------------
533### Retry configuration.
534
535SECTION(retry, default)m4_dnl
af4b4ca8
MW
536## Be persistent when sending to the site relay. It ought to work, but
537## particularly satellites such as laptops often encounter annoying temporary
538## failures due to network unavailability, and the usual gradual policy can
539## leave mail building up for no good reason.
540CONF_smarthost * \
541 F,4d,15m
542
185b5456
MW
543## Default.
544* * \
545 F,2h,15m; G,16h,2h,1.5; F,4d,6h
546
547DIVERT(null)
548###----- That's all, folks --------------------------------------------------