From 1a14cbad62e418106909629282e1e2c1e46daef2 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 22 Aug 2005 02:54:51 +0000 Subject: ** See #312668. 2005-08-19 Not Zed ** See #312668. * mail-component.c (setline_done, impl_setLineStatus): change the camel-session online status before (if we're going online) or after (if we're going offline) actually doing offline processing. svn path=/trunk/; revision=30184 --- mail/ChangeLog | 8 ++++++++ mail/mail-component.c | 7 ++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 3860b802c4..9bb0d090dc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2005-08-19 Not Zed + + ** See #312668. + + * mail-component.c (setline_done, impl_setLineStatus): change the + camel-session online status before (if we're going online) or + after (if we're going offline) actually doing offline processing. + 2005-08-19 Not Zed * em-format.c (emf_multipart_encrypted): put the s/mime message diff --git a/mail/mail-component.c b/mail/mail-component.c index 15ddb760e2..ee7e20044a 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -945,6 +945,8 @@ setline_done(CamelStore *store, void *data) CORBA_exception_free(&ev); CORBA_Object_release(sd->listener, &ev); CORBA_exception_free(&ev); + if (!sd->status) + camel_session_set_online(session, sd->status); g_free(sd); } } @@ -969,7 +971,8 @@ impl_setLineStatus(PortableServer_Servant servant, CORBA_boolean status, GNOME_E /* This will dis/enable further auto-mail-check action. */ /* FIXME: If send/receive active, wait for it to finish? */ - camel_session_set_online(session, status); + if (status) + camel_session_set_online(session, status); sd = g_malloc0(sizeof(*sd)); sd->status = status; @@ -987,6 +990,8 @@ impl_setLineStatus(PortableServer_Servant servant, CORBA_boolean status, GNOME_E g_free(sd); + if (!status) + camel_session_set_online(session, status); GNOME_Evolution_Listener_complete(listener, ev); } } -- cgit v1.2.3