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