diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-19 10:15:09 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-19 10:15:09 +0800 |
commit | 670c10ba49c831e83852cf9b600df861116bfca2 (patch) | |
tree | b45087c0bec1317d8328d657f7502a8213424058 /mail | |
parent | 8a1a98e13823ac4543d9c88af7005ce6f47a3d3a (diff) | |
download | gsoc2013-evolution-670c10ba49c831e83852cf9b600df861116bfca2.tar.gz gsoc2013-evolution-670c10ba49c831e83852cf9b600df861116bfca2.tar.zst gsoc2013-evolution-670c10ba49c831e83852cf9b600df861116bfca2.zip |
fixed up the empty trash on exit thing, to update for all stores, not
2004-05-19 Not Zed <NotZed@Ximian.com>
* mail-component.c (mc_quit_sync): fixed up the empty trash on
exit thing, to update for all stores, not update the timestamp on
the first store synced.
svn path=/trunk/; revision=25966
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-component.c | 28 |
2 files changed, 21 insertions, 13 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b2e27d5ba2..059a1aa041 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2004-05-19 Not Zed <NotZed@Ximian.com> + + * mail-component.c (mc_quit_sync): fixed up the empty trash on + exit thing, to update for all stores, not update the timestamp on + the first store synced. + 2004-05-18 Cantona Su <paradisetux@hotmail.com> * em-format-html.c: Added header "X-Newsreader" for handle Outlook diff --git a/mail/mail-component.c b/mail/mail-component.c index 0f8438977e..ad186f961e 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -106,6 +106,7 @@ struct _MailComponentPrivate { /* states/data used during shutdown */ enum { MC_QUIT_START, MC_QUIT_SYNC } quit_state; int quit_count; + int quit_expunge; /* expunge on quit this time around? */ char *base_directory; @@ -603,19 +604,8 @@ mc_quit_sync_done(CamelStore *store, void *data) static void mc_quit_sync(CamelStore *store, struct _store_info *si, MailComponent *mc) { - GConfClient *gconf = mail_config_get_gconf_client(); - gboolean expunge; - int now = time(NULL)/60/60/24, days; - - expunge = gconf_client_get_bool(gconf, "/apps/evolution/mail/trash/empty_on_exit", NULL) - && ((days = gconf_client_get_int(gconf, "/apps/evolution/mail/trash/empty_on_exit_days", NULL)) == 0 - || (days + gconf_client_get_int(gconf, "/apps/evolution/mail/trash/empty_date", NULL)) <= now); - mc->priv->quit_count++; - mail_sync_store(store, expunge, mc_quit_sync_done, mc); - - if (expunge) - gconf_client_set_int(gconf, "/apps/evolution/mail/trash/empty_date", now, NULL); + mail_sync_store(store, mc->priv->quit_expunge, mc_quit_sync_done, mc); } static CORBA_boolean @@ -624,9 +614,21 @@ impl_quit(PortableServer_Servant servant, CORBA_Environment *ev) MailComponent *mc = MAIL_COMPONENT(bonobo_object_from_servant(servant)); switch (mc->priv->quit_state) { - case MC_QUIT_START: + case MC_QUIT_START: { + int now = time(NULL)/60/60/24, days; + GConfClient *gconf = mail_config_get_gconf_client(); + + mc->priv->quit_expunge = gconf_client_get_bool(gconf, "/apps/evolution/mail/trash/empty_on_exit", NULL) + && ((days = gconf_client_get_int(gconf, "/apps/evolution/mail/trash/empty_on_exit_days", NULL)) == 0 + || (days + gconf_client_get_int(gconf, "/apps/evolution/mail/trash/empty_date", NULL)) <= now); + g_hash_table_foreach(mc->priv->store_hash, (GHFunc)mc_quit_sync, mc); + + if (mc->priv->quit_expunge) + gconf_client_set_int(gconf, "/apps/evolution/mail/trash/empty_date", now, NULL); + mc->priv->quit_state = MC_QUIT_SYNC; + } /* Falls through */ case MC_QUIT_SYNC: return mc->priv->quit_count == 0; |