Re: [2] auto-learn learned_points

2007-03-06 Thread ram01
if (!$self->{conf}->maybe_header_only ($test)) { $self->{body_only_points} += $scores->{$test}; } if (!$self->{conf}->maybe_body_only ($test)) { $self->{head_only_points} += $scores->{$test}; } $points += $scores->{$test}; } # Figure out the final value we'll use for autolearning $points = (sprintf "%0.3f", $points) + 0; dbg("learn: auto-learn: message score: ".$self->{score}.", computed score for autolearn: $points"); $self->{autolearn_points} = $points; } -- View this message in context: http://www.nabble.com/auto-learn-learned_points-tf3353775.html#a9335682 Sent from the SpamAssassin - Users mailing list archive at Nabble.com.

Re: auto-learn learned_points

2007-03-06 Thread Matt Kettler
ram01 wrote: > "auto-learn? no: scored as spam but learner indicated ham" > is given if if ($learned_points < $learner_said_ham_points)where > $learner_said_ham_points = -1.0 > > what exactly is learned_points > It is a recalculation of the message score, based on the following changes from

auto-learn learned_points

2007-03-05 Thread ram01
"auto-learn? no: scored as spam but learner indicated ham" is given if if ($learned_points < $learner_said_ham_points)where $learner_said_ham_points = -1.0 what exactly is learned_points -- View this message in context: http://www.nabble.com/auto-learn-learned_points-t