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/component-factory.c | |
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/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index acd635e5c6..014c4b8e3b 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -38,9 +38,9 @@ #include "mail.h" /* YUCK FIXME */ #include "mail-tools.h" #include "mail-ops.h" +#include "mail-local.h" #include "mail-session.h" #include <gal/widgets/e-gui-utils.h> -#include "mail-local-storage.h" #include "component-factory.h" @@ -141,7 +141,7 @@ owner_set_cb (EvolutionShellComponent *shell_component, sources = mail_config_get_news (); mail_load_storages (corba_shell, sources); - mail_local_storage_startup (shell_client); + mail_local_storage_startup (shell_client, evolution_dir); } static void |