From 4922e55d582fb1907211bba8cc539551475f280f Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Fri, 11 Jul 2014 03:28:36 -0400 Subject: [PATCH] Fix sorting messages by size on servers without SORT capability (#1489981) --- CHANGELOG | 1 + program/lib/Roundcube/rcube_imap_generic.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index aa22fb0..79148e0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -57,6 +57,7 @@ - Fix Delete button state after deleting identity/response (#1489972) - Fix bug where contacts with no email address were listed on compose addressbook (#1489970) - Fix images import from various vCard formats (#1489977) +- Fix sorting messages by size on servers without SORT capability (#1489981) RELEASE 1.0.1 ------------- diff --git a/program/lib/Roundcube/rcube_imap_generic.php b/program/lib/Roundcube/rcube_imap_generic.php index 0325064..99fb6d8 100644 --- a/program/lib/Roundcube/rcube_imap_generic.php +++ b/program/lib/Roundcube/rcube_imap_generic.php @@ -1916,8 +1916,8 @@ $result[$id] = ''; } } else if ($mode == 2) { - if (preg_match('/(UID|RFC822\.SIZE) ([0-9]+)/', $line, $matches)) { - $result[$id] = trim($matches[2]); + if (preg_match('/' . $index_field . ' ([0-9]+)/', $line, $matches)) { + $result[$id] = trim($matches[1]); } else { $result[$id] = 0; } -- Gitblit v1.9.1