From 88ff726c4104fae0dbdf5eae00e35ae30538e7d5 Mon Sep 17 00:00:00 2001
From: Stephan Bosch <stephan@rename-it.nl>
Date: Tue, 11 Aug 2009 18:13:18 +0200
Subject: [PATCH] Mailbox extension: ported mailboxexists test to Dovecot v2.0.

---
 src/lib-sieve/plugins/mailbox/cmd-mailboxexists.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/lib-sieve/plugins/mailbox/cmd-mailboxexists.c b/src/lib-sieve/plugins/mailbox/cmd-mailboxexists.c
index 67f0a024a..59fcee441 100644
--- a/src/lib-sieve/plugins/mailbox/cmd-mailboxexists.c
+++ b/src/lib-sieve/plugins/mailbox/cmd-mailboxexists.c
@@ -135,7 +135,6 @@ static int tst_mailboxexists_operation_execute
 			(mailbox_names, &mailbox_item)) 
 			&& mailbox_item != NULL ) {
 			struct mail_namespace *ns;
-			struct mail_storage *storage;
 			const char *mailbox = str_c(mailbox_item);
 			struct mailbox *box;
 
@@ -147,9 +146,8 @@ static int tst_mailboxexists_operation_execute
 			}
 
 			/* Open the box */
-			storage = ns->storage;
-			box = mailbox_open(&storage, mailbox, NULL, MAILBOX_OPEN_FAST);
-			if ( box == NULL ) {
+			box = mailbox_alloc(ns->list, mailbox, NULL, 0);
+			if ( mailbox_open(box) < 0 ) {
 				all_exist = FALSE;
 				break;
 			}
-- 
GitLab