aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-component.c2
-rw-r--r--mail/mail-send-recv.c4
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);