]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-storage: Add support for the "\Important" special-use mailbox attribute.
authorStephan Bosch <stephan.bosch@dovecot.fi>
Sat, 8 Sep 2018 19:26:17 +0000 (21:26 +0200)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Wed, 4 Dec 2019 13:06:09 +0000 (13:06 +0000)
src/lib-storage/mail-storage-settings.c

index b314b529cf4c0c8939cac84f6097a7df11147d73..fe4c5027b90aed12734f435aa93d08c620c8cfbc 100644 (file)
@@ -632,6 +632,8 @@ static bool mailbox_special_use_exists(const char *name)
                return TRUE;
        if (strcasecmp(name, "Flagged") == 0)
                return TRUE;
+       if (strcasecmp(name, "Important") == 0)
+               return TRUE;
        if (strcasecmp(name, "Junk") == 0)
                return TRUE;
        if (strcasecmp(name, "Sent") == 0)