in reply to Re^2: spam content checker
in thread spam content checker
my $spamtest = Mail::SpamAssassin->new(); my $mail = $spamtest->parse($message); my $status = $spamtest->check($mail); my $score = $status->get_body_only_points();
CountZero
A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: spam content checker
by geetha (Initiate) on Jan 28, 2008 at 06:00 UTC | |
by CountZero (Bishop) on Jan 28, 2008 at 10:04 UTC |