dspam: remove hard coded default in train_ methods
This commit is contained in:
parent
7a855d4d6b
commit
725a8d1960
@ -208,7 +208,8 @@ use IO::Handle;
|
|||||||
use Socket qw(:DEFAULT :crlf);
|
use Socket qw(:DEFAULT :crlf);
|
||||||
|
|
||||||
sub register {
|
sub register {
|
||||||
my ($self, $qp) = (shift, shift);
|
my $self = shift;
|
||||||
|
my $qp = shift;
|
||||||
|
|
||||||
$self->log(LOGERROR, "Bad parameters for the dspam plugin") if @_ % 2;
|
$self->log(LOGERROR, "Bad parameters for the dspam plugin") if @_ % 2;
|
||||||
|
|
||||||
@ -590,20 +591,8 @@ sub train_error_as_ham {
|
|||||||
my $dspam_bin = $self->{_args}{dspam_bin} || '/usr/local/bin/dspam';
|
my $dspam_bin = $self->{_args}{dspam_bin} || '/usr/local/bin/dspam';
|
||||||
my $cmd =
|
my $cmd =
|
||||||
"$dspam_bin --user $user --mode=toe --source=error --class=innocent --deliver=summary --stdout";
|
"$dspam_bin --user $user --mode=toe --source=error --class=innocent --deliver=summary --stdout";
|
||||||
my $response = $self->dspam_process($cmd, $transaction);
|
$self->dspam_process($cmd, $transaction);
|
||||||
if ($response) {
|
return;
|
||||||
$transaction->notes('dspam', $response);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$transaction->notes(
|
|
||||||
'dspam',
|
|
||||||
{
|
|
||||||
class => 'Innocent',
|
|
||||||
result => 'Innocent',
|
|
||||||
confidence => 1
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub train_error_as_spam {
|
sub train_error_as_spam {
|
||||||
@ -614,20 +603,8 @@ sub train_error_as_spam {
|
|||||||
my $dspam_bin = $self->{_args}{dspam_bin} || '/usr/local/bin/dspam';
|
my $dspam_bin = $self->{_args}{dspam_bin} || '/usr/local/bin/dspam';
|
||||||
my $cmd =
|
my $cmd =
|
||||||
"$dspam_bin --user $user --mode=toe --source=error --class=spam --deliver=summary --stdout";
|
"$dspam_bin --user $user --mode=toe --source=error --class=spam --deliver=summary --stdout";
|
||||||
my $response = $self->dspam_process($cmd, $transaction);
|
$self->dspam_process($cmd, $transaction);
|
||||||
if ($response) {
|
return;
|
||||||
$transaction->notes('dspam', $response);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$transaction->notes(
|
|
||||||
'dspam',
|
|
||||||
{
|
|
||||||
class => 'Spam',
|
|
||||||
result => 'Spam',
|
|
||||||
confidence => 1
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub autolearn {
|
sub autolearn {
|
||||||
@ -649,6 +626,7 @@ sub autolearn {
|
|||||||
$self->autolearn_naughty($response, $transaction) and return;
|
$self->autolearn_naughty($response, $transaction) and return;
|
||||||
$self->autolearn_karma($response, $transaction) and return;
|
$self->autolearn_karma($response, $transaction) and return;
|
||||||
$self->autolearn_spamassassin($response, $transaction) and return;
|
$self->autolearn_spamassassin($response, $transaction) and return;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub autolearn_naughty {
|
sub autolearn_naughty {
|
||||||
@ -723,8 +701,9 @@ sub autolearn_spamassassin {
|
|||||||
$self->log(LOGINFO, "training SA FN as spam");
|
$self->log(LOGINFO, "training SA FN as spam");
|
||||||
$self->train_error_as_spam($transaction);
|
$self->train_error_as_spam($transaction);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
};
|
||||||
elsif ( $sa->{is_spam} eq 'No'
|
|
||||||
|
if ( $sa->{is_spam} eq 'No'
|
||||||
&& $sa->{autolearn} eq 'ham'
|
&& $sa->{autolearn} eq 'ham'
|
||||||
&& $response->{result} eq 'Spam')
|
&& $response->{result} eq 'Spam')
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user