diff options
author | Dan Winship <danw@src.gnome.org> | 2000-11-07 06:03:24 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-11-07 06:03:24 +0800 |
commit | dbc4e091133eee525a8b7c0fd449dcca6a5c719f (patch) | |
tree | b14c23e70bfc1ef0d49eec19d4600632cca00624 /mail/mail-local-storage.h | |
parent | 9c651d480e354610f80f18b9af73bb3401745f59 (diff) | |
download | gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.tar gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.tar.gz gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.tar.bz2 gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.tar.lz gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.tar.xz gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.tar.zst gsoc2013-evolution-dbc4e091133eee525a8b7c0fd449dcca6a5c719f.zip |
First draft of folder tree unread message indication for /local
mail folders.
* mail-local.c: Add a new CamelStore subclass, MailLocalStore,
which attaches to an Evolution_LocalStorage on one side and
CamelSession on the other, and keeps track of local folders. Some
of this code was previously in mail-local-storage.c, which no
longer exists.
(local_reconfigure_folder, etc): Various mail_op-related cleanups,
and wrap d() around a bunch of printfs.
* mail-tools.c (mail_tool_get_local_inbox_url,
mail_tool_get_local_movemail_url): Removed
(mail_tool_get_local_inbox): Simplified.
(mail_tool_do_movemail): Remove unused dest_url variable.
(mail_tool_uri_to_folder): Simplify. Now down to two cases
(vfolder, and everything else).
* component-factory.c (owner_set_cb): Pass evolution_dir to
mail_local_storage_startup.
* Makefile.am (evolution_mail_SOURCES): Remove
mail-local-storage.[ch]
svn path=/trunk/; revision=6456
Diffstat (limited to 'mail/mail-local-storage.h')
-rw-r--r-- | mail/mail-local-storage.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/mail/mail-local-storage.h b/mail/mail-local-storage.h deleted file mode 100644 index 251897681c..0000000000 --- a/mail/mail-local-storage.h +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* mail-local-storage.h - * - * Copyright (C) 2000 Helix Code, Inc. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ettore Perazzoli - */ - -#ifndef _MAIL_LOCAL_STORAGE_H_ -#define _MAIL_LOCAL_STORAGE_H_ - -#include <glib.h> - -#include "evolution-shell-client.h" - -gboolean mail_local_storage_startup (EvolutionShellClient *shell_client); -void mail_local_storage_shutdown (void); - -#endif |