X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=PerlMail%2FConfig.pm;h=52bc3f852a9bcc9b961a80f663873a456a626515;hb=refs%2Fheads%2Flace;hp=9f6f36cb2e748758c169afd526b9a78b0d82e395;hpb=74c6cab08ed52a377640693a7f142705543f40fa;p=PerlMail.git diff --git a/PerlMail/Config.pm b/PerlMail/Config.pm index 9f6f36c..52bc3f8 100644 --- a/PerlMail/Config.pm +++ b/PerlMail/Config.pm @@ -31,6 +31,7 @@ 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 + $clamscan_waitpid_timeout $sendmail_orig @addr_addon &FromAddress @h_rcpt @h_from %audit_profile @sms_squeezes @alternates_host @dnsbl_whitelist @@ -39,11 +40,12 @@ use vars qw(@ISA @EXPORT); ); require Mail::Alias; +use Carp qw(confess cluck); BEGIN { - for (qw(headerhas store headeris did dnsbl store_muttrc_alternates Received_for parts_linear mime_type - body_first mimehead razor2 header_remap)) { + 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 ::'.$_.'(@_); }'; } } @@ -69,6 +71,7 @@ our $MaxBodySMS=0x1000; our @SMSwebRcpt=qw(420 602 431329); # Some WWW::SMS modules require username: our $SMSwebRcpt_username="lace2"; +our $clamscan_waitpid_timeout=3; # perlmail-submit @@ -76,7 +79,7 @@ our $SMSwebRcpt_username="lace2"; # 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="kashome.dyn.jankratochvil.net.:852"; #our $PeerAddr="127.0.0.1:2852"; # 15sec is NOT enough as the remote peer must complete mail store: our $Socket_timeout=7600; @@ -87,7 +90,7 @@ our $DBI_database="short"; # MySQL user name: our $DBI_user="short"; # MySQL user password: -our $DBI_pwd=$ENV{"HOME"}."/priv/mysql.".$DBI_user.".pwd"; +our $DBI_pwd=$HOME."/priv/mysql.".$DBI_user.".pwd"; # perlmail-sendmail @@ -96,19 +99,17 @@ our $DBI_pwd=$ENV{"HOME"}."/priv/mysql.".$DBI_user.".pwd"; my @lists=qw( tacplus-l@disaster.com gsm@sh.cvut.cz - linux-fsdevel@vger.kernel.org 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 - wine-devel@winehq.org - wine-patches@winehq.org gtk-devel-list@gnome.org gnome-vfs-list@gnome.org captive-announce-list@jankratochvil.net @@ -123,9 +124,15 @@ my @lists=qw( autoconf-patches@gnu.org wget-patches@sunsite.dk wget@sunsite.dk - mailman-developers@python.org 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"); @@ -200,7 +207,7 @@ our @h_from=( # 'bell' =>Bell sound. # 'sms=\d+'=>Send SMS by WWW::SMS with specified maximum # of parts our %audit_profile=( - "btw" =>[], + "btw" =>["syslog"], "silent"=>["=btw" ,"did"], "log" =>["=silent","syslog"], "bell" =>["=log" ,"bell"], @@ -237,8 +244,27 @@ our @dnsbl_whitelist=( "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 @@ -247,7 +273,6 @@ our $store_ignore; # imported sub audit { $store_profile=undef(); - # TODO: storage? # never spawn new mail if FROM_MAILER # $isFROM_MAILER postponed after maillists as they may look as FROM_MAILER @@ -258,9 +283,22 @@ sub audit || headerhas "From",'' ); + return if did sub { store "=spy","log" if headeris "From",''; }; + + return if did sub { store "=hotelgatespam","log" if headeris("To",''); }; + + # whitelist + my $whitelist; + $whitelist||=headeris("From",''); + $whitelist||=headeris("From",''); + $whitelist||=headeris("From",''); + $whitelist||=headeris("From",''); + $whitelist||=headeris("From",''); + # 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(); @@ -272,6 +310,24 @@ sub audit store "=spam" if headeris "From",''; store "=spam" if headeris "From",''; store "=spam" if headeris "From",''; + store "=spam" if headeris "From",''; + store "=spam" if headeris "From",''; + store "=spam" if headeris "From",''; + store "=spam" if headeris "From",''; + 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",''; + store "=spam" if headeris "From",''; + store "=spam" if headeris "From",''; + store "=spam" if headeris "To" ,''; + # Whitelist - HTML. + return if headeris("From",''); + for my $header (qw(To Cc)) { + store "=spam" if headerhas $header,''; + store "=spam" if headerhas $header,''; + store "=spam" if headerhas $header,''; + store "=spam" if headerhas $header,''; + } { # weak detection: files with text/html w/o text/plain are usually a spam my @types_linear=map({ mime_type($_); } parts_linear()); @@ -281,25 +337,90 @@ sub audit }; $store_profile=undef(); - # spam detection + my %mailman=( + ''=>"=caperr", + ''=>"=caperr", + ''=>"=caperr", + '<4c-admin@>'=>"=4cerr", + ); return if did sub { - # Do not local $store_file as it is our-imported - $store_profile="silent"; - local $_; - store "=spam".($_ eq 1 ? "" : ";$_") if $_=razor2(); + if (!did sub { + while ((my($mailaddr,$folder)=each(%mailman))) { + (my $maillistaddr=$mailaddr)=~s/-admin/-list$&/; + store $folder,"log" if (headeris("From",'')&&headeris("To",$mailaddr)) + || headeris("From",$maillistaddr) + || headeris("To",$maillistaddr) + || headeris("From",$mailaddr); + } + }) { + store "=cap","bell" if headeris "List-Id" ,''; + store "=capd","bell" if headeris "List-Id" ,''; + store "=capann","bell" if headeris "List-Id" ,''; + store "=4c","bell" if headeris "List-Id" ,'<4c-list.vellum.cz>'; + } }; - $store_profile=undef(); + + { + 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",''); # Do not local $store_file as it is our-imported - $store_profile="silent"; + $store_profile="log"; local $_; - store "=spam" .";$_","log" if $_=dnsbl '.relays.ordb.org.' ,1; # all hosts - store "=spam" .";$_","log" if $_=dnsbl '.blackholes.mail-abuse.org.' ,1; # all hosts +### 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" .";$_","log" if $_=dnsbl '.blackholes.five-ten-sg.com.',0; # just first +# 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" if headeris "X-Mailer",'ravmd/8.3.2'; - store "=spam" if $isFROM_MAILER && headeris("To",''); + store "=spam".";ravmd" if headeris "X-Mailer",'ravmd/8.3.2'; + store "=spam".';short@ucw.cz+MAILER' if $isFROM_MAILER && headeris("To",''); + 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(); @@ -341,13 +462,15 @@ sub audit ); - store "=gsm" if headeris "Sender" ,''; + store "=gsm" if headeris "X-BeenThere",''; store "=gsmpand" if headeris "List-Post",''; store "=9kc","log" if headeris "List-Post",''; store "=9kcd","log" if headeris "List-Post",''; } $store_profile=undef(); + return if headeris "From" ,''; + # lists store "=mozillabug","log" if headeris "From" ,''; store "=9ku","log" if headeris "List-Id" ,'<9000.listman.net>'; @@ -358,31 +481,44 @@ sub audit store "=mffstatnice","bell" if headeris "List-Post",''; store "=hw","log" if headeris "List-Post",''; store "=gnokii","log" if headeris "List-Id" ,''; - store "=winelic","log" if headeris "List-Id" ,''; - store "=wined","log" if headeris "List-Id" ,''; + store "=winelic","silent" if headeris "List-Id" ,''; + store "=wined","silent" if headeris "List-Id" ,''; store "=winepat","silent" if headeris "List-Id" ,''; store "=winecvs","silent" if headeris "List-Id" ,''; - store "=wineann","log" if headeris "List-Id" ,''; - store "=wineconf","log" if headeris "List-Id" ,''; - store "=ros","log" if headeris "List-Id" ,''; - store "=roskernel","log" if headeris "List-Id" ,''; + store "=wineann","silent" if headeris "List-Id" ,''; + store "=wineconf","silent" if headeris "List-Id" ,''; + store "=ros","silent" if headeris "List-Id" ,''; + store "=roskernel","silent" if headeris "List-Id" ,''; + store "=rosd","silent" if headeris "List-Id" ,''; store "=roscvs","silent" if headeris "List-Id" ,''; - store "=rosbug","log" if headeris "Reply-To" ,''; + store "=rossvn","silent" if headeris "List-Id" ,''; + store "=rosbug","silent" if headeris "Reply-To" ,''; store "=fsd","silent" if headeris "X-Mailing-List",''; - store "=kerneld","silent" if headeris "X-Mailing-List",''; + store "=kernel","silent" if headeris "X-Mailing-List",''; + store "=kernelnet","silent" if headeris "X-Mailing-List",''; + store "=ia64","silent" if headeris "X-Mailing-List",''; + store "=linuxjap","silent" if headeris "X-Mailing-List",''; + store "=kernelann","silent" if headeris "X-Mailing-List",''; + store "=sparse","silent" if headeris "X-Mailing-List",''; + store "=smp","silent" if headeris "X-Mailing-List",''; store "=surprise","sms" if headeris "List-Post",''; store "=surprisesuse","sms" if headeris "Sender" ,''; - store "=tacacs","log" if headeris "Sender" ,''; - store "=tacacs","log" if headeris "Sender" ,''; - store "=tacacs","log" if headeris "List-Id" ,''; - store "=pm","log" if headeris "Sender" ,''; + store "=tacacs","silent" if headeris "Sender" ,''; + store "=tacacs","silent" if headeris "Sender" ,''; + store "=tacacs","silent" if headeris "List-Id" ,''; + store "=pm","log" if headeris "List-Id" ,''; store "=radary","log" if headeris "Reply-To" ,''; store "=dnet","log" if headeris "Sender" ,'<@lists.distributed.net>'; store "=linux-input","log" if headeris "List-Post",''; store "=strom","bell" if headeris "List-Post",''; store "=netinfo","log" if headeris "Sender" ,''; - store "=saintmj","log" if headeris "From" ,''; + store "=saintmj","log" if headeris "From" ,''; + store "=saintmj","log" if headeris "From" ,''; store "=saintmj","log" if headeris "From" ,''; + store "=saintjk","log" if headeris "From" ,''; + store "=saintjk","log" if (headeris("From" ,'') + || headeris("From" ,'')) + && headeris("To" ,''); store "=4cerr","bell" if headeris "From" ,''; store "=4c","sms" if headeris "List-Post",'<4cinfo@atrey.karlin.mff.cuni.cz>'; store "=slashdot","bell" if headeris "From" ,''; @@ -390,41 +526,110 @@ sub audit store "=sourceforge","bell" if headeris "From" ,''; store "=gsmperlcvs","silent" if headeris("From" ,'') && $Audit->subject()=~/^'.*' has been updated!$/; - store "=libtoold","log" if headeris "List-Id" ,''; - store "=libtoolpat","log" if headeris "List-Id" ,''; - store "=automake","log" if headeris "List-Id" ,''; + store "=libtoold","silent" if headeris "List-Id" ,''; + store "=libtoolpat","silent" if headeris "List-Id" ,''; + store "=automake","silent" if headeris "List-Id" ,''; store "=autoconf","log" if headeris "List-Id" ,''; store "=autoconfpat","log" if headeris "List-Id" ,''; - if (headeris("From" ,'') - || headeris("From" ,'') - || headeris("From" ,'') - || headeris("From" ,'')) { - store "=caperr","log"; - } - else { - store "=cap","bell" if headeris "List-Id" ,''; - store "=capd","bell" if headeris "List-Id" ,''; - store "=capann","bell" if headeris "List-Id" ,''; - } - store "=ntfsann","log" if headeris "List-Id" ,''; - store "=ntfsd","log" if headeris "List-Id" ,''; - store "=orbit","log" if headeris "List-Id" ,''; - store "=kand","log" if headeris "List-Id" ,''; - store "=mailmand","log" if headeris "List-Id" ,''; + store "=hurd","log" if headeris "List-Id" ,''; + store "=gccbug","silent" if headeris "List-Post",''; + store "=gccann","log" if headeris "List-Post",''; + store "=gcc","silent" if headeris "List-Post",''; + store "=gccpat","silent" if headeris "List-Post",''; + store "=ntfsann","silent" if headeris "List-Id" ,''; + store "=ntfsd","silent" if headeris "List-Id" ,''; + store "=orbit","silent" if headeris "List-Id" ,''; + store "=kannel","log" if headeris "List-Id" ,''; + store "=kanneld","log" if headeris "List-Id" ,''; + store "=mailmand","silent" if headeris "List-Id" ,''; + store "=asterisk-perl","log" if headeris "List-Post",''; + store "=i4l","silent" if headeris "List-Id" ,''; + store "=glibc","silent" if headeris "List-Post",''; + store "=fedann","bell" if headeris "List-Id" ,''; + store "=fedpkg","bell" if headeris "List-Id" ,''; + store "=fedtools","log" if headeris "List-Id" ,''; + store "=fedd","log" if headeris "List-Id" ,''; + store "=bashbug","log" if headeris "List-Id" ,''; + store "=zaurus","silent" if headeris "List-Id" ,''; + store "=zaurusann","log" if headeris "List-Id" ,''; + store "=zaurusd","silent" if headeris "List-Id" ,''; + store "=zaurussoft","silent" if headeris "List-Id" ,''; + store "=iptperl","silent" if headeris "List-Id" ,''; # own webs store "=energie","bell" if headeris "From" ,qr/^EnergieWeb/; store "=ats","log" if headeris("From" ,'') || (headeris("From",'') && headerhas("To",'')); store "=atscasablanca","log" if headeris "From" ,''; store "=www-sms","log" if headeris "List-Id" ,''; + store "=httpdd","log" if headeris "list-post",''; + store "=mms2log","log" if headeris "Return-Path",''; + store "=hotelgatelog","log" if headeris("Return-Path",'') + # `SMART error' should not be matched. + && headeris("Subject" ,qr/^(?:Cron|Anacron|LogWatch) /); + store "=imja","log" if headeris "List-Id" ,''; + store "=wince","log" if headeris "List-Post",''; + store "=mysqlperl","log" if headeris "List-Id" ,''; + store "=whiteann","log" if headeris "List-Id" ,''; + store "=white","log" if headeris "List-Id" ,''; + store "=centos","log" if headeris "List-Id" ,''; + store "=modperldoc","log" if headeris "List-Id" ,''; + store "=qemud","log" if headeris "List-Id" ,''; + store "=diamond","log" if headeris "X-Replicator-Inst",'"www.diamondcard.us"'; + store "=soap","log" if headeris "Sender" ,''; + store "=nagiosd","log" if headeris "List-Id" ,''; + store "=nagios","log" if headeris "List-Id" ,''; + store "=grub","log" if headeris "List-Id" ,''; + 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" ,''; + store "=4c","bell" if headeris "List-Id" ,'<4c.jankratochvil.net>'; + store "=dup","log" if headeris "List-Id" ,''; + store "=dupbug","log" if headeris "List-Id" ,''; + store "=sue","log" if headeris "Subject" ,'Cron $HOME/secure/sue'; + store "=linkedin","log" if headeris "From" ,''; # Petr Koutecky does not mark his Stuff store "=koutecky","log" if headeris "Return-Path",''; store "=koutecky","log" if headeris "Return-Path",''; + store "=koutecky","log" if headeris "Return-Path",''; + store "=koutecky","log" if headeris "Return-Path",''; + + store "=host0log","log" if headeris("From" ,'') + && headeris("Return-Path",''); + store "=host1log","log" if headeris("From" ,'') + && headeris("Return-Path",''); + + if (headeris("To" ,'') + && headeris("Return-Path",'')) { + if (body_simple()=~/^SIP request received from .* for 2143$/o) { + store "=callme","log"; + } else { + store "=call","log"; + } + } - store "=errm","bell" if $isFROM_MAILER && !did(); + { + 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 "==","sms" if !did; + store "=errm","bell" if $isFROM_MAILER && !did() + # qr/daemon@/ makes $isFROM_MAILER positive. + && !headeris("From",''); + + if (!did) { + store "==","sms"; +# FIXME: What to do with it? +### spamassassin "sa-learn --ham"; + } } sub audit_sms_address