From 5c771cb25e62494cba263097175d9b718acb8aba Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 28 Jan 2009 05:52:02 -0500 Subject: [PATCH] - Fix MDNSent flag checking, use arbitrary keywords (asterisk) flag (#1485706) --- 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 cca499b..7fd4aee 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 @@ 'DRAFT' => '\\Draft', 'FLAGGED' => '\\Flagged', 'FORWARDED' => '$Forwarded', - 'MDNSENT' => '$MDNSent'); + 'MDNSENT' => '$MDNSent', + '*' => '\\*', +); $iil_error; $iil_errornum; -- Gitblit v1.9.1