]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-storage: Shared namespaces shouldn't have NAMESPACE_FLAG_INBOX set.
authorTimo Sirainen <tss@iki.fi>
Thu, 24 Jun 2010 21:32:05 +0000 (22:32 +0100)
committerTimo Sirainen <tss@iki.fi>
Thu, 24 Jun 2010 21:32:05 +0000 (22:32 +0100)
There is only one namespace with INBOX.

--HG--
branch : HEAD

src/lib-storage/index/shared/shared-storage.c

index afeae7aa888dcc02aa001164c0d28409555cbff1..decc81000e3ef8872a56a68333917367ff064f19 100644 (file)
@@ -257,7 +257,7 @@ int shared_storage_get_namespace(struct mail_namespace **_ns,
        new_ns->owner = owner;
        new_ns->flags = (NAMESPACE_FLAG_SUBSCRIPTIONS & ns->flags) |
                NAMESPACE_FLAG_LIST_PREFIX | NAMESPACE_FLAG_HIDDEN |
-               NAMESPACE_FLAG_AUTOCREATED | NAMESPACE_FLAG_INBOX;
+               NAMESPACE_FLAG_AUTOCREATED;
        new_ns->sep = ns->sep;
        new_ns->mail_set = _storage->set;