Remove any LMTP.
[PerlMail.git] / PerlMail / Config.pm
index e06be0c..52bc3f8 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/perl
 # 
 #      $Id$
-# Copyright (C) 2002-2003 Jan Kratochvil <short@ucw.cz>
+# Copyright (C) 2002-2003 Jan Kratochvil <project-PerlMail@jankratochvil.net>
 # 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -31,47 +31,122 @@ use vars qw(@ISA @EXPORT);
                $HOME
                $Mail @ValidUsers $IdleMax $MaxBodySMS @SMSwebRcpt $SMSwebRcpt_username
                $Lock_pathname $PeerAddr $Socket_timeout $DB_table $DBI_database $DBI_user $DBI_pwd
-               $sendmail_orig @addr_addon &FromAddress @h_rcpt @h_from);
+               $clamscan_waitpid_timeout
+               $sendmail_orig @addr_addon &FromAddress @h_rcpt @h_from
+               %audit_profile @sms_squeezes @alternates_host @dnsbl_whitelist
+
+               $Audit $is_pgp $opt_F $procmailFROM_MAILER $store_ignore $store_ignorenewmail
+               $store_profile
+               );
 
 require Mail::Alias;
+use Carp qw(confess cluck);
+
+
+BEGIN {
+       for (qw(headerhas writeto store headeris did dnsbl store_muttrc_alternates Received_for parts_linear mime_type
+                       body_first body_simple is_multipart mimehead mimebody spamassassin clamscan header_remap)) {
+               eval 'sub '.$_.' { return ::'.$_.'(@_); }';
+               }
+       }
 
 
 # perlmail-accept & perlmail-sendmail
 
+# Various configuration files location is derived from it:
 our $HOME="/home/lace";
 
 
 # perlmail-accept
 
+# Mail folder:
 our $Mail="$HOME/Mail";
+# Users respected for the 'idle' state (see $IdleMax):
 our @ValidUsers=qw(root lace short kratochvil _local);
+# Maximum number of local console idle seconds while still considered as 'active user':
 our $IdleMax=10;
-our $MaxBodySMS=0x1000;        # max bytes to pass to Lingua::EN::Squeeze
+# Maxium number of bytes to pass to Lingua::EN::Squeeze (performance optimization):
+our $MaxBodySMS=0x1000;
+# Telephone number to send SMSes by WWW::SMS to:
 our @SMSwebRcpt=qw(420 602 431329);
+# Some WWW::SMS modules require username:
 our $SMSwebRcpt_username="lace2";
+our $clamscan_waitpid_timeout=3;
 
 
 # perlmail-submit
 
+# Global system lock for exclusive $DB_table access:
 our $Lock_pathname="/tmp/PerlMail.lock";
-our $PeerAddr="exuhome.dyn.jankratochvil.net.:852";
+# 'workstation' hostname and port. Hostname may be dyndns:
+our $PeerAddr="kashome.dyn.jankratochvil.net.:852";
 #our $PeerAddr="127.0.0.1:2852";
-our $Socket_timeout=7600;       # 15sec is NOT enough!
+# 15sec is NOT enough as the remote peer must complete mail store:
+our $Socket_timeout=7600;
+# MySQL table name:
 our $DB_table="PerlMail_folder";
+# MySQL database name:
 our $DBI_database="short";
+# MySQL user name:
 our $DBI_user="short";
-our $DBI_pwd=$ENV{"HOME"}."/priv/mysql.".$DBI_user.".pwd";
+# MySQL user password:
+our $DBI_pwd=$HOME."/priv/mysql.".$DBI_user.".pwd";
 
 
 # perlmail-sendmail
 
+# Lists where <rcpt-USER.AT.HOST@jankratochvil.net> address is generated:
+my @lists=qw(
+               tacplus-l@disaster.com
+               gsm@sh.cvut.cz
+               n9k@pandora.cz
+               dev9k@pandora.cz
+               gsm@pandora.cz
+               ros-general@reactos.com
+               ros-kernel@reactos.com
+               ros-dev@reactos.com
+               ros-cvs@reactos.com
+               4cinfo@atrey.karlin.mff.cuni.cz
+               libtool@gnu.org
+               libtool-patches@gnu.org
+               wine-license@winehq.org
+               gtk-devel-list@gnome.org
+               gnome-vfs-list@gnome.org
+               captive-announce-list@jankratochvil.net
+               captive-list@jankratochvil.net
+               captive-devel-list@jankratochvil.net
+               linux-ntfs-announce@lists.sourceforge.net
+               linux-ntfs-dev@lists.sourceforge.net
+               orbit-list@gnome.org
+               devel@kannel.org
+               automake@gnu.org
+               autoconf@gnu.org
+               autoconf-patches@gnu.org
+               wget-patches@sunsite.dk
+               wget@sunsite.dk
+               wineconf@winehq.org
+               prague-pm@pm.org
+               dev@httpd.apache.org
+               asterisk-perl@lists.gnuinter.net
+               isdn4linux@listserv.isdn4linux.de
+               libc-alpha@sources.redhat.com
+               squid-dev@squid-cache.org
+               );
+               #4c-list@vellum.cz
+
+# Pathname of the original sendmail(8) binary:
 our $sendmail_orig=(-x ($_="/usr/sbin/sendmail-orig") ? $_ : "/usr/sbin/sendmail");
+# List of addresses to locally Bcc all mails to:
 # Mail-Alias-1.12 defaults to "/etc/mail/aliases" which does not exist on RedHat sendmail-8.12.5-7
 # Mail-Alias-1.12 will clutter $_ !
 our @addr_addon=(Mail::Alias->new("/etc/aliases")->exists("sentout") ? ("sentout") : ());
 
 our $opt_F;    # imported
 our $is_pgp;   # imported
+my %lists=map(($_=>1),@lists);
+# Generate new From address for the target $rcpt of type Mail::Address.
+# $iserror is true for "MAIL FROM" RFC821 address, false for "From:" RFC822 address.
+# Returns: Mail::Address instance.
 sub FromAddress
 {
 my($rcpt,$iserror)=@_;
@@ -95,10 +170,10 @@ my($rcpt,$iserror)=@_;
                                'pgp-'.uc($default_key).'@jankratochvil.net',
                                );
                }
-       # !$is_pgp or fallback
+       return Mail::Address->new($phrase,'lace@jankratochvil.net') if !$lists{$rcpt->address()};
        return Mail::Address->new(
                        $phrase,
-                       (!$iserror ? 'rcpt' : 'rcpterr')
+                       'rcpt'
                                        .'-'
                                        .(defined($rcpt->user()) ? $rcpt->user() : "NOUSER")
                                        .".AT."
@@ -121,3 +196,499 @@ our @h_from=(
                "Resent-From",
                "From",
                );
+
+
+# My-Audit
+
+# Setup profile names.
+# First element of /^=/ form copies it referenced profile to be extended.
+# 'did'    =>did() subroutine will return true for it.
+# 'syslog' =>Use syslog(3).
+# 'bell'   =>Bell sound.
+# 'sms=\d+'=>Send SMS by WWW::SMS with specified maximum # of parts
+our %audit_profile=(
+               "btw"   =>["syslog"],
+               "silent"=>["=btw"   ,"did"],
+               "log"   =>["=silent","syslog"],
+               "bell"  =>["=log"   ,"bell"],
+               "sms"   =>["=bell"  ,"sms=1"],
+               "crit"  =>["=sms"   ,"sms=3"],
+               );
+# Try the squeezing methods in this order:
+our @sms_squeezes=(
+               { "SqueezeControl"=>"noconv"                         },
+               { "SqueezeControl"=>"conv"  ,"SQZ_OPTIMIZE_LEVEL"=>0 },
+               { "SqueezeControl"=>"conv"  ,"SQZ_OPTIMIZE_LEVEL"=>1 },
+               { "SqueezeControl"=>"med"   ,"SQZ_OPTIMIZE_LEVEL"=>0 },
+               { "SqueezeControl"=>"med"   ,"SQZ_OPTIMIZE_LEVEL"=>1 },
+               { "SqueezeControl"=>"max"   ,"SQZ_OPTIMIZE_LEVEL"=>0 },
+               { "SqueezeControl"=>"max"   ,"SQZ_OPTIMIZE_LEVEL"=>1 },
+               );
+# Hostnames where we had alternate e-mail addresses:
+our @alternates_host=(
+               "jabberwock.ucw.cz",    # short@ucw.cz
+               "atrey.karlin.mff.cuni.cz",     # short@atrey.karlin.mff.cuni.cz
+               "k332.feld.cvut.cz",    # short@k332.feld.cvut.cz
+               );
+# Override DNS blacklists:
+our @dnsbl_whitelist=(
+               "195.250.128.83",       # smtp3.vol.cz; vol.cz.multistage.blackholes.five-ten-sg.com.
+               "64.49.222.22",         # mail.pm.org: rackspace.com.spam-support.blackholes.five-ten-sg.com.
+               "208.147.243.5",        # gambit.liquidcomm.net: cw.net.spam-support.blackholes.five-ten-sg.com.
+               "213.235.135.70",       # smtp.tiscali.cz: tiscali.cz.multistage.blackholes.five-ten-sg.com.
+               "205.139.198.11",       # eniac.disaster.com: cw.net.spam-support.blackholes.five-ten-sg.com.
+               "127.0.0.2",                    # 2.0.0.127.relays.ordb.org.
+               "65.113.40.131",        # bozo.vmware.com: qwest.net.spam-support.blackholes.five-ten-sg.com.
+               "66.218.85.33",         # mta2.wss.scd.yahoo.com: yahoo.com.spam.blackholes.five-ten-sg.com.
+               "212.80.76.42",         # mx2.seznam.cz: seznam.cz.free.blackholes.five-ten-sg.com.
+               "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.
+               "212.80.76.44",         # mx1.seznam.cz: 44.76.80.212.blackholes.five-ten-sg.com.
+               "212.80.76.29",         # prace.seznam.cz: 212.80.76.42.seznam.cz.free.blackholes.five-ten-sg.com
+               "193.252.22.30",        # smtp1.wanadoo.fr: 30.22.252.193.blackholes.five-ten-sg.com
+               "213.151.87.16",        # posta.dobnet.cz: 16.87.151.213.relays.ordb.org
+               );
+
+sub dolist
+{
+       my($list)=@_;
+
+       my $mailed=0;
+       for my $alias ("",qw(admin bounces confirm join leave owner request subscribe unsubscribe)) {
+               my $head=$list.($alias?"-$alias":"");
+               my $mail=$head.'@jankratochvil.net';
+               if (headerhas("To",$mail)||headerhas("Cc",$mail)) {
+                       writeto "|/usr/lib64/mailman/mail/lace/mailmanlace ".($alias||"post")." $list";
+                       ###writeto "|/usr/sbin/sendmail $head".'@localhost.localdomain';
+                       $mailed++;
+               }
+       }
+       return $mailed;
+}
+
+our $Audit;    # imported
+our $procmailFROM_MAILER;      # imported
+our $store_ignorenewmail;      # imported
+our $store_profile;    # imported
+our $store_ignore;     # imported
+sub audit
+{
+       $store_profile=undef();
+
+       # never spawn new mail if FROM_MAILER
+       # $isFROM_MAILER postponed after maillists as they may look as FROM_MAILER
+       #use re 'debug';
+       my $isFROM_MAILER=$Audit->header()=~/$procmailFROM_MAILER/mio;
+       $store_ignorenewmail=(0
+                       || $isFROM_MAILER
+                       || headerhas "From",'<Regexp:^owner->'
+                       );
+
+       return if did sub { store "=spy","log" if headeris "From",'<spy@jankratochvil.net>'; };
+
+       return if did sub { store "=hotelgatespam","log" if headeris("To",'<postmaster@hotelgate.hotelnet>'); };
+
+       # whitelist
+       my $whitelist;
+       $whitelist||=headeris("From",'<amapi11@seznam.cz>');
+       $whitelist||=headeris("From",'<llucie0@seznam.cz>');
+       $whitelist||=headeris("From",'<aaaanetka@seznamka.cz>');
+       $whitelist||=headeris("From",'<luciseksieber@centrum.cz>');
+       $whitelist||=headeris("From",'<lagica@azet.sk>');
+
+       # spam honeypots
+       return if did sub {
+               local $_;
+               return if $whitelist;
+               # Do not local $store_file as it is our-imported
+               $store_profile="silent";
+               store "=spam"         if grep /^\Qshort\@k332.feld.cvut.cz\E/i,Received_for();
+               # TODO: foreign violation of RFC 822 section 4.4.4, Subject:.*Automatick.+odpov.+v.+nep.+tomnosti
+               store "=spam"         if headeris "From",'<ghandchi@hotmail.com>';
+               store "=spam"         if headeris "From",'<newsletter@levnapc.cz>';
+               store "=spam"         if headeris "From",'<Tomas@dtpstudio.cz>';
+               store "=spam"         if headeris "From",'<BNcom@email.bn.com>';
+               store "=spam"         if headeris "From",'<e4luck@lists.opt4email.com>';
+               store "=spam"         if headeris "From",'<mailcontests@lists.servitall.com>';
+               store "=spam"         if headeris "From",'<canda@lica.cz>';
+               store "=spam"         if headeris "From",'<newsletter@thecareernews.com>';
+               store "=spam"         if headeris "From",'<newsletter@jobseekerweekly.com>';
+               store "=spam"         if headeris "From",'<newsletter@jobmarketweekly.com>';
+               store "=spam"         if headeris "From",'<newsletter@career-digest.com>';
+               store "=spam"         if $Audit->subject() eq "Virus intercepted"
+                                     && body_simple()=~/^A message sent from\s.*\sto\s.*\scontained .* and has not been delivered[.]$/;
+               store "=spam"         if headeris "From",'<supportmrswing@mrswing.com>';
+               store "=spam"         if headeris "From",'<mrswing@mrswing.com>';
+               store "=spam"         if headeris "From",'<root@filmcity.cz>';
+               store "=spam"         if headeris "To"  ,'<web-www.filmcity.cz@jankratochvil.net>';
+               # Whitelist - HTML.
+               return if headeris("From",'<oznameni@aukro.cz>');
+               for my $header (qw(To Cc)) {
+                       store "=spam" if headerhas $header,'<st@jankratochvil.net>';
+                       store "=spam" if headerhas $header,'<est@jankratochvil.net>';
+                       store "=spam" if headerhas $header,'<uest@jankratochvil.net>';
+                       store "=spam" if headerhas $header,'<kratochvil.net@jankratochvil.net>';
+                       }
+               {
+                       # weak detection: files with text/html w/o text/plain are usually a spam
+                       my @types_linear=map({ mime_type($_); } parts_linear());
+                       store "=spam"       if grep({ $_ eq "text/html"; } @types_linear) && !grep({ $_ eq "text/plain"; } @types_linear);
+                       }
+               store "=spam"         if ($_=mimehead(body_first())->mime_attr("Content-Type.charset")) && /^big5/i;
+               };
+       $store_profile=undef();
+
+       my %mailman=(
+                       '<captive-admin@>'=>"=caperr",
+                       '<captive-devel-admin@>'=>"=caperr",
+                       '<captive-announce-admin@>'=>"=caperr",
+                       '<4c-admin@>'=>"=4cerr",
+                       );
+       return if did sub {
+               if (!did sub {
+                               while ((my($mailaddr,$folder)=each(%mailman))) {
+                                       (my $maillistaddr=$mailaddr)=~s/-admin/-list$&/;
+                                       store $folder,"log" if (headeris("From",'<mailman-owner@vellum.cz>')&&headeris("To",$mailaddr))
+                                                       || headeris("From",$maillistaddr)
+                                                       || headeris("To",$maillistaddr)
+                                                       || headeris("From",$mailaddr);
+                                       }
+                               }) {
+                       store "=cap","bell"        if headeris "List-Id"  ,'<captive-list.jankratochvil.net>';
+                       store "=capd","bell"       if headeris "List-Id"  ,'<captive-devel-list.jankratochvil.net>';
+                       store "=capann","bell"     if headeris "List-Id"  ,'<captive-announce-list.jankratochvil.net>';
+                       store "=4c","bell"         if headeris "List-Id"  ,'<4c-list.vellum.cz>';
+                       }
+               };
+
+       {
+               my $mailed=0;
+               if ($Audit->header()!~/for <(?:4c|vmezihori1XXX)-(?:admin|owner|bounces)@/) {
+                       for my $list qw(vmezihori1) {
+                               $mailed+=dolist $list;
+                       }
+               }
+               # return if $mailed;
+       }
+
+       # spam detection
+       return if did sub {
+               # It is too expensive to scan the huge =caperr announcements by spamassassin(1).
+               return if $whitelist;
+###            return if headeris("From",qr/^captive-[a-z]*@/);
+               return if headeris("From",'<logwatch@jankratochvil.net>');
+               # Do not local $store_file as it is our-imported
+               $store_profile="log";
+               local $_;
+###            store "=spam".";virus=$_"            if $_=clamscan();
+               store "=spam".";spamassassin".($_ eq 1 ? "" : "=$_") if $_=spamassassin();
+# Down?
+###            store "=spam".";$_"                  if $_=dnsbl '.relays.ordb.org.' ,1;        # all hosts
+if (0) {
+               store "=spam".";$_"                  if $_=dnsbl '.blackholes.mail-abuse.org.' ,1;      # all hosts
+               # we don't check all hosts as they can be "dialup" category, FIXME: check for it
+#              store "=spam".";$_"                  if $_=dnsbl '.blackholes.five-ten-sg.com.',0; # just first
+}
+               # I don't send viruses but viruses propagate mails of mine
+               store "=spam".";ravmd"               if headeris "X-Mailer",'ravmd/8.3.2';
+               store "=spam".';short@ucw.cz+MAILER' if $isFROM_MAILER && headeris("To",'<short@ucw.cz>');
+               if (!is_multipart()) {
+                       local $_=mimebody(body_first());
+                       my %sites=map(($_=>1),qw(
+                                       brandenburg.rz.fhtw-berlin.de
+                                       forum.gofeminin.de
+                                       service.spiegel.de
+                                       www.aufenthaltstitel.de
+                                       www.berlinonline.de
+                                       www.deutschlandchronik.de
+                                       www.heise.de
+                                       www.leverkusener-aufbruch.com
+                                       www.libasoli.de
+                                       www.mjoelnirsseite.de
+                                       www.npd-nrw.net
+                                       www.npd.de
+                                       www.rp-online.de
+                                       www.spiegel.de
+                                       www.taz.de
+                                       www.unserforum.com
+                                       www.zdf.de
+                                       ));
+                       my $found;
+                       while (m{http://([^/]+)/}g) {
+                               do { $found=1; next; } if $sites{$1};
+                               $found=0;
+                               last;
+                               }
+                       $found=1 if /^\s*Lese selbst:\n/s;
+                       store "=spam".';german-news' if $found;
+                       }
+               };
+       $store_profile=undef();
+
+       # special delivery
+       store "=err","bell" and return if headerhas \&Received_for,'<short+err@>';
+
+       # ppl-wished foreign remapping, Reply-To is left untouched!
+       # FIXME: modifications are now being dropped by &write_message!
+       header_remap("From",{
+                       'kerere@post.cz'               =>'kamzik@k332.feld.cvut.cz',
+                       'profes@mbox.vol.cz'           =>'kratochvilova@egp.cz',
+                       'jkrouzek@mbox.vol.cz'         =>'krouzek@mbox.fsv.cuni.cz',
+                       'jakub.gorner@lidovky.cz'      =>'tonda@disnet.cz',
+                       'jan.kolar@videoprogress.cz'   =>'jenda.kolar@volny.cz',
+                       'daniel.rulicek@cponline.cz'   =>'daniel.rulicek@cpress.cz',
+                       'pavel@suse.cz'                =>'pavel@ucw.cz',
+                       });
+
+       # My obsolete e-mail addresses
+       store_muttrc_alternates "=redirect-","btw";
+
+       # nasty public lists with $store_ignore
+       {
+               # Do not local $store_file as it is our-imported
+               $store_profile="log";
+               local $store_ignore;
+               $store_ignore="smsmail"    if 1==$Audit->body() && length(join "",$Audit->body())<180;  # SMS mail
+               $store_ignore="sms OS"     if $Audit->subject()=~/^Email pro: /;        # "^Email pro: gsm@sh\.cvut\.cz$";
+               $store_ignore="list-moron" if grep { headeris "From",$_; } qw(
+                               <kempny@>
+                               <help.me@wo.cz>
+                               <mr.death@mail.cz>
+                               <danx3@centrum.cz>
+                               <@mujoskar.cz>
+                               <satko@quanto.nr.sanet.sk>
+                               <vithous@attorney.cz> <viroman@attorney.cz>
+                               <konf@klain.cz>
+                               <stein@tiscali.cz>
+                               <barevnej@volny.cz>
+                               );
+
+               store "=gsm"               if headeris  "X-BeenThere",'<gsm@lists.sh.cvut.cz>';
+               store "=gsmpand"           if headeris  "List-Post",'<gsm@pandora.cz>';
+               store "=9kc","log"         if headeris  "List-Post",'<n9k@pandora.cz>';
+               store "=9kcd","log"        if headeris  "List-Post",'<dev9k@pandora.cz>';
+               }
+       $store_profile=undef();
+
+       return                       if headeris "From"     ,'<surprise-dev-bounces@lists.sourceforge.net>';
+
+       # lists
+       store "=mozillabug","log"    if headeris "From"     ,'<bugzilla-daemon@mozilla.org>';
+       store "=9ku","log"           if headeris "List-Id"  ,'<9000.listman.net>';
+       store "=9kd","log"           if headeris "Sender"   ,'<owner-9000-developers@geekstuff.co.uk>';
+       store "=spong","log"         if headeris "List-Id"  ,'<spong-users.lists.sourceforge.net>';
+       store "=gtkd","silent"       if headeris "List-Id"  ,'<gtk-devel-list.gnome.org>';
+       store "=gnomevfs","log"      if headeris "List-Id"  ,'<gnome-vfs-list.gnome.org>';
+       store "=mffstatnice","bell"  if headeris "List-Post",'<statnice@atrey.karlin.mff.cuni.cz>';
+       store "=hw","log"            if headeris "List-Post",'<hw-news@list.gin.cz>';
+       store "=gnokii","log"        if headeris "List-Id"  ,'<gnokii-users.mail.freesoftware.fsf.org>';
+       store "=winelic","silent"    if headeris "List-Id"  ,'<wine-license.winehq.org>';
+       store "=wined","silent"      if headeris "List-Id"  ,'<wine-devel.winehq.org>';
+       store "=winepat","silent"    if headeris "List-Id"  ,'<wine-patches.winehq.org>';
+       store "=winecvs","silent"    if headeris "List-Id"  ,'<wine-cvs.winehq.org>';
+       store "=wineann","silent"    if headeris "List-Id"  ,'<wine-announce.winehq.org>';
+       store "=wineconf","silent"   if headeris "List-Id"  ,'<wineconf.winehq.org>';
+       store "=ros","silent"        if headeris "List-Id"  ,'<ros-general.reactos.com>';
+       store "=roskernel","silent"  if headeris "List-Id"  ,'<ros-kernel.reactos.com>';
+       store "=rosd","silent"       if headeris "List-Id"  ,'<ros-dev.reactos.com>';
+       store "=roscvs","silent"     if headeris "List-Id"  ,'<ros-cvs.reactos.com>';
+       store "=rossvn","silent"     if headeris "List-Id"  ,'<ros-svn.reactos.com>';
+       store "=rosbug","silent"     if headeris "Reply-To" ,'<scarab@reactos.wox.org>';
+       store "=fsd","silent"        if headeris "X-Mailing-List",'<linux-fsdevel@vger.kernel.org>';
+       store "=kernel","silent"     if headeris "X-Mailing-List",'<linux-kernel@vger.kernel.org>';
+       store "=kernelnet","silent"  if headeris "X-Mailing-List",'<linux-net@vger.kernel.org>';
+       store "=ia64","silent"       if headeris "X-Mailing-List",'<linux-ia64@vger.kernel.org>';
+       store "=linuxjap","silent"   if headeris "X-Mailing-List",'<linux-japanese@vger.kernel.org>';
+       store "=kernelann","silent"  if headeris "X-Mailing-List",'<linux-kernel-announce@vger.kernel.org>';
+       store "=sparse","silent"     if headeris "X-Mailing-List",'<linux-sparse@vger.kernel.org>';
+       store "=smp","silent"        if headeris "X-Mailing-List",'<linux-smp@vger.kernel.org>';
+       store "=surprise","sms"      if headeris "List-Post",'<surprise@atrey.karlin.mff.cuni.cz>';
+       store "=surprisesuse","sms"  if headeris "Sender"   ,'<owner-surprise@suse.cz>';
+       store "=tacacs","silent"     if headeris "Sender"   ,'<tacplus-l@disaster.com>';
+       store "=tacacs","silent"     if headeris "Sender"   ,'<owner-tacplus-l@disaster.com>';
+       store "=tacacs","silent"     if headeris "List-Id"  ,'<devel.lists.tacplus.org>';
+       store "=pm","log"            if headeris "List-Id"  ,'<prague-pm.pm.org>';
+       store "=radary","log"        if headeris "Reply-To" ,'<pha@radary.cz>';
+       store "=dnet","log"          if headeris "Sender"   ,'<@lists.distributed.net>';
+       store "=linux-input","log"   if headeris "List-Post",'<linux-input@atrey.karlin.mff.cuni.cz>';
+       store "=strom","bell"        if headeris "List-Post",'<vodni-strom@atrey.karlin.mff.cuni.cz>';
+       store "=netinfo","log"       if headeris "Sender"   ,'<owner-netinfo-l@vol.cz>';
+       store "=saintmj","log"       if headeris "From"     ,'<nagios@kam-enterprise.ms.mff.cuni.cz>';
+       store "=saintmj","log"       if headeris "From"     ,'<nagios@kam.mff.cuni.cz>';
+       store "=saintmj","log"       if headeris "From"     ,'<netsaint@kam.mff.cuni.cz>';
+       store "=saintjk","log"       if headeris "From"     ,'<nagios@gw.jklabs.cz>';
+       store "=saintjk","log"       if (headeris("From"     ,'<jklabs@manon.vellum.cz>')
+                                     || headeris("From"     ,'<jklabs@ollie.vellum.cz>'))
+                                    && headeris("To"       ,'<jklabs-nagios@jankratochvil.net>');
+       store "=4cerr","bell"        if headeris "From"     ,'<owner-4cinfo@atrey.karlin.mff.cuni.cz>';
+       store "=4c","sms"            if headeris "List-Post",'<4cinfo@atrey.karlin.mff.cuni.cz>';
+       store "=slashdot","bell"     if headeris "From"     ,'<slashdot@slashdot.org>';
+       store "=freshmeat","bell"    if headeris "From"     ,'<noreply@freshmeat.net>';
+       store "=sourceforge","bell"  if headeris "From"     ,'<noreply@sourceforge.net>';
+       store "=gsmperlcvs","silent" if headeris("From"     ,'<johan@intra.tektonica.com>')
+                                       && $Audit->subject()=~/^'.*' has been updated!$/;
+       store "=libtoold","silent"   if headeris "List-Id"  ,'<libtool.gnu.org>';
+       store "=libtoolpat","silent" if headeris "List-Id"  ,'<libtool-patches.gnu.org>';
+       store "=automake","silent"   if headeris "List-Id"  ,'<automake.gnu.org>';
+       store "=autoconf","log"      if headeris "List-Id"  ,'<autoconf.gnu.org>';
+       store "=autoconfpat","log"   if headeris "List-Id"  ,'<autoconf-patches.gnu.org>';
+       store "=hurd","log"          if headeris "List-Id"  ,'<l4-hurd.gnu.org>';
+       store "=gccbug","silent"     if headeris "List-Post",'<gcc-bugs@gcc.gnu.org>';
+       store "=gccann","log"        if headeris "List-Post",'<gcc-announce@gcc.gnu.org>';
+       store "=gcc","silent"        if headeris "List-Post",'<gcc@gcc.gnu.org>';
+       store "=gccpat","silent"     if headeris "List-Post",'<gcc-patches@gcc.gnu.org>';
+       store "=ntfsann","silent"    if headeris "List-Id"  ,'<linux-ntfs-announce.lists.sourceforge.net>';
+       store "=ntfsd","silent"      if headeris "List-Id"  ,'<linux-ntfs-dev.lists.sourceforge.net>';
+       store "=orbit","silent"      if headeris "List-Id"  ,'<orbit-list.gnome.org>';
+       store "=kannel","log"        if headeris "List-Id"  ,'<users.kannel.org>';
+       store "=kanneld","log"       if headeris "List-Id"  ,'<devel.kannel.org>';
+       store "=mailmand","silent"   if headeris "List-Id"  ,'<mailman-developers.python.org>';
+       store "=asterisk-perl","log" if headeris "List-Post",'<asterisk-perl@lists.gnuinter.net>';
+       store "=i4l","silent"        if headeris "List-Id"  ,'<isdn4linux.listserv.isdn4linux.de>';
+       store "=glibc","silent"      if headeris "List-Post",'<libc-alpha@sourceware.org>';
+       store "=fedann","bell"       if headeris "List-Id"  ,'<fedora-announce-list.redhat.com>';
+       store "=fedpkg","bell"       if headeris "List-Id"  ,'<fedora-package-announce.redhat.com>';
+       store "=fedtools","log"      if headeris "List-Id"  ,'<fedora-tools-list.redhat.com>';
+       store "=fedd","log"          if headeris "List-Id"  ,'<fedora-devel-list.redhat.com>';
+       store "=bashbug","log"       if headeris "List-Id"  ,'<bug-bash.gnu.org>';
+       store "=zaurus","silent"     if headeris "List-Id"  ,'<openzaurus-users.lists.sourceforge.net>';
+       store "=zaurusann","log"     if headeris "List-Id"  ,'<openzaurus-announce.lists.sourceforge.net>';
+       store "=zaurusd","silent"    if headeris "List-Id"  ,'<openzaurus-devel.lists.sourceforge.net>';
+       store "=zaurussoft","silent" if headeris "List-Id"  ,'<openzaurus-software.lists.sourceforge.net>';
+       store "=iptperl","silent"    if headeris "List-Id"  ,'<iptperl-general.lists.sourceforge.net>';
+       # own webs
+       store "=energie","bell"      if headeris "From"     ,qr/^EnergieWeb/;
+       store "=ats","log"           if headeris("From"     ,'<root@ms.atspraha.cz>')
+                                       || (headeris("From",'<online@ringier.cz>') && headerhas("To",'<blesk@atspraha.cz>'));
+       store "=atscasablanca","log" if headeris "From"     ,'<casablanca@ms.atspraha.cz>';
+       store "=www-sms","log"       if headeris "List-Id"  ,'<www-sms-developers.lists.sourceforge.net>';
+       store "=httpdd","log"        if headeris "list-post",'<dev@httpd.apache.org>';
+       store "=mms2log","log"       if headeris "Return-Path",'<root@node0.mms2.org>';
+       store "=hotelgatelog","log"  if headeris("Return-Path",'<root@hotelgate.hotelnet>')
+                                                           # `SMART error' should not be matched.
+                                    && headeris("Subject"  ,qr/^(?:Cron|Anacron|LogWatch) /);
+       store "=imja","log"          if headeris "List-Id"  ,'<im-ja-devel.lists.sourceforge.net>';
+       store "=wince","log"         if headeris "List-Post",'<wince@pandora.cz>';
+       store "=mysqlperl","log"     if headeris "List-Id"  ,'<perl.mysql.com>';
+       store "=whiteann","log"      if headeris "List-Id"  ,'<whitebox-announce.beau.org>';
+       store "=white","log"         if headeris "List-Id"  ,'<whitebox-users.beau.org>';
+       store "=centos","log"        if headeris "List-Id"  ,'<centos.centos.org>';
+       store "=modperldoc","log"    if headeris "List-Id"  ,'<docs-dev.perl.apache.org>';
+       store "=qemud","log"         if headeris "List-Id"  ,'<qemu-devel.nongnu.org>';
+       store "=diamond","log"       if headeris "X-Replicator-Inst",'"www.diamondcard.us"';
+       store "=soap","log"          if headeris "Sender"   ,'<owner-soap@DISCUSS.DEVELOP.COM>';
+       store "=nagiosd","log"       if headeris "List-Id"  ,'<nagios-devel.lists.sourceforge.net>';
+       store "=nagios","log"        if headeris "List-Id"  ,'<nagios-users.lists.sourceforge.net>';
+       store "=grub","log"          if headeris "List-Id"  ,'<grub-devel.gnu.org>';
+       store "=gdb","log"           if headeris "Mailing-List",'contact gdb-help@sourceware.org; run by ezmlm';
+       store "=gdbpr","log"         if headeris "Mailing-List",'contact gdb-prs-help@sourceware.org; run by ezmlm';
+       store "=gdbpat","log"        if headeris "Mailing-List",'contact gdb-patches-help@sourceware.org; run by ezmlm';
+       store "=gdbann","log"        if headeris "Mailing-List",'contact gdb-announce-help@sourceware.org; run by ezmlm';
+       store "=binutils","log"      if headeris "Mailing-List",'contact binutils-help@sourceware.org; run by ezmlm';
+       store "=binutilsbug","log"   if headeris "List-Id"  ,'<bug-binutils.gnu.org>';
+       store "=4c","bell"           if headeris "List-Id"  ,'<4c.jankratochvil.net>';
+       store "=dup","log"           if headeris "List-Id"  ,'<duplicity-talk.nongnu.org>';
+       store "=dupbug","log"        if headeris "List-Id"  ,'<duplicity-tracker.nongnu.org>';
+       store "=sue","log"           if headeris "Subject"  ,'Cron <lace@manon> $HOME/secure/sue';
+       store "=linkedin","log"      if headeris "From"     ,'<updates@linkedin.com>';
+
+       # Petr Koutecky does not mark his Stuff
+       store "=koutecky","log"      if headeris "Return-Path",'<velkyhroch@seznam.cz>';
+       store "=koutecky","log"      if headeris "Return-Path",'<pk.petr@centrum.cz>';
+       store "=koutecky","log"      if headeris "Return-Path",'<petr.koutecky@premisa.cz>';
+       store "=koutecky","log"      if headeris "Return-Path",'<Petr.Koutecky@pr4.pm.ds.mfcr.cz>';
+
+       store "=host0log","log"      if headeris("From"       ,'<logwatch@jankratochvil.net>')
+                                    && headeris("Return-Path",'<root@jankratochvil.net>');
+       store "=host1log","log"      if headeris("From"       ,'<logwatch@host1.dyn.jankratochvil.net>')
+                                    && headeris("Return-Path",'<root@host1.dyn.jankratochvil.net>');
+
+       if (headeris("To"         ,'<lace@jankratochvil.net>')
+        && headeris("Return-Path",'<nobody@tangens.sinus.cz>')) {
+               if (body_simple()=~/^SIP request received from <sip:2143[@]tangens.sinus.cz>.* for 2143$/o) {
+                       store "=callme","log";
+               } else {
+                       store "=call","log";
+               }
+       }
+
+       {
+               my $mailed=0;
+               if ($Audit->header()!~/for <(?:4c|vmezihori1)-(?:admin|owner|bounces)@/) {
+                       for my $list qw(mailman 4c) {
+                               $mailed+=dolist $list;
+                       }
+               }
+               # return if $mailed;
+       }
+
+       store "=errm","bell"         if $isFROM_MAILER && !did()
+                                    # qr/daemon@/ makes $isFROM_MAILER positive.
+                                    && !headeris("From",'<bugzilla-daemon@bugzilla.gnome.org>');
+
+       if (!did) {
+               store "==","sms";
+# FIXME: What to do with it?
+###            spamassassin "sa-learn --ham";
+               }
+}
+
+sub audit_sms_address
+{
+my($obj)=@_;
+
+       my $address=$obj->address();
+       if (my $alternates=muttrc_get("alternates")) {
+               return "I" if $address=~/$alternates/si;
+               }
+       my %aliases=muttrc_aliases();
+       if (my $alias=$aliases{lc $address}) {
+               local $_=$alias;
+               s/\b(Bus)siness$/$1/i;
+               s/\.ident$//i;
+               return $_;
+               }
+       local $_=$address;
+       s/\.cz$//i;
+       return $_;
+}
+
+# $args{"from"}
+# $args{"subject"}
+# $args{"body"}
+sub audit_sms
+{
+my(%args)=@_;
+
+       my $from=(@{$args{"from"}} ? join(",",map({ audit_sms_address($_); } @{$args{"from"}})) : "?");
+       local $_;
+
+       $_=$args{"subject"};
+       # headers
+       s/(?:Re|Aw|Odp|Fw|Fwd|OT)(?:\[\d+\])?://ig;
+       # former subject
+       s/\bbylo:.*$//i;
+       s/\[\s*WAS:.*\]\s*$//i;
+       # trim
+       s/^\s*//s;
+       s/\s*$//s;
+       my $subject=$_;
+
+       $_=$args{"body"};
+       # max. 9 lines of .sig
+       s/\n-- (?:\n[^\n]*){0,9}$//gs;
+       # "Original Message"/"Puvodni zprava" etc. up to empty line
+       # "- - - Original message: - - -" is by "Lotus Notes Release 5.0.5  September 22, 2000"
+       s/(^|\n)[\s^\n]*(?:-----[\w\s]*-----|- - - Original message: - - -)[\s^\n]*(?:\n[^\n]+)*\n{2,}(?:\s*[^>\s].*$)?/\n/gs;
+       # Remove "..." lines (is it used by anyone except me?)
+       s/^\Q...\E$/*/gm;
+       # quoting "> "
+       s/^(?:\s*[[:upper:]]{0,3}>)+.*$/*/gm;
+       s/(?:^|\n)(?:\*\n+)+/\n*\n/gs;
+       # attributions
+       s/^.*\b(?:wrote|writes|napsal jste):\s*$//gm;
+       my $body=$_;
+
+       return [$from,"($subject)$body"];
+}
+
+1;