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