diff src/imap/cmd-copy.c @ 296:d66aa1f1fb2d HEAD

Added fast-flag for mailbox opening, which doesn't do any index compressing or cache updating. This flag is set when mailbox is opened by APPEND, COPY or STATUS (ie. not SELECT/EXAMINE).
author Timo Sirainen <tss@iki.fi>
date Mon, 23 Sep 2002 13:42:20 +0300
parents 3b1985cbc908
children 20769b7516a2
line wrap: on
line diff
--- a/src/imap/cmd-copy.c	Mon Sep 23 13:30:21 2002 +0300
+++ b/src/imap/cmd-copy.c	Mon Sep 23 13:42:20 2002 +0300
@@ -20,7 +20,7 @@
 		return TRUE;
 
 	destbox = client->storage->open_mailbox(client->storage,
-						mailbox, FALSE);
+						mailbox, FALSE, TRUE);
 	if (destbox == NULL) {
 		client_send_storage_error(client);
 		return TRUE;