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