take the extra time on failure on folderExists, when the folder seems to be not to be there

This commit is contained in:
Klaus Leithoff 2014-11-18 15:53:53 +00:00
parent 499601cd17
commit 06f8a7c829

View File

@ -1464,8 +1464,12 @@ class mail_ui
} }
else else
{ {
//error_log(__METHOD__.__LINE__.' Test on Folder:'.$_folderName.' failed; Using INBOX instead'); // take the extra time on failure
$query['selectedFolder']=$mail_ui->mail_bo->sessionData['mailbox']=$_folderName='INBOX'; if (!$mail_ui->mail_bo->folderExists($_folderName,true))
{
//error_log(__METHOD__.__LINE__.' Test on Folder:'.$_folderName.' failed; Using INBOX instead');
$query['selectedFolder']=$mail_ui->mail_bo->sessionData['mailbox']=$_folderName='INBOX';
}
} }
$mail_ui->mail_bo->saveSessionData(); $mail_ui->mail_bo->saveSessionData();
$rowsFetched['messages'] = null; $rowsFetched['messages'] = null;