
I installed EFA last night, and aside from a few glitches, have been most impressed with it so far.
I'm hitting an issue with the generation of quarantine reports...when I run the command:
sudo /usr/local/bin/mailwatch/tools/Cron_jobs/quarantine_report.php
It looks like it's running correctly, however for any users that an actual report is created for, it throws the following:
Use of undefined constant QUARANTINE_MAIL_PORT - assumed 'QUARANTINE_MAIL_PORT' in /usr/local/bin/mailwatch/tools/Cron_jobs/quarantine_report.php on line 498
If I go in and edit line 498 and change
$mail_param = array('host' => QUARANTINE_MAIL_HOST, 'port' => QUARANTINE_MAIL_PORT);
to
$mail_param = array('host' => QUARANTINE_MAIL_HOST, 'port' => 25);
The report runs correctly and get delivered to users. As noted above, my guess is I've set something up incorrectly somewhere, but can't for the life of me see it in the various admin console
EDIT: Pretty sure I'm running 3.0.1.7 (installed from the EFA OVF last night and ran the update a few times from the CLI - where do I check?)