From c236c22c419c63a61ccfa7de27079ccd37598608 Mon Sep 17 00:00:00 2001 From: Edgaras L Date: Sat, 5 May 2018 13:48:15 +0300 Subject: [PATCH] Parse all quotas from GETQUOTAROOT (#6280) --- program/lib/Roundcube/rcube_imap_generic.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/program/lib/Roundcube/rcube_imap_generic.php b/program/lib/Roundcube/rcube_imap_generic.php index 396a04c6810..48f62e884bd 100644 --- a/program/lib/Roundcube/rcube_imap_generic.php +++ b/program/lib/Roundcube/rcube_imap_generic.php @@ -3130,8 +3130,9 @@ public function getQuota($mailbox = null) if (preg_match('/^\* QUOTA /', $line)) { list(, , $quota_root) = $this->tokenizeResponse($line, 3); - while ($line) { - list($type, $used, $total) = $this->tokenizeResponse($line, 1); + $quotas = $this->tokenizeResponse($line, 1); + foreach (array_chunk($quotas, 3) as $quota) { + list($type, $used, $total) = $quota; $type = strtolower($type); if ($type && $total) {