Henrik K wrote:

(note, I'm guessing at the appropriate mailing list for cross-post)

Dennis Davis wrote:
http://code.google.com/p/anti-phishing-email-reply/

is also useful as it attempts to detail the compromised accounts.
Just block/quarantine email for those accounts.
Interesting ... this seems like it would be best served by DNS in a
manner similar to URIBLs ... does such an "emailBL" exist?

If someone wants to try it on their mail feed:

http://sa.hege.li/pra.cf

Don't mind the size, as optimized they only take millisecond or two to run.

Of course when if it starts getting 10x the size, DNS will start looking
attractive..

This might sound a big picky, but using backticks to call the date command in a perl script is horrible. Try using the standard gmtime function. Eg:

$date = gmtime().' (UTC)';

Rather than:

$date = `date -u`; chomp($date);

--
Mike Cardwell
(https://secure.grepular.com) (http://perlcv.com/)

Reply via email to