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