From 755aea84bbe2b15ed7fe991f6462a93333ff571f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 30 Sep 2010 16:49:16 +0100 Subject: [PATCH] virtual: Allow opening virtual mailboxes that refer to non-existing mailboxes. It could be intentional that not everyone has the same set of mailboxes always. --- src/plugins/virtual/virtual-storage.c | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/plugins/virtual/virtual-storage.c b/src/plugins/virtual/virtual-storage.c index 1b16111d74..f11187a4fb 100644 --- a/src/plugins/virtual/virtual-storage.c +++ b/src/plugins/virtual/virtual-storage.c @@ -142,16 +142,19 @@ static int virtual_backend_box_open_failed(struct virtual_mailbox *mbox, &error); name = t_strdup(get_user_visible_mailbox_name(bbox->box)); mailbox_free(&bbox->box); - if (bbox->wildcard && - (error == MAIL_ERROR_PERM || error == MAIL_ERROR_NOTFOUND)) { - /* this mailbox wasn't explicitly specified. just skip it. */ + if (error == MAIL_ERROR_NOTFOUND) { + /* ignore this. it could be intentional. */ + if (mbox->storage->storage.user->mail_debug) { + i_debug("virtual mailbox %s: " + "Skipping non-existing mailbox %s", + mbox->box.vname, name); + } return 0; } - if (error == MAIL_ERROR_NOTFOUND) { - /* the virtual mailbox exists, we just can't open it. - change the error type. */ - error = MAIL_ERROR_NOTPOSSIBLE; + if (error == MAIL_ERROR_PERM && bbox->wildcard) { + /* this mailbox wasn't explicitly specified. just skip it. */ + return 0; } str = t_strdup_printf( "Virtual mailbox open failed because of mailbox %s: %s", -- 2.47.3