Quarantine Summary Report and multiple recipients
Posted: 20 Apr 2017 18:44
Looking at what for me is line 207 in /usr/local/bin/mailwatch/tools/Cron_jobs/quarantine_report.php I see:
((to_address=%s) OR (to_domain=%s))
which is a problem because I have confirmed it does not handle any Email with multiple recipients. The end result being that if something is caught in quarantine and sent to two recipients, it will never be included in a quarantine summary report.
I'm guessing what we want to do instead is ((to_address LIKE %{%s}%) OR (to_domain LIKE %{%s})). Although that may require generation of a full text index on the maillog table to prevent being bogged down.
I'm still using EFA-3.0.1.8, so this may have been addressed already.
Thoughts?
((to_address=%s) OR (to_domain=%s))
which is a problem because I have confirmed it does not handle any Email with multiple recipients. The end result being that if something is caught in quarantine and sent to two recipients, it will never be included in a quarantine summary report.
I'm guessing what we want to do instead is ((to_address LIKE %{%s}%) OR (to_domain LIKE %{%s})). Although that may require generation of a full text index on the maillog table to prevent being bogged down.
I'm still using EFA-3.0.1.8, so this may have been addressed already.
Thoughts?