Page 1 of 1
blacklisted emails in the daily report
Posted: 02 Jun 2015 17:28
by cdburgess75
Is it normal to get the blacklisted emails in the daily report?
Re: blacklisted emails in the daily report
Posted: 13 Jun 2015 12:03
by shawniverson
Possibly, I will need to check the SQL query.
Re: blacklisted emails in the daily report
Posted: 24 Jun 2015 19:59
by cdburgess75
Can you tell mw what file it is? the filename. I can look at it and may be able to change it. If I get lucky, Ill post the change for all to reference.
Re: blacklisted emails in the daily report
Posted: 25 Jun 2015 15:01
by shawniverson
Here you go:
/usr/local/bin/mailwatch/tools/Cron_jobs/quarantine_report.php
Re: blacklisted emails in the daily report
Posted: 01 Jul 2015 14:24
by cdburgess75
Well, I removed the entries from here:
CASE
WHEN a.virusinfected>0 THEN 'Virus'
WHEN a.nameinfected>0 THEN 'Bad Content'
WHEN a.otherinfected>0 THEN 'Infected'
WHEN a.ishighspam>0 THEN 'Spam'
WHEN a.issaspam>0 THEN 'Spam'
WHEN a.isrblspam>0 THEN 'Spam'
WHEN a.spamblacklisted>0 THEN 'Blacklisted'
WHEN a.isspam THEN 'Spam'
WHEN a.ismcp>0 THEN 'Policy'
WHEN a.ishighmcp>0 THEN 'Policy'
WHEN a.issamcp>0 THEN 'Policy'
WHEN a.mcpblacklisted>0 THEN 'Policy'
WHEN a.isspam>0 THEN 'Spam'
ELSE 'UNKNOWN'
END AS reason
But that did not work. an I think I may know why. The blacklisted emails are also considered spam and high spam when you look at the message property page. So the blacklisted message will still be pulled into the report because of that spam attribute. Am I on the right track?
Re: blacklisted emails in the daily report
Posted: 02 Jul 2015 02:22
by shawniverson
Yes, you are in the right place.