def remove_tag(self, tag):
"""Removes a tag from the given message
+ If the message has no such tag, this is a non-operation and
+ will report success anyway.
+
:param tag: String with a 'tag' to be removed.
- :returns: STATUS.SUCCESS if the tag was successfully removed.
+ :returns: STATUS.SUCCESS if the tag was successfully removed or if
+ the message had no such tag.
Raises an exception otherwise.
:exception: :exc:`NotmuchError`. They have the following meaning:
# Handle command line options
# No option
+ #-------------------------------------
if len(sys.argv) == 1:
print USAGE
-
+ #-------------------------------------
elif sys.argv[1] == 'setup':
""" Interactively setup notmuch for first use. """
print "Not implemented."
-
+ #-------------------------------------
elif sys.argv[1] == 'help':
if len(sys.argv) == 2: print HELPTEXT
else: print "Not implemented"
-
+ #-------------------------------------
elif sys.argv[1] == 'show':
db = Database()
if len(sys.argv) == 2:
m = Query(db,querystr).search_messages()
for msg in m:
print(msg.format_as_text())
-
+ #-------------------------------------
elif sys.argv[1] == 'new':
#TODO: handle --verbose
print "Not implemented."
-
+ #-------------------------------------
elif sys.argv[1] == 'count':
db = Database()
if len(sys.argv) == 2:
querystr = quote_query_line(sys.argv[2:])
logging.debug("count "+querystr)
print(len(Query(db,querystr).search_messages()))
-
+ #-------------------------------------
+ elif sys.argv[1] == 'tag':
+ #build lists of tags to be added and removed
+ add, remove = [], []
+ while not sys.argv[2]=='--' and \
+ (sys.argv[2].startswith('+') or sys.argv[2].startswith('-')):
+ if sys.argv[2].startswith('+'):
+ #append to add list without initial +
+ add.append(sys.argv.pop(2)[1:])
+ else:
+ #append to remove list without initial -
+ remove.append(sys.argv.pop(2)[1:])
+ #skip eventual '--'
+ if sys.argv[2]=='--': sys.argv.pop(2)
+ #the rest is search terms
+ querystr = quote_query_line(sys.argv[2:])
+ logging.warning("tag search-term "+querystr)
+ db = Database(mode=Database.MODE.READ_WRITE)
+ m = Query(db,querystr).search_messages()
+ for msg in m:
+ #actually add and remove all tags
+ map(msg.add_tag, add)
+ map(msg.remove_tag, remove)
+ #-------------------------------------
elif sys.argv[1] == 'search-tags':
if len(sys.argv) == 2:
#no further search term
db = Database()
m = Query(db,querystr).search_messages()
print("\n".join([t for t in m.collect_tags()]))
-
+ #-------------------------------------
elif sys.argv[1] == 'dump':
#TODO: implement "dump <filename>"
db = Database()
m = q.search_messages()
for msg in m:
print("%s (%s)" % (msg.get_message_id(), msg.get_tags()))
-
+ #-------------------------------------
else:
# unknown command
print "Error: Unknown command '%s' (see \"notmuch help\")" % sys.argv[1]
#TODO: implement
"""
+setup
+new
search [options...] <search-terms> [...]
show <search-terms> [...]
reply [options...] <search-terms> [...]
-tag +<tag>|-<tag> [...] [--] <search-terms> [...]
restore <filename>
"""