This commit is contained in:
the-djmaze 2022-02-14 13:06:00 +01:00
parent b405b45158
commit 6c71f25f50

View file

@ -51,6 +51,14 @@ trait Folders
array($this->EscapeFolderName($sFolderName)));
// $this->FolderCheck();
// $this->FolderUnselect();
// Will this workaround solve Dovecot issue #124 ?
try {
$this->FolderRename($sFolderName, "{$sFolderName}-dummy");
$this->FolderRename("{$sFolderName}-dummy", $sFolderName);
} catch (\Throwable $e) {
}
return $this;
}