Mail::SpamAssassin::PerMsgLearner (3)
Leading comments
Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32)
Standard preamble:
========================================================================
(The comments found at the beginning of the groff file "man3/Mail::SpamAssassin::PerMsgLearner.3pm".)
NAME
Mail::SpamAssassin::PerMsgLearner - per-message status (spam or not-spam)
SYNOPSIS
my $spamtest = new Mail::SpamAssassin ({
'rules_filename' => '/etc/spamassassin.rules',
'userprefs_filename' => $ENV{HOME}.'/.spamassassin/user_prefs'
});
my $mail = $spamtest->parse();
my $status = $spamtest->learn($mail,$id,$isspam,$forget);
my $didlearn = $status->did_learn();
$status->finish();
DESCRIPTION
The Mail::SpamAssassin
"learn()" method returns an object of this
class. This object encapsulates all the per-message state for
the learning process.
METHODS
- $didlearn = $status->did_learn()
-
Returns 1 if the message was learned from or forgotten successfully.
- $status->finish()
-
Finish with the object.
SEE ALSO
"Mail::SpamAssassin"
"spamassassin"