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