diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9fc72b3768..5772343b86 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-09-17 <NotZed@Ximian.com> + + * mail-ops.c (mail_get_folderinfo): Get folderinfo 1 at a time + rather than all at once. + 2001-09-17 Jeffrey Stedfast <fejj@ximian.com> * component-factory.c (storage_remove_folder): Unsubscribe from diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 60db1cee4a..3c229fab2b 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1171,7 +1171,7 @@ mail_get_folderinfo (CamelStore *store, void (*done)(CamelStore *store, CamelFol m->data = data; id = m->msg.seq; - e_thread_put(mail_thread_new, (EMsg *)m); + e_thread_put(mail_thread_queued, (EMsg *)m); return id; } |