diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-24 12:40:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-24 12:40:49 +0800 |
commit | 174c942e0945a2017f0c479883dce2950e42e786 (patch) | |
tree | 0011078b4121d5c6c200825b0ab1bb1c4cefd519 /mail/e-mail-shell-migrate.c | |
parent | ce7537b495a3788d9bda4b6a783a5c3d95309926 (diff) | |
download | gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.gz gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.bz2 gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.lz gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.xz gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.zst gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.zip |
Split store and local folder management out from shell backend.
Diffstat (limited to 'mail/e-mail-shell-migrate.c')
-rw-r--r-- | mail/e-mail-shell-migrate.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/e-mail-shell-migrate.c b/mail/e-mail-shell-migrate.c index 5ebc833902..2158580bf9 100644 --- a/mail/e-mail-shell-migrate.c +++ b/mail/e-mail-shell-migrate.c @@ -66,6 +66,7 @@ #include "e-mail-shell-backend.h" #include "shell/e-shell-migrate.h" +#include "e-mail-store.h" #include "mail-config.h" #include "em-utils.h" @@ -2958,9 +2959,7 @@ migrate_to_db (EShellBackend *shell_backend) CamelException ex; camel_exception_init (&ex); - e_mail_shell_backend_load_store_by_uri ( - E_MAIL_SHELL_BACKEND (shell_backend), - service->url, name); + e_mail_store_add_by_uri (service->url, name); store = (CamelStore *) camel_session_get_service (CAMEL_SESSION (session), service->url, CAMEL_PROVIDER_STORE, &ex); info = camel_store_get_folder_info (store, NULL, CAMEL_STORE_FOLDER_INFO_RECURSIVE|CAMEL_STORE_FOLDER_INFO_FAST|CAMEL_STORE_FOLDER_INFO_SUBSCRIBED, &ex); |