From 3e8d890c6095f63650dd2e18a14a74ce023cb877 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 3 Mar 2003 00:41:45 +0200 Subject: [PATCH] Selecting INBOX didn't use index files if full_filesystem_access was yes. --HG-- branch : HEAD --- src/lib-storage/index/mbox/mbox-storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-storage/index/mbox/mbox-storage.c b/src/lib-storage/index/mbox/mbox-storage.c index f219d73737..1ba6f495b5 100644 --- a/src/lib-storage/index/mbox/mbox-storage.c +++ b/src/lib-storage/index/mbox/mbox-storage.c @@ -341,7 +341,7 @@ static struct mailbox *mbox_open(struct mail_storage *storage, const char *name, path = "/INBOX" index_dir = "/mail/.imap/INBOX" */ path = storage->inbox_file; - index_dir = mbox_get_index_dir(storage, "/INBOX"); + index_dir = mbox_get_index_dir(storage, "INBOX"); } else { /* name = "foo/bar" path = "/mail/foo/bar" -- 2.47.3