summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_imap.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-03-08 15:35:03 +0100
committerAleksander Machniak <alec@alec.pl>2013-03-08 15:35:03 +0100
commitd9dc320a40ef21cfc0a1f03d453784949da65f52 (patch)
tree5c0d42015473aa750ca900f79dfb1fc8cf884df2 /program/lib/Roundcube/rcube_imap.php
parent32da69983021005567a4d8f56a2658ac2645780c (diff)
Support IMAP MOVE extension [RFC 6851]
Diffstat (limited to 'program/lib/Roundcube/rcube_imap.php')
-rw-r--r--program/lib/Roundcube/rcube_imap.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php
index 18c6b12af..8d9c37576 100644
--- a/program/lib/Roundcube/rcube_imap.php
+++ b/program/lib/Roundcube/rcube_imap.php
@@ -2333,10 +2333,7 @@ class rcube_imap extends rcube_storage
// move messages
$moved = $this->conn->move($uids, $from_mbox, $to_mbox);
- // send expunge command in order to have the moved message
- // really deleted from the source folder
if ($moved) {
- $this->expunge_message($uids, $from_mbox, false);
$this->clear_messagecount($from_mbox);
$this->clear_messagecount($to_mbox);
}