diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-06-23 05:55:14 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-23 05:55:14 +0800 |
commit | afa7176eab5a2c495a8f10de4c430f443cdcfb99 (patch) | |
tree | 59be2ee4a647cc55f83ee2ac46cb50ede25b5b2a /mail/component-factory.c | |
parent | a7f40b2f5ff709b9c0d3f5f487cdba6d6d3aa7b6 (diff) | |
download | gsoc2013-evolution-afa7176eab5a2c495a8f10de4c430f443cdcfb99.tar.gz gsoc2013-evolution-afa7176eab5a2c495a8f10de4c430f443cdcfb99.tar.zst gsoc2013-evolution-afa7176eab5a2c495a8f10de4c430f443cdcfb99.zip |
Updated to prepend url-> path if it exists for that imap store.
2000-06-22 Jeffrey Stedfast <fejj@helixcode.com>
* folder-browser.c (folder_browser_load_folder): Updated to
prepend url-> path if it exists for that imap store.
* component-factory.c (create_imap_storage): Modified to not
prepend a hard-coded namespace.
svn path=/trunk/; revision=3701
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index bea11d4029..5337a5e6f9 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -324,7 +324,7 @@ create_imap_storage (EvolutionShellComponent *shell_component) char *path, *buf; path = g_strdup_printf ("/%s", (char *)lsub->pdata[i]); - buf = g_strdup_printf ("%s/mail%s", source, path); + buf = g_strdup_printf ("%s/%s", source, path); g_print ("Adding %s\n", path); evolution_storage_new_folder (storage, path, "mail", buf, "description"); } |