aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-10-07 03:38:53 +0800
committerChris Toshok <toshok@src.gnome.org>2000-10-07 03:38:53 +0800
commit621ccca29e0518d271c6f603feb5b21c8eb78702 (patch)
treeec6600fbf92e2b80e0a8d3f909acc422d7b7ebf8 /mail
parent19436bc6fc81c3c257155f467a7058b64ce8a4cb (diff)
downloadgsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.tar
gsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.tar.gz
gsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.tar.bz2
gsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.tar.lz
gsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.tar.xz
gsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.tar.zst
gsoc2013-evolution-621ccca29e0518d271c6f603feb5b21c8eb78702.zip
set the @subscribed_only parameter to TRUE, since the subscribe UI is the
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. svn path=/trunk/; revision=5768
Diffstat (limited to 'mail')
-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);