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