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