Hello,
There appears to be a bug in the handling of inbound email monitoring. When one creates a mailbox to be monitored the system saves it to the db with the mailbox_type = NULL. However in pollMonitoredInboxes() the sql query asks for mailbox_type != 'bounce'. In mysql that returns 0 records which results in the mailbox never being queried. Modifying the sql query to :
'SELECT id FROM inbound_email WHERE deleted=0 AND status=\'Active\' AND ( mailbox_type is null OR mailbox_type != \'bounce\')'
in pollMonitoredInboxes() function in modules/Schedulers/_AddJobsHere.php
appears to fix the problem.
Cheers,
--Bill


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks