This library use sockets to send a message to SpamAssassin daemon for evaluation.
Based on the SpamAssassin plugin from Haraka.
npm install node-spamd
var Spamd = require("node-spamd");
var spamd = new Spamd(sender, receiver, host, port);
spamd.evaluate(subject, message, function(res, err){
if(err) {
console.log(err);
} else {
if(res.spam) {
console.log('The message is Spam, is evaluated with ' + res.evaluation + " points in a maximun of " + res.allowed);
}else{
console.log('The message is not Spam, is evaluated with ' + res.evaluation + " points in a maximun of " + res.allowed);
}
}
});
sender: Sender e-mail address/user. Default value: root
receiver: Receiver e-mail address/user. Default value: root
host: Spamd address. Default value: localhost
port: Spamd port. Default value: 783
subject: String containing the message subject.
message: String containing the message body.
The method returns an object, with the following attributes:
spam = true or false. Indicates the result of SpamAssassing analysis.
evaluation = Number or points or hits, that the message has obtained.
allowed = Configured minimal required points for SpamAssassin mark the message as SPAM. This is a spamd setting.
rules = Array with detected spam infractions
- document source code;
- real documentation;
jsHint standardswe don't like code standards.
Copyright (C) 2012 Humantech
Distributed under the MIT License, the same as Node.js.
Read this if you're in doubt.