diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/component-factory.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index ba74cd9110..ab05173d79 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-02-19 Jeffrey Stedfast <fejj@ximian.com> + + * component-factory.c (mail_load_storages): Create vTrash folders + for all remote stores as well. + 2001-02-20 Not Zed <NotZed@Ximian.com> * mail-vtrash.c (create_trash_vfolder): Add the auto-update flag diff --git a/mail/component-factory.c b/mail/component-factory.c index 11adaefcac..b3877e4884 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -443,6 +443,9 @@ mail_load_storages (GNOME_Evolution_Shell shell, const GSList *sources, gboolean g_warning ("Cannot load storage: %s", camel_exception_get_description (&ex)); camel_exception_clear (&ex); + } else { + /* create the vTrash folder */ + vtrash_create (service->url, NULL, NULL); } } |