diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-02-23 10:40:09 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-02-23 10:40:09 +0800 |
commit | d18b6e79f1305f0e20168f452665ce2f80b14e31 (patch) | |
tree | 6414ae545985655c2c014860209824e1f35d635d /mail | |
parent | 45381e728a644e92901e8ccfce062d1e88c2b4e0 (diff) | |
download | gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.tar gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.tar.gz gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.tar.bz2 gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.tar.lz gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.tar.xz gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.tar.zst gsoc2013-evolution-d18b6e79f1305f0e20168f452665ce2f80b14e31.zip |
Come up with a unique store uri for each vtrash (using %p and the
2001-02-22 Jeffrey Stedfast <fejj@ximian.com>
* mail-vtrash.c (create_trash_vfolder): Come up with a unique
store uri for each vtrash (using %p and the CamelStore we're gonna
place it on).
(get_trash_get): Pass in the store so we can use it for %p.
svn path=/trunk/; revision=8363
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-vtrash.c | 19 |
2 files changed, 15 insertions, 11 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 2c5040faaa..f455682f36 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-02-22 Jeffrey Stedfast <fejj@ximian.com> + + * mail-vtrash.c (create_trash_vfolder): Come up with a unique + store uri for each vtrash (using %p and the CamelStore we're gonna + place it on). + (get_trash_get): Pass in the store so we can use it for %p. + 2001-02-23 Not Zed <NotZed@Ximian.com> * mail-vfolder.c (vfolder_gui_add_from_mlist): Rule to add mlist diff --git a/mail/mail-vtrash.c b/mail/mail-vtrash.c index b83a7d7c32..e2777dde63 100644 --- a/mail/mail-vtrash.c +++ b/mail/mail-vtrash.c @@ -138,7 +138,7 @@ get_trash_desc (struct _mail_msg *mm, int done) /* maps the shell's uri to the real vfolder uri and open the folder */ static CamelFolder * -create_trash_vfolder (const char *name, GPtrArray *urls, CamelException *ex) +create_trash_vfolder (CamelStore *store, const char *name, GPtrArray *urls, CamelException *ex) { void camel_vee_folder_add_folder (CamelFolder *, CamelFolder *); @@ -148,7 +148,7 @@ create_trash_vfolder (const char *name, GPtrArray *urls, CamelException *ex) d(fprintf (stderr, "Creating Trash vfolder\n")); - storeuri = g_strdup_printf ("vfolder:%s/vfolder/%s", evolution_dir, name); + storeuri = g_strdup_printf ("vfolder:%s/vfolder/%p/%s", evolution_dir, store, name); foldername = g_strdup ("mbox?(match-all (system-flag \"Deleted\"))"); /* we dont have indexing on vfolders */ @@ -170,9 +170,7 @@ create_trash_vfolder (const char *name, GPtrArray *urls, CamelException *ex) d(fprintf (stderr, "source folder = %p\n", sourcefolder)); if (sourcefolder) { - mail_tool_camel_lock_up (); camel_vee_folder_add_folder (folder, sourcefolder); - mail_tool_camel_lock_down (); } else { /* we'll just silently ignore now-missing sources */ camel_exception_clear (ex); @@ -206,7 +204,6 @@ static void get_trash_get (struct _mail_msg *mm) { struct _get_trash_msg *m = (struct _get_trash_msg *)mm; - CamelStore *store; GPtrArray *urls; camel_operation_register(mm->cancel); @@ -215,9 +212,9 @@ get_trash_get (struct _mail_msg *mm) urls = g_ptr_array_new (); /* we don't want to connect */ - m->store = store = (CamelStore *) camel_session_get_service (session, m->store_uri, - CAMEL_PROVIDER_STORE, &mm->ex); - if (store == NULL) { + m->store = (CamelStore *) camel_session_get_service (session, m->store_uri, + CAMEL_PROVIDER_STORE, &mm->ex); + if (m->store == NULL) { g_warning ("Couldn't get service %s: %s\n", m->store_uri, camel_exception_get_description (&mm->ex)); camel_exception_clear (&mm->ex); @@ -235,11 +232,11 @@ get_trash_get (struct _mail_msg *mm) /* Create and add this new vTrash folder */ CamelFolderInfo *info; - info = camel_store_get_folder_info (store, NULL, TRUE, TRUE, TRUE, &mm->ex); + info = camel_store_get_folder_info (m->store, NULL, TRUE, TRUE, TRUE, &mm->ex); populate_folder_urls (info, urls); - camel_store_free_folder_info (store, info); + camel_store_free_folder_info (m->store, info); - m->folder = create_trash_vfolder (_("vTrash"), urls, &mm->ex); + m->folder = create_trash_vfolder (m->store, _("vTrash"), urls, &mm->ex); } } |