aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-tools.c
diff options
context:
space:
mode:
author0 <NotZed@Ximian.com>2001-09-21 03:34:58 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-09-21 03:34:58 +0800
commit55690284e1557f5c85bc8edae36b3cf3817eff9e (patch)
treeffdddd8c001cfc66fd9a8d75ca535b67b13af538 /mail/mail-tools.c
parent66ec2f9d1ef656f558173d69cc5f917743fb3dfb (diff)
downloadgsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.tar
gsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.tar.gz
gsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.tar.bz2
gsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.tar.lz
gsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.tar.xz
gsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.tar.zst
gsoc2013-evolution-55690284e1557f5c85bc8edae36b3cf3817eff9e.zip
Dont special case file: url's anymore.
2001-09-20 <NotZed@Ximian.com> * mail-tools.c (mail_tool_uri_to_folder): Dont special case file: url's anymore. * mail-local.c: Add real_path to MailLocalFolder. (mail_local_folder_construct): Added path argument, setup full_name == path, and real_path == full_name. (mls_get_folder): First lookup folderinfo to confirm this folder exists, then use that to properly construct the folder paths. (mail_local_folder_reconfigure): Use real_path not full_name to create the store uri. (mlf_set_folder): Use real_path not folder_name to get real uri path. 2001-09-19 <NotZed@Ximian.com> * mail-folder-cache.c (setup_store): Use the wrong spelling of finalised for the event hook. (real_note_folder): Use the wrong spelling of finalised for the event hook. (free_folder_info): Free the full_name parameter. (setup_folder): (real_note_folder): Key the folderinfo table on full_name, not path. svn path=/trunk/; revision=13014
Diffstat (limited to 'mail/mail-tools.c')
-rw-r--r--mail/mail-tools.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/mail/mail-tools.c b/mail/mail-tools.c
index 5e0d3ee9ee..406b5f2c47 100644
--- a/mail/mail-tools.c
+++ b/mail/mail-tools.c
@@ -366,10 +366,7 @@ mail_tool_uri_to_folder (const char *uri, CamelException *ex)
folder = NULL;
}
} else {
- /* we dont want to note file url's, they need to be noted elsewhere (sigh) */
- if (strncmp(uri, "file:", 5) != 0)
- mail_note_folder(folder, NULL);
- /*mail_folder_cache_note_folder (uri, folder);*/
+ mail_note_folder(folder, NULL);
}
camel_url_free (url);