Koozali.org: home of the SME Server

[Announce] Updated sme-unjunkmgr (1.1.3)

Offline Knuddi

  • *
  • 540
  • +0/-0
    • http://www.scanmailx.com
[Announce] Updated sme-unjunkmgr (1.1.3)
« on: June 04, 2009, 05:06:50 PM »
Since there are so many users of the sme-unjunkmgr I decided to post the fact that there is a new release out. This new release has the following enhancements:

1) The unjunkhost configuration option now actually works...
2) The style sheets (CSS) has been updated so the web pages look much better in IE
3) The data collector now also counts rejects from blocklists (It was entirely based on SpamAssassin scans before). This means that the reject numbers are very likely to increase and come closer to the 70-90% which is consistently reported by commercial companies.
4) The web page now also show "Top spammed emails" which is the top 10 email addresses that receives spam.

See details on the wiki on how to download.
http://wiki.contribs.org/Sme-unjunkmgr

Enjoy,
Jesper

Offline Knuddi

  • *
  • 540
  • +0/-0
    • http://www.scanmailx.com
Re: [Announce] Updated sme-unjunkmgr (1.1.3)
« Reply #1 on: June 06, 2009, 08:15:02 AM »
Forgot to add this it should also now run on the latest SME 8 beta release. This is obviously in beta as the mother release.

Offline macwunder

  • *
  • 17
  • +0/-0
Re: [Announce] Updated sme-unjunkmgr (1.1.3)
« Reply #2 on: February 06, 2011, 09:06:18 PM »
I'm running this in 8b6 and has been doing nicely that past coupe days. I have changed the cron template to run daily at 13:00 hours, and would like to know if we can configure spamreminder.pl to only include the spam activity since the last report (in my case, one day)?

Thanks for this. A wonderful piece of coding!

Regards;
Jeff

Offline Knuddi

  • *
  • 540
  • +0/-0
    • http://www.scanmailx.com
Re: [Announce] Updated sme-unjunkmgr (1.1.3)
« Reply #3 on: February 06, 2011, 09:25:04 PM »
For now I am afraid that has to be a hack in the code. Go find this (around line 254) in /usr/local/unjunkmgr/spamreminder.pl:

  my  ($oneweekago, $noew) = parse_arg("last week", "");

and change to:

  my  ($oneweekago, $noew) = parse_arg("yesterday", "");

And you should get daily updates.

Offline macwunder

  • *
  • 17
  • +0/-0
Re: [Announce] Updated sme-unjunkmgr (1.1.3)
« Reply #4 on: February 06, 2011, 09:28:26 PM »
Thanks, very much. I saw that bit of code, but didn't want to screw it up... I don't know perl that well.