From 323a1266ccc810c880dbd800fbf009e6c8598673 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 30 Jun 2008 09:36:18 +0000 Subject: - Added flag column on messages list (#1484623) git-svn-id: https://svn.roundcube.net/trunk@1580 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/lib/imap.inc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'roundcubemail/program/lib') diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index ce02071b6..e3df35699 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -149,6 +149,7 @@ class iilBasicHeader var $answered = false; var $forwarded = false; var $junk = false; + var $flagged = false; } /** @@ -1758,6 +1759,8 @@ function iil_C_FetchHeaders(&$conn, $mailbox, $message_set, $uidfetch=false) $result[$id]->forwarded = true; } else if (strcasecmp($val, '$MDNSent') == 0) { $result[$id]->mdn_sent = true; + } else if (strcasecmp($val, 'Flagged') == 0) { + $result[$id]->flagged = true; } } $result[$id]->flags = $flags_a; -- cgit v1.2.3