From b2b2dc8b69a17b9cfc4398fd77d336e310ad5ed2 Mon Sep 17 00:00:00 2001 From: thomasb Date: Thu, 5 Jun 2008 10:44:48 +0000 Subject: Fix BODYSTRUCTURE response parsing: some servers respond like 'F1247 OK Completed (0.000 sec)' git-svn-id: https://svn.roundcube.net/trunk@1477 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/lib/imap.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index 0f3ac98f1..cec376859 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -2568,7 +2568,7 @@ function iil_C_FetchStructureString(&$conn, $folder, $id) { $result .= $line; } while (!preg_match("/^$key/", $line)); - $result = trim(substr($result, strpos($result, 'BODYSTRUCTURE')+13, -(strlen($result)-strrpos($result, ')')-1))); + $result = trim(substr($result, strpos($result, 'BODYSTRUCTURE')+13, -(strlen($result)-strrpos($result, $key)-2))); } } return $result; -- cgit v1.2.3