From b2e8c7a0f6ef359d6fbd7fc597fb0f728d06a752 Mon Sep 17 00:00:00 2001 From: stekkel Date: Fri, 17 Mar 2006 17:48:31 +0000 Subject: [PATCH] Fix for updating the mailbox cache concernig flags git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10993 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/imap_general.php b/functions/imap_general.php index 908598a9..1373a20e 100755 --- a/functions/imap_general.php +++ b/functions/imap_general.php @@ -461,7 +461,7 @@ function sqimap_retrieve_imap_response($imap_stream, $tag, $handle_errors, case '*': { - if ($sCommand == "FETCH" && preg_match('/^\*\s\d+\sFETCH/',$read)) { + if (($sCommand == "FETCH" || $sCommand == "STORE") && preg_match('/^\*\s\d+\sFETCH/',$read)) { /* check for literal */ $s = substr($read,-3); $fetch_data = array(); -- 2.25.1