Re: [Mimedefang] counting emails flagged as spam

2004-09-07 Thread Kevin A. McGrail
> I just set this up on a couple of servers and it's pretty easy. The hardest > part is locating all the Perl modules to install. Alas, a 3rd server won't > let me install it because graphdefang needs GD version 2 (the Perl graphics > module) and I've got version 1 installed for a particular web ap

Re: [Mimedefang] counting emails flagged as spam

2004-09-06 Thread Kenneth Porter
--On Monday, September 06, 2004 3:33 PM -0400 "Kevin A. McGrail" <[EMAIL PROTECTED]> wrote: You might want to look into GraphDefang. There is already a tie-in for it in MD by using a line such as: md_graphdefang_log('spam', $hits, $RelayAddr); I just set this up on a couple of servers and it's p

Re: [Mimedefang] counting emails flagged as spam

2004-09-06 Thread Kevin A. McGrail
EFANG You could also just grep /var/log/maillog for the tag and run through wc -l for a count. Regards, KAM - Original Message - From: "Mike Campbell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 06, 2004 1:37 PM Subject: [Mimedefang]

Re: [Mimedefang] counting emails flagged as spam

2004-09-06 Thread Jeff Rife
On 6 Sep 2004 at 12:37, Mike Campbell wrote: > Anyone have a good way to keep a running count of how many email > messages have been flagged as spam by spamassassin? I just add a line like this: md_graphdefang_log('spam', $hits, $RelayAddr); Then, you can use various tools that process the sen

[Mimedefang] counting emails flagged as spam

2004-09-06 Thread Mike Campbell
Anyone have a good way to keep a running count of how many email messages have been flagged as spam by spamassassin? Given that the MD filter is just perl I can easily add in a couple of lines that just updates a file count but was wondering if someone had a more sophisticated working example.