+kernel.org mailing lists for VA.
[PerlMail.git] / PerlMail / Config.pm
index 9bec452..4179565 100644 (file)
@@ -43,7 +43,7 @@ require Mail::Alias;
 
 BEGIN {
        for (qw(headerhas store headeris did dnsbl store_muttrc_alternates Received_for parts_linear mime_type
-                       body_first mimehead razor2 header_remap)) {
+                       body_first mimehead spamassassin header_remap lmtp_deliver)) {
                eval 'sub '.$_.' { return ::'.$_.'(@_); }';
                }
        }
@@ -51,40 +51,110 @@ BEGIN {
 
 # 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 $lmtp_admin="cyrus";
+our $lmtp_pwd;
+{
+       local *F;
+       open F,"$HOME/priv/lmtp.${lmtp_admin}.pwd" or die;
+       $lmtp_pwd=<F>;
+       chomp $lmtp_pwd;
+       close F or die;
+       }
+our $lmtp_user_from="lace";
+our $lmtp_user_to="lacemail";
 
 
 # perlmail-submit
 
+# Global system lock for exclusive $DB_table access:
 our $Lock_pathname="/tmp/PerlMail.lock";
+# 'workstation' hostname and port. Hostname may be dyndns:
 our $PeerAddr="exuhome.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)=@_;
@@ -108,10 +178,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."
@@ -138,6 +208,12 @@ our @h_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"   =>[],
                "silent"=>["=btw"   ,"did"],
@@ -146,6 +222,7 @@ our %audit_profile=(
                "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 },
@@ -155,11 +232,13 @@ our @sms_squeezes=(
                { "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.
@@ -170,6 +249,11 @@ our @dnsbl_whitelist=(
                "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
                );
 
 our $Audit;    # imported
@@ -180,7 +264,6 @@ our $store_ignore;  # imported
 sub audit
 {
        $store_profile=undef();
-       # TODO: <short-m@> storage?
 
        # never spawn new mail if FROM_MAILER
        # $isFROM_MAILER postponed after maillists as they may look as FROM_MAILER
@@ -219,7 +302,7 @@ sub audit
                # Do not local $store_file as it is our-imported
                $store_profile="silent";
                local $_;
-               store "=spam".($_ eq 1 ? "" : ";$_")      if $_=razor2();
+               store "=spam".($_ eq 1 ? "" : ";$_")      if $_=spamassassin();
                };
        $store_profile=undef();
        return if did sub {
@@ -229,9 +312,10 @@ sub audit
                store "=spam"                      .";$_","log" if $_=dnsbl '.relays.ordb.org.' ,1;     # all hosts
                store "=spam"                      .";$_","log" 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"                      .";$_","log" if $_=dnsbl '.blackholes.five-ten-sg.com.',0; # just first
+#              store "=spam"                      .";$_","log" if $_=dnsbl '.blackholes.five-ten-sg.com.',0; # just first
                # I don't send viruses but viruses propagate mails of mine
                store "=spam"                                   if headeris "X-Mailer",'ravmd/8.3.2';
+               store "=spam"                                   if $isFROM_MAILER && headeris("To",'<short@ucw.cz>');
                };
        $store_profile=undef();
 
@@ -290,23 +374,32 @@ sub audit
        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","log"       if headeris "List-Id"  ,'<wine-license.winehq.com>';
+       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.com>';
-       store "=winecvs","silent"    if headeris "List-Id"  ,'<wine-cvs.winehq.com>';
-       store "=wineann","log"       if headeris "List-Id"  ,'<wine-announce.winehq.com>';
-       store "=ros","log"           if headeris "List-Id"  ,'<ros-general.reactos.geldorp.nl>';
-       store "=roskernel","log"     if headeris "List-Post",'<ros-kernel@reactos.com>';
-       store "=roscvs","silent"     if headeris "List-Post",'<ros-cvs@reactos.com>';
-       store "=rosbug","log"        if headeris "Reply-To" ,'<scarab@reactos.wox.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 "=kerneld","silent"    if headeris "X-Mailing-List",'<linux-kernel@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","log"        if headeris "Sender"   ,'<tacplus-l@disaster.com>';
-       store "=tacacs","log"        if headeris "Sender"   ,'<owner-tacplus-l@disaster.com>';
-       store "=tacacs","log"        if headeris "List-Id"  ,'<devel.lists.tacplus.org>';
-       store "=pm","sms"            if headeris "Sender"   ,'<owner-prague-pm@pm.org>';
+       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 "Sender"   ,'<owner-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>';
@@ -321,21 +414,68 @@ sub audit
        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","log"      if headeris "List-Id"  ,'<libtool.gnu.org>';
-       store "=libtoolpat","log"    if headeris "List-Id"  ,'<libtool-patches.gnu.org>';
+       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>';
+       my %mailman=(
+                       '<captive-admin@>'=>"=caperr",
+                       '<captive-devel-admin@>'=>"=caperr",
+                       '<captive-announce-admin@>'=>"=caperr",
+                       '<4c-admin@>'=>"=4cerr",
+                       );
+       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>';
+               }
+       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 "=kand","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 "Mailing-List",qr/\b\Qlibc-alpha-help\E@\Qsources.redhat.com\E\b/;
+       store "=fedann","bell"       if headeris "List-Id"  ,'<fedora-announce-list.redhat.com>';
+       store "=fedtools","log"      if headeris "List-Id"  ,'<fedora-tools-list.redhat.com>';
+       store "=bashbug","log"       if headeris "List-Id"  ,'<bug-bash.gnu.org>';
        # 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>';
 
        # Petr Koutecky does not mark his Stuff
-       store "=koutecky","log"      if headeris "From"     ,'<velkyhroch@seznam.cz>';
+       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>';
+
+       if (($isFROM_MAILER && !did) || !did) {
+               lmtp_deliver $lmtp_admin,$lmtp_pwd,$lmtp_user_from,$lmtp_user_to;
+               }
 
        store "=errm","bell"         if $isFROM_MAILER && !did();
 
-       store "==","sms"             if !did;
+       if (!did) {
+               store "==","sms";
+               spamassassin "$HOME/bin/sa-learn --ham";
+               }
 }
 
 sub audit_sms_address
@@ -358,6 +498,9 @@ my($obj)=@_;
        return $_;
 }
 
+# $args{"from"}
+# $args{"subject"}
+# $args{"body"}
 sub audit_sms
 {
 my(%args)=@_;