nmlib.notmuch_tags_move_to_next(self._tags)
return tag
+ def __str__(self):
+ """str() of Tags() is a space separated list of tags
+
+ This iterates over the list of Tags and will therefore 'exhaust' Tags()
+ """
+ return " ".join(self)
+
def __del__(self):
"""Close and free the notmuch tags"""
if self._tags is not None:
querystr = quote_query_line(sys.argv[2:])
logging.debug("search-term "+querystr)
db = Database()
- m = Query(db,querystr).search_messages()
+ q = Query(db,querystr)
+ #TODO: notmuch_query_set_sort (query, NOTMUCH_SORT_MESSAGE_ID);
+ m = q.search_messages()
print("\n".join([t for t in m.collect_tags()]))
+ elif sys.argv[1] == 'dump':
+ db = Database()
+ msgs = Query(db,'').search_messages()
+ for msg in msgs:
+ print("%s (%s)" % (msg.get_message_id(), msg.get_tags()))
+
else:
# unknown command
print "Error: Unknown command '%s' (see \"notmuch help\")" % sys.argv[1]
Show all messages matching the search terms.
-count <search-terms> [...]
-
- Count messages matching the search terms.
-
reply [options...] <search-terms> [...]
Construct a reply template for a set of messages.