From bb2113ccdcfb2eb3c7b04c161a6b21ef893eee7e Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 31 Mar 2015 13:51:59 +0200 Subject: Fix zipped messages downloads after selecting all messages in a folder (#1490339) --- plugins/zipdownload/zipdownload.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins') diff --git a/plugins/zipdownload/zipdownload.php b/plugins/zipdownload/zipdownload.php index 2e103ceb0..983db1227 100644 --- a/plugins/zipdownload/zipdownload.php +++ b/plugins/zipdownload/zipdownload.php @@ -211,6 +211,11 @@ class zipdownload extends rcube_plugin $imap->set_folder($mbox); $path = $folders ? str_replace($imap->get_hierarchy_delimiter(), '/', $mbox) . '/' : ''; + if ($uids === '*') { + $index = $imap->index($mbox, null, null, true); + $uids = $index->get(); + } + foreach ($uids as $uid) { $headers = $imap->get_message_headers($uid); -- cgit v1.2.3