aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/mail-ops.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index ed6cffa3fe..6cee2ba28c 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-10-06 Chris Toshok <toshok@helixcode.com>
+
+ * mail-ops.c (do_scan_subfolders): set the @subscribed_only
+ parameter to TRUE, since the subscribe UI is the only interface
+ that should show unsubscribed groups.
+
2000-10-06 Ettore Perazzoli <ettore@helixcode.com>
* mail-ops.c (do_scan_subfolders): Add missing @subscribed_only
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 98774969f2..db7513e0c3 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -1235,7 +1235,7 @@ do_scan_subfolders (gpointer in_data, gpointer op_data, CamelException *ex)
if (!store)
return;
- tree = camel_store_get_folder_info (store, NULL, TRUE, TRUE, FALSE, ex);
+ tree = camel_store_get_folder_info (store, NULL, TRUE, TRUE, TRUE, ex);
if (tree) {
add_folders (data->new_folders, "", tree);
camel_store_free_folder_info (store, tree);