X-Git-Url: http://git.jankratochvil.net/?p=PerlMail.git;a=blobdiff_plain;f=PerlMail%2FConfig.pm;fp=PerlMail%2FConfig.pm;h=fa33e3d1daa3f8f5febf8107164240a6d987c483;hp=e48a81319c1f8c55399e65840a032b4890872af3;hb=e9a47f1d815af6b612274ba1bd4b124e28e76151;hpb=0bb3fce39ce6c1f220de832e721f64c53449088c diff --git a/PerlMail/Config.pm b/PerlMail/Config.pm index e48a813..fa33e3d 100644 --- a/PerlMail/Config.pm +++ b/PerlMail/Config.pm @@ -32,7 +32,7 @@ use vars qw(@ISA @EXPORT); $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 + $sendmail_orig @addr_addon @h_rcpt @h_from %audit_profile @sms_squeezes @alternates_host @dnsbl_whitelist $Audit $is_pgp $opt_F $procmailFROM_MAILER $store_ignore $store_ignorenewmail @@ -40,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 is_multipart mimehead mimebody spamassassin clamscan header_remap lmtp_deliver)) { + body_first body_simple is_multipart mimehead mimebody spamassassin clamscan header_remap lmtp_deliver)) { eval 'sub '.$_.' { return ::'.$_.'(@_); }'; } } @@ -53,7 +54,7 @@ BEGIN { # perlmail-accept & perlmail-sendmail # Various configuration files location is derived from it: -our $HOME="/home/lace"; +our $HOME="/home/jkratoch"; # perlmail-accept @@ -61,7 +62,7 @@ our $HOME="/home/lace"; # Mail folder: our $Mail="$HOME/Mail"; # Users respected for the 'idle' state (see $IdleMax): -our @ValidUsers=qw(root lace short kratochvil _local); +our @ValidUsers=qw(root lace short kratochvil _local jkratoch); # Maximum number of local console idle seconds while still considered as 'active user': our $IdleMax=10; # Maxium number of bytes to pass to Lingua::EN::Squeeze (performance optimization): @@ -72,13 +73,13 @@ our @SMSwebRcpt=qw(420 602 431329); 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=; - chomp $lmtp_pwd; - close F or die; - } +#{ +# local *F; +# open F,"$HOME/priv/lmtp.${lmtp_admin}.pwd" or die; +# $lmtp_pwd=; +# chomp $lmtp_pwd; +# close F or die; +# } our $lmtp_user_from="lace"; our $lmtp_user_to="lacemail"; our $clamscan_waitpid_timeout=3; @@ -103,47 +104,6 @@ our $DBI_user="short"; our $DBI_pwd=$HOME."/priv/mysql.".$DBI_user.".pwd"; -# perlmail-sendmail - -# Lists where 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: @@ -153,44 +113,7 @@ 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)=@_; - - my $phrase=(defined $opt_F ? $opt_F : "Jan Kratochvil"); - { - last if !$is_pgp; - last if $iserror; - local *F; - local $_; - my $filename="$HOME/.gnupg/options"; - open F,$filename or do { warn "Open \"$filename\": $!"; last; }; - local $/="\n"; - my @keys=map((/^\s*default-key\s+(\S+)\s*$/),); - @keys==1 or do { warn "Found ".scalar(@keys)." 'default-key's in your \"$filename\", ignoring"; last; }; - close F or warn "Close \"$filename\": $!"; - my $default_key=$keys[0]; - $default_key=~/^[[:xdigit:]]{8}$/ or do { warn "Invalid 'default-key', ignoring: $default_key"; last; }; - return Mail::Address->new( - $phrase, - 'pgp-'.uc($default_key).'@jankratochvil.net', - ); - } - return Mail::Address->new($phrase,'lace@jankratochvil.net') if !$lists{$rcpt->address()}; - return Mail::Address->new( - $phrase, - 'rcpt' - .'-' - .(defined($rcpt->user()) ? $rcpt->user() : "NOUSER") - .".AT." - .(defined($rcpt->host()) ? $rcpt->host() : "LOCAL") - .'@jankratochvil.net', - ); -} # RedHat sendmail-8.9.3-20/src/conf.c/HdrInfo[]/\Q/* destination fields */\E # FIXME: Recognize "Resent-$_" headers for -t but when we are in 'resent' mode? @@ -256,6 +179,7 @@ our @dnsbl_whitelist=( "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 + "70.71.0.212", # Red Hat ); our $Audit; # imported @@ -303,26 +227,36 @@ sub audit { # 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 "=spamhtml" 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 "=spambig5" if ($_=mimehead(body_first())->mime_attr("Content-Type.charset")) && /^big5/i; }; $store_profile=undef(); + my $nonrh; + for ($Audit->get("Received")) { + $nonrh=1 if /\sby\s+mx\d+\Q.redhat.com\E\s/s; + } + $nonrh=1 if !headeris("From",qr/[@]redhat.com/i); # spam detection return if did sub { + # Internal RH mails are never spam. + return if !$nonrh; # It is too expensive to scan the huge =caperr announcements by spamassassin(1). return if headeris("From",qr/^captive-[a-z]*@/); # Do not local $store_file as it is our-imported $store_profile="log"; local $_; - store "=spam".";virus=$_" if $_=clamscan(); +### store "=spam".";virus=$_" if $_=clamscan(); store "=spam".";spamassassin".($_ eq 1 ? "" : "=$_") if $_=spamassassin(); - store "=spam".";$_" if $_=dnsbl '.relays.ordb.org.' ,1; # all hosts +# 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",''); if (!is_multipart()) { @@ -360,48 +294,20 @@ sub audit # special delivery store "=err","bell" and return if headerhas \&Received_for,''; - - # 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( - - - - - <@mujoskar.cz> - - - - - - ); - - 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(); + store "=host1","bell" and return if headerhas \&Received_for,qr/\Qjan.kratochvil+\E\S*\Q.at.host1.dyn.jankratochvil.net\E@/; + +# if (headeris "X-Calendar-Attachment",qr/./) { +# store "=zimbra","btw"; +# my $headless=$::Message; +# $headless=~s{^From .*?\n}{} or cluck "No From header for Zimbra"; +# local *CHILD; +# if (!$::Dry) { +# open CHILD,q{|sendmail jkratoch@calendar.corp.redhat.com} +# or cluck "Cannot forward to Zimbra"; +# print CHILD $headless or cluck; +# close CHILD or cluck; +# } +# } # lists store "=mozillabug","log" if headeris "From" ,''; @@ -410,7 +316,6 @@ sub audit store "=spong","log" if headeris "List-Id" ,''; store "=gtkd","silent" if headeris "List-Id" ,''; store "=gnomevfs","log" if headeris "List-Id" ,''; - store "=mffstatnice","bell" if headeris "List-Post",''; store "=hw","log" if headeris "List-Post",''; store "=gnokii","log" if headeris "List-Id" ,''; store "=winelic","silent" if headeris "List-Id" ,''; @@ -433,25 +338,13 @@ sub audit 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","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 "=saintjk","log" if headeris "From" ,''; - store "=saintjk2","log" if 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" ,''; store "=freshmeat","bell" if headeris "From" ,''; store "=sourceforge","bell" if headeris "From" ,''; @@ -467,26 +360,6 @@ sub audit store "=gccann","log" if headeris "List-Post",''; store "=gcc","silent" if headeris "List-Post",''; store "=gccpat","silent" if headeris "List-Post",''; - my %mailman=( - ''=>"=caperr", - ''=>"=caperr", - ''=>"=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",'')&&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 "=ntfsann","silent" if headeris "List-Id" ,''; store "=ntfsd","silent" if headeris "List-Id" ,''; store "=orbit","silent" if headeris "List-Id" ,''; @@ -496,30 +369,33 @@ sub audit 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 "=fedann","bell" if headeris("List-Id" ,'') + || headeris("List-Id" ,''); store "=fedpkg","bell" if headeris "List-Id" ,''; - store "=fedtools","log" if headeris "List-Id" ,''; + store "=federrata","log" if headeris "Return-Path",''; + store "=fedtools","log" if headeris "List-Id" ,''; + store "=freleng","log" if headeris "List-Id" ,''; + if (headeris("List-Id" ,'') + || headeris("List-Id" ,'')) { + store "=fedd","log"; + store "=feddgdb","log" if body_simple()=~/\bgdb\b/i; + store "=feddlibunwind","log" if body_simple()=~/libunwind/i; + } 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",''; 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 "=centann","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"'; @@ -528,23 +404,154 @@ sub audit 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 "=gdbia64","log" if headeris("Mailing-List",'contact gdb-help@sourceware.org; run by ezmlm') + && body_simple()=~/\b(?:ia64|itanium)\b/i; store "=gdbpr","log" if headeris "Mailing-List",'contact gdb-prs-help@sourceware.org; run by ezmlm'; + store "=gdbpria64","log" if headeris("Mailing-List",'contact gdb-prs-help@sourceware.org; run by ezmlm') + && body_simple()=~/\b(?:ia64|itanium)\b/i; store "=gdbpat","log" if headeris "Mailing-List",'contact gdb-patches-help@sourceware.org; run by ezmlm'; + store "=gdbpatia64","log" if headeris("Mailing-List",'contact gdb-patches-help@sourceware.org; run by ezmlm') + && body_simple()=~/\b(?:ia64|itanium)\b/i; store "=gdbann","log" if headeris "Mailing-List",'contact gdb-announce-help@sourceware.org; run by ezmlm'; + store "=gdbcvs","log" if headeris "Mailing-List",'contact gdb-cvs-help@sourceware.org; run by ezmlm'; + store "=gdbcvsall","log" if headeris "Mailing-List",'contact src-cvs-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 "=buggnome","log" if headeris "From" ,''; + store "=bugdesktop","log" if headeris "From" ,''; + + # Red Hat + store "=wslog","log" if headeris("From" ,'') + && headeris("Return-Path",''); + store "=rhos","log" if headeris "List-Id" ,''; + store "=rhosd","log" if headeris "List-Id" ,''; + store "=rhmemo","silent" if headeris "List-Id" ,''; + store "=rhann","log" if headeris "List-Id" ,''; + store "=rheng","log" if headeris "List-Id" ,''; + store "=rheurope","log" if headeris("List-Id" ,'') + && headeris("X-loop" ,''); + store "=rhbrno","log" if headeris("List-Id" ,'') + &&!headeris("X-loop" ,''); + store "=rhbrnomemo","log" if headeris "List-Id" ,''; + store "=rhbrnopto","log" if headeris "List-Id" ,''; + store "=rhbase","log" if headeris "List-Id" ,''; + if (!did sub { + store "=rhrhel","log" if headeris "X-BeenThere",''; + store "=rhrhel","log" if headeris "X-BeenThere",''; + store "=rheng","log" if headeris "X-BeenThere",''; + }) { + store "=rhtoolsteam","log" if headeris "List-Id" ,''; + } + store "=rhtools","log" if headeris "List-Id" ,''; + store "=rhosteam","log" if headeris "List-Id" ,''; + store "=rhbug","log" if headeris "X-BeenThere",''; + store "=rhgdb","log" if headeris "List-Id" ,''; + store "=rhit","log" if headeris "Return-Path",''; + store "=rhcommit","log" if headeris("List-Id" ,'') + || headeris("X-CVS-Server",''); + store "=rhcommitgdb","log" if headeris "X-CVS-Directory",qr{^rpms/gdb(?:/.*)?$}; + store "=rhcommitgcc","log" if headeris "X-CVS-Directory",qr{^rpms/gcc(?:/.*)?$}; + store "=rhcommitlibunwind","log" if headeris "X-CVS-Directory",qr{^rpms/libunwind(?:/.*)?$}; + store "=rhcommitstrace","log" if headeris "X-CVS-Directory",qr{^rpms/strace(?:/.*)?$}; + store "=rhcommitbinutils","log" if headeris "X-CVS-Directory",qr{^rpms/binutils(?:/.*)?$}; + store "=rhcommitinsight","log" if headeris "X-CVS-Directory",qr{^rpms/insight(?:/.*)?$}; + store "=rhcommitptrace","log" if headeris "X-CVS-Directory",qr{^tests/kernel/syscalls/ptrace(?:/.*)? }; + store "=rhcommitgdbtest","log" if headeris "X-CVS-Directory",qr{^tests/gdb/gdb-any(?:/.*)? }; + store "=rhbrnowiki","log" if headeris("Return-Path",'') + && headeris("From" ,'') + && headeris("To" ,'') + # `\Q=?' causes: Can't modify constant item in concatenation (.) or string + && headeris("Subject" ,qr{^(?:\Q[Red Hat Czech] \E(?:Trivial )?Update of |=\Q?utf-8?q?=5BRed_Hat_Czech=5D_\E(?:Trivial_)?Update_of_)}); + store "=rhts","log" if headeris "List-Id" ,''; + store "=rhts","log" if headeris("List-Id" ,'') + || headeris("List-Id" ,''); + store "=rhwiki","log" if headeris "Return-Path",''; + store "=rhinet","log" if headeris "List-id" ,''; + if (headeris "Return-Path",'') { + if (body_simple()=~/(?:jkratoch|jan.kratochvil)[@]\Qredhat.com\E/s) { + store "=rhtsme","log"; + } + else { + store "=rhtsbogus","log"; + } + } + store "=rherrata","log" if $Audit->get("X-Erratatool-Component") + || (headeris("Return-Path",'') + && headeris("Subject",qr{^Changed Errata Request })); + if (headeris "Subject" ,qr{^\Q[rpmdiff] INSPECTION: Erratum \E\d{4}:\d{4} .*\btest results\b}) { + store "=rherrata","log"; + # `[rpmdiff] INSPECTION:' came from `root@rpmdiff3.test.redhat.com'. + } elsif ((headeris("To",'') || !$Audit->get("To") || $Audit->get("To") eq "undisclosed-recipients:;") + && headeris("Return-Path",qr{^\Qroot@\E.*[.](?:(?:lab|rhts|eng).(?:bos|boston)|z900|test|englab.brq|nay)\Q.redhat.com\E$})) { + store "=rhtsme","log"; + } + store "=rhtsme" if headeris "Subject" ,qr{^\Q[Beaker Job Completion] \E}; + store "=buggcc","log" if headeris("Return-Path",'') + || headeris("Return-Path",''); + store "=frysk","log" if headeris "Mailing-List",'contact frysk-help@sourceware.org; run by ezmlm'; + store "=fryskcvs","log" if headeris "List-Id" ,''; + store "=bugsrc","log" if headeris "Return-Path",''; + store "=rhwc","log" if headeris "Subject" ,'Cron $HOME/redhat/bin/rhwc'; + store "=dwarf","log" if headeris "List-Id" ,''; + store "=dwarf","log" if headeris "List-Id" ,''; + store "=libunwind","log" if headeris "List-Id" ,''; + store "=libunwindd","log" if headeris "List-Id" ,''; + store "=rhsip","log" if headeris "List-Id" ,''; + store "=fedaccount","log" if headeris("Return-Path",'') + && headeris("To", '') + && headeris("From", '') + && headeris("Subject" ,'You need to create a bugzilla account for jkratoch@redhat.com'); + store "=straced","log" if headeris "List-Id" ,''; + if (headeris "Return-Path",'') { + if ($Audit->subject()=~/^\d+ builds? marked for deletion$/) { + store "=fkojidel","log"; + } else { + store "=fkoji","log"; + } + } + if (headeris "Return-Path",'') { + if ($Audit->subject()=~/^\d+ builds? marked for deletion$/) { + store "=rhbrewdel","log"; + } else { + store "=rhbrew","log"; + } + } + store "=utrace","log" if headeris "List-Id" ,''; + store "=eud","log" if headeris "List-Id" ,''; + store "=eud","log" if headeris "List-Id" ,''; + store "=dup","log" if headeris "List-Id" ,''; + store "=dupbug","log" if headeris "List-Id" ,''; + store "=rheclipse","log" if headeris "List-Id" ,''; + store "=rhtech","log" if headeris "List-Id" ,''; + store "=rhgdb","log" if headeris "List-Id" ,''; + store "=rhperf","log" if headeris "List-Id" ,''; + store "=rhdebug","log" if headeris "List-Id" ,''; + store "=rhsip","log" if headeris "List-Id" ,''; + store "=fupdate","log" if headeris "Return-Path",''; + store "=rhmedia","log" if headerhas "List-Id",''; + store "=fia64","log" if headeris "List-Id" ,''; + store "=archer","log" if headeris "List-Id" ,''; + store "=archergit","log" if headeris "List-Post" ,''; + store "=flive","log" if headeris("List-Id" ,'') + || headeris("List-Id" ,''); + store "=fspin","log" if headeris "List-Id" ,''; + store "=rhstatus","log" if headeris "List-Id" ,''; + store "=rhstatusteam","log" if headeris "List-Id" ,''; + store "=fcrash","log" if headeris "List-Id" ,''; + store "=gabi","log" if headeris "List-Id" ,''; + store "=fupload","log" if headeris("X-Fedora-Upload",qr//) + && headeris("Subject" ,qr/^File\s\S+\suploaded\sto\slookaside\scache\sby\s/); + store "=rhpkg","log" if headeris "Return-Path",''; + store "=gdbmail","log" if headeris "From" ,qr{^\Qdiffgdbdaymail by Jan Kratochvil \E$}; + store "=vpx","log" if headeris("List-Id" ,'') + || headeris("List-Id" ,''); - # 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",''; 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 "=errm","bell" if $isFROM_MAILER && !did(); if (!did) { store "==","sms";