Skip to content

Commit

Permalink
Merge branch '2023.11' into 2024.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Jan 15, 2024
2 parents aa04c7c + 68b6ee0 commit 241bb2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tine20/Felamimail/Controller/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -1985,7 +1985,9 @@ protected function _autoCreateSystemAccountFolders(Felamimail_Model_Account $_ac
] as $folder) {
$systemFolderField = $this->_getSystemFolderField($folder);
$folderName = $_account->{$systemFolderField};
$this->_createSystemFolder($_account, $folderName);
if (!empty($folderName)) {
$this->_createSystemFolder($_account, $folderName);
}
}
} catch (Felamimail_Exception_IMAPInvalidCredentials $feiic) {
Tinebase_Core::getLogger()->notice(__METHOD__ . '::' . __LINE__ . ' ' . $feiic->getMessage());
Expand Down

0 comments on commit 241bb2a

Please sign in to comment.