From 778498a42da755757f33740ea5f03e089864dd41 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 19 Feb 2001 21:00:10 +0000 Subject: Dont do the thaw/freeze set here. (update_folders): " 2001-02-16 Not Zed * mail-send-recv.c (receive_status): Dont do the thaw/freeze set here. (update_folders): " * mail-vfolder.c (vfolder_refresh): Setup the virtual 'unmatched' folder by default. (vfolder_uri_to_folder): HAndle UNMATCHED folder specially, it has no explicit sources. svn path=/trunk/; revision=8277 --- mail/mail-send-recv.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mail/mail-send-recv.c') diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 6eace378d3..299a07289a 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -346,8 +346,8 @@ update_folders(char *uri, struct _folder_info *info, void *data) /* we back off slowly as we progress */ if (now > info->update+10+info->count*5) { printf("upating a folder: %s\n", info->uri); - camel_folder_thaw(info->folder); - camel_folder_freeze(info->folder); + /*camel_folder_thaw(info->folder); + camel_folder_freeze(info->folder);*/ info->update = now; info->count++; } @@ -417,8 +417,8 @@ receive_status (CamelFilterDriver *driver, enum camel_filter_status_t status, in if (info->data->inbox && now > info->data->inbox_update+20) { printf("updating inbox too\n"); /* this doesn't seem to work right :( */ - camel_folder_thaw(info->data->inbox); - camel_folder_freeze(info->data->inbox); + /*camel_folder_thaw(info->data->inbox); + camel_folder_freeze(info->data->inbox);*/ info->data->inbox_update = now; } -- cgit