aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-session.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2009-01-14 20:45:10 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-01-14 20:45:10 +0800
commit7ed2b90bdad0637d72be1815e6634bb352d0ec08 (patch)
treeb8e33f4ea6ef306ec45f377ff4fc5c813177db25 /mail/mail-session.c
parentc7d3c9f95609123035ebaa267f9d2e6ecfa8c2e8 (diff)
downloadgsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.tar
gsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.tar.gz
gsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.tar.bz2
gsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.tar.lz
gsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.tar.xz
gsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.tar.zst
gsoc2013-evolution-7ed2b90bdad0637d72be1815e6634bb352d0ec08.zip
Fix online mode initialization.
svn path=/branches/kill-bonobo/; revision=37070
Diffstat (limited to 'mail/mail-session.c')
-rw-r--r--mail/mail-session.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/mail/mail-session.c b/mail/mail-session.c
index 3e7befb08d..990c42ae5d 100644
--- a/mail/mail-session.c
+++ b/mail/mail-session.c
@@ -46,6 +46,7 @@
#include "e-util/e-error.h"
#include "e-util/e-util-private.h"
#include "e-account-combo-box.h"
+#include "shell/e-shell.h"
#include "em-filter-context.h"
#include "em-filter-rule.h"
@@ -694,12 +695,17 @@ mail_session_check_junk_notify (GConfClient *gconf, guint id, GConfEntry *entry,
void
mail_session_init (EShellModule *shell_module)
{
- const gchar *data_dir;
+ EShell *shell;
GConfClient *gconf;
+ gboolean online_mode;
+ const gchar *data_dir;
mail_shell_module = shell_module;
data_dir = e_shell_module_get_data_dir (shell_module);
+ shell = e_shell_module_get_shell (shell_module);
+ online_mode = e_shell_get_online_mode (shell);
+
if (camel_init (data_dir, TRUE) != 0)
exit (0);
@@ -719,8 +725,7 @@ mail_session_init (EShellModule *shell_module)
session, NULL, NULL);
session->junk_plugin = NULL;
- /* The shell will tell us to go online. */
- camel_session_set_online ((CamelSession *) session, FALSE);
+ camel_session_set_online ((CamelSession *) session, online_mode);
mail_config_reload_junk_headers ();
}