mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-22 13:58:40 +01:00
* Mail: Fix empty trash/empty junk actions causes error in some mail servers, e.g. Cyrus.
This commit is contained in:
parent
e6b0ed7fee
commit
a3b903b75c
@ -3953,8 +3953,9 @@ class Mail
|
||||
$this->flagMessages('delete', $uid, $_folder);
|
||||
}
|
||||
}
|
||||
// delete the messages finaly
|
||||
$this->icServer->expunge($_folder);
|
||||
$examineMailbox = $this->icServer->examineMailbox($_folder);
|
||||
// examine the folder and if there are messages then try to delete the messages finaly
|
||||
if (is_array($examineMailbox) && $examineMailbox['MESSAGES'] > 0) $this->icServer->expunge($_folder);
|
||||
break;
|
||||
}
|
||||
if($oldMailbox != '') {
|
||||
|
Loading…
Reference in New Issue
Block a user