Skip to content

Commit

Permalink
Merge branch '2022.11' into 2023.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Jan 15, 2024
2 parents bf73e2d + 57eda39 commit 68b6ee0
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 @@ -1986,7 +1986,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 68b6ee0

Please sign in to comment.