Update lists list.
[PerlMail.git] / PerlMail / Config.pm
1 #! /usr/bin/perl
2
3 #       $Id$
4 # Copyright (C) 2002-2003 Jan Kratochvil <project-PerlMail@jankratochvil.net>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package PerlMail::Config;
22 use vars qw($VERSION);
23 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 use strict;
25 use warnings;
26
27 require Exporter;
28 use vars qw(@ISA @EXPORT);
29 @ISA=qw(Exporter);
30 @EXPORT=qw(
31                 $HOME
32                 $Mail @ValidUsers $IdleMax $MaxBodySMS @SMSwebRcpt $SMSwebRcpt_username
33                 $Lock_pathname $PeerAddr $Socket_timeout $DB_table $DBI_database $DBI_user $DBI_pwd
34                 $sendmail_orig @addr_addon &FromAddress @h_rcpt @h_from
35                 %audit_profile @sms_squeezes @alternates_host @dnsbl_whitelist
36
37                 $Audit $is_pgp $opt_F $procmailFROM_MAILER $store_ignore $store_ignorenewmail
38                 $store_profile
39                 );
40
41 require Mail::Alias;
42
43
44 BEGIN {
45         for (qw(headerhas store headeris did dnsbl store_muttrc_alternates Received_for parts_linear mime_type
46                         body_first mimehead spamassassin header_remap)) {
47                 eval 'sub '.$_.' { return ::'.$_.'(@_); }';
48                 }
49         }
50
51
52 # perlmail-accept & perlmail-sendmail
53
54 # Various configuration files location is derived from it:
55 our $HOME="/home/lace";
56
57
58 # perlmail-accept
59
60 # Mail folder:
61 our $Mail="$HOME/Mail";
62 # Users respected for the 'idle' state (see $IdleMax):
63 our @ValidUsers=qw(root lace short kratochvil _local);
64 # Maximum number of local console idle seconds while still considered as 'active user':
65 our $IdleMax=10;
66 # Maxium number of bytes to pass to Lingua::EN::Squeeze (performance optimization):
67 our $MaxBodySMS=0x1000;
68 # Telephone number to send SMSes by WWW::SMS to:
69 our @SMSwebRcpt=qw(420 602 431329);
70 # Some WWW::SMS modules require username:
71 our $SMSwebRcpt_username="lace2";
72
73
74 # perlmail-submit
75
76 # Global system lock for exclusive $DB_table access:
77 our $Lock_pathname="/tmp/PerlMail.lock";
78 # 'workstation' hostname and port. Hostname may be dyndns:
79 our $PeerAddr="exuhome.dyn.jankratochvil.net.:852";
80 #our $PeerAddr="127.0.0.1:2852";
81 # 15sec is NOT enough as the remote peer must complete mail store:
82 our $Socket_timeout=7600;
83 # MySQL table name:
84 our $DB_table="PerlMail_folder";
85 # MySQL database name:
86 our $DBI_database="short";
87 # MySQL user name:
88 our $DBI_user="short";
89 # MySQL user password:
90 our $DBI_pwd=$ENV{"HOME"}."/priv/mysql.".$DBI_user.".pwd";
91
92
93 # perlmail-sendmail
94
95 # Lists where <rcpt-USER.AT.HOST@jankratochvil.net> address is generated:
96 my @lists=qw(
97                 tacplus-l@disaster.com
98                 gsm@sh.cvut.cz
99                 linux-fsdevel@vger.kernel.org
100                 n9k@pandora.cz
101                 dev9k@pandora.cz
102                 gsm@pandora.cz
103                 ros-general@reactos.com
104                 ros-kernel@reactos.com
105                 ros-cvs@reactos.com
106                 4cinfo@atrey.karlin.mff.cuni.cz
107                 libtool@gnu.org
108                 libtool-patches@gnu.org
109                 wine-license@winehq.org
110                 wine-devel@winehq.org
111                 wine-patches@winehq.org
112                 gtk-devel-list@gnome.org
113                 gnome-vfs-list@gnome.org
114                 captive-announce-list@jankratochvil.net
115                 captive-list@jankratochvil.net
116                 captive-devel-list@jankratochvil.net
117                 linux-ntfs-announce@lists.sourceforge.net
118                 linux-ntfs-dev@lists.sourceforge.net
119                 orbit-list@gnome.org
120                 devel@kannel.org
121                 automake@gnu.org
122                 autoconf@gnu.org
123                 autoconf-patches@gnu.org
124                 wget-patches@sunsite.dk
125                 wget@sunsite.dk
126                 mailman-developers@python.org
127                 wineconf@winehq.org
128                 prague-pm@pm.org
129                 dev@httpd.apache.org
130                 asterisk-perl@lists.gnuinter.net
131                 isdn4linux@listserv.isdn4linux.de
132                 libc-alpha@sources.redhat.com
133                 );
134                 #4c-list@vellum.cz
135
136 # Pathname of the original sendmail(8) binary:
137 our $sendmail_orig=(-x ($_="/usr/sbin/sendmail-orig") ? $_ : "/usr/sbin/sendmail");
138 # List of addresses to locally Bcc all mails to:
139 # Mail-Alias-1.12 defaults to "/etc/mail/aliases" which does not exist on RedHat sendmail-8.12.5-7
140 # Mail-Alias-1.12 will clutter $_ !
141 our @addr_addon=(Mail::Alias->new("/etc/aliases")->exists("sentout") ? ("sentout") : ());
142
143 our $opt_F;     # imported
144 our $is_pgp;    # imported
145 my %lists=map(($_=>1),@lists);
146 # Generate new From address for the target $rcpt of type Mail::Address.
147 # $iserror is true for "MAIL FROM" RFC821 address, false for "From:" RFC822 address.
148 # Returns: Mail::Address instance.
149 sub FromAddress
150 {
151 my($rcpt,$iserror)=@_;
152
153         my $phrase=(defined $opt_F ? $opt_F : "Jan Kratochvil");
154         {
155                 last if !$is_pgp;
156                 last if $iserror;
157                 local *F;
158                 local $_;
159                 my $filename="$HOME/.gnupg/options";
160                 open F,$filename or do { warn "Open \"$filename\": $!"; last; };
161                 local $/="\n";
162                 my @keys=map((/^\s*default-key\s+(\S+)\s*$/),<F>);
163                 @keys==1 or do { warn "Found ".scalar(@keys)." 'default-key's in your \"$filename\", ignoring"; last; };
164                 close F or warn "Close \"$filename\": $!";
165                 my $default_key=$keys[0];
166                 $default_key=~/^[[:xdigit:]]{8}$/ or do { warn "Invalid 'default-key', ignoring: $default_key"; last; };
167                 return Mail::Address->new(
168                                 $phrase,
169                                 'pgp-'.uc($default_key).'@jankratochvil.net',
170                                 );
171                 }
172         return Mail::Address->new($phrase,'lace@jankratochvil.net') if !$lists{$rcpt->address()};
173         return Mail::Address->new(
174                         $phrase,
175                         'rcpt'
176                                         .'-'
177                                         .(defined($rcpt->user()) ? $rcpt->user() : "NOUSER")
178                                         .".AT."
179                                         .(defined($rcpt->host()) ? $rcpt->host() : "LOCAL")
180                                         .'@jankratochvil.net',
181                         );
182 }
183
184 # RedHat sendmail-8.9.3-20/src/conf.c/HdrInfo[]/\Q/* destination fields */\E
185 # FIXME: Recognize "Resent-$_" headers for -t but when we are in 'resent' mode?
186 our @h_rcpt=(   # case in-sensitive!
187                 "To",
188                 "Cc",
189                 "Bcc",
190                 "Apparently-To",
191                 );
192 # ordering matters; first header found is substituted
193 # last header is subsituted if no one is found
194 our @h_from=(
195                 "Resent-From",
196                 "From",
197                 );
198
199
200 # My-Audit
201
202 # Setup profile names.
203 # First element of /^=/ form copies it referenced profile to be extended.
204 # 'did'    =>did() subroutine will return true for it.
205 # 'syslog' =>Use syslog(3).
206 # 'bell'   =>Bell sound.
207 # 'sms=\d+'=>Send SMS by WWW::SMS with specified maximum # of parts
208 our %audit_profile=(
209                 "btw"   =>[],
210                 "silent"=>["=btw"   ,"did"],
211                 "log"   =>["=silent","syslog"],
212                 "bell"  =>["=log"   ,"bell"],
213                 "sms"   =>["=bell"  ,"sms=1"],
214                 "crit"  =>["=sms"   ,"sms=3"],
215                 );
216 # Try the squeezing methods in this order:
217 our @sms_squeezes=(
218                 { "SqueezeControl"=>"noconv"                         },
219                 { "SqueezeControl"=>"conv"  ,"SQZ_OPTIMIZE_LEVEL"=>0 },
220                 { "SqueezeControl"=>"conv"  ,"SQZ_OPTIMIZE_LEVEL"=>1 },
221                 { "SqueezeControl"=>"med"   ,"SQZ_OPTIMIZE_LEVEL"=>0 },
222                 { "SqueezeControl"=>"med"   ,"SQZ_OPTIMIZE_LEVEL"=>1 },
223                 { "SqueezeControl"=>"max"   ,"SQZ_OPTIMIZE_LEVEL"=>0 },
224                 { "SqueezeControl"=>"max"   ,"SQZ_OPTIMIZE_LEVEL"=>1 },
225                 );
226 # Hostnames where we had alternate e-mail addresses:
227 our @alternates_host=(
228                 "jabberwock.ucw.cz",    # short@ucw.cz
229                 "atrey.karlin.mff.cuni.cz",     # short@atrey.karlin.mff.cuni.cz
230                 "k332.feld.cvut.cz",    # short@k332.feld.cvut.cz
231                 );
232 # Override DNS blacklists:
233 our @dnsbl_whitelist=(
234                 "195.250.128.83",       # smtp3.vol.cz; vol.cz.multistage.blackholes.five-ten-sg.com.
235                 "64.49.222.22",         # mail.pm.org: rackspace.com.spam-support.blackholes.five-ten-sg.com.
236                 "208.147.243.5",        # gambit.liquidcomm.net: cw.net.spam-support.blackholes.five-ten-sg.com.
237                 "213.235.135.70",       # smtp.tiscali.cz: tiscali.cz.multistage.blackholes.five-ten-sg.com.
238                 "205.139.198.11",       # eniac.disaster.com: cw.net.spam-support.blackholes.five-ten-sg.com.
239                 "127.0.0.2",                    # 2.0.0.127.relays.ordb.org.
240                 "65.113.40.131",        # bozo.vmware.com: qwest.net.spam-support.blackholes.five-ten-sg.com.
241                 "66.218.85.33",         # mta2.wss.scd.yahoo.com: yahoo.com.spam.blackholes.five-ten-sg.com.
242                 "212.80.76.42",         # mx2.seznam.cz: seznam.cz.free.blackholes.five-ten-sg.com.
243                 "64.110.204.63",        # hsdbrg64-110-204-63.sasknet.sk.ca: 64.110.202.181.sasknet.sk.ca.misc.spam.blackholes.five-ten-sg.com.
244                 "212.80.76.44",         # mx1.seznam.cz: 44.76.80.212.blackholes.five-ten-sg.com.
245                 "212.80.76.29",         # prace.seznam.cz: 212.80.76.42.seznam.cz.free.blackholes.five-ten-sg.com
246                 "193.252.22.30",        # smtp1.wanadoo.fr: 30.22.252.193.blackholes.five-ten-sg.com
247                 "213.151.87.16",        # posta.dobnet.cz: 16.87.151.213.relays.ordb.org
248                 );
249
250 our $Audit;     # imported
251 our $procmailFROM_MAILER;       # imported
252 our $store_ignorenewmail;       # imported
253 our $store_profile;     # imported
254 our $store_ignore;      # imported
255 sub audit
256 {
257         $store_profile=undef();
258
259         # never spawn new mail if FROM_MAILER
260         # $isFROM_MAILER postponed after maillists as they may look as FROM_MAILER
261         #use re 'debug';
262         my $isFROM_MAILER=$Audit->header()=~/$procmailFROM_MAILER/mio;
263         $store_ignorenewmail=(0
264                         || $isFROM_MAILER
265                         || headerhas "From",'<Regexp:^owner->'
266                         );
267
268         # spam honeypots
269         return if did sub {
270                 local $_;
271                 # Do not local $store_file as it is our-imported
272                 $store_profile="silent";
273                 store "=spam"         if grep /^\Qshort\@k332.feld.cvut.cz\E/i,Received_for();
274                 # TODO: foreign violation of RFC 822 section 4.4.4, Subject:.*Automatick.+odpov.+v.+nep.+tomnosti
275                 store "=spam"         if headeris "From",'<ghandchi@hotmail.com>';
276                 store "=spam"         if headeris "From",'<newsletter@levnapc.cz>';
277                 store "=spam"         if headeris "From",'<Tomas@dtpstudio.cz>';
278                 store "=spam"         if headeris "From",'<BNcom@email.bn.com>';
279                 store "=spam"         if headeris "From",'<e4luck@lists.opt4email.com>';
280                 store "=spam"         if headeris "From",'<mailcontests@lists.servitall.com>';
281                 store "=spam"         if headeris "From",'<canda@lica.cz>';
282                 {
283                         # weak detection: files with text/html w/o text/plain are usually a spam
284                         my @types_linear=map({ mime_type($_); } parts_linear());
285                         store "=spam"       if grep({ $_ eq "text/html"; } @types_linear) && !grep({ $_ eq "text/plain"; } @types_linear);
286                         }
287                 store "=spam"         if ($_=mimehead(body_first())->mime_attr("Content-Type.charset")) && /^big5/i;
288                 };
289         $store_profile=undef();
290
291         # spam detection
292         return if did sub {
293                 # Do not local $store_file as it is our-imported
294                 $store_profile="silent";
295                 local $_;
296                 store "=spam".($_ eq 1 ? "" : ";$_")      if $_=spamassassin();
297                 };
298         $store_profile=undef();
299         return if did sub {
300                 # Do not local $store_file as it is our-imported
301                 $store_profile="silent";
302                 local $_;
303                 store "=spam"                      .";$_","log" if $_=dnsbl '.relays.ordb.org.' ,1;     # all hosts
304                 store "=spam"                      .";$_","log" if $_=dnsbl '.blackholes.mail-abuse.org.' ,1;   # all hosts
305                 # we don't check all hosts as they can be "dialup" category, FIXME: check for it
306 #               store "=spam"                      .";$_","log" if $_=dnsbl '.blackholes.five-ten-sg.com.',0; # just first
307                 # I don't send viruses but viruses propagate mails of mine
308                 store "=spam"                                   if headeris "X-Mailer",'ravmd/8.3.2';
309                 store "=spam"                                   if $isFROM_MAILER && headeris("To",'<short@ucw.cz>');
310                 };
311         $store_profile=undef();
312
313         # special delivery
314         store "=err","bell" and return if headerhas \&Received_for,'<short+err@>';
315
316         # ppl-wished foreign remapping, Reply-To is left untouched!
317         # FIXME: modifications are now being dropped by &write_message!
318         header_remap("From",{
319                         'kerere@post.cz'               =>'kamzik@k332.feld.cvut.cz',
320                         'profes@mbox.vol.cz'           =>'kratochvilova@egp.cz',
321                         'jkrouzek@mbox.vol.cz'         =>'krouzek@mbox.fsv.cuni.cz',
322                         'jakub.gorner@lidovky.cz'      =>'tonda@disnet.cz',
323                         'jan.kolar@videoprogress.cz'   =>'jenda.kolar@volny.cz',
324                         'daniel.rulicek@cponline.cz'   =>'daniel.rulicek@cpress.cz',
325                         'pavel@suse.cz'                =>'pavel@ucw.cz',
326                         });
327
328         # My obsolete e-mail addresses
329         store_muttrc_alternates "=redirect-","btw";
330
331         # nasty public lists with $store_ignore
332         {
333                 # Do not local $store_file as it is our-imported
334                 $store_profile="log";
335                 local $store_ignore;
336                 $store_ignore="smsmail"    if 1==$Audit->body() && length(join "",$Audit->body())<180;  # SMS mail
337                 $store_ignore="sms OS"     if $Audit->subject()=~/^Email pro: /;        # "^Email pro: gsm@sh\.cvut\.cz$";
338                 $store_ignore="list-moron" if grep { headeris "From",$_; } qw(
339                                 <kempny@>
340                                 <help.me@wo.cz>
341                                 <mr.death@mail.cz>
342                                 <danx3@centrum.cz>
343                                 <@mujoskar.cz>
344                                 <satko@quanto.nr.sanet.sk>
345                                 <vithous@attorney.cz> <viroman@attorney.cz>
346                                 <konf@klain.cz>
347                                 <stein@tiscali.cz>
348                                 <barevnej@volny.cz>
349                                 );
350
351                 store "=gsm"               if headeris  "Sender"   ,'<owner-gsm@sh.cvut.cz>';
352                 store "=gsmpand"           if headeris  "List-Post",'<gsm@pandora.cz>';
353                 store "=9kc","log"         if headeris  "List-Post",'<n9k@pandora.cz>';
354                 store "=9kcd","log"        if headeris  "List-Post",'<dev9k@pandora.cz>';
355                 }
356         $store_profile=undef();
357
358         # lists
359         store "=mozillabug","log"    if headeris "From"     ,'<bugzilla-daemon@mozilla.org>';
360         store "=9ku","log"           if headeris "List-Id"  ,'<9000.listman.net>';
361         store "=9kd","log"           if headeris "Sender"   ,'<owner-9000-developers@geekstuff.co.uk>';
362         store "=spong","log"         if headeris "List-Id"  ,'<spong-users.lists.sourceforge.net>';
363         store "=gtkd","silent"       if headeris "List-Id"  ,'<gtk-devel-list.gnome.org>';
364         store "=gnomevfs","log"      if headeris "List-Id"  ,'<gnome-vfs-list.gnome.org>';
365         store "=mffstatnice","bell"  if headeris "List-Post",'<statnice@atrey.karlin.mff.cuni.cz>';
366         store "=hw","log"            if headeris "List-Post",'<hw-news@list.gin.cz>';
367         store "=gnokii","log"        if headeris "List-Id"  ,'<gnokii-users.mail.freesoftware.fsf.org>';
368         store "=winelic","log"       if headeris "List-Id"  ,'<wine-license.winehq.org>';
369         store "=wined","log"         if headeris "List-Id"  ,'<wine-devel.winehq.org>';
370         store "=winepat","silent"    if headeris "List-Id"  ,'<wine-patches.winehq.org>';
371         store "=winecvs","silent"    if headeris "List-Id"  ,'<wine-cvs.winehq.org>';
372         store "=wineann","log"       if headeris "List-Id"  ,'<wine-announce.winehq.org>';
373         store "=wineconf","log"      if headeris "List-Id"  ,'<wineconf.winehq.org>';
374         store "=ros","log"           if headeris "List-Id"  ,'<ros-general.reactos.com>';
375         store "=roskernel","log"     if headeris "List-Id"  ,'<ros-kernel.reactos.com>';
376         store "=roscvs","silent"     if headeris "List-Id"  ,'<ros-cvs.reactos.com>';
377         store "=rosbug","log"        if headeris "Reply-To" ,'<scarab@reactos.wox.org>';
378         store "=fsd","silent"        if headeris "X-Mailing-List",'<linux-fsdevel@vger.kernel.org>';
379         store "=kerneld","silent"    if headeris "X-Mailing-List",'<linux-kernel@vger.kernel.org>';
380         store "=surprise","sms"      if headeris "List-Post",'<surprise@atrey.karlin.mff.cuni.cz>';
381         store "=surprisesuse","sms"  if headeris "Sender"   ,'<owner-surprise@suse.cz>';
382         store "=tacacs","log"        if headeris "Sender"   ,'<tacplus-l@disaster.com>';
383         store "=tacacs","log"        if headeris "Sender"   ,'<owner-tacplus-l@disaster.com>';
384         store "=tacacs","log"        if headeris "List-Id"  ,'<devel.lists.tacplus.org>';
385         store "=pm","log"            if headeris "Sender"   ,'<owner-prague-pm@pm.org>';
386         store "=radary","log"        if headeris "Reply-To" ,'<pha@radary.cz>';
387         store "=dnet","log"          if headeris "Sender"   ,'<@lists.distributed.net>';
388         store "=linux-input","log"   if headeris "List-Post",'<linux-input@atrey.karlin.mff.cuni.cz>';
389         store "=strom","bell"        if headeris "List-Post",'<vodni-strom@atrey.karlin.mff.cuni.cz>';
390         store "=netinfo","log"       if headeris "Sender"   ,'<owner-netinfo-l@vol.cz>';
391         store "=saintmj","log"       if headeris "From"     ,'<netsaint@kam-enterprise.ms.mff.cuni.cz>';
392         store "=saintmj","log"       if headeris "From"     ,'<netsaint@kam.mff.cuni.cz>';
393         store "=4cerr","bell"        if headeris "From"     ,'<owner-4cinfo@atrey.karlin.mff.cuni.cz>';
394         store "=4c","sms"            if headeris "List-Post",'<4cinfo@atrey.karlin.mff.cuni.cz>';
395         store "=slashdot","bell"     if headeris "From"     ,'<slashdot@slashdot.org>';
396         store "=freshmeat","bell"    if headeris "From"     ,'<noreply@freshmeat.net>';
397         store "=sourceforge","bell"  if headeris "From"     ,'<noreply@sourceforge.net>';
398         store "=gsmperlcvs","silent" if headeris("From"     ,'<johan@intra.tektonica.com>')
399                                         && $Audit->subject()=~/^'.*' has been updated!$/;
400         store "=libtoold","log"      if headeris "List-Id"  ,'<libtool.gnu.org>';
401         store "=libtoolpat","log"    if headeris "List-Id"  ,'<libtool-patches.gnu.org>';
402         store "=automake","log"      if headeris "List-Id"  ,'<automake.gnu.org>';
403         store "=autoconf","log"      if headeris "List-Id"  ,'<autoconf.gnu.org>';
404         store "=autoconfpat","log"   if headeris "List-Id"  ,'<autoconf-patches.gnu.org>';
405         my %mailman=(
406                         '<captive-admin@>'=>"=caperr",
407                         '<captive-devel-admin@>'=>"=caperr",
408                         '<captive-announce-admin@>'=>"=caperr",
409                         '<4c-admin@>'=>"=4cerr",
410                         );
411         if (!did sub {
412                         while ((my($mailaddr,$folder)=each(%mailman))) {
413                                 (my $maillistaddr=$mailaddr)=~s/-admin/-list$&/;
414                                 store $folder,"log" if (headeris("From",'<mailman-owner@vellum.cz>')&&headeris("To",$mailaddr))
415                                                 || headeris("From",$maillistaddr)
416                                                 || headeris("To",$maillistaddr)
417                                                 || headeris("From",$mailaddr);
418                                 }
419                         }) {
420                 store "=cap","bell"        if headeris "List-Id"  ,'<captive-list.jankratochvil.net>';
421                 store "=capd","bell"       if headeris "List-Id"  ,'<captive-devel-list.jankratochvil.net>';
422                 store "=capann","bell"     if headeris "List-Id"  ,'<captive-announce-list.jankratochvil.net>';
423                 store "=4c","bell"         if headeris "List-Id"  ,'<4c-list.vellum.cz>';
424                 }
425         store "=ntfsann","log"       if headeris "List-Id"  ,'<linux-ntfs-announce.lists.sourceforge.net>';
426         store "=ntfsd","log"         if headeris "List-Id"  ,'<linux-ntfs-dev.lists.sourceforge.net>';
427         store "=orbit","log"         if headeris "List-Id"  ,'<orbit-list.gnome.org>';
428         store "=kand","log"          if headeris "List-Id"  ,'<devel.kannel.org>';
429         store "=mailmand","log"      if headeris "List-Id"  ,'<mailman-developers.python.org>';
430         store "=asterisk-perl","log" if headeris "List-Post",'<asterisk-perl@lists.gnuinter.net>';
431         store "=i4l","log"           if headeris "List-Id"  ,'<isdn4linux.listserv.isdn4linux.de>';
432         store "=glibc","log"         if headeris "Mailing-List",qr/\b\Qlibc-alpha-help\E@\Qsources.redhat.com\E\b/;
433         store "=fedann","bell"       if headeris "List-Id"  ,'<fedora-announce-list.redhat.com>';
434         # own webs
435         store "=energie","bell"      if headeris "From"     ,qr/^EnergieWeb/;
436         store "=ats","log"           if headeris("From"     ,'<root@ms.atspraha.cz>')
437                                         || (headeris("From",'<online@ringier.cz>') && headerhas("To",'<blesk@atspraha.cz>'));
438         store "=atscasablanca","log" if headeris "From"     ,'<casablanca@ms.atspraha.cz>';
439         store "=www-sms","log"       if headeris "List-Id"  ,'<www-sms-developers.lists.sourceforge.net>';
440         store "=httpdd","log"        if headeris "list-post",'<dev@httpd.apache.org>';
441         store "=mms2log","log"       if headeris "Return-Path",'<root@node0.mms2.org>';
442
443         # Petr Koutecky does not mark his Stuff
444         store "=koutecky","log"      if headeris "Return-Path",'<velkyhroch@seznam.cz>';
445         store "=koutecky","log"      if headeris "Return-Path",'<pk.petr@centrum.cz>';
446
447         store "=errm","bell"         if $isFROM_MAILER && !did();
448
449         if (!did) {
450                 store "==","sms";
451                 spamassassin "sa-learn --ham";
452                 }
453 }
454
455 sub audit_sms_address
456 {
457 my($obj)=@_;
458
459         my $address=$obj->address();
460         if (my $alternates=muttrc_get("alternates")) {
461                 return "I" if $address=~/$alternates/si;
462                 }
463         my %aliases=muttrc_aliases();
464         if (my $alias=$aliases{lc $address}) {
465                 local $_=$alias;
466                 s/\b(Bus)siness$/$1/i;
467                 s/\.ident$//i;
468                 return $_;
469                 }
470         local $_=$address;
471         s/\.cz$//i;
472         return $_;
473 }
474
475 # $args{"from"}
476 # $args{"subject"}
477 # $args{"body"}
478 sub audit_sms
479 {
480 my(%args)=@_;
481
482         my $from=(@{$args{"from"}} ? join(",",map({ audit_sms_address($_); } @{$args{"from"}})) : "?");
483         local $_;
484
485         $_=$args{"subject"};
486         # headers
487         s/(?:Re|Aw|Odp|Fw|Fwd|OT)(?:\[\d+\])?://ig;
488         # former subject
489         s/\bbylo:.*$//i;
490         s/\[\s*WAS:.*\]\s*$//i;
491         # trim
492         s/^\s*//s;
493         s/\s*$//s;
494         my $subject=$_;
495
496         $_=$args{"body"};
497         # max. 9 lines of .sig
498         s/\n-- (?:\n[^\n]*){0,9}$//gs;
499         # "Original Message"/"Puvodni zprava" etc. up to empty line
500         # "- - - Original message: - - -" is by "Lotus Notes Release 5.0.5  September 22, 2000"
501         s/(^|\n)[\s^\n]*(?:-----[\w\s]*-----|- - - Original message: - - -)[\s^\n]*(?:\n[^\n]+)*\n{2,}(?:\s*[^>\s].*$)?/\n/gs;
502         # Remove "..." lines (is it used by anyone except me?)
503         s/^\Q...\E$/*/gm;
504         # quoting "> "
505         s/^(?:\s*[[:upper:]]{0,3}>)+.*$/*/gm;
506         s/(?:^|\n)(?:\*\n+)+/\n*\n/gs;
507         # attributions
508         s/^.*\b(?:wrote|writes|napsal jste):\s*$//gm;
509         my $body=$_;
510
511         return [$from,"($subject)$body"];
512 }
513
514 1;