You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by pa...@apache.org on 2005/02/09 07:11:13 UTC

svn commit: r153030 - spamassassin/trunk/lib/Mail/SpamAssassin/DBBasedAddrList.pm

Author: parker
Date: Tue Feb  8 22:11:12 2005
New Revision: 153030

URL: http://svn.apache.org/viewcvs?view=rev&rev=153030
Log:
Bug 4075: Forgot to remove the totscore delete

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/DBBasedAddrList.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/DBBasedAddrList.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/DBBasedAddrList.pm?view=diff&r1=153029&r2=153030
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/DBBasedAddrList.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/DBBasedAddrList.pm Tue Feb  8 22:11:12 2005
@@ -172,7 +172,6 @@
       # regex will catch both key and key|totscore entries and delete them
       if ($key =~ /^\Q${mailaddr}\E\|ip=\d+\.\d+/) {
         delete $self->{accum}->{$key};
-        delete $self->{accum}->{$key.'|totscore'};
       }
     }
   }