> 10.4 $newscore=0 if newscore < 0 ;

This will still result in a pbBlack record with an IP score of 0, which is 
still considered a hit in statements like:

if (exists $PBBlack{$ip}){...

My opinion, we need something that will remove the IP from pbBlack like:

my $newscore=$oldscore+$score;

if ($newscore <= 0) {
    delete $PBBlack{$ip};
    return;
} 



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Assp-test mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/assp-test

Reply via email to