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