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