0.0.5 • Published 11 years ago
spamc v0.0.5
spamc
This is a fork from coxeh/node-spamc just to publish it to npm.
spamc is a nodejs module that connects to spamassassin's spamd daemon using the spamc interface. You are able to:
- Check a message for a spam score and return back what spamassassin matched on
- Ability to send messages to spamassassin to learn from
- Ability to do everything that
spamcis capable of
Note that the native spamassassin and spamc package must be available on your machine. On Debian / Ubuntu:
sudo aptitude install spamassassin spamcthen something like:
sudo npm install --save spamcCommands Available
checkchecks a message for a spam score and returns an object of informationsymbolslikecheckbut also returns what the message matched onreportlikesymbolsbut matches also includes a small descriptionreportIfSpamonly returns a result if message is spamprocesslikecheckbut also returns a processed message with extra headersheaderslikecheckbut also returns the message headers in a arraylearnabilty to parse a message to spamassassin and learn it as spam or hamtellability to tell spamassassin that the message is spamrevokeabilty to tell spamassassin that the message is not spam
Example
This example will parse a message to spamassassin to perform a report and will callback on success.
var Spamc = require('spamc');
var spamc = new Spamc();
spamc.report('My full email message as a string', function (result) {
console.log(result);
});