eximconf: add logging for Subject headers
[mirror/dsa-puppet.git] / modules / exim / templates / eximconf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 # This is the main exim4 configuration file based on the 28.08.05 version by
7 # ametzler
8
9 # The configuration file uses a set of rules to generate an
10 # acceptable mail environment for debian.org machines. It deviates
11 # considerably from what could be considered a standard Exim configuration.
12
13 # This configuration file brings in the necessary information from
14 # other databases stored in /etc/exim4/ and the files distributed by ud-ldap
15
16 # This file is independent of the local host, it should not be changed
17 # per machine. primary_hostname is used in all places that require per-host 
18 # settings.
19
20 # The configuration files in /etc/exim4 are as follows:
21 #  locals - This is a list of domains that are considered local. A local
22 #           domain is essentially one for which deliveries to /var/mail
23 #           will be attempted. The users available for local delivery
24 #           come from /etc/passwd and /etc/aliases. Wildcards are not
25 #           permitted.
26 #  virtualdomains - This is a list of all virtual domains. A virtual domain
27 #           is much like a local domain, execpt that the delivery location
28 #           and allowed set of users is controlled by a virtual domain
29 #           alias file and not /etc/passwd. Wildcards are permitted
30 #  relayhosts - Hostnames that can send any arbitarily addressed mail to
31 #           us. This is primarily only useful for emergency 'queue
32 #           flushing' operations, but should be populated with a list
33 #           of trusted machines. Wildcards are not permitted
34 #  bsmtp_domains - Domains that we deliver locally via bsmtp
35 #  submission-domains - Domains for which mail will be accepted via the
36 #           submission port
37 <%- if @is_mailrelay -%>
38 #  mailhubdomains - Domains for which we are the MX, but the mail is relayed
39 #           elsewhere.  This is designed for use with small volume or
40 #           restricted machines that need to use a smarthost for mail
41 #           traffic.  We will relay for them based on ssl cert validation
42 #           but we need to teach Exim how to route the mail to them.  This is
43 #           that list.
44 <%- end -%>
45
46 # From /var/lib/misc / UD:
47 #
48 # mail-forward.db - aliases for @d.o
49 # user-forward.db - aliases for @thishost.d.o
50 #
51 # Note that the BDB files generated by ud-ldap use keys that are not
52 # null-terminated, so Exim needs to use the "dbmnz" lookup type, rather
53 # than "dbm".
54
55 # Exim's wildcard mechanism is a bit odd in that to say "any address in
56 # debian.org including debian.org" you must use two patterns,
57 #   *.debian.org
58 #   debian.org
59 # Also you can only place a * before a . and as the first char in a string.
60 # Wildcards always match last so they may be used as a catchall.
61
62 # Further details can be found in each of the files.
63
64 # Useful Exim commands:
65 #  exim4 -qf  - Try sending all messages right now, including frozen ones
66 #  exim4 -bt foo@blah - Write what Exim would do if it saw the address
67 #                      Great for testing virtual domains and forward files
68
69 # Special Features for users:
70 # .forward-foo - is understood as an extension address for bar-foo@cow.com
71 # .forward-default - is understood to be a catch all for bar-*@cow.com
72 # .procmailrc - with no .forward file invokes procmail for delivery
73 #               automatically.
74
75 # For virtual domains the first lookup is done against a linear text
76 # database called 'aliases', then .forward files are consulted. Exim
77 # filtering is available for these .forward files only. .forward-default
78 # is the universal catch all for everything not handled.
79
80 # Heuristic check (none bad enough to cause a hard reject, but in aggregate
81 # will trigger things like rcpt to rate limiting or possibly a reject if
82 # enough hits are triggered).
83 #
84 # value is stored in acl_c_scr
85
86 ######################################################################
87 #                    MAIN CONFIGURATION SETTINGS                     #
88 ######################################################################
89
90 <%- if @heavy -%>
91  perl_startup = do '/etc/exim4/exim_surbl.pl'
92 <%- end -%>
93
94 # These options specify the Access Control Lists (ACLs) that
95 # are used for incoming SMTP messages - after the RCPT and DATA
96 # commands, respectively.
97
98 acl_smtp_helo = check_helo
99 acl_smtp_rcpt = ${if ={$interface_port}{587} {check_submission}{check_recipient}}
100 acl_smtp_data = check_message
101 <%- if @heavy -%>
102 acl_smtp_mime = acl_check_mime
103 <%- end -%>
104 acl_smtp_predata = acl_check_predata
105
106 # accept domain literal syntax in e-mail addresses. To actually make use of
107 # this a router is also required
108 allow_domain_literals = true
109
110 # This setting defines a named domain list called
111 # local_domains. It will be referenced
112 # later on by the syntax "+local_domains".
113 # Other domain and host lists may follow.
114 # @ is the local FQDN, @[] matches the IP adress of any local interface.
115
116 domainlist local_domains = @ : \
117     @[] : \
118     localhost : \
119     ${if exists {/etc/exim4/locals}{lsearch;/etc/exim4/locals}}
120
121 domainlist virtual_domains = partial-lsearch;/etc/exim4/virtualdomains
122
123 domainlist submission_domains = ${if exists {/etc/exim4/submission-domains}{/etc/exim4/submission-domains}{}}
124
125 domainlist bsmtp_domains = ${if exists {/etc/exim4/bsmtp}{partial-lsearch;/etc/exim4/bsmtp}{}}
126
127 domainlist handled_domains = +local_domains : +virtual_domains : +bsmtp_domains
128
129 domainlist ourself_and_handled = $primary_hostname : +handled_domains
130
131 localpartlist local_only_users = lsearch;/etc/exim4/localusers
132
133 localpartlist postmasterish = postmaster : abuse : hostmaster
134
135 hostlist debianhosts = <; ; 127.0.0.1 ; ::1 ; /var/lib/misc/thishost/debianhosts
136
137 hostlist reservedaddrs = 0.0.0.0/8 : 127.0.0.0/8 : 10.0.0.0/8 : 169.254.0.0/16 : 172.16.0.0/12 : 192.0.0.0/24 : 192.168.0.0/16 : 224.0.0.0/4 : 240.0.0.0/5 : 248.0.0.0/5
138
139 domainlist google_mxen = aspmx.l.google.com : gmail-smtp-in.l.google.com : \
140                          *.aspmx.l.google.com : *.gmail-smtp-in.l.google.com
141
142 domainlist single_domain_mx = +google_mxen
143 domainlist ipv4_only_domain_mx = +google_mxen
144
145 <%- if @is_mailrelay -%>
146 # Domains we relay for; that is domains that aren't considered local but we 
147 # accept mail for them.
148 domainlist mailhubdomains = lsearch;/etc/exim4/manualroute
149
150 <%- end -%>
151 tls_certificate = /etc/exim4/ssl/thishost.crt
152 tls_privatekey = /etc/exim4/ssl/thishost.key
153 tls_try_verify_hosts = *
154 tls_verify_certificates = /etc/exim4/ssl/ca.crt
155 tls_crl = /etc/exim4/ssl/ca.crl
156
157 # The setting below causes Exim to do a reverse DNS lookup on all incoming
158 # IP calls, in order to get the true host name. If you feel this is too
159 # expensive, you can specify the networks for which a lookup is done, or
160 # remove the setting entirely.
161 host_lookup = *
162
163 # If this option is set, then any process that is running as one of the
164 # listed users may pass a message to Exim and specify the sender's
165 # address using the "-f" command line option, without Exim's adding a
166 # "Sender" header.
167
168 untrusted_set_sender = *
169
170 # Some spam scanners (*cough* irritated *cough*) want the Sender field
171 # to exist.  Appease them by not actually adding a Sender field.
172
173 local_from_check = false
174
175 # Some operating systems use the "gecos" field in the system password file
176 # to hold other information in addition to users' real names. Exim looks up
177 # this field when it is creating "sender" and "from" headers. If these options
178 # are set, Exim uses "gecos_pattern" to parse the gecos field, and then
179 # expands "gecos_name" as the user's name. $1 etc refer to sub-fields matched
180 # by the pattern.
181
182 gecos_pattern = ^([^,:]*)
183 gecos_name = $1
184
185 # Do *not* include the body of the original message in a bounce
186 # The combination of bounce_return_message and bounce_return_body
187 # allows us to return only the headers within a bounce
188
189 bounce_return_message = true
190 bounce_return_body    = false
191
192 # This tells Exim to immediately discard error messages (ie double bounces).
193 ignore_bounce_errors_after = 0s
194 auto_thaw = 1d
195 timeout_frozen_after=14d
196
197 message_size_limit = 100M
198 message_logs = false
199 smtp_accept_max_per_host = ${if match_ip {$sender_host_address}{+debianhosts}{0}{7}}
200 <%- if @heavy -%>
201 smtp_accept_max = 300
202 smtp_accept_queue = 200
203 smtp_accept_queue_per_connection = 50
204 smtp_accept_reserve = 25
205 <%- else -%>
206 smtp_accept_max = 30
207 smtp_accept_queue = 20
208 smtp_accept_queue_per_connection = 10
209 smtp_accept_reserve = 5
210 <%- end -%>
211 smtp_reserve_hosts = +debianhosts
212
213 split_spool_directory = true
214 check_spool_inodes = 200
215 check_spool_space  = 20M
216
217 delay_warning =
218
219 <%- if @heavy -%>
220 message_body_visible = 5000
221 queue_run_max = 50
222 deliver_queue_load_max = 50
223 queue_only_load = 35
224 smtp_load_reserve = 20
225 <%- else -%>
226 queue_run_max = 5
227 <%- if scope.lookupvar('::processorcount').to_s != 'undefined' -%>
228 deliver_queue_load_max = <%= [scope.lookupvar('::processorcount').to_i,2].max * 5 %>
229 queue_only_load = <%= [scope.lookupvar('::processorcount').to_i,2].max * 4 %>
230 <%- else -%>
231 deliver_queue_load_max = 10
232 queue_only_load = 8
233 <%- end -%>
234 <%- end -%>
235 queue_list_requires_admin = false
236
237 <%- if has_variable?("clamd") && @clamd -%>
238 av_scanner = clamd:/var/run/clamav/clamd.ctl
239 <%- end -%>
240
241 <%= 
242 ports = []
243 out = "daemon_smtp_ports = "
244 ports << 25
245 if @mail_port  # if we have an overridden mail_port
246   ports << @mail_port
247 end
248
249 if @is_bugsmx
250   ports << 587
251 end
252
253 if @is_mailrelay
254   ports << @smarthost_port
255 end
256
257 out += ports.uniq.sort.join(" : ")
258 out
259 %>
260
261 admin_groups = adm
262 remote_sort_domains = *.debian.org:*.debian.net
263
264 pipelining_advertise_hosts = !*
265 tls_advertise_hosts = *
266 smtp_enforce_sync = true
267
268 log_selector = \
269                +subject \
270                +tls_cipher \
271                +tls_peerdn \
272                +queue_time \
273                +queue_time_overall \
274                +deliver_time \
275                +received_recipients \
276                +sender_on_delivery \
277                +return_path_on_delivery \
278                +incoming_port \
279                +unknown_in_list \
280                +smtp_connection \
281                +smtp_incomplete_transaction \
282                +smtp_confirmation \
283                +smtp_syntax_error \
284                +smtp_no_mail \
285                +smtp_protocol_error
286
287 received_header_text = Received: ${if def:sender_rcvhost {from $sender_rcvhost\n\t}\
288                                  {${if def:sender_ident {from ${quote_local_part:$sender_ident} }}${if def:sender_helo_name {(helo=$sender_helo_name)\n\t}}}}\
289                                  ${if and {{eq {$tls_certificate_verified}{1}}{def:tls_peerdn}}{from $tls_peerdn (verified)\n\t}}\
290                                  by $primary_hostname ${if def:received_protocol {with $received_protocol}} ${if def:tls_cipher {($tls_cipher)\n\t}}\
291                                  (Exim $version_number)\n\t\
292                                  ${if def:sender_address {(envelope-from <$sender_address>)\n\t}}\
293                                  id $message_exim_id${if def:received_for {\n\tfor $received_for}}
294
295 # macro definitions.
296 # Do not wrap!
297 MAX_SCAN_SIZE = 256000
298 VDOMAINDATA = ${lookup{$domain}partial-lsearch{/etc/exim4/virtualdomains}{$value}}
299 VSENDERDOMAINDATA = ${lookup{$sender_address_domain}partial-lsearch{/etc/exim4/virtualdomains}{$value}}
300 WHITELIST = ${if match_domain{$domain}{+virtual_domains}\
301             {${if exists {${extract{directory}{VDOMAINDATA}{${value}/whitelist}}}\
302             {${lookup{$local_part}lsearch{${extract{directory}{VDOMAINDATA}{${value}/whitelist}}}{$value}{}}}{}}}\
303             {/etc/exim4/whitelist} } : \
304             ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-whitelist}{$value}{}}
305 GREYLIST_LOCAL_PARTS = ${if match_domain{$domain}{+virtual_domains}\
306                        {${if exists {${extract{directory}{VDOMAINDATA}{${value}/grey_users}}}\
307                        {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/grey_users}}}{$local_part}{}}}{}}}\
308                        {${lookup{$local_part}lsearch{/etc/exim4/grey_users}{$local_part}{}}}} : \
309                        ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-greylist}{$local_part}{}}
310 HAS_DEFAULT_OPTIONS  = ${if eq{${lookup{$local_part}dbmnz{/var/lib/misc/$primary_hostname/default-mail-options.db}{$value}{TRUE}}}{TRUE}}
311 <%- if @is_rtmaster -%>
312 # This subject rewrite is embedded in double-quoted strings. As such, some of
313 # the items need more escaping than usual, otherwise \N becomes simply "N" and
314 # the following "\[" a literal "[".
315 # Note that the lack of space in "Subject:${" is intentional, as the raw Subject
316 # header will include the leading space, if present.
317 RT_SUBJECT = Subject:${if and {{first_delivery}{match {${sg {$rh_Subject:}{\\n([ \\t])}{ }}}{\\N(?i)(.*?)\\[?debian rt\\]?[:\\t ]*(.*)\\N}}}{$1$2}{$h_subject:}}
318 RT_QUEUE_MAP = /srv/rt.debian.org/mail/rt_queue_map
319 <%- end -%>
320
321 keep_environment =
322 add_environment =
323
324 ######################################################################
325 #                        ACL CONFIGURATION                           #
326 ######################################################################
327 begin acl
328
329 acl_spamlovers:
330   # There are a few profiles that don't want much smtp time checking of
331   # mail.  It's easier to track them in one place
332
333   accept  condition      = ${if eq {$acl_m_prf}{PopconMail}}
334   accept  condition      = ${if eq {$acl_m_prf}{BugsMail}}
335   deny
336
337 acl_getprofile:
338
339   # Determine the mail profile for this recipient.
340   # An empty string implies no match has been found.
341
342   warn    set acl_m_rprf = 
343
344   warn    recipients     = survey@popcon.debian.org
345           set acl_m_rprf = PopconMail
346
347   accept  condition      = ${if !eq {$acl_m_rprf}{}}
348
349   warn    local_parts    = +local_only_users
350           domains        = +local_domains
351           hosts          = !+debianhosts
352           set acl_m_rprf = localonly
353
354 <%- if @is_mailrelay -%>
355   warn    local_parts    = +local_only_users
356           domains        = +mailhubdomains
357           hosts          = !+debianhosts
358           set acl_m_rprf = localonly
359
360 <%- end -%>
361   accept  condition      = ${if !eq {$acl_m_rprf}{}}
362
363 <%- if @is_rtmaster -%>
364   warn    domains        = rt.debian.org
365           set acl_m_rprf = RTMail
366
367   accept  condition      = ${if !eq {$acl_m_rprf}{}}
368
369 <%- end -%>
370 <%- if @is_bugsmx -%>
371   warn    domains        = bugs.debian.org
372           set acl_m_rprf = BugsMail
373
374   accept  condition      = ${if !eq {$acl_m_rprf}{}}
375
376 <%- end -%>
377 <%- if @is_packagesmaster -%>
378   warn    domains        = packages.debian.org
379           set acl_m_rprf = PackagesMail
380
381   accept  condition      = ${if !eq {$acl_m_rprf}{}}
382
383 <%- end -%>
384 <%- if @is_packagesqamaster -%>
385   warn    recipients     = owner@packages.qa.debian.org : postmaster@packages.qa.debian.org
386           set acl_m_rprf = PTSOwner
387
388   accept  condition      = ${if !eq {$acl_m_rprf}{}}
389
390   warn    senders        = :
391           domains        = packages.qa.debian.org
392           condition      = ${if match{$local_part}{\N^bounces+\N}}
393           set acl_m_rprf = PTSListBounce
394
395   accept  condition      = ${if !eq {$acl_m_rprf}{}}
396
397   warn    domains        = packages.qa.debian.org
398           set acl_m_rprf = PTSMail
399
400   accept  condition      = ${if !eq {$acl_m_rprf}{}}
401
402 <%- end -%>
403   warn    recipients     = change@db.debian.org : changes@db.debian.org : chpasswd@db.debian.org : ping@db.debian.org : recommend@nm.debian.org
404           set acl_m_rprf = DBSignedMail
405
406   accept  condition      = ${if !eq {$acl_m_rprf}{}}
407
408   warn    domains        = +virtual_domains
409           condition      = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}}
410           condition      = ${if eq{${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}{$value}{}}}{markup}}
411           set acl_m_rprf = markup
412
413   accept  condition      = ${if !eq {$acl_m_rprf}{}}
414
415   warn    domains        = +virtual_domains
416           condition      = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}}
417           condition      = ${if eq{${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}{$value}{}}}{blackhole}}
418           set acl_m_rprf = blackhole
419
420   accept  condition      = ${if !eq {$acl_m_rprf}{}}
421
422   warn    domains        = +virtual_domains
423           condition      = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction.db}}}}
424           condition      = ${if eq{${lookup{$local_part}dbmnz{${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction.db}}}{$value}{}}}{markup}}
425           set acl_m_rprf = markup
426
427   accept  condition      = ${if !eq {$acl_m_rprf}{}}
428
429   warn    domains        = +virtual_domains
430           condition      = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction.db}}}}
431           condition      = ${if eq{${lookup{$local_part}dbmnz{${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction.db}}}{$value}{}}}{blackhole}}
432           set acl_m_rprf = blackhole
433
434   accept  condition      = ${if !eq {$acl_m_rprf}{}}
435
436   warn    domains        = +local_domains
437           condition      = ${if eq{${lookup{$local_part}dbmnz{/var/lib/misc/${primary_hostname}/mail-contentinspectionaction.db}{$value}{}}}{markup}}
438           set acl_m_rprf = markup
439
440   accept  condition      = ${if !eq {$acl_m_rprf}{}}
441
442   warn    domains        = +local_domains
443           condition      = ${if eq{${lookup{$local_part}dbmnz{/var/lib/misc/${primary_hostname}/mail-contentinspectionaction.db}{$value}{}}}{blackhole}}
444           set acl_m_rprf = blackhole
445
446   accept  condition      = ${if !eq {$acl_m_rprf}{}}
447
448   warn    set acl_m_rprf = normal
449
450   accept
451
452 check_helo:
453
454   warn    set acl_c_scr    = 0
455
456 <%- if @is_mailrelay -%>
457   accept  verify   = certificate
458
459 <%- end -%>
460 <%- unless @use_smarthost -%>
461   # These are in HELO acl so that they are only run once.  They increment a counter,
462   # so we don't want it to increment per rcpt to.
463
464   # high trust
465   warn    dnslists       = list.dnswl.org&0.0.0.3
466           log_message    = Hit on list.dnswl.org for $sender_host_address
467           set acl_c_scr  = ${eval:$acl_c_scr-30}
468
469   # >= medium trust
470   warn    dnslists       = list.dnswl.org&0.0.0.2
471           log_message    = Hit on list.dnswl.org for $sender_host_address
472           set acl_c_scr  = ${eval:$acl_c_scr-20}
473
474   # any form of listing
475   warn    dnslists       = list.dnswl.org
476           log_message    = Hit on list.dnswl.org for $sender_host_address
477           set acl_c_scr  = ${eval:$acl_c_scr-10}
478
479   warn    condition      = ${if isip {$sender_helo_name}}
480           log_message    = remote host used IP address in HELO/EHLO greeting
481           set acl_c_scr  = ${eval:$acl_c_scr+20}
482
483   warn    !hosts         = +debianhosts
484           condition      = ${if eq{$host_lookup_failed}{1}}
485           set acl_c_scr  = ${eval:$acl_c_scr+20}
486
487   # HELO looks like a dynamic address (with RDNS match)
488   warn    !hosts         = +debianhosts
489           condition      = ${if eq{$host_lookup_failed}{0}}
490           condition      = ${if match{$sender_host_name}{\N(^[^\.]*[0-9]\-+[0-9]|^[^\.]*[0-9]{5,}[^\.]|^([^\.]+\.)?[0-9][^ \.]*\.[^\.]+\..+\.[a-z]|^[^\.]*[0-9]\.[^\.]*[0-9]-[0-9]|^(dyn|cable|dhcp|dialup|ppp|adsl)[^\.]*[0-9])\N}}
491           set acl_c_scr  = ${eval:$acl_c_scr+20}
492
493   # HELO looks like a dynamic address
494   warn    !hosts         = +debianhosts
495           condition      = ${if match{$sender_helo_name}{\N(^[^\.]*[0-9]\-+[0-9]|^[^\.]*[0-9]{5,}[^\.]|^([^\.]+\.)?[0-9][^ \.]*\.[^\.]+\..+\.[a-z]|^[^\.]*[0-9]\.[^\.]*[0-9]-[0-9]|^(dyn|cable|dhcp|dialup|ppp|adsl)[^\.]*[0-9])\N}}
496           set acl_c_scr  = ${eval:$acl_c_scr+20}
497
498   # mail from a dynamic IP address range
499   warn    !hosts         = +debianhosts
500           dnslists       = dul.dnsbl.sorbs.net
501           set acl_c_scr  = ${eval:$acl_c_scr+15}
502
503   # If the sender's helo name is empty, the message will be rejected later
504   # because the helo is empty.  If the rDNS lookup failed, we are already
505   # going to greylist them, so no sense worrying about it here.  Finally,
506   # if rDNS does not match helo name (both lower cased first), greylist.
507
508   warn    !hosts         = +debianhosts
509           condition      = ${if !eq {$host_lookup_failed}{1}}
510           condition      = ${if def:sender_helo_name}
511           condition      = ${if !eq {${lc:$sender_helo_name}}{${lc:$sender_host_name}}}
512           log_message    = HELO doesn't match rDNS
513           set acl_c_scr  = ${eval:$acl_c_scr+8}
514
515   # Regexes of doom
516   # matches 098325879 - looks fishy
517
518   warn condition        = ${if and { \
519                                      { !match{$sender_helo_name}{\N^\[.+\]$\N} } \
520                                      { !match{$sender_helo_name}{\N^(?i)((?=[^-])[a-z0-9-]*[a-z0-9]\.)+[a-z]{2,6}$\N} } \
521                                     } \
522                             }
523        log_message      = non-FQDN HELO
524        set acl_c_scr    = ${eval:$acl_c_scr+12}
525
526   # Matches DOMAIN99.com - looks bad
527
528   warn condition       = ${if match {$sender_helo_name}{\N^[A-Z]+[A-Z0-9\-]+\.[A-Za-z0-9]+$\N}}
529        log_message     = SHOUTING HELO
530        set acl_c_scr   = ${eval:$acl_c_scr+7}
531
532   # Random HELO (run of 7 consonants) (constructed by viruses).  We purposefully
533   # skip matching on machines named .*smtp.*, since that's 4 already.  This is a fairly
534   # naive test, so it's not worth much
535
536   warn condition       = ${if !match {${lc:$sender_helo_name}}{smtp}}
537        condition       = ${if match {${lc:$sender_helo_name}}{\N^[a-z0-9]+\.[a-z]+$\N}}
538        condition       = ${if match {${lc:$sender_helo_name}}{\N.*[bcdfghjklmnpqrstvwxz]{7,}.*\.[a-z]+$\N}}
539        log_message     = random HELO
540        set acl_c_scr   = ${eval:$acl_c_scr+5}
541
542 <%- else -%>
543   drop !hosts          = +debianhosts
544        log_message     = mail from non-d.o host
545        message         = Interesting.  I doubt that should have happened.
546
547 <%- end -%>
548   # Implicit, but simpler to just say it
549   accept
550
551 #!!# ACL that is used after the RCPT command on the submission port
552 check_submission:
553
554   accept  hosts = +debianhosts
555
556 <%- if @is_mailrelay -%>
557   accept  verify   = certificate
558
559 <%- end -%>
560   # Defer after too many bad RCPT TO's.  Legit MTAs will retry later.
561   # This is a rough pass at preventing address harvesting or other mail blasts.
562
563   defer  log_message   = Too many bad recipients ${eval:$rcpt_fail_count} out of $rcpt_count
564          message       = Too many bad recipients, try again later
565          condition     = ${if > {${eval:$rcpt_fail_count}}{3}}
566
567   defer
568           ratelimit      = 5 / 60m / per_rcpt / $sender_host_address
569           !hosts         = +debianhosts
570           message        = sorry, only 5 reports per hour for submission
571
572   accept  domains  = +local_domains
573           hosts    = +debianhosts
574           endpass
575           verify   = recipient
576
577 <%- if @is_mailrelay -%>
578   accept  domains  = +mailhubdomains
579           endpass
580           verify   = recipient/callout=30s,defer_ok,use_sender,no_cache
581
582 <%- end -%>
583   accept  domains  = +submission_domains
584           endpass
585           verify   = recipient
586
587   deny    message = relay not permitted
588
589 #!!# ACL that is used after the RCPT command
590 check_recipient:
591
592 <%- if @is_mailrelay -%>
593   accept  verify   = certificate
594
595 <%- end -%>
596   accept  hosts = <; ::1 ; 127.0.0.1 ; @
597   warn    acl           = acl_getprofile
598           condition     = ${if eq{$acl_m_prf}{}}
599           set acl_m_prf = $acl_m_rprf
600
601   defer   condition     = ${if !eq{$acl_m_prf}{$acl_m_rprf}}
602           message       = Different profile, please retry
603           log_message   = Only one profile at a time, please
604
605   # Set a flag to indicate whether the current recipient
606   # has explicitly requested greylisting
607   warn    set acl_m_grey_recip = 0
608
609   warn    local_parts          = GREYLIST_LOCAL_PARTS
610           domains              = +handled_domains
611           set acl_m_grey_recip = 1
612
613   # Defer after too many bad RCPT TO's.  Legit MTAs will retry later.
614   # This is a rough pass at preventing address harvesting or other mail blasts.
615
616   defer  log_message   = Too many bad recipients ${eval:$rcpt_fail_count} out of $rcpt_count
617          !acl          = acl_spamlovers
618          message       = Too many bad recipients, try again later
619          !hosts        = +debianhosts
620          condition     = ${if > {${eval:$rcpt_fail_count}}{3}}
621
622   # Dump spambots that are so stupid they say helo as our IP address
623
624   drop   !hosts        = +debianhosts
625          !acl          = acl_spamlovers
626          condition     = ${if eq {$sender_helo_name}{$interface_address}}
627          message       = HELO mismatch Forged HELO for ($sender_helo_name)
628
629   # Also for spambots that say helo as us or one of our domains
630
631   drop   !hosts        = +debianhosts
632          !acl          = acl_spamlovers
633          condition     = ${if match_domain{$sender_helo_name}{+ourself_and_handled}}
634          condition     = ${if !match{$sender_host_name}{${rxquote:$sender_helo_name}\N$\N}}
635          message       = HELO mismatch Forged HELO for ($sender_helo_name)
636
637   # This logic gives you a list of commonly forged domains in helo to reject against
638
639   warn set acl_m_frg   = ${lookup{$sender_helo_name} \
640                            nwildlsearch{/etc/exim4/helo-check} \
641                           {${if eq{$value}{}{$sender_helo_name}{$value}}}{}}
642
643   # This is a failsafe in case DNS fails - we defer instead of hard reject if they 
644   # say helo as a name in the list but we can't look them up
645
646   defer  !hosts        = +debianhosts
647          !acl          = acl_spamlovers
648          condition     = ${if !eq{$acl_m_frg}{}}
649          condition     = ${if eq{$sender_host_name}{}}
650          condition     = ${if !eq{$host_lookup_failed}{1}}
651          message       = Access temporarily denied. Resolve failed PTR for $sender_host_address
652
653   # If DNS works, go ahead and reject them
654
655   drop   !hosts        = +debianhosts
656          !acl          = acl_spamlovers
657          condition     = ${if and { {!eq{$acl_m_frg}{}}{!match{$sender_host_name}{${rxquote:$acl_m_frg}\N$\N}}}}
658          message       = HELO mismatch Forged HELO for ($sender_helo_name)
659
660   # disabled accounts don't even get local mail.
661   deny   domains       = +virtual_domains
662          condition    = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/mail-disable}}}\
663                                      {${lookup{${extract{1}{-}{$local_part}}}lsearch{${extract{directory}{VDOMAINDATA}{${value}/mail-disable}}}{true}{false}}}\
664                                      {}}
665          message       = ${lookup{${extract{1}{-}{$local_part}}}lsearch{${extract{directory}{VDOMAINDATA}{${value}/mail-disable}}}{$value}}
666
667   deny   local_parts   = lsearch;/var/lib/misc/$primary_hostname/mail-disable
668          domains       = +local_domains
669          message       = ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-disable}{$value}}
670
671   deny   domains       = +virtual_domains
672          local_parts   = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/localonly}}}\
673                                      {${extract{directory}{VDOMAINDATA}{${value}/localonly}}}\
674                                      {}}
675          hosts         = !+debianhosts
676          message       = mail for <$local_part@$domain> only accepted from debian.org machines
677
678   # Accept if the source is local SMTP (i.e. not over TCP/IP).
679   # We do this by testing for an empty sending host field.
680   accept  hosts = :
681   
682   deny    domains       = +handled_domains
683           local_parts   = ^[.] : ^.*[@%!/|]
684   
685   deny    domains       = !+handled_domains
686           local_parts   = ^[./|] : ^.*[@%!] : ^.*/\\.\\./
687
688   deny    condition     = ${lookup{$sender_address_local_part}lsearch{/etc/exim4/localusers}{true}}
689           sender_domains= +local_domains
690           hosts         = !+debianhosts
691           message       = mail from <$sender_address> not allowed externally
692
693   deny    sender_domains= +virtual_domains
694           condition     = ${if exists {${extract{directory}{VSENDERDOMAINDATA}{${value}/localusers}}}}
695           condition     = ${lookup{$sender_address_local_part}lsearch{${extract{directory}{VSENDERDOMAINDATA}{${value}/localusers}}}{true}}
696           hosts         = !+debianhosts
697           message       = mail from <$sender_address> not allowed externally
698
699   deny    sender_domains= +virtual_domains
700           condition     = ${if exists {${extract{directory}{VSENDERDOMAINDATA}{${value}/neversenders}}}}
701           condition     = ${lookup{$sender_address_local_part}lsearch{${extract{directory}{VSENDERDOMAINDATA}{${value}/neversenders}}}{true}}
702           message       = no mail should ever come from <$sender_address>
703
704   deny    domains       = +virtual_domains
705           senders       = :
706           condition     = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/neversenders}}}}
707           condition     = ${lookup{$local_part}lsearch{${extract{directory}{VDOMAINDATA}{${value}/neversenders}}}{true}}
708           message       = <$local_part@$domain> does not send mail; rejecting bogus NDR
709
710   warn    condition     = ${if eq{$acl_m_prf}{localonly}}
711           set acl_m_lrc = ${if eq{$acl_m_lrc}{}{$local_part@$domain}{$acl_m_lrc, $local_part@$domain}}
712
713 <%- if @is_packagesmaster -%>
714   warn    condition      = ${if eq {$acl_m_prf}{PackagesMail}}
715           condition      = ${if eq {$sender_address}{$local_part@$domain}}
716           message        = X-Packages-FromTo-Same: yes
717
718 <%- end -%>
719   deny    condition      = ${if !eq {$acl_m_prf}{PopconMail}}
720           !verify        = sender
721
722   warn    !hosts         = +debianhosts
723           condition      = ${if !eq {$acl_m_prf}{PopconMail}}
724           condition      = ${if >{${eval:$acl_c_scr+0}}{0}}
725           ratelimit      = 10 / 60m / per_rcpt / strict / $sender_host_address
726           log_message    = Sender rate $sender_rate / $sender_rate_period (limit: $sender_rate_limit)
727
728   defer   !hosts         = +debianhosts
729           condition      = ${if !eq {$acl_m_prf}{PopconMail}}
730           condition      = ${if >{${eval:$acl_c_scr+0}}{0}}
731           ratelimit      = 10 / 60m / per_rcpt / $sender_host_address
732           message        = slow down (no reverse dns, mismatched ehlo, dialup, or in blacklists)
733
734 <%- if has_variable?("policydweight") && @policydweight -%>
735   # Check with policyd-weight
736   warn  !hosts         = +debianhosts
737         condition      = ${if !eq {$acl_m_prf}{PopconMail}}
738         set acl_m_pw   = ${readsocket{inet:127.0.0.1:12525}\
739                           {request=smtpd_access_policy\n\
740                            protocol_state=RCPT\n\
741                            protocol_name=${uc:$received_protocol}\n\
742                            helo_name=$sender_helo_name\n\
743                            queue_id=$message_exim_id\n\
744                            sender=$sender_address\n\
745                            recipient=$local_part@$domain\n\
746                            recipient_count=$rcpt_count\n\
747                            client_address=$sender_host_address\n\
748                            client_name=$sender_host_name\n\
749                            reverse_client_name=$sender_host_name\n\
750                            instance=$sender_host_address.$sender_address.$sender_helo_name\n\n}\
751                           {20s}{\n}{socket failure}}
752
753   # Defer on socket error
754   defer !hosts         = +debianhosts
755         condition      = ${if !eq {$acl_m_prf}{PopconMail}}
756         condition      = ${if eq{$acl_m_pw}{socket failure}}
757         message        = Cannot connect to policyd-weight. Please try again later.
758
759   # Set proposed action to $acl_m_act and message to $acl_m_mes
760   warn  !hosts         = +debianhosts
761         condition      = ${if !eq {$acl_m_prf}{PopconMail}}
762         set acl_m_mes  = ${extract{action}{$acl_m_pw}}
763         set acl_m_act  = ${sg{$acl_m_pw}{\Naction=[^ ]+ (.*)\n\n\N}{\$1}}
764
765   # Add X-policyd-weight header line to message
766   warn  !hosts         = +debianhosts
767         condition      = ${if !eq {$acl_m_prf}{PopconMail}}
768         message        = $acl_m_mes
769         condition      = ${if eq{$acl_m_act}{PREPEND}}
770
771   # Write log message, if policyd-weight can't run checks
772   warn  !hosts         = +debianhosts
773         condition      = ${if !eq {$acl_m_prf}{PopconMail}}
774         log_message    = policyd-weight message: $acl_m_mes
775         condition      = ${if eq{$acl_m_act}{DUNNO}}
776
777   # Deny mails which policyd-weight thinks are spam
778   deny  !hosts         = +debianhosts
779         condition      = ${if !eq {$acl_m_prf}{PopconMail}}
780         message        = policyd-weight said: $acl_m_mes
781         condition      = ${if eq{$acl_m_act}{550}}
782
783   # Defer messages when policyd-weight suggests so.
784   defer  !hosts         = +debianhosts
785          condition      = ${if !eq {$acl_m_prf}{PopconMail}}
786          message        = policyd-weight said: $acl_m_mes
787          condition      = ${if eq{$acl_m_act}{450}}
788
789 <%- end -%>
790 <%- if @is_rtmaster -%>
791   warn    condition     = ${if eq{$acl_m_prf}{RTMail}}
792            set acl_m12  = ${if def:acl_m12 {$acl_m12} {${if or{{match{$local_part}{\N[^+]+\+\d+\N}}{match{$local_part}{\N[^+]+\+new\N}}} {RTMailRecipientHasSubaddress}}}}
793
794 <%- end -%>
795 <%- if has_variable?("greylistd") && @greylistd -%>
796   defer
797     message  = $sender_host_address is not yet authorized to deliver mail from <$sender_address> to <$local_part@$domain>.
798     log_message = greylisted.
799     condition      = ${if or { \
800                                  {eq{$acl_m_grey_recip}{1}} \
801                                  {bool_lax{HAS_DEFAULT_OPTIONS}} \
802                              } \
803                       }
804     !senders       = :
805     !hosts         = : +debianhosts : WHITELIST : \
806                      ${if exists {/etc/greylistd/whitelist-hosts}\
807                                  {/etc/greylistd/whitelist-hosts}{}} : \
808                      ${if exists {/var/lib/greylistd/whitelist-hosts}\
809                                  {/var/lib/greylistd/whitelist-hosts}{}} 
810     !dnslists      = list.dnswl.org&0.0.0.3
811     condition      = ${if !eq {$acl_m_prf}{PopconMail}}
812     !authenticated = *
813     domains        = +handled_domains
814     condition      = ${readsocket{/var/run/greylistd/socket}\
815                                  {--grey \
816                                   $sender_host_address \
817                                   $sender_address \
818                                   $local_part@$domain}\
819                                  {5s}{}{false}}
820
821 <%- elsif has_variable?("postgrey") && @postgrey -%>
822   # next three are greylisting, inspired by http://www.bebt.de/blog/debian/archives/2006/07/30/T06_12_27/index.html
823   # this adds acl_m_grey if there isn't one (so unique per message)
824   warn
825     !senders       = :
826     !hosts         = : +debianhosts : WHITELIST
827     !dnslists      = list.dnswl.org&0.0.0.3
828     condition      = ${if !eq {$acl_m_prf}{PopconMail}}
829     condition      = ${if ! def:acl_m_grey}
830     set acl_m_grey = $pid.$tod_epoch.$sender_host_port
831
832   # and defers the message if postgrey thinks it should be defered ...
833   defer
834     !senders       = :
835     !hosts         = : +debianhosts : WHITELIST
836     !dnslists      = list.dnswl.org&0.0.0.3
837     condition      = ${if !eq {$acl_m_prf}{PopconMail}}
838     !authenticated = *
839     domains        = +handled_domains
840     condition      = ${if or { \
841                                  {eq{$acl_m_grey_recip}{1}} \
842                                  {bool_lax{HAS_DEFAULT_OPTIONS}} \
843                              } \
844                       }
845     set acl_m_pgr  = request=smtpd_access_policy\n\
846                      protocol_state=RCPT\n\
847                      protocol_name=${uc:$received_protocol}\n\
848                      instance=${acl_m_grey}\n\
849                      helo_name=${sender_helo_name}\n\
850                      client_address=${sender_host_address}\n\
851                      client_name=${sender_host_name}\n\
852                      sender=${sender_address}\n\
853                      recipient=$local_part@$domain\n\n
854     set acl_m_pgr  = ${sg{\
855                          ${readsocket{/var/run/postgrey/socket}{$acl_m_pgr}\
856                                {5s}{}{action=DUNNO}}\
857                      }{action=}{}}
858     message        = ${sg{$acl_m_pgr}{\N^\w+\s*\N}{}}
859     log_message    = greylisted.
860     condition      = ${if eq{${uc:${substr{0}{5}{$acl_m_pgr}}}}{DEFER}}
861
862  # ... or adds a header with information about how long the delay was
863  warn
864     !senders       = :
865     !hosts         = : +debianhosts : WHITELIST
866     !dnslists      = list.dnswl.org&0.0.0.3
867     condition      = ${if !eq {$acl_m_prf}{PopconMail}}
868     !authenticated = *
869     domains        = +handled_domains
870     condition      = ${if or { \
871                                  {eq{$acl_m_grey_recip}{1}} \
872                                  {bool_lax{HAS_DEFAULT_OPTIONS}} \
873                              } \
874                       }
875     condition      = ${if eq{${uc:${substr_0_7:$acl_m_pgr}}}{PREPEND}}
876     message        = ${sg{$acl_m_pgr}{\N^\w+\s*\N}{}}
877
878 <%- end -%>
879   deny    hosts        = ${if exists{/etc/exim4/host_blacklist}{/etc/exim4/host_blacklist}{}}
880           message      = I'm terribly sorry, but it seems you have been blacklisted
881           log_message  = blacklisted IP
882
883   deny   log_message   = <$sender_address> is blacklisted
884          senders       = ${if exists{/etc/exim4/blacklist}{/etc/exim4/blacklist}{}}
885          message       = We have blacklisted <$sender_address>.  Please stop mailing us
886
887   accept  local_parts   = +postmasterish
888           domains       = +virtual_domains : +bsmtp_domains
889
890 <%- unless @use_smarthost -%>
891   deny    message  = host $sender_host_address is listed in $dnslist_domain ($dnslist_value); see $dnslist_text
892           dnslists = ${if match_domain{$domain}{+virtual_domains}\
893                      {${if exists {${extract{directory}{VDOMAINDATA}{${value}/rbllist}}}\
894                      {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/rbllist}}}{$value}{}}}{}}}\
895                      {${lookup{$local_part}lsearch{/etc/exim4/rbllist}{$value}{}}}} : \
896                      ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-rbl}{$value}{}}
897           domains       = +handled_domains
898           !hosts        = +debianhosts : WHITELIST
899
900   deny    message  = host $sender_host_address is listed in $dnslist_domain ($dnslist_value); see $dnslist_text
901           dnslists = noserver.dnsbl.sorbs.net
902           domains  = +handled_domains
903           !hosts   = +debianhosts : WHITELIST
904
905   deny    message   = host $sender_host_address is listed in $dnslist_domain ($dnslist_value); see $dnslist_text
906           condition = ${if bool_lax{HAS_DEFAULT_OPTIONS}}
907           dnslists  = relays.dnsbl.sorbs.net : xbl.spamhaus.org
908           domains   = +handled_domains
909           !hosts    = +debianhosts : WHITELIST
910
911 <%- end -%>
912   deny    message  = domain $sender_address_domain is listed in $dnslist_domain ($dnslist_value); see $dnslist_text
913           dnslists = ${if match_domain{$domain}{+virtual_domains}\
914                      {${if exists {${extract{directory}{VDOMAINDATA}{${value}/rhsbllist}}}\
915                      {${expand:${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/rhsbllist}}}{$value}{}}}}{}}}\
916                      {${expand:${lookup{$local_part}lsearch{/etc/exim4/rhsbllist}{$value}{}}}}} : \
917                      ${expand:${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-rhsbl}{$value}{}}}
918           domains       = +handled_domains
919           !hosts        = +debianhosts : WHITELIST
920
921   deny    message  = domain $sender_address_domain is listed in $dnslist_domain ($dnslist_value); see $dnslist_text
922           dnslists = nomail.rhsbl.sorbs.net/$sender_address_domain
923           domains  = +handled_domains
924           !hosts   = +debianhosts : WHITELIST
925
926   deny    message   = domain $sender_address_domain is listed in $dnslist_domain ($dnslist_value); see $dnslist_text
927           condition = ${if bool_lax{HAS_DEFAULT_OPTIONS}}
928           dnslists  = dbl.spamhaus.org/$sender_address_domain
929           domains   = +handled_domains
930           !hosts    = +debianhosts : WHITELIST
931
932 <%- unless @use_smarthost -%>
933   deny    domains  = +handled_domains
934           local_parts = ${if match_domain{$domain}{+virtual_domains}\
935                         {${if exists {${extract{directory}{VDOMAINDATA}{${value}/callout_users}}}\
936                         {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/callout_users}}}{$local_part}{}}}{}}}\
937                         {${lookup{$local_part}lsearch{/etc/exim4/callout_users}{$local_part}{}}}} : \
938                         ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-callout}{$local_part}{}}
939           !hosts   = +debianhosts : WHITELIST
940           !verify  = sender/callout=90s,maxwait=300s
941           message  = "Sender verification failed: $acl_verify_message"
942
943 <%- end -%>
944 <%- if @is_mailrelay -%>
945   accept  domains  = +mailhubdomains
946           endpass
947           verify   = recipient/callout=30s,defer_ok,use_sender,no_cache
948
949 <%- end -%>
950   accept  domains  = +handled_domains
951           endpass
952           verify   = recipient/defer_ok
953
954   accept  hosts         = +debianhosts
955
956   accept  authenticated = *
957
958   deny    message = relay not permitted
959
960 <%- if @heavy -%>
961 acl_check_mime:
962
963  accept  verify        = certificate
964  accept  hosts         = +debianhosts
965
966  discard condition     = ${if <{$message_size}{MAX_SCAN_SIZE}}
967          condition     = ${if eq {$acl_m_prf}{blackhole}}
968          set acl_m_srb = ${perl{surblspamcheck}}
969          condition     = ${if !eq{$acl_m_srb}{false}}
970          log_message   = discarded surbl message for $recipients
971
972   deny   condition     = ${if <{$message_size}{MAX_SCAN_SIZE}}
973          condition     = ${if !eq {$acl_m_prf}{markup}}
974          condition     = ${if !eq {$acl_m_prf}{PopconMail}}
975          set acl_m_srb = ${perl{surblspamcheck}}
976          condition     = ${if !eq{$acl_m_srb}{false}}
977          log_message   = $acl_m_srb
978          message       = $acl_m_srb
979
980   warn   condition     = ${if <{$message_size}{MAX_SCAN_SIZE}}
981          condition     = ${if eq {$acl_m_prf}{markup}}
982          set acl_m_srb = ${perl{surblspamcheck}}
983          condition     = ${if !eq{$acl_m_srb}{false}}
984          message       = X-Surbl-Hit: $primary_hostname: $acl_m_srb
985
986   # Dump MIME parts to disk. "default" creates sequentially-named files
987   # in <spool_directory>/scan/<message_id>/ which should then be
988   # automagically unlinked after processing.
989   warn   decode        = default
990
991   # Log some information about attachments for debugging
992   warn   log_message   = MIME part [$mime_part_count] -> [${extract{-1}{.}{${lc:$mime_filename}}}] [$mime_content_type]
993
994   accept
995
996 <%- end -%>
997 acl_check_predata:
998   deny   condition     = ${if eq{$acl_m_prf}{localonly}}
999          message       = mail for $acl_m_lrc is only accepted internally
1000
1001   accept
1002
1003
1004 #!!# ACL that is used after the DATA command
1005 check_message:
1006
1007   # Some people put from postmaster@something.debian.org in the From
1008   # header.  Take their crack pipe away.
1009   drop   condition = ${if match{${lc:$h_From:}}{\Npostmaster@([^.]+\.)?debian\.org\N}}
1010
1011 <%- if @is_rtmaster -%>
1012   deny    condition = ${if eq {$acl_m_prf}{RTMail}}
1013           condition = ${if and{{!match {${lc:$rh_Subject:}} {debian rt}} \
1014                                {!match {${lc:$rh_Subject:]}} {\N\[rt.debian.org \N}} \
1015                                {!match {$acl_m12}{RTMailRecipientHasSubaddress}}}}
1016           message  = messages to the Request Tracker system require a subject tag or a subaddress
1017
1018 <%- end -%>
1019 <%- if @is_packagesqamaster -%>
1020   deny    !hosts  = +debianhosts
1021           condition = ${if eq {$acl_m_prf}{PTSMail}}
1022           condition = ${if !def:h_X-PTS-Approved:}
1023           message   = messages to the PTS require an X-PTS-Approved header
1024
1025 <%- end -%>
1026   deny    condition      = ${if eq {$acl_m_prf}{DBSignedMail}}
1027           condition      = ${if and {{!match {$message_body}{PGP MESSAGE}}              \
1028                                      {!match {$message_body}{PGP SIGNED MESSAGE}}       \
1029                                      {!match {$message_body}{PGP SIGNATURE}}            \
1030                                      {!match {$header_content-type:}{multipart/signed}} \
1031                                      {!match {$header_content-type:}{pgp}}              \
1032                                     }                                                   \
1033                             }
1034           message        = Mail to this address needs to be PGP-signed
1035
1036   accept  verify    = certificate
1037   accept  hosts     = +debianhosts
1038
1039   deny    condition = ${if !eq {$acl_m_prf}{PopconMail}}
1040           !verify   = header_syntax
1041           message   = Invalid header syntax: $acl_verify_message
1042
1043 # RFC 822 and 2822 say that headers must be ASCII.  This kinda emulates
1044 # postfix's strict_7bit_headers option, but only checks a few common problem
1045 # headers, as there doesn't appear to be an easy way to check them all.
1046   deny
1047           condition       = ${if or {{match {$rh_Subject:}{[\200-\377]}}\
1048                                  {match {$rh_To:}{[\200-\377]}}\
1049                                  {match {$rh_From:}{[\200-\377]}}\
1050                                  {match {$rh_Cc:}{[\200-\377]}}}}
1051           condition       = ${if !eq {$acl_m_prf}{PopconMail}}
1052           message         = improper use of 8-bit data in message header: message rejected
1053
1054   deny
1055           condition       = ${if match {$rh_Subject:}{[^[:print:]]\{8\}}}
1056           condition       = ${if !eq {$acl_m_prf}{PopconMail}}
1057           message         = Your mailer is not RFC 2047 compliant: message rejected
1058
1059 <%- if has_variable?("clamd") && @clamd -%>
1060   discard condition       = ${if eq {$acl_m_prf}{blackhole}}
1061           malware         = */defer_ok
1062           log_message     = discarded malware message for $recipients
1063
1064   deny    condition       = ${if !eq {$acl_m_prf}{markup}}
1065           condition       = ${if !eq {$acl_m_prf}{PopconMail}}
1066           malware         = */defer_ok
1067           message         = malware detected: $malware_name: message rejected
1068
1069   warn    condition       = ${if eq {$acl_m_prf}{markup}}
1070           malware         = */defer_ok
1071           message         = X-malware detected: $malware_name
1072
1073 <%- end -%>
1074 <%- if @heavy -%>
1075  discard condition     = ${if <{$message_size}{MAX_SCAN_SIZE}}
1076          condition     = ${if eq {$acl_m_prf}{blackhole}}
1077          set acl_m_srb = ${perl{surblspamcheck}}
1078          condition     = ${if !eq{$acl_m_srb}{false}}
1079          log_message   = discarded surbl message for $recipients
1080
1081   deny   condition     = ${if <{$message_size}{MAX_SCAN_SIZE}}
1082          condition     = ${if !eq {$acl_m_prf}{markup}}
1083          condition     = ${if !eq {$acl_m_prf}{PopconMail}}
1084          set acl_m_srb = ${perl{surblspamcheck}}
1085          condition     = ${if !eq{$acl_m_srb}{false}}
1086          log_message   = $acl_m_srb
1087          message       = $acl_m_srb
1088
1089   warn   condition     = ${if <{$message_size}{MAX_SCAN_SIZE}}
1090          condition     = ${if eq {$acl_m_prf}{markup}}
1091          set acl_m_srb = ${perl{surblspamcheck}}
1092          condition     = ${if !eq{$acl_m_srb}{false}}
1093          message       = X-Surbl-Hit: $primary_hostname: $acl_m_srb
1094
1095 <%- end -%>
1096   # Check header_sender except for survey@popcon.d.o
1097   deny    condition    = ${if !eq{$acl_m_prf}{PopconMail}}
1098           !verify      = header_sender
1099           message      = No valid sender found in the From:, Sender: and Reply-to: headers
1100
1101 <%- if @is_packagesmaster -%>
1102   deny  message        = Congratulations, you scored $spam_score points.
1103         log_message    = spam: $spam_score points.
1104         condition      = ${if eq {$acl_m_prf}{PackagesMail}}
1105         !authenticated = *
1106         !verify        = certificate
1107         !hosts         = +debianhosts
1108         condition      = ${if <{$message_size}{MAX_SCAN_SIZE}}
1109         spam           = pkg_user : true
1110         condition      = ${if >{$spam_score_int}{59}}
1111
1112 <%- end -%>
1113   accept
1114
1115
1116
1117 ######################################################################
1118 #                      REWRITE CONFIGURATION                         #
1119 ######################################################################
1120
1121
1122
1123 begin rewrite
1124
1125 \N^buildd_(.*)@fasolo\.debian\.org$\N buildd_$1@buildd.debian.org T
1126 *@debian.org ${lookup{$1}dbmnz{/var/lib/misc/${primary_hostname}/mail-forward.db}{$value}fail} T
1127 *@people.debian.org ${lookup{$1}dbmnz{/var/lib/misc/${primary_hostname}/mail-forward.db}{$value}fail} T
1128 #*@${primary_hostname} "${if exists{/etc/exim4/email-addresses}{${lookup{$1}lsearch{/etc/exim4/email-addresses}{$value}fail}}fail}" fFs
1129
1130
1131 #!!#######################################################!!#
1132 #!!# Here follow routers created from the old routers,   #!!#
1133 #!!# for handling non-local domains.                     #!!#
1134 #!!#######################################################!!#
1135
1136 begin routers
1137
1138
1139
1140 ######################################################################
1141 #                      ROUTERS CONFIGURATION                         #
1142 #                Specifies how addresses are handled                 #
1143 ######################################################################
1144 #                          ORDER DOES MATTER                         #
1145 #     An address is passed to each in turn until it is accepted.     #
1146 ######################################################################
1147
1148 <%- if @is_mailrelay -%>
1149 relay_manualroute:
1150   debug_print = "R: relay_manualroute for $local_part@$domain"
1151   driver = manualroute
1152   domains = +mailhubdomains
1153   transport = ${if forany{${lookup dnsdb{>: mxh=$domain}}}\
1154                   {match_domain{$item}{+single_domain_mx}}\
1155                   {remote_smtp_single_domain}{remote_smtp}\
1156                }
1157   route_data = ${lookup{$domain}lsearch{/etc/exim4/manualroute}}
1158   require_files = /etc/exim4/manualroute
1159
1160 <%- end -%>
1161 bsmtp:
1162   debug_print = "R: bsmtp for $local_part@$domain"
1163   driver = manualroute
1164   domains = +bsmtp_domains
1165   require_files = /etc/exim4/bsmtp
1166   route_list = * ${extract{file}{\
1167                    ${lookup{$domain}partial-lsearch{/etc/exim4/bsmtp}\
1168                      {$value}fail}}}
1169   transport = bsmtp
1170
1171 # This router routes to remote hosts over SMTP by explicit IP address,
1172 # given as a "domain literal" in the form [nnn.nnn.nnn.nnn]. The RFCs
1173 # require this facility, which is why it is enabled by default in Exim.
1174 ipliteral:
1175   debug_print = "R: ipliteral for $local_part@$domain"
1176   driver = ipliteral
1177   domains = !+handled_domains
1178   transport = remote_smtp
1179   ignore_target_hosts = +reservedaddrs
1180
1181 <%- if @use_smarthost -%>
1182 smarthost:
1183   debug_print = "R: smarthost for $local_part@$domain"
1184   driver = manualroute
1185   domains = !+handled_domains
1186   transport = remote_smtp_smarthost
1187   route_list = * <%= @smarthost %>
1188   host_find_failed = defer
1189   same_domain_copy_routing = yes
1190   no_more
1191 <%- end -%>
1192
1193 # This router routes to remote hosts over SMTP using a DNS lookup.
1194 # Ignore reserved network responses, including localhost.
1195 dnslookup:
1196   debug_print = "R: dnslookup for $local_part@$domain"
1197   driver = dnslookup
1198   domains = !+handled_domains
1199   transport = ${if forany{${lookup dnsdb{>: mxh=$domain}}}\
1200                   {match_domain{$item}{+single_domain_mx}}\
1201                   {remote_smtp_single_domain}{remote_smtp}\
1202                }
1203   ignore_target_hosts = +reservedaddrs : \
1204                ${if forany{${lookup dnsdb{>: mxh=$domain}}}\
1205                   {match_domain{$item}{+ipv4_only_domain_mx}}\
1206                   {::::/0}{}\
1207                }
1208   no_more
1209
1210 postmasterish:
1211   debug_print = "R: postmasterish for $local_part@$domain"
1212   driver = redirect
1213   verify = false
1214   unseen = true
1215   expn = true
1216   local_parts = +postmasterish
1217   domains = +virtual_domains : +bsmtp_domains
1218   data = debian-admin@debian.org
1219   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1220
1221 # This router handles aliasing using a traditional /etc/aliases file.
1222 # If any of your aliases expand to pipes or files, you will need to set
1223 # up a user and a group for these deliveries to run under. You can do
1224 # this by uncommenting the "user" option below (changing the user name
1225 # as appropriate) and adding a "group" option if necessary.
1226
1227 system_aliases:
1228   debug_print = "R: system_aliases for $local_part@$domain"
1229   driver = redirect
1230   allow_defer
1231   allow_fail
1232   data = ${lookup{$local_part}lsearch*{/etc/aliases}}
1233   domains = +local_domains
1234   file_transport = address_file
1235   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1236   pipe_transport = address_pipe
1237   retry_use_local_part
1238
1239 # This router handles forwarding using traditional .forward files.
1240 # It also allows mail filtering when a forward file starts with the 
1241 # string "# Exim filter": to disable filtering, uncomment the "filter" 
1242 # option. The check_ancestor option means that if the forward file 
1243 # generates an address that is an ancestor of the current one, the 
1244 # current one gets passed on instead. This covers the case where A is 
1245 # aliased to B and B has a .forward file pointing to A.
1246
1247 # For standard Debian setup of one group per user, it is acceptable---normal
1248 # even---for .forward to be group writable. If you have everyone in one
1249 # group, you should comment out the "modemask" line. Without it, the Exim
1250 # default of 022 will apply, which is probably what you want.
1251
1252 userforward_verify:
1253   debug_print = "R: userforward for $local_part${local_part_suffix}@$domain"
1254   driver = redirect
1255   check_ancestor
1256   user = Debian-exim
1257   no_check_local_user
1258   directory_transport = address_directory
1259   domains = +local_domains
1260   # filter - I have disabled filtering to force users to use .forward-foo files
1261   # or procmail. This will make it easier to move mailers in the future
1262   #
1263   # This bit does the qmailesque extension names, foo-bar@ is .forward-foo it
1264   # also checks if the .forward-bar exists, if not then it uses
1265   # .forward-default instead.
1266   file = $home/.forward\
1267          ${if eq{}{$local_part_suffix}{}{\
1268            ${if exists {${home}/.forward${local_part_suffix}} \
1269              {${local_part_suffix}}{-default}}\
1270            }\
1271           }
1272   file_transport = address_file
1273   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1274   local_part_suffix = -*
1275   local_part_suffix_optional
1276   modemask = 002
1277   pipe_transport = address_pipe
1278   reply_transport = address_reply
1279   require_files = $home
1280   router_home_directory = ${lookup passwd{$local_part}{${extract{5}{:}{$value}}}fail}
1281   verify_only
1282
1283 # This is a sendmailesque alias file lookup
1284 virt_aliases:
1285   debug_print = "R: virt_aliases for $local_part@$domain"
1286   driver = redirect
1287   allow_defer
1288   allow_fail
1289   data = ${if exists{\
1290            ${extract{directory}{VDOMAINDATA}{${value}/aliases}}}\
1291            {${lookup{$local_part}lsearch*{\
1292               ${extract{directory}{VDOMAINDATA}{$value/aliases}}\
1293            }}}}
1294   directory_transport = address_directory
1295   domains = +virtual_domains
1296   file_transport = ${if eq {${extract{group_writable}{VDOMAINDATA}}}{true}{address_file_group}{address_file}}
1297   cannot_route_message = Unknown user
1298   group = ${extract{group}{VDOMAINDATA}}
1299   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1300   pipe_transport = address_pipe
1301   qualify_preserve_domain
1302   retry_use_local_part
1303   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1304   transport_home_directory = ${extract{directory}{VDOMAINDATA}}
1305   user = ${extract{user}{VDOMAINDATA}}
1306   
1307 # No direct match, so try doing a regex match if there's an
1308 # aliases.regex
1309 virt_aliases_regex:
1310   debug_print = "R: virt_aliases_regex for $local_part$local_part_suffix@$domain"
1311   driver = redirect
1312   allow_defer
1313   allow_fail
1314   data = ${if exists{\
1315            ${extract{directory}{VDOMAINDATA}{${value}/aliases.regex}}}\
1316            {${lookup{$local_part}nwildlsearch*{\
1317               ${extract{directory}{VDOMAINDATA}{$value/aliases.regex}}\
1318            }}}}
1319   directory_transport = address_directory
1320   domains = +virtual_domains
1321   file_transport = ${if eq {${extract{group_writable}{VDOMAINDATA}}}{true}{address_file_group}{address_file}}
1322   cannot_route_message = Unknown user
1323   group = ${extract{group}{VDOMAINDATA}}
1324   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1325   pipe_transport = address_pipe
1326   qualify_preserve_domain
1327   retry_use_local_part
1328   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1329   transport_home_directory = ${extract{directory}{VDOMAINDATA}}
1330   user = ${extract{user}{VDOMAINDATA}}
1331
1332 userforward:
1333   debug_print = "R: userforward for $local_part${local_part_suffix}@$domain"
1334   driver = redirect
1335   check_ancestor
1336   check_local_user
1337   directory_transport = address_directory
1338   domains = +local_domains
1339   # filter - I have disabled filtering to force users to use .forward-foo files
1340   # or procmail. This will make it easier to move mailers in the future
1341   #
1342   # This bit does the qmailesque extension names, foo-bar@ is .forward-foo it
1343   # also checks if the .forward-bar exists, if not then it uses
1344   # .forward-default instead.
1345   file = $home/.forward\
1346          ${if eq{}{$local_part_suffix}{}{\
1347            ${if exists {${home}/.forward${local_part_suffix}} \
1348              {${local_part_suffix}}{-default}}\
1349            }\
1350           }
1351   file_transport = address_file
1352   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1353   local_part_suffix = -*
1354   local_part_suffix_optional
1355   modemask = 002
1356   pipe_transport = address_pipe
1357   reply_transport = address_reply
1358   require_files = $home
1359   no_verify
1360
1361 # This delivers to procmail
1362 procmail:
1363   debug_print = "R: procmail for $local_part@$domain"
1364   driver = accept
1365   check_local_user
1366   domains = +local_domains
1367   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1368   local_part_suffix = -*
1369   local_part_suffix_optional
1370   no_verify
1371   no_expn
1372   require_files = $local_part:$home/.procmailrc
1373   transport = procmail_pipe
1374   transport_current_directory = $home
1375   
1376 # This driver delivers to the LDAP generated alias file.
1377 ldap_aliases:
1378   debug_print = "R: ldap_aliases for $local_part@$domain"
1379   driver = redirect
1380   allow_defer
1381   allow_fail
1382   data = ${if exists{/var/lib/misc/$primary_hostname/user-forward.db}\
1383              {${lookup{$local_part}dbmnz\
1384                {/var/lib/misc/$primary_hostname/user-forward.db}}}}
1385   domains = +local_domains
1386   file_transport = address_file
1387   local_part_suffix = -*
1388   local_part_suffix_optional
1389   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1390   pipe_transport = address_pipe
1391   retry_use_local_part
1392   
1393 # This director matches local user mailboxes.
1394 localuser:
1395   debug_print = "R: localuser for $local_part@$domain"
1396   driver = accept
1397   check_local_user
1398   domains = +local_domains
1399   local_part_suffix = -*
1400   local_part_suffix_optional
1401   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1402   # Disable if the user has never logged in
1403   require_files = $home
1404   transport = local_delivery
1405   no_more
1406
1407 # Now we begin the Virtual Domain configuration
1408 # Everything before here should apply only to the local domains with a 
1409 # domains= rule
1410
1411 <%- if @is_packagesmaster -%>
1412 # This router delivers for packages.d.o
1413 packages:
1414   debug_print = "R: packages for $local_part@$domain"
1415   driver = redirect
1416   file_transport = address_file
1417   pipe_transport = address_pipe
1418   domains = packages.debian.org
1419   require_files = /srv/packages.debian.org/conf/maintainer
1420   data = ${lookup{$local_part}cdb{/srv/packages.debian.org/conf/maintainer.cdb}}
1421   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1422   transport_home_directory = /srv/packages.debian.org/mail
1423   transport_current_directory = /srv/packages.debian.org/mail
1424   check_ancestor
1425   retry_use_local_part
1426   no_more
1427
1428 <%- end -%>
1429 <%- if @is_rtmaster -%>
1430 # This router delivers for rt.d.o
1431 rt_force_new_verbose:
1432   debug_print = "R: rt for $local_part+new@$domain"
1433   driver = redirect
1434   domains = rt.debian.org
1435   require_files = /usr/bin/rt-mailgate : RT_QUEUE_MAP
1436   local_parts = ${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}{$local_part}{}}
1437   local_part_suffix = +new
1438   pipe_transport = rt_pipe
1439   data = "|/usr/bin/rt-mailgate --queue '${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}}' --url https://rt.debian.org/ --ca-file /etc/ssl/ca-debian/ca-certificates.crt --action ${if match{$local_part}{.*-comment.*}{comment}{correspond}}"
1440   headers_remove = Subject
1441   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}\nRT_SUBJECT"
1442
1443 # FIXME: figure out how to generalize this approach so that all of the following would work
1444 # - rt+NNNN@rt.debian.org          : attach correspondence to ticket (verbose)
1445 # - rt+NNNN-quiesce@rt.debian.org  : attach correspondence to ticket (quiesce)
1446 # - rt+NNNN-<action>@rt.debian.org : attach correspondence to ticket (some action)
1447 # requires modification to custom condition in 'scrips'
1448 rt_force_new_quiesce:
1449   debug_print = "R: rt for $local_part+new-quiesce@$domain"
1450   driver = redirect
1451   domains = rt.debian.org
1452   require_files = /usr/bin/rt-mailgate : RT_QUEUE_MAP
1453   local_parts = ${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}{$local_part}{}}
1454   local_part_suffix = +new-quiesce
1455   pipe_transport = rt_pipe
1456   data = "|/usr/bin/rt-mailgate --queue '${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}}' --url https://rt.debian.org/ --ca-file /etc/ssl/ca-debian/ca-certificates.crt --action ${if match{$local_part}{.*-comment.*}{comment}{correspond}}"
1457   headers_remove = Subject
1458   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}\nX-RT-Mode: quiesce\nRT_SUBJECT"
1459
1460 rt_otherwise:
1461   debug_print = "R: rt for $local_part@$domain"
1462   driver = redirect
1463   domains = rt.debian.org
1464   require_files = /usr/bin/rt-mailgate : RT_QUEUE_MAP
1465   local_parts = ${lookup{${sg{$local_part}{-(comment|done)}{}}}lsearch{RT_QUEUE_MAP}{$local_part}{}}
1466   local_part_suffix = +*
1467   local_part_suffix_optional
1468   pipe_transport = rt_pipe
1469   data = "|/usr/bin/rt-mailgate --queue '${lookup{${sg{$local_part}{-(comment|done)}{}}}lsearch{RT_QUEUE_MAP}}' --url https://rt.debian.org/ --ca-file /etc/ssl/ca-debian/ca-certificates.crt --extension ticket --action ${if match{$local_part}{.*-comment.*}{comment}{${if match{$local_part}{.*-done.*}{correspond-resolve}{correspond}}}}"
1470   headers_remove = Subject
1471   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}\nRT_SUBJECT"
1472 <%- end -%>
1473
1474 # Exim fails the router if it can't change to the user/group for delivery
1475 # during verification.  So we have to separate the cases of verifying
1476 # the virts, and delivering to them.  blah.
1477
1478 virt_direct_verify:
1479   debug_print = "R: virt_direct for $local_part@$domain"
1480   driver = redirect
1481   no_check_local_user
1482   user = Debian-exim
1483   allow_filter
1484   modemask = 002
1485   directory_transport = address_directory
1486   domains = +virtual_domains
1487   local_part_suffix = -*
1488   local_part_suffix_optional
1489   file = $home/.forward-\
1490               ${if exists {${home}/.forward-${local_part}}{${local_part}}\
1491                    {default}}
1492   file_transport = address_file
1493   pipe_transport = address_pipe
1494   reply_transport = address_reply
1495   retry_use_local_part
1496   router_home_directory = ${extract{directory}{VDOMAINDATA}}
1497   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1498   verify_only
1499
1500 # This is a qmailesque deliver into a directory of .forward files
1501 virt_direct:
1502   debug_print = "R: virt_direct for $local_part@$domain"
1503   driver = redirect
1504   allow_filter
1505   allow_fail
1506   allow_defer
1507   no_check_local_user
1508   directory_transport = address_directory
1509   domains = +virtual_domains
1510   file = $home/.forward-\
1511               ${if exists {${home}/.forward-${local_part}}{${local_part}}\
1512                    {default}}
1513   file_transport = ${if eq {${extract{group_writable}{VDOMAINDATA}}}{true}{address_file_group}{address_file}}
1514   group = ${extract{group}{VDOMAINDATA}}
1515   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1516   modemask = 002
1517   local_part_suffix = -*
1518   local_part_suffix_optional
1519   pipe_transport = address_pipe
1520   reply_transport = address_reply
1521   retry_use_local_part
1522   router_home_directory = ${extract{directory}{VDOMAINDATA}}
1523   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1524   no_verify
1525   user = ${extract{user}{VDOMAINDATA}}
1526   #debug_print = .forward-${if exists {${home}/.forward-${local_part}} {${local_part}} {default}}
1527
1528 # This router delivers to the LDAP generated mail-forward file.
1529 # It's only really useful for debian.org
1530 virt_users:
1531   debug_print = "R: virt_users for $local_part@$domain"
1532   driver = redirect
1533   allow_defer
1534   allow_fail
1535   router_home_directory = ${extract{directory}{VDOMAINDATA}}
1536   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1537   user = ${extract{user}{VDOMAINDATA}}
1538   group = ${extract{group}{VDOMAINDATA}}
1539   # Manually construct the forwarding address, preserving the
1540   # local_part_suffix if the remote host is master.
1541   data = ${if and {{exists{${extract{directory}{VDOMAINDATA}{${value}/mail-forward.db}}}}\
1542                      {! eq {${lookup{$local_part}dbmnz\
1543                             {${extract{directory}{VDOMAINDATA}{${value}/mail-forward.db}}}}}\
1544                            {}}}\
1545              {${local_part:${lookup{$local_part}dbmnz\
1546              {${extract{directory}{VDOMAINDATA}{${value}/mail-forward.db}}}}}\
1547              ${if eq {${domain:${lookup{$local_part}dbmnz\
1548              {${extract{directory}{VDOMAINDATA}{${value}/mail-forward.db}}}}}}{master.debian.org}{$local_part_suffix} {}}\
1549              @\
1550              ${domain:${lookup{$local_part}dbmnz\
1551             {${extract{directory}{VDOMAINDATA}{${value}/mail-forward.db}}}}}}}
1552   domains = +virtual_domains
1553   file_transport = address_file
1554   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1555   pipe_transport = address_pipe
1556   local_part_suffix = -*
1557   local_part_suffix_optional
1558   retry_use_local_part
1559
1560 <%- if @is_bugsmx -%>
1561 # This router delivers for bugs.d.o
1562 bugs:
1563   debug_print = "R: bugs for $local_part@$domain"
1564   driver = accept
1565   transport = bugs_pipe
1566   domains = bugs.debian.org
1567   cannot_route_message = Unknown or archived bug
1568   require_files = /srv/bugs.debian.org/mail/run-procmail
1569   no_more
1570   local_parts = ${if match\
1571                   {$local_part}\
1572                   {\N^(\d+)(\d{2})(?:-(?:(?:submit|maintonly|quiet|forwarded|done|close|request|submitter)|(?:unsubscribe|ignore|help|(?:sub(?:scribe|help|yes|approve|reject))|unsubyes|bounce|probe|approve|reject|setlistyes|setlistsilentyes).*))?$\N}\
1573                {${if exists{/srv/bugs.debian.org/spool/db-h/$2/$1$2.summary}\
1574                {$local_part}fail}}fail}
1575 <%- end -%>
1576 ######################################################################
1577 #                      TRANSPORTS CONFIGURATION                      #
1578 ######################################################################
1579 #                       ORDER DOES NOT MATTER                        #
1580 #     Only one appropriate transport is called for each delivery.    #
1581 ######################################################################
1582
1583
1584 begin transports
1585
1586 # This transport is used for local delivery to user mailboxes. On Debian
1587 # systems group mail is used so we can write to the /var/mail
1588 # directory. (The alternative, which most other unixes use, is to deliver
1589 # as the user's own group, into a sticky-bitted directory)
1590 local_delivery:
1591   debug_print = "T: local_delivery for $local_part@$domain"
1592   driver = appendfile
1593   file = /var/mail/${local_part}
1594   group = mail
1595   mode = 0660
1596   no_mode_fail_narrower
1597   return_path_add
1598   
1599 # This transport is used for handling pipe addresses generated by alias
1600 # or .forward files. It has a conventional name, since it is not actually
1601 # mentioned elsewhere in this configuration file. (A different name *can*
1602 # be specified via the "address_pipe_transport" option if you really want
1603 # to.) If the pipe generates any standard output, it is returned to the sender
1604 # of the message as a delivery error. Set return_fail_output instead if you
1605 # want this to happen only when the pipe fails to complete normally.
1606
1607 address_pipe:
1608   debug_print = "T: address_pipe for $local_part@$domain"
1609   driver = pipe
1610   current_directory = ${home}
1611   environment = "EXTENSION=${substr_1:${local_part_suffix}}:\
1612                  EXT=${substr_1:${local_part_suffix}}:\
1613                  LOCAL=${local_part}${local_part_suffix}:\
1614                  RECIPIENT=${local_part}${local_part_suffix}@${domain}"
1615   return_output
1616   return_path_add
1617
1618 # This transport is used for handling file addresses generated by alias
1619 # or .forward files. It has a conventional name, since it is not actually
1620 # mentioned elsewhere in this configuration file.
1621
1622 address_file:
1623   debug_print = "T: address_file for $local_part@$domain"
1624   driver = appendfile
1625   return_path_add
1626
1627 address_file_group:
1628   debug_print = "T: address_file_group for $local_part@$domain"
1629   driver = appendfile
1630   return_path_add
1631   mode = 0660
1632   directory_mode = 0770
1633   mode_fail_narrower = false
1634
1635 # This transport is used for handling file addresses generated by alias
1636 # or .forward files if the path ends in "/", which causes it to be treated
1637 # as a directory name rather than a file name. Each message is then delivered
1638 # to a unique file in the directory. If instead you want all such deliveries to
1639 # be in the "maildir" format that is used by some other mail software,
1640 # uncomment the final option below. If this is done, the directory specified
1641 # in the .forward or alias file is the base maildir directory.
1642 #
1643 # Should you want to be able to specify either maildir or non-maildir
1644 # directory-style deliveries, then you must set up yet another transport,
1645 # called address_directory2. This is used if the path ends in "//" so should
1646 # be the one used for maildir, as the double slash suggests another level
1647 # of directory. In the absence of address_directory2, paths ending in //
1648 # are passed to address_directory.
1649
1650 address_directory:
1651   debug_print = "T: address_directory for $local_part@$domain"
1652   driver = appendfile
1653   check_string = 
1654   maildir_format
1655   message_prefix = ""
1656   message_suffix = ""
1657   return_path_add
1658
1659 # This transport is used for handling autoreplies generated by the filtering
1660 # option of the forwardfile director. It has a conventional name, since it
1661 # is not actually mentioned elsewhere in this configuration file.
1662 address_reply:
1663   debug_print = "T: address_reply for $local_part@$domain"
1664   driver = autoreply
1665
1666 # This transport is used for delivering messages over SMTP connections.
1667
1668 remote_smtp:
1669   debug_print = "T: remote_smtp for $local_part@$domain"
1670   driver = smtp
1671   connect_timeout = 15s
1672   delay_after_cutoff = false
1673   tls_certificate = /etc/exim4/ssl/thishost.crt
1674   tls_privatekey = /etc/exim4/ssl/thishost.key
1675
1676 remote_smtp_single_domain:
1677   debug_print = "T: remote_smtp_single_domain for $local_part@$domain"
1678   driver = smtp
1679   connect_timeout = 15s
1680   delay_after_cutoff = false
1681   no_multi_domain
1682   tls_certificate = /etc/exim4/ssl/thishost.crt
1683   tls_privatekey = /etc/exim4/ssl/thishost.key
1684
1685 <%- if @use_smarthost -%>
1686 remote_smtp_smarthost:
1687   debug_print = "T: remote_smtp_smarthost for $local_part@$domain"
1688   driver = smtp
1689   delay_after_cutoff = false
1690   port = <%= @smarthost_port %>
1691   tls_tempfail_tryclear = false
1692   hosts_require_tls = <%= @smarthost %>
1693   tls_certificate = /etc/exim4/ssl/thishost.crt
1694   tls_privatekey = /etc/exim4/ssl/thishost.key
1695 <%- end -%>
1696 # Send the message to procmail
1697 procmail_pipe:
1698   debug_print = "T: procmail_pipe for $local_part@$domain"
1699   driver = pipe
1700   command = /usr/bin/procmail -a ${substr_1:${local_part_suffix}}
1701   return_path_add
1702   user = ${local_part}
1703
1704 bsmtp:
1705   debug_print = "T: bsmtp for $local_part@$domain"
1706   driver = appendfile
1707   batch_max = 100
1708   file = ${host}
1709   message_prefix = 
1710   message_suffix = 
1711   use_bsmtp
1712   user = ${extract{user}{\
1713                    ${lookup{$domain}partial-lsearch{/etc/exim4/bsmtp}\
1714                      {$value}fail}\
1715                    }}
1716
1717 <%- if @is_bugsmx -%>
1718 bugs_pipe:
1719   debug_print = "T: bugs_pipe for $local_part@$domain"
1720   driver = pipe
1721   command = /srv/bugs.debian.org/mail/run-procmail
1722   environment = "EXTENSION=${substr_1:${local_part_suffix}}:\
1723                  EXT=${substr_1:${local_part_suffix}}:\
1724                  LOCAL=${local_part}${local_part_suffix}:\
1725                  RECIPIENT=${local_part}${local_part_suffix}@${domain}"
1726   return_path_add
1727   return_output
1728   user = debbugs
1729
1730 <%- end -%>
1731 <%- if @is_rtmaster -%>
1732 rt_pipe:
1733   debug_print = "T: rt_pipe for $local_part${local_part_suffix}@$domain"
1734   driver = pipe
1735   return_fail_output
1736   environment = EXTENSION=${substr_1:${local_part_suffix}}
1737   allow_commands = /usr/bin/rt-mailgate
1738
1739 <%- end -%>
1740
1741 ######################################################################
1742 #                      RETRY CONFIGURATION                           #
1743 ######################################################################
1744
1745 # Domain               Error       Retries
1746 # ------               -----       -------
1747
1748 begin retry
1749
1750 ## Note that retry rules specify when an address / host / mail should
1751 ## become eligible for retrying. They do not specify when the retry
1752 ## attempt will actually occur, as this is dependent on queue run
1753 ## frequency and timing.
1754
1755 # For mail to debian.org addresses, this rule starts with
1756 # retries every 10 minutes for 2 hours, then increasing retry intervals,
1757 # starting at 2 hours and increasing each time by a factor of 1.5, up to 16
1758 # hours, then retries every 8 hours until 14 days have passed since the first
1759 # failed delivery.
1760 debian.org             *           F,2h,10m; G,16h,2h,1.5; F,14d,8h
1761
1762 # Bounces should get retried every 10 minutes for up to 2 hours
1763 *                      * senders=: F,2h,10m
1764
1765 # Temporary errors at RCPT TO get retried at 5 minute intervals for
1766 # 2 hours, then 10 minute intervals for 4 hours, and finally at 15
1767 # minute intervals for 4 days. This assumes that the cause of the
1768 # error will get resolved quickly in most cases.
1769 *                      rcpt_4xx    F,2h,5m;  F,4h,10m; F,4d,15m
1770
1771 # For all remaining mails, addresses and hosts, this rule starts with
1772 # retries every 15 minutes for 2 hours, then increasing retry intervals,
1773 # starting at 2 hours and increasing each time by a factor of 1.5, up to 16
1774 # hours, then retries every 8 hours until 4 days have passed since the first
1775 # failed delivery.
1776 *                      *           F,2h,15m; G,16h,2h,1.5; F,4d,8h
1777
1778 # End of Exim 4 configuration