vhost.m4: Rename `route' to `virtual_route'.
[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
185b5456
MW
29prod_requires_admin = false
30
31SECTION(global, logging)m4_dnl
32log_file_path = : syslog
33log_selector = \
34 +smtp_confirmation \
35 +tls_peerdn
36log_timezone = true
37syslog_duplication = false
38syslog_timestamp = false
39
40SECTION(global, daemon)m4_dnl
41local_interfaces = <; CONF_interfaces
42extra_local_interfaces = <; 0.0.0.0 ; ::
43
44SECTION(global, resource)m4_dnl
45deliver_queue_load_max = 8
46queue_only_load = 12
47smtp_accept_max = 16
48smtp_accept_queue = 32
49smtp_accept_reserve = 4
50smtp_load_reserve = 10
51smtp_reserve_hosts = +trusted
52
53SECTION(global, policy)m4_dnl
54host_lookup = *
55
56SECTION(global, users)m4_dnl
57gecos_name = $1
58gecos_pattern = ([^,:]*)
59
60SECTION(global, incoming)m4_dnl
61received_header_text = Received: \
2cf9db84
MW
62 ${if def:sender_rcvhost \
63 {from $sender_rcvhost\
185b5456 64 ${if def:sender_helo_name \
2cf9db84
MW
65 { (helo=$sender_helo_name)}}\n\t} \
66 {${if def:sender_ident \
67 {from ${quote_local_part:$sender_ident} }}}}\
185b5456 68 by $primary_hostname \
b92689d6
MW
69 (Exim $version_number)\
70 ${if def:tls_cipher {\n\t} { }}\
185b5456
MW
71 ${if def:received_protocol \
72 {with $received_protocol \
b92689d6 73 ${if def:tls_cipher {(cipher=$tls_cipher)}}}}\n\t\
185b5456 74 ${if def:sender_address \
43e6fc69 75 {(envelope-from $sender_address\
185b5456
MW
76 ${if def:authenticated_id \
77 {; auth=$authenticated_id}})\n\t}}\
78 id $message_exim_id\
79 ${if def:received_for {\n\tfor $received_for}}
80
81SECTION(global, smtp)m4_dnl
82smtp_return_error_details = true
83accept_8bitmime = true
84
85SECTION(global, process)m4_dnl
86extract_addresses_remove_arguments = false
87headers_charset = utf-8
88qualify_domain = CONF_master_domain
89
90SECTION(global, bounce)m4_dnl
91delay_warning = 1h : 24h : 2d
92
93DIVERT(null)
94###--------------------------------------------------------------------------
95### Access control lists.
96
97SECTION(global, acl-after)
98SECTION(global, acl)m4_dnl
99acl_smtp_helo = helo
100SECTION(acl, misc)m4_dnl
101helo:
fe8f2338
MW
102 ## Check that the caller's claimed identity is actually plausible.
103 ## This seems like it's a fairly effective filter on spamminess, but
104 ## it's too blunt a tool. Rather than reject, add a warning header.
105 ## Only we can't do this the easy way, so save it up for use in MAIL.
106 ## Also, we're liable to get a subsequent HELO (e.g., after STARTTLS)
107 ## and we should only care about the most recent one.
108 warn set acl_c_helo_warning = false
109 !condition = \
110 ${if exists {CONF_sysconf_dir/helo.conf} \
111 {${lookup {$sender_helo_name} \
112 partial0-lsearch \
113 {CONF_sysconf_dir/helo.conf} \
114 {${if match_ip \
115 {$sender_host_address} \
116 {$value}}}}}}
117 !verify = helo
118 set acl_c_helo_warning = true
185b5456
MW
119
120 accept
121
122SECTION(global, acl)m4_dnl
123acl_smtp_mail = mail
124SECTION(acl, mail)m4_dnl
125mail:
126
fe8f2338
MW
127 ## If we stashed a warning header about HELO from earlier, we should
128 ## add it now.
129 warn condition = $acl_c_helo_warning
130 add_header = :after_received:X-Distorted-Warning: \
131 BADHELO \
132 Client's HELO doesn't match its IP address.\n\t\
d70f6d53
MW
133 HELO name=$sender_helo_name, \
134 address=$sender_host_address
fe8f2338 135
185b5456
MW
136 ## Always allow the empty sender, so that we can receive bounces.
137 accept senders = :
138
139 ## Ensure that the sender is routable. This is important to prevent
140 ## undeliverable bounces.
141 require message = Invalid sender; \
142 ($sender_verify_failure; $acl_verify_message)
143 verify = sender
144
145 ## If this is directly from a client then hack on it for a while.
146 warn condition = ${if eq{$acl_c_mode}{submission}}
147 control = submission
148
149SECTION(acl, mail-tail)m4_dnl
150 ## And we're done.
151 accept
152
153SECTION(global, acl)m4_dnl
154acl_smtp_connect = connect
155SECTION(acl, connect)m4_dnl
156connect:
157SECTION(acl, connect-tail)m4_dnl
e12c9586 158 ## Configure variables according to the submission mode.
185b5456 159 warn acl = check_submission
e12c9586
MW
160
161 ## Done.
185b5456
MW
162 accept
163
164check_submission:
165 ## See whether this message needs hacking on.
166 accept !hosts = +localnet
167 !condition = ${if ={$received_port}{CONF_submission_port}}
168 set acl_c_mode = relay
169
170 ## Remember to apply submission controls.
171 warn set acl_c_mode = submission
172
173 ## Done.
174 accept
175
176SECTION(global, acl)m4_dnl
177acl_smtp_rcpt = rcpt
178SECTION(acl, rcpt)m4_dnl
179rcpt:
180
181 ## Reject if the client isn't allowed to relay and the recipient
182 ## isn't in one of our known domains.
183 deny message = Relaying not permitted
184 !hosts = CONF_relay_clients
185 !authenticated = *
186 !domains = +known
187
188 ## Ensure that the recipient is routable.
189 require message = Invalid recipient \
190 ($recipient_verify_failure; $acl_verify_message)
191 verify = recipient
192
193SECTION(acl, rcpt-tail)m4_dnl
194 ## Everything checks out OK: let this one go through.
195 accept
196
197SECTION(global, acl)m4_dnl
198acl_smtp_data = data
199SECTION(acl, data)m4_dnl
200data:
201
202SECTION(acl, data-tail)m4_dnl
203 accept
204
205SECTION(global, acl)m4_dnl
206acl_smtp_expn = expn_vrfy
207acl_smtp_vrfy = expn_vrfy
208SECTION(acl)m4_dnl
209expn_vrfy:
210 accept hosts = +trusted
211 deny message = Suck it and see
212
213DIVERT(null)
214###--------------------------------------------------------------------------
215### Common options for forwarding routers.
216
217## We're pretty permissive here.
218m4_define(<:FILTER_BASE:>,
219 <:driver = redirect
220 modemask = 002
221 check_owner = false
222 check_group = false
223 allow_filter = true
224 allow_defer = true
225 allow_fail = true
226 forbid_blackhole = false
227 check_ancestor = true:>)
228
229## Common options for forwarding routers at verification time.
230m4_define(<:FILTER_VERIFY:>,
231 <:verify_only = true
232 user = CONF_filter_user
233 forbid_filter_dlfunc = true
234 forbid_filter_logwrite = true
235 forbid_filter_perl = true
236 forbid_filter_readsocket = true
237 forbid_filter_run = true
238 file_transport = dummy
239 directory_transport = dummy
240 pipe_transport = dummy
241 reply_transport = dummy:>)
242
243## Transports for redirection filters.
244m4_define(<:FILTER_TRANSPORTS:>,
7ab75d6f 245 <:file_transport = mailbox
185b5456
MW
246 directory_transport = maildir
247 pipe_transport = pipe
248 reply_transport = reply:>)
249
7ab75d6f
MW
250m4_define(<:FILTER_ROUTER:>,
251<:$1_vrf:
252 $2
253 FILTER_VERIFY<::>$3
254$1:
255 $2
256 verify = no
257 FILTER_TRANSPORTS<::>$4:>)
258
185b5456
MW
259DIVERT(null)
260###--------------------------------------------------------------------------
261### Some standard transports.
262
263m4_define(<:USER_DELIVERY:>,
264 <:delivery_date_add = true
265 envelope_to_add = true
266 return_path_add = true:>)
267
268SECTION(transports)m4_dnl
269## A standard transport for remote delivery. Try to do TLS, and don't worry
270## too much if it's not very secure: the alternative is sending in plaintext
271## anyway.
272smtp:
273 driver = smtp
274 tls_require_ciphers = CONF_acceptable_ciphers
275 tls_dh_min_bits = 1020
276 tls_tempfail_tryclear = true
277
278## Transport to a local SMTP server; use TLS and perform client
279## authentication.
280smtp_local:
281 driver = smtp
282 hosts_require_tls = *
283 tls_certificate = CONF_sysconf_dir/client.cert
284 tls_privatekey = CONF_sysconf_dir/client.key
285 tls_verify_certificates = CONF_ca_dir/ca.cert
286 tls_require_ciphers = CONF_good_ciphers
b6d74252 287 tls_dh_min_bits = 2046
185b5456
MW
288 tls_tempfail_tryclear = false
289 authenticated_sender = ${if def:authenticated_id \
0bed9b7f 290 {$authenticated_id@CONF_master_domain} \
185b5456
MW
291 fail}
292
293## A standard transport for local delivery.
294deliver:
295 driver = appendfile
296 file = /var/mail/$local_part
8f6af4ae
MW
297 group = mail
298 mode = 0600
299 mode_fail_narrower = false
185b5456
MW
300 USER_DELIVERY
301
302## Transports for user filters.
303mailbox:
304 driver = appendfile
8f6af4ae 305 initgroups = true
185b5456
MW
306 USER_DELIVERY
307
308maildir:
309 driver = appendfile
310 maildir_format = true
8f6af4ae 311 initgroups = true
185b5456
MW
312 USER_DELIVERY
313
314pipe:
315 driver = pipe
8f6af4ae
MW
316 path = ${if and {{def:home} {exists{$home/bin}}} {$home/bin:} {}}\
317 /usr/local/bin:/usr/local/sbin:\
318 /usr/bin:/usr/sbin:/bin:/sbin
319 initgroups = true
320 umask = 002
321 return_fail_output = true
322 log_output = true
185b5456
MW
323
324## A special dummy transport for use during address verification.
325dummy:
326 driver = appendfile
327 file = /dev/null
328
329DIVERT(null)
330###--------------------------------------------------------------------------
331### Retry configuration.
332
333SECTION(retry, default)m4_dnl
334## Default.
335* * \
336 F,2h,15m; G,16h,2h,1.5; F,4d,6h
337
338DIVERT(null)
339###----- That's all, folks --------------------------------------------------