diff options
author | Not Zed <NotZed@Ximian.com> | 2004-01-20 07:21:36 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-01-20 07:21:36 +0800 |
commit | 1394828ccaf3f5d0b1cc5222de415c16d69614c3 (patch) | |
tree | c95d2b31c9e6f2aef9a6f3d14d3f51a54200128f | |
parent | 6d9c4adb0da40444a409ae4da9cf6418a9e3c828 (diff) | |
download | gsoc2013-evolution-1394828ccaf3f5d0b1cc5222de415c16d69614c3.tar.gz gsoc2013-evolution-1394828ccaf3f5d0b1cc5222de415c16d69614c3.tar.zst gsoc2013-evolution-1394828ccaf3f5d0b1cc5222de415c16d69614c3.zip |
** See bug #52990.
2004-01-20 Not Zed <NotZed@Ximian.com>
** See bug #52990.
* mail-component.c (mail_component_init): re-enable auto-send-recv
setup.
svn path=/trunk/; revision=24318
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-component.c | 2 | ||||
-rw-r--r-- | mail/mail-send-recv.c | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index e0af12df62..a64d41cde4 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2004-01-20 Not Zed <NotZed@Ximian.com> + ** See bug #52990. + + * mail-component.c (mail_component_init): re-enable auto-send-recv + setup. + ** See bug #52989. * message-list.c (hide_load_state): clear the hidden table if diff --git a/mail/mail-component.c b/mail/mail-component.c index a437de6318..749fcbc3eb 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -543,7 +543,7 @@ mail_component_init (MailComponent *component) accounts = mail_config_get_accounts (); load_accounts(component, accounts); - /* mail_autoreceive_setup (); EPFIXME keep it off for testing */ + mail_autoreceive_setup(); setup_search_context (component); diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index d2c79c662d..49b2c3c574 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -771,7 +771,7 @@ mail_autoreceive_setup (void) EAccountList *accounts; GHashTable *set_hash; EIterator *iter; - + accounts = mail_config_get_accounts (); if (auto_active == NULL) @@ -791,7 +791,7 @@ mail_autoreceive_setup (void) if (account->enabled && source->url && source->auto_check) { struct _auto_data *info; - d(printf("setting up auto-receive mail for : %s\n", source->url)); + d(printf("setting up auto-receive mail for : %s %dm\n", source->url, source->auto_check_time)); g_hash_table_remove(set_hash, source->url); info = g_hash_table_lookup(auto_active, source->url); |