Hi guys,
Seems like you guys found another error. If you feel like hacking the code a bit, try the changes below and get back to us with the newer results:
in modules/InboundEmail/InboundEmail.php around line 848:
PHP Code:
...
function connectMailserver($test=false) {
error_reporting(0); // turn off notices from IMAP
$exServ = explode('::', $this->service);
...
add "global $mod_strings;" so that it looks like:
PHP Code:
...
function connectMailserver($test=false) {
global $mod_strings;
error_reporting(0); // turn off notices from IMAP
$exServ = explode('::', $this->service);
...
This should give you some intellible feedback - at least whether the connection succeeded or not.
Sorry about this oversight!
Bookmarks