From 588e18f2023cf8be70efba89e85cb2dc16ee99a0 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 18 Jun 2001 15:46:11 +0000 Subject: If we have a fragment in the url, use that as the folder name, and not the 2001-06-14 Not Zed * mail-tools.c (mail_tool_uri_to_folder): If we have a fragment in the url, use that as the folder name, and not the path component. 2001-06-13 Not Zed * component-factory.c (mail_load_storages): Added temp hack to let spool providers show up in the list. svn path=/trunk/; revision=10263 --- mail/component-factory.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'mail/component-factory.c') diff --git a/mail/component-factory.c b/mail/component-factory.c index de73ff269a..4a7a4131a7 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -736,9 +736,12 @@ mail_load_storages (GNOME_Evolution_Shell shell, const GSList *sources, gboolean * (/var/spool/mail/user) or a storage (~/mail/, eg). * That issue can't be resolved on the provider level * -- it's a per-URL problem. + * MPZ Added a hack to let spool protocol through temporarily ... */ - if (!(prov->flags & CAMEL_PROVIDER_IS_STORAGE) || - !(prov->flags & CAMEL_PROVIDER_IS_REMOTE)) + if ((!(prov->flags & CAMEL_PROVIDER_IS_STORAGE) || + !(prov->flags & CAMEL_PROVIDER_IS_REMOTE)) + && !((strcmp(prov->protocol, "spool") == 0) + || strcmp(prov->protocol, "maildir") == 0)) continue; store = camel_session_get_service (session, service->url, -- cgit v1.2.3