summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-01-28 10:52:02 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-01-28 10:52:02 +0000
commit43c7d3a814c273aec88d99b83cd3d616fb5969f6 (patch)
tree9b12d03f28e2081860e081d486ce28dddb6a62f6 /roundcubemail/program/lib
parent990b56b22650010732731da5cf4b997b1826a345 (diff)
- Fix MDNSent flag checking, use arbitrary keywords (asterisk) flag (#1485706)
git-svn-id: https://svn.roundcube.net/trunk@2263 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib')
-rw-r--r--roundcubemail/program/lib/imap.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc
index cca499b09..7fd4aee26 100644
--- a/roundcubemail/program/lib/imap.inc
+++ b/roundcubemail/program/lib/imap.inc
@@ -78,6 +78,7 @@
- support multiquota result
- include BODYSTRUCTURE in iil_C_FetchHeaders()
- added iil_C_FetchMIMEHeaders() function
+ - added \* flag support
********************************************************/
@@ -114,7 +115,9 @@ $GLOBALS['IMAP_FLAGS'] = array(
'DRAFT' => '\\Draft',
'FLAGGED' => '\\Flagged',
'FORWARDED' => '$Forwarded',
- 'MDNSENT' => '$MDNSent');
+ 'MDNSENT' => '$MDNSent',
+ '*' => '\\*',
+);
$iil_error;
$iil_errornum;