Ian Zimmerman kirjoitti 7.4.2016 5:38:
Is there any way to disable the spamcop plugin for an individual user
(i.e. from ~/.spamassassin/user_prefs) if the plugin is loaded by
/etc/spamassassin/*.pre ?
By comparison, I seem to be able to disable pyzor even if it is loaded,
by writing
use_pyzor 0
in my user_prefs.
There seems to be code in SpamCop.pm doing some test about
"dont_report_to_spamcop". I don't know if that can be set in user_prefs
or something..
sub plugin_report {
my ($self, $options) = @_;
return unless $self->{spamcop_available};
if (!$options->{report}->{options}->{dont_report_to_spamcop}) {
if ($self->spamcop_report($options)) {
$options->{report}->{report_available} = 1;
info("reporter: spam reported to SpamCop");
$options->{report}->{report_return} = 1;
}
else {
info("reporter: could not report spam to SpamCop");
}
}
}
--
jarif.bit