2005-10-11 [colin] 1.9.15cvs30
authorColin Leroy <colin@colino.net>
Tue, 11 Oct 2005 17:16:03 +0000 (17:16 +0000)
committerColin Leroy <colin@colino.net>
Tue, 11 Oct 2005 17:16:03 +0000 (17:16 +0000)
* src/folderview.c
Apply processing rules before showing folders.
Early folder show (before flags sync) will only
be done when there are no processing rules (nor
pre- or post- ones)
* src/imap.c
Fix stuff related to mail subdir, creation and
deletion of folders
* src/imap_gtk.c
Don't allow creation of folders in NoInferior
folders, as it won't work

ChangeLog-gtk2.claws
PATCHSETS
configure.ac
src/folderview.c
src/imap.c
src/imap_gtk.c

index cde2d7620a5d813a95d99148e134989dd637fbe7..20f984257763e726ee1c499828c426b4f1a03809 100644 (file)
@@ -1,3 +1,17 @@
+2005-10-11 [colin]     1.9.15cvs30
+
+       * src/folderview.c
+               Apply processing rules before showing folders.
+               Early folder show (before flags sync) will only
+               be done when there are no processing rules (nor
+               pre- or post- ones)
+       * src/imap.c
+               Fix stuff related to mail subdir, creation and 
+               deletion of folders 
+       * src/imap_gtk.c
+               Don't allow creation of folders in NoInferior
+               folders, as it won't work
+
 2005-10-10 [colin]     1.9.15cvs29
 
        * src/compose.c
index a519fc39e5c157037359df1bb506b19ea193bf24..5b8a364ff730cc79a60dc176a7ae5acccbd37e21 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.8.2.12 -r 1.8.2.13 src/export.c;  cvs diff -u -r 1.13.2.11 -r 1.13.2.12 src/import.c;  ) > 1.9.15cvs27.patchset
 ( cvs diff -u -r 1.115.2.57 -r 1.115.2.58 src/main.c;  cvs diff -u -r 1.274.2.71 -r 1.274.2.72 src/mainwindow.c;  cvs diff -u -r 1.16.2.27 -r 1.16.2.28 src/msgcache.c;  cvs diff -u -r 1.204.2.60 -r 1.204.2.61 src/prefs_common.c;  cvs diff -u -r 1.43.2.25 -r 1.43.2.26 src/prefs_matcher.c;  cvs diff -u -r 1.1.4.22 -r 1.1.4.23 src/etpan/imap-thread.c;  cvs diff -u -r 1.2.2.8 -r 1.2.2.9 src/gtk/colorlabel.c;  ) > 1.9.15cvs28.patchset
 ( cvs diff -u -r 1.382.2.181 -r 1.382.2.182 src/compose.c;  ) > 1.9.15cvs29.patchset
+( cvs diff -u -r 1.207.2.70 -r 1.207.2.71 src/folderview.c;  cvs diff -u -r 1.179.2.76 -r 1.179.2.77 src/imap.c;  cvs diff -u -r 1.1.2.22 -r 1.1.2.23 src/imap_gtk.c;  ) > 1.9.15cvs30.patchset
index c3cf576e759203956a7384e63daa3c2fa65f5e1d..12ccd14ca84deb31ec3d544cb322145bb1a97cdc 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=15
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=29
+EXTRA_VERSION=30
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 47a4d140d69b2b87391b0b598728fa068b2d2668..5e6fc35bc38a266027f57b09c437617a91c3a564 100644 (file)
@@ -64,6 +64,7 @@
 #include "folderutils.h"
 #include "partial_download.h"
 #include "prefs_folder_column.h"
+#include "filtering.h"
 
 #define COL_FOLDER_WIDTH       150
 #define COL_NUM_WIDTH          32
@@ -1805,7 +1806,22 @@ static void summary_thaw_for_proc(gpointer data)
        gtk_clist_thaw(GTK_CLIST(folderview->summaryview->ctree));
 }
 
-gboolean folderview_process_open(gpointer data)
+void folderview_process_open(FolderView *folderview, FolderItem *item)
+{
+       if (!item)
+               return;
+
+       folder_item_update_freeze();
+       folder_item_process_open(item, 
+               summary_freeze_for_proc,
+               summary_thaw_for_proc,
+               folderview);
+       folder_item_update_thaw();
+       
+       return; 
+}
+
+gboolean folderview_process_open_cb(gpointer data)
 {
        FolderView *folderview = (FolderView *)data;
        FolderItem *item = NULL;
@@ -1821,12 +1837,7 @@ gboolean folderview_process_open(gpointer data)
        if (!item)
                return FALSE;
 
-       folder_item_update_freeze();
-       folder_item_process_open(item, 
-               summary_freeze_for_proc,
-               summary_thaw_for_proc,
-               folderview);
-       folder_item_update_thaw();
+       folderview_process_open(folderview, item);
        
        return FALSE;   
 }
@@ -1918,6 +1929,9 @@ static void folderview_selected(GtkCTree *ctree, GtkCTreeNode *row,
                return;
         }
        
+       if (pre_global_processing || item->prefs->processing 
+           || post_global_processing)
+               folderview_process_open(folderview, item);
 
        main_window_cursor_normal(folderview->mainwin);
 
@@ -1937,7 +1951,9 @@ static void folderview_selected(GtkCTree *ctree, GtkCTreeNode *row,
                        gtk_ctree_node_moveto(ctree, row, -1, 0.5, 0);
        }
 
-       g_timeout_add(0, folderview_process_open, folderview);
+       if (!pre_global_processing && !item->prefs->processing 
+           && !post_global_processing)
+               g_timeout_add(0, folderview_process_open_cb, folderview);
 
        STATUSBAR_POP(folderview->mainwin);
 
index 8b7d7c985c296187f95065b96897b5bd8d7067f0..f4323029742ddd97671e89bbc9c8cff43da670ec 100644 (file)
@@ -381,7 +381,7 @@ static MsgInfo *imap_parse_msg(const gchar *file, FolderItem *item);
 
 /* data types conversion libetpan <-> sylpheed */
 static GSList * imap_list_from_lep(IMAPFolder * folder,
-                                  clist * list, const gchar * real_path);
+                                  clist * list, const gchar * real_path, gboolean all);
 static GSList * imap_get_lep_set_from_numlist(MsgNumberList *numlist);
 static GSList * imap_get_lep_set_from_msglist(MsgInfoList *msglist);
 static GSList * imap_uid_list_from_lep(clist * list);
@@ -693,12 +693,6 @@ static IMAPSession *imap_session_get(Folder *folder)
                return NULL;
        }
 
-#if 0
-       /* Make sure we have parsed the IMAP namespace */
-       imap_parse_namespace(IMAP_SESSION(session),
-                            IMAP_FOLDER(folder));
-#endif
-
        /* I think the point of this code is to avoid sending a
         * keepalive if we've used the session recently and therefore
         * think it's still alive.  Unfortunately, most of the code
@@ -1371,7 +1365,6 @@ static gint imap_scan_tree(Folder *folder)
                        }
                        return -1;
                }
-               
                mailimap_list_result_free(lep_list);
                
                g_free(real_path);
@@ -1439,7 +1432,7 @@ static gint imap_scan_tree_recursive(IMAPSession *session, FolderItem *item)
        }
        else {
                item_list = imap_list_from_lep(imapfolder,
-                                              lep_list, real_path);
+                                              lep_list, real_path, FALSE);
                mailimap_list_result_free(lep_list);
        }
        
@@ -1479,6 +1472,7 @@ static gint imap_scan_tree_recursive(IMAPSession *session, FolderItem *item)
        for (cur = item_list; cur != NULL; cur = cur->next) {
                FolderItem *cur_item = FOLDER_ITEM(cur->data);
                new_item = NULL;
+
                for (node = item->node->children; node != NULL;
                     node = node->next) {
                        if (!strcmp2(FOLDER_ITEM(node->data)->path,
@@ -1649,7 +1643,8 @@ static FolderItem *imap_create_folder(Folder *folder, FolderItem *parent,
        gchar *new_name;
        const gchar *p;
        gint ok;
-
+       gboolean no_select = FALSE, no_sub = FALSE;
+       
        g_return_val_if_fail(folder != NULL, NULL);
        g_return_val_if_fail(folder->account != NULL, NULL);
        g_return_val_if_fail(parent != NULL, NULL);
@@ -1660,9 +1655,9 @@ static FolderItem *imap_create_folder(Folder *folder, FolderItem *parent,
                return NULL;
        }
 
-       if (!folder_item_parent(parent) && strcmp(name, "INBOX") == 0)
+       if (!folder_item_parent(parent) && strcmp(name, "INBOX") == 0) {
                dirpath = g_strdup(name);
-       else if (parent->path)
+       }else if (parent->path)
                dirpath = g_strconcat(parent->path, "/", name, NULL);
        else if ((p = strchr(name, '/')) != NULL && *(p + 1) != '\0')
                dirpath = g_strdup(name);
@@ -1674,21 +1669,24 @@ static FolderItem *imap_create_folder(Folder *folder, FolderItem *parent,
                dirpath = g_strconcat(imap_dir, "/", name, NULL);
        } else
                dirpath = g_strdup(name);
+               
+       
 
        /* keep trailing directory separator to create a folder that contains
           sub folder */
        imap_path = imap_utf8_to_modified_utf7(dirpath);
+
        strtailchomp(dirpath, '/');
        Xstrdup_a(new_name, name, {
                g_free(dirpath);                
                return NULL;});
 
-       strtailchomp(new_name, '/');
        separator = imap_get_path_separator(IMAP_FOLDER(folder), imap_path);
        imap_path_separator_subst(imap_path, separator);
-       subst_char(new_name, '/', separator);
+       /* remove trailing / for display */
+       strtailchomp(new_name, '/');
 
-       if (strcmp(name, "INBOX") != 0) {
+       if (strcmp(dirpath, "INBOX") != 0) {
                GPtrArray *argbuf;
                gboolean exist = FALSE;
                int r;
@@ -1707,7 +1705,8 @@ static FolderItem *imap_create_folder(Folder *folder, FolderItem *parent,
                
                if (clist_count(lep_list) > 0)
                        exist = TRUE;
-               
+               mailimap_list_result_free(lep_list);
+               lep_list = NULL;
                if (!exist) {
                        ok = imap_cmd_create(session, imap_path);
                        if (ok != IMAP_SUCCESS) {
@@ -1716,10 +1715,41 @@ static FolderItem *imap_create_folder(Folder *folder, FolderItem *parent,
                                g_free(dirpath);
                                return NULL;
                        }
+                       r = imap_threaded_list(folder, "", imap_path, &lep_list);
+                       if (r == MAILIMAP_NO_ERROR) {
+                               GSList *item_list = imap_list_from_lep(IMAP_FOLDER(folder),
+                                              lep_list, dirpath, TRUE);
+                               if (item_list) {
+                                       FolderItem *cur_item = FOLDER_ITEM(item_list->data);
+                                       no_select = cur_item->no_select;
+                                       no_sub = cur_item->no_sub;
+                                       g_slist_free(item_list);
+                               } 
+                               mailimap_list_result_free(lep_list);
+                       }
+
+               }
+       } else {
+               clist *lep_list;
+               int r;
+               /* just get flags */
+               r = imap_threaded_list(folder, "", "INBOX", &lep_list);
+               if (r == MAILIMAP_NO_ERROR) {
+                       GSList *item_list = imap_list_from_lep(IMAP_FOLDER(folder),
+                                      lep_list, dirpath, TRUE);
+                       if (item_list) {
+                               FolderItem *cur_item = FOLDER_ITEM(item_list->data);
+                               no_select = cur_item->no_select;
+                               no_sub = cur_item->no_sub;
+                               g_slist_free(item_list);
+                       } 
+                       mailimap_list_result_free(lep_list);
                }
        }
 
        new_item = folder_item_new(folder, new_name, dirpath);
+       new_item->no_select = no_select;
+       new_item->no_sub = no_sub;
        folder_item_append(parent, new_item);
        g_free(imap_path);
        g_free(dirpath);
@@ -1849,6 +1879,14 @@ static gint imap_remove_folder_real(Folder *folder, FolderItem *item)
        }
 
        ok = imap_cmd_delete(session, path);
+       if (ok != IMAP_SUCCESS) {
+               gchar *tmp = g_strdup_printf("%s%c", path, 
+                               imap_get_path_separator(IMAP_FOLDER(folder), path));
+               g_free(path);
+               path = tmp;
+               ok = imap_cmd_delete(session, path);
+       }
+
        if (ok != IMAP_SUCCESS) {
                log_warning(_("can't delete mailbox\n"));
                g_free(path);
@@ -3503,10 +3541,8 @@ static /*gint*/ void *imap_get_flags_thread(void *data)
                          (!strcmp(session->mbox, item->path));
 
        if (!selected_folder) {
-               ok = imap_status(session, IMAP_FOLDER(folder), item->path, IMAP_FOLDER_ITEM(item),
-                        &exists_cnt, NULL, NULL, &unseen_cnt, TRUE);
                ok = imap_select(session, IMAP_FOLDER(folder), item->path,
-                       NULL, NULL, NULL, NULL, TRUE);
+                       &exists_cnt, NULL, &unseen_cnt, NULL, TRUE);
                if (ok != IMAP_SUCCESS) {
                        stuff->done = TRUE;
                        return GINT_TO_POINTER(-1);
@@ -3795,7 +3831,7 @@ static int imap_flags_to_flags(struct mailimap_mbx_list_flags * imap_flags)
 }
 
 static GSList * imap_list_from_lep(IMAPFolder * folder,
-                                  clist * list, const gchar * real_path)
+                                  clist * list, const gchar * real_path, gboolean all)
 {
        clistiter * iter;
        GSList * item_list;
@@ -3815,7 +3851,10 @@ static GSList * imap_list_from_lep(IMAPFolder * folder,
                FolderItem *new_item;
                
                mb = clist_content(iter);
-               
+
+               if (mb == NULL)
+                       continue;
+
                flags = 0;
                if (mb->mb_flag != NULL)
                        flags = imap_flags_to_flags(mb->mb_flag);
@@ -3834,13 +3873,13 @@ static GSList * imap_list_from_lep(IMAPFolder * folder,
                        continue;
                }
                
-               if (strcmp(dup_name, real_path) == 0) {
+               if (!all && strcmp(dup_name, real_path) == 0) {
                        g_free(base);
                        free(dup_name);
                        continue;
                }
 
-               if (dup_name[strlen(dup_name)-1] == '/') {
+               if (!all && dup_name[strlen(dup_name)-1] == '/') {
                        g_free(base);
                        free(dup_name);
                        continue;
index 7ead78c0e1ee282479ea6886d9b9fc8f33821017..1693191c187de94ef8d4450f78d223a009f446dc 100644 (file)
@@ -105,7 +105,7 @@ static void set_sensitivity(GtkItemFactory *factory, FolderItem *item)
 #define SET_SENS(name, sens) \
        menu_set_sensitive(factory, name, sens)
 
-       SET_SENS("/Create new folder...",   TRUE);
+       SET_SENS("/Create new folder...",   item->no_sub == FALSE);
        SET_SENS("/Rename folder...",       item->stype == F_NORMAL && folder_item_parent(item) != NULL);
        SET_SENS("/Move folder...",         folder_is_normal && folder_item_parent(item) != NULL);
        SET_SENS("/Delete folder",          item->stype == F_NORMAL && folder_item_parent(item) != NULL);
@@ -139,8 +139,8 @@ static void new_folder_cb(FolderView *folderview, guint action,
        new_folder = input_dialog
                (_("New folder"),
                 _("Input the name of new folder:\n"
-                  "(if you want to create a folder to store subfolders,\n"
-                  " append '/' at the end of the name)"),
+                  "(if you want to create a folder to store subfolders\n"
+                  "and no mails, append '/' at the end of the name)"),
                 _("NewFolder"));
        if (!new_folder) return;
        AUTORELEASE_STR(new_folder, {g_free(new_folder); return;});