summaryrefslogtreecommitdiff
path: root/program/include/rcube_imap.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-07-15 16:48:20 +0000
committerthomascube <thomas@roundcube.net>2008-07-15 16:48:20 +0000
commit5b3dd412d2e28f80fb2d12dbdcab992cc6f219a5 (patch)
tree14d76abe90c8906039cc1fbe6d48408d97f1014b /program/include/rcube_imap.php
parente3e597e3b6c9ae10e5c7c1e5592726c71793cfe7 (diff)
Check PERMANENTFLAGS before saving MDNSent flag (#1484963, #1485163)
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r--program/include/rcube_imap.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php
index 395a1b3af..3daea0c06 100644
--- a/program/include/rcube_imap.php
+++ b/program/include/rcube_imap.php
@@ -346,6 +346,21 @@ class rcube_imap
/**
+ * Checks the PERMANENTFLAGS capability of the current mailbox
+ * and returns true if the given flag is supported by the IMAP server
+ *
+ * @param string Permanentflag name
+ * @return mixed True if this flag is supported
+ * @access public
+ */
+ function check_permflag($flag)
+ {
+ $flagsmap = $GLOBALS['IMAP_FLAGS'];
+ return (($imap_flag = $flagsmap[strtoupper($flag)]) && in_array_nocase($imap_flag, $this->conn->permanentflags));
+ }
+
+
+ /**
* Returns the delimiter that is used by the IMAP server for folder separation
*
* @return string Delimiter string