Drop root folders with \noselect flag

Like 'dovecot' which has 'dovecot.sieve' which has no emails
This commit is contained in:
djmaze 2021-03-29 14:21:47 +02:00
parent 5eb7c7515a
commit 135831b116

View file

@ -36,6 +36,12 @@ trait Folders
if ($oFolderCollection instanceof \MailSo\Mail\FolderCollection)
{
foreach ($oFolderCollection as $i => $oFolder) {
if (!$oFolder->IsSelectable()) {
unset($oFolderCollection[$i]);
}
}
$oSettingsLocal = $this->SettingsProvider(true)->Load($oAccount);
$aSystemFolders = array();