diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-07-04 04:40:12 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-07-04 04:40:12 +0800 |
commit | 593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c (patch) | |
tree | 97d4b962f839033635698704f704aff257781c9e /mail/mail-vfolder.c | |
parent | 164caed66b245d4244cf8c11604529d33dd1f91f (diff) | |
download | gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.tar gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.tar.gz gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.tar.bz2 gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.tar.lz gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.tar.xz gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.tar.zst gsoc2013-evolution-593eca5fcc9bd7a3f5b0f2c9a87b7d53125a2b7c.zip |
Pass TRUE as the auto_connect argument to mail_load_storage_from_uri().
2002-07-03 Jeffrey Stedfast <fejj@ximian.com>
* mail-vfolder.c (vfolder_load_storage): Pass TRUE as the
auto_connect argument to mail_load_storage_from_uri().
* mail-account-gui.c (add_new_store): Pass FALSE as the
auto_connect value to mail_load_storage_from_uri().
* mail-format.c (handle_multipart_encrypted): Pass the correct
pointer into camel_multipart_encrypted_decrypt().
* component-factory.c (mail_add_storage): Now takes an
auto-connect argument which it passes along to add_storage().
(mail_load_storage_from_uri): Same.
(add_storage): Only call mail_note_store() if we plan on
auto-connecting.
svn path=/trunk/; revision=17363
Diffstat (limited to 'mail/mail-vfolder.c')
-rw-r--r-- | mail/mail-vfolder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index 677809e352..79e7721b61 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -724,7 +724,7 @@ vfolder_load_storage(GNOME_Evolution_Shell shell) (CamelObjectEventHookFunc)store_folder_renamed, NULL); d(printf("got store '%s' = %p\n", storeuri, vfolder_store)); - mail_load_storage_by_uri(shell, storeuri, U_("VFolders")); + mail_load_storage_by_uri(shell, storeuri, U_("VFolders"), TRUE); /* load our rules */ user = g_strdup_printf ("%s/vfolders.xml", evolution_dir); |