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