diff options
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/imap.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index cca499b09..7fd4aee26 100644 --- a/program/lib/imap.inc +++ b/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; |