DisSpam
Platforms:
Windows 2000,
Windows 95/98,
Windows NT,
Windows XP
Categories:
Detection,
Email,
Email,
Hostile Code,
Policy Enforcement,
Utilities
Version: v0.11
URL:
DisSpam is a personal solution to combat spam (i.e. not for mailservers/ISPs). It is a Perl script that removes spam from POP3 mailboxes based on RBLs such as orbz.org. It runs through cron and uses a very simple configuration file.

old line:
$status->get_full_message_as_text();
change to:
$status->get_message();
I also found some erie areas where old non spam was flagged as spam (probably the way disspam hashes each message for a signature and later finds a match), so when it checks the message again it think it is a spam. I just rem'd the line out and undef it.
# It's old spam
undef $reason;
#$reason = "Message previously detected as spam";
[ reply ]