aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-session.c
diff options
context:
space:
mode:
authorJonathon Jongsma <jonathon@quotidian.org>2009-12-18 05:38:50 +0800
committerJonathon Jongsma <jonathon@quotidian.org>2009-12-21 23:45:27 +0800
commitec626660cfc5e2869a02c621247a7e0b02508151 (patch)
treefd7317c520daeaf78d0d81cbc3ba320f9d582684 /mail/mail-session.c
parentd153638ef6ea99b106fcb9f22c40496f3e75def5 (diff)
downloadgsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.tar
gsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.tar.gz
gsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.tar.bz2
gsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.tar.lz
gsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.tar.xz
gsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.tar.zst
gsoc2013-evolution-ec626660cfc5e2869a02c621247a7e0b02508151.zip
The shell backend is responsibile for setting the MailSession online
Previously the mail session set itself online inside mail_session_init() by checking whether the shell was online. This removes one more dependency from MailSession to EShell by moving that responsibility up one level. https://bugzilla.gnome.org/show_bug.cgi?id=604952
Diffstat (limited to 'mail/mail-session.c')
-rw-r--r--mail/mail-session.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/mail/mail-session.c b/mail/mail-session.c
index dc7e40d79a..c7e86da926 100644
--- a/mail/mail-session.c
+++ b/mail/mail-session.c
@@ -798,12 +798,7 @@ mail_session_check_junk_notify (GConfClient *gconf, guint id, GConfEntry *entry,
void
mail_session_init (EShellBackend *shell_backend)
{
- EShell *shell;
GConfClient *gconf;
- gboolean online;
-
- shell = e_shell_backend_get_shell (shell_backend);
- online = e_shell_get_online (shell);
if (camel_init (e_get_user_data_dir (), TRUE) != 0)
exit (0);
@@ -826,7 +821,6 @@ mail_session_init (EShellBackend *shell_backend)
session, NULL, NULL);
session->junk_plugin = NULL;
- camel_session_set_online ((CamelSession *) session, online);
mail_config_reload_junk_headers ();
}