sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit ad18273c77211f73a36fd3ef097da6ea41b24659
parent e0624e63ff7aee7c02a6eb4346d43021981046bb
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Wed, 19 Sep 2007 16:02:43 +0000

maildir flagged->starred, from Magnus Therning

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@589 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/maildir.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/maildir.rb b/lib/sup/maildir.rb
@@ -100,7 +100,7 @@ class Maildir < Source
     start.upto(@ids.length - 1) do |i|         
       id = @ids[i]
       self.cur_offset = id
-      yield id, @labels + (seen?(id) ? [] : [:unread]) + (trashed?(id) ? [:deleted] : [])
+      yield id, @labels + (seen?(id) ? [] : [:unread]) + (trashed?(id) ? [:deleted] : []) + (flagged?(id) ? [:starred] : [])
     end
   end