mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-23 18:04:52 +01:00
notmuch: refactor stuff into a Notmuch class
This commit contains many minor and bigger changes, such as the removal of the logging import too.
This commit is contained in:
parent
775d3bc313
commit
93298e11dc
1 changed files with 336 additions and 193 deletions
407
notmuch
407
notmuch
|
@ -10,21 +10,178 @@ notmuch configuration (e.g. the database path).
|
||||||
This code is licensed under the GNU GPL v3+.
|
This code is licensed under the GNU GPL v3+.
|
||||||
"""
|
"""
|
||||||
from __future__ import with_statement # This isn't required in Python 2.6
|
from __future__ import with_statement # This isn't required in Python 2.6
|
||||||
import sys, os, re, logging
|
import sys, os, re, stat
|
||||||
from subprocess import call
|
from cnotmuch.notmuch import Database, Query, NotmuchError, STATUS
|
||||||
from cnotmuch.notmuch import Database, Query
|
|
||||||
PREFIX=re.compile('(\w+):(.*$)')
|
PREFIX=re.compile('(\w+):(.*$)')
|
||||||
#TODO Handle variable: NOTMUCH-CONFIG
|
#-------------------------------------------------------------------------
|
||||||
|
def quote_query_line(argv):
|
||||||
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
|
for i in xrange(0,len(argv)):
|
||||||
|
if argv[i].find(' ') >= 0:
|
||||||
|
#if we use prefix:termWithSpaces, put quotes around term
|
||||||
|
m = PREFIX.match(argv[i])
|
||||||
|
if m:
|
||||||
|
argv[i] = '%s:"%s"' % (m.group(1), m.group(2))
|
||||||
|
else:
|
||||||
|
argv[i] = '"'+argv[i]+'"'
|
||||||
|
return ' '.join(argv)
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
def get_user_email_addresses():
|
class Notmuch:
|
||||||
""" Reads a user's notmuch config and returns his email addresses as list (name, primary_address, other_address1,...)"""
|
|
||||||
import email.utils
|
def __init__(self):
|
||||||
|
self._config = None
|
||||||
|
|
||||||
|
def cmd_usage(self):
|
||||||
|
"""Print the usage text and exits"""
|
||||||
|
data={}
|
||||||
|
names = self.get_user_email_addresses()
|
||||||
|
data['fullname'] =names[0] if names[0] else 'My Name'
|
||||||
|
data['mailaddress']=names[1] if names[1] else 'My@email.address'
|
||||||
|
print (Notmuch.USAGE % data)
|
||||||
|
|
||||||
|
def cmd_new(self):
|
||||||
|
"""Run 'notmuch new'"""
|
||||||
|
#get the database directory
|
||||||
|
db = Database(mode=Database.MODE.READ_WRITE)
|
||||||
|
path = db.get_path()
|
||||||
|
|
||||||
|
(added, moved, removed) = self._add_new_files_recursively(path, db)
|
||||||
|
print (added, moved, removed)
|
||||||
|
|
||||||
|
def cmd_help(self, subcmd=None):
|
||||||
|
"""Print help text for 'notmuch help'"""
|
||||||
|
if len(subcmd) > 1:
|
||||||
|
print "Help for specific commands not implemented"
|
||||||
|
return
|
||||||
|
|
||||||
|
print (Notmuch.HELPTEXT)
|
||||||
|
|
||||||
|
def _get_user_notmuch_config(self):
|
||||||
|
"""Returns the ConfigParser of the user's notmuch-config"""
|
||||||
|
# return the cached config parser if we read it already
|
||||||
|
if self._config is not None:
|
||||||
|
return self._config
|
||||||
|
|
||||||
from ConfigParser import SafeConfigParser
|
from ConfigParser import SafeConfigParser
|
||||||
config = SafeConfigParser()
|
config = SafeConfigParser()
|
||||||
conf_f = os.getenv('NOTMUCH_CONFIG',
|
conf_f = os.getenv('NOTMUCH_CONFIG',
|
||||||
os.path.expanduser('~/.notmuch-config'))
|
os.path.expanduser('~/.notmuch-config'))
|
||||||
config.read(conf_f)
|
config.read(conf_f)
|
||||||
|
self._config = config
|
||||||
|
return config
|
||||||
|
|
||||||
|
def _add_new_files_recursively(self, path, db):
|
||||||
|
""":returns: (added, moved, removed)"""
|
||||||
|
print "Enter add new files with path %s" % path
|
||||||
|
(added, moved, removed) = (0,)*3
|
||||||
|
|
||||||
|
try:
|
||||||
|
#get the Directory() object for this path
|
||||||
|
db_dir = db.get_directory(path)
|
||||||
|
except NotmuchError:
|
||||||
|
#Occurs if we have wrong absolute paths in the db, for example
|
||||||
|
return (0,0,0)
|
||||||
|
|
||||||
|
|
||||||
|
#for folder in subdirs:
|
||||||
|
# (new_added, new_moved, new_removed) = \
|
||||||
|
# self._add_new_files_recursively(
|
||||||
|
# os.path.join(db_dir.path, folder), db)
|
||||||
|
# added += new_added
|
||||||
|
# moved += new_moved
|
||||||
|
# removed += new_removed
|
||||||
|
|
||||||
|
#TODO, retrieve dir mtime here and store it later
|
||||||
|
#as long as Filenames() does not allow multiple iteration, we need to
|
||||||
|
#use this kludgy way to get a sorted list of filenames
|
||||||
|
#db_files is a list of subdirectories and filenames in this folder
|
||||||
|
db_files = set()
|
||||||
|
db_folders = set()
|
||||||
|
for subdir in db_dir.get_child_directories():
|
||||||
|
db_folders.add(os.path.normpath(subdir))
|
||||||
|
for file in db_dir.get_child_files():
|
||||||
|
db_files.add(file)
|
||||||
|
|
||||||
|
fs_files = set(os.listdir(db_dir.path))
|
||||||
|
|
||||||
|
#list of folders in both db and fs. Just descend into dirs
|
||||||
|
for fs_file in (fs_files | db_folders):
|
||||||
|
absfile = os.path.normpath(os.path.join(db_dir.path, fs_file))
|
||||||
|
if os.path.isdir(absfile):
|
||||||
|
#This is a directory
|
||||||
|
if fs_file in ['.notmuch','tmp','.']:
|
||||||
|
continue
|
||||||
|
self._add_new_files_recursively(absfile, db)
|
||||||
|
# we are not interested in anything but directories here
|
||||||
|
|
||||||
|
#list of files and folders in the fs, but not the db
|
||||||
|
for fs_file in (fs_files - db_files):
|
||||||
|
absfile = os.path.normpath(os.path.join(db_dir.path, fs_file))
|
||||||
|
statinfo = os.stat(absfile)
|
||||||
|
|
||||||
|
if stat.S_ISDIR(statinfo.st_mode):
|
||||||
|
#This is a directory
|
||||||
|
if fs_file in ['.notmuch','.']:
|
||||||
|
continue
|
||||||
|
print "descending into %s" % absfile
|
||||||
|
#self._add_new_files_recursively(absfile, db)
|
||||||
|
elif stat.S_ISLNK(statinfo.st_mode):
|
||||||
|
print ("%s is a symbolic link (%d)" % (absfile, statinfo.st_mode))
|
||||||
|
else:
|
||||||
|
print "This file needs to be added %s" % (absfile)
|
||||||
|
#TODO
|
||||||
|
#(msg, status) = db.add_message(os.path.join(db_dir.path, db_file))
|
||||||
|
#if status == STATUS.DUPLICATE_MESSAGE_ID:
|
||||||
|
# #This message was already in the database, continue with next one
|
||||||
|
# continue
|
||||||
|
|
||||||
|
#list of files and folders in the database, but not the filesystem
|
||||||
|
for db_file in (db_files - fs_files):
|
||||||
|
absfile = os.path.normpath(os.path.join(db_dir.path, db_file))
|
||||||
|
statinfo = os.stat(absfile)
|
||||||
|
|
||||||
|
if stat.S_ISDIR(statinfo.st_mode):
|
||||||
|
#This is a directory
|
||||||
|
if db_file in ['.notmuch', '.']:
|
||||||
|
continue
|
||||||
|
print "descending into %s" % absfile
|
||||||
|
self._add_new_files_recursively(absfile, db)
|
||||||
|
#TODO, is there no way to REMOVE a directory entry from the db?
|
||||||
|
else:
|
||||||
|
#remove a mail message from the db
|
||||||
|
print ("%s is not on the fs anymore. Delete" % absfile)
|
||||||
|
status = db.remove_message(absfile)
|
||||||
|
if status == STATUS.SUCCESS:
|
||||||
|
# we just deleted the last reference, so this was a remove
|
||||||
|
removed += 1
|
||||||
|
elif status == STATUS.DUPLICATE_MESSAGE_ID:
|
||||||
|
# The filename exists already somewhere else, so this is a move
|
||||||
|
moved += 1
|
||||||
|
else:
|
||||||
|
print "This must not happen. %s " % (absfile)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
return (added, moved, removed)
|
||||||
|
#Read the mtime of a directory from the filesystem
|
||||||
|
#
|
||||||
|
#* Call :meth:`Database.add_message` for all mail files in
|
||||||
|
# the directory
|
||||||
|
|
||||||
|
#* Call notmuch_directory_set_mtime with the mtime read from the
|
||||||
|
# filesystem. Then, when wanting to check for updates to the
|
||||||
|
# directory in the future, the client can call :meth:`get_mtime`
|
||||||
|
# and know that it only needs to add files if the mtime of the
|
||||||
|
# directory and files are newer than the stored timestamp.
|
||||||
|
|
||||||
|
def get_user_email_addresses(self):
|
||||||
|
""" Reads a user's notmuch config and returns his email addresses as
|
||||||
|
list (name, primary_address, other_address1,...)"""
|
||||||
|
import email.utils
|
||||||
|
|
||||||
|
#read the config file
|
||||||
|
config = self._get_user_notmuch_config()
|
||||||
|
|
||||||
if not config.has_option('user','name'): name = ""
|
if not config.has_option('user','name'): name = ""
|
||||||
else:name = config.get('user','name')
|
else:name = config.get('user','name')
|
||||||
|
|
||||||
|
@ -37,87 +194,11 @@ def get_user_email_addresses():
|
||||||
other.insert(0, mail)
|
other.insert(0, mail)
|
||||||
other.insert(0, name)
|
other.insert(0, name)
|
||||||
return other
|
return other
|
||||||
#-------------------------------------------------------------------------
|
|
||||||
HELPTEXT="""The notmuch mail system.
|
|
||||||
|
|
||||||
Usage: notmuch <command> [args...]
|
def quote_msg_body(self, oldbody ,date, from_address):
|
||||||
|
"""Transform a mail body into a quoted text,
|
||||||
|
starting with On blah, x wrote:
|
||||||
|
|
||||||
Where <command> and [args...] are as follows:
|
|
||||||
|
|
||||||
setup Interactively setup notmuch for first use.
|
|
||||||
|
|
||||||
new [--verbose]
|
|
||||||
|
|
||||||
Find and import new messages to the notmuch database.
|
|
||||||
|
|
||||||
search [options...] <search-terms> [...]
|
|
||||||
|
|
||||||
Search for messages matching the given search terms.
|
|
||||||
|
|
||||||
show <search-terms> [...]
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
tag +<tag>|-<tag> [...] [--] <search-terms> [...]
|
|
||||||
|
|
||||||
Add/remove tags for all messages matching the search terms.
|
|
||||||
|
|
||||||
dump [<filename>]
|
|
||||||
|
|
||||||
Create a plain-text dump of the tags for each message.
|
|
||||||
|
|
||||||
restore <filename>
|
|
||||||
|
|
||||||
Restore the tags from the given dump file (see 'dump').
|
|
||||||
|
|
||||||
search-tags [<search-terms> [...] ]
|
|
||||||
|
|
||||||
List all tags found in the database or matching messages.
|
|
||||||
|
|
||||||
help [<command>]
|
|
||||||
|
|
||||||
This message, or more detailed help for the named command.
|
|
||||||
|
|
||||||
Use "notmuch help <command>" for more details on each command.
|
|
||||||
And "notmuch help search-terms" for the common search-terms syntax.
|
|
||||||
"""
|
|
||||||
#-------------------------------------------------------------------------
|
|
||||||
#TODO: replace the dynamic pieces
|
|
||||||
USAGE="""Notmuch is configured and appears to have a database. Excellent!
|
|
||||||
|
|
||||||
At this point you can start exploring the functionality of notmuch by
|
|
||||||
using commands such as:
|
|
||||||
|
|
||||||
notmuch search tag:inbox
|
|
||||||
|
|
||||||
notmuch search to:"Sebastian Spaeth"
|
|
||||||
|
|
||||||
notmuch search from:"Sebastian@SSpaeth.de"
|
|
||||||
|
|
||||||
notmuch search subject:"my favorite things"
|
|
||||||
|
|
||||||
See "notmuch help search" for more details.
|
|
||||||
|
|
||||||
You can also use "notmuch show" with any of the thread IDs resulting
|
|
||||||
from a search. Finally, you may want to explore using a more sophisticated
|
|
||||||
interface to notmuch such as the emacs interface implemented in notmuch.el
|
|
||||||
or any other interface described at http://notmuchmail.org
|
|
||||||
|
|
||||||
And don't forget to run "notmuch new" whenever new mail arrives.
|
|
||||||
|
|
||||||
Have fun, and may your inbox never have much mail.
|
|
||||||
"""
|
|
||||||
#-------------------------------------------------------------------------
|
|
||||||
def quote_reply(oldbody ,date, from_address):
|
|
||||||
"""Transform a mail body into a quote text starting with On blah, x wrote:
|
|
||||||
:param body: a str with a mail body
|
:param body: a str with a mail body
|
||||||
:returns: The new payload of the email.message()
|
:returns: The new payload of the email.message()
|
||||||
"""
|
"""
|
||||||
|
@ -134,8 +215,13 @@ def quote_reply(oldbody ,date, from_address):
|
||||||
|
|
||||||
return newbody.getvalue()
|
return newbody.getvalue()
|
||||||
|
|
||||||
def format_reply(msgs):
|
def format_reply(self, msgs):
|
||||||
"""Gets handed Messages() and displays the reply to them"""
|
"""Gets handed Messages() and displays the reply to them
|
||||||
|
|
||||||
|
This is pretty ugly and hacky. It tries to mimic the "real"
|
||||||
|
notmuch output as much as it can to pass the test suite. It
|
||||||
|
could deserve a healthy bit of love. It is also buggy because
|
||||||
|
it returns after the first message it has handled."""
|
||||||
import email
|
import email
|
||||||
|
|
||||||
for msg in msgs:
|
for msg in msgs:
|
||||||
|
@ -144,12 +230,13 @@ def format_reply(msgs):
|
||||||
|
|
||||||
#handle the easy non-multipart case:
|
#handle the easy non-multipart case:
|
||||||
if not reply.is_multipart():
|
if not reply.is_multipart():
|
||||||
reply.set_payload(quote_reply(reply.get_payload(),
|
reply.set_payload(self.quote_msg_body(reply.get_payload(),
|
||||||
reply['date'],reply['from']))
|
reply['date'],reply['from']))
|
||||||
else:
|
else:
|
||||||
#handle the tricky multipart case
|
#handle the tricky multipart case
|
||||||
deleted = ""
|
deleted = ""
|
||||||
"""A string describing which nontext attachements have been deleted"""
|
"""A string describing which nontext attachements that
|
||||||
|
have been deleted"""
|
||||||
delpayloads = []
|
delpayloads = []
|
||||||
"""A list of payload indices to be deleted"""
|
"""A list of payload indices to be deleted"""
|
||||||
|
|
||||||
|
@ -163,18 +250,18 @@ def format_reply(msgs):
|
||||||
payloads[i].set_payload("Non-text part: %s" % (part.get_content_type()))
|
payloads[i].set_payload("Non-text part: %s" % (part.get_content_type()))
|
||||||
payloads[i].set_type('text/plain')
|
payloads[i].set_type('text/plain')
|
||||||
delpayloads.append(i)
|
delpayloads.append(i)
|
||||||
|
elif mime_main == 'text':
|
||||||
|
payloads[i].set_payload(self.quote_msg_body(payloads[i].get_payload(),reply['date'],reply['from']))
|
||||||
else:
|
else:
|
||||||
# payloads[i].set_payload("Text part: %s" % (part.get_content_type()))
|
#TODO handle deeply nested multipart messages
|
||||||
payloads[i].set_payload(quote_reply(payloads[i].get_payload(),reply['date'],reply['from']))
|
sys.stderr.write ("FIXME: Ignoring multipart part. Handle me\n")
|
||||||
|
|
||||||
|
|
||||||
# Delete those payloads that we don't need anymore
|
# Delete those payloads that we don't need anymore
|
||||||
for i in reversed(sorted(delpayloads)):
|
for i in reversed(sorted(delpayloads)):
|
||||||
del payloads[i]
|
del payloads[i]
|
||||||
|
|
||||||
#Back to single- and multipart handling
|
#Back to single- and multipart handling
|
||||||
|
my_addresses = self.get_user_email_addresses()
|
||||||
my_addresses = get_user_email_addresses()
|
|
||||||
used_address = None
|
used_address = None
|
||||||
# filter our email addresses from all to: cc: and bcc: fields
|
# filter our email addresses from all to: cc: and bcc: fields
|
||||||
# if we find one of "my" addresses being used,
|
# if we find one of "my" addresses being used,
|
||||||
|
@ -241,52 +328,116 @@ def format_reply(msgs):
|
||||||
del(reply['Message-ID'])
|
del(reply['Message-ID'])
|
||||||
|
|
||||||
# filter all existing headers but a few and delete them from 'reply'
|
# filter all existing headers but a few and delete them from 'reply'
|
||||||
delheaders = filter(lambda x: x not in ['From','To','Subject','CC','Bcc',
|
delheaders = filter(lambda x: x not in ['From','To','Subject','CC',
|
||||||
'In-Reply-To', 'References',
|
'Bcc','In-Reply-To',
|
||||||
'Content-Type'],reply.keys())
|
'References','Content-Type'],
|
||||||
|
reply.keys())
|
||||||
map(reply.__delitem__, delheaders)
|
map(reply.__delitem__, delheaders)
|
||||||
|
|
||||||
"""
|
# TODO: OUCH, we return after the first msg we have handled rather than
|
||||||
From: Sebastian Spaeth <Sebastian@SSpaeth.de>
|
# handle all of them
|
||||||
Subject: Re: Template =?iso-8859-1?b?Zvxy?= das Kochrezept
|
#return resulting message without Unixfrom
|
||||||
In-Reply-To: <4A6D55F9.6040405@SSpaeth.de>
|
|
||||||
References: <4A6D55F9.6040405@SSpaeth.de>
|
|
||||||
"""
|
|
||||||
#return without Unixfrom
|
|
||||||
return reply.as_string(False)
|
return reply.as_string(False)
|
||||||
#-------------------------------------------------------------------------
|
|
||||||
def quote_query_line(argv):
|
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
|
||||||
for i in xrange(0,len(argv)):
|
|
||||||
if argv[i].find(' ') >= 0:
|
|
||||||
#if we use prefix:termWithSpaces, put quotes around term
|
|
||||||
m = PREFIX.match(argv[i])
|
|
||||||
if m:
|
|
||||||
argv[i] = '%s:"%s"' % (m.group(1), m.group(2))
|
|
||||||
else:
|
|
||||||
argv[i] = '"'+argv[i]+'"'
|
|
||||||
return ' '.join(argv)
|
|
||||||
|
|
||||||
|
|
||||||
|
HELPTEXT="""The notmuch mail system.
|
||||||
|
|
||||||
|
Usage: notmuch <command> [args...]
|
||||||
|
|
||||||
|
Where <command> and [args...] are as follows:
|
||||||
|
|
||||||
|
setup Interactively setup notmuch for first use.
|
||||||
|
|
||||||
|
new [--verbose]
|
||||||
|
|
||||||
|
Find and import new messages to the notmuch database.
|
||||||
|
|
||||||
|
search [options...] <search-terms> [...]
|
||||||
|
|
||||||
|
Search for messages matching the given search terms.
|
||||||
|
|
||||||
|
show <search-terms> [...]
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
tag +<tag>|-<tag> [...] [--] <search-terms> [...]
|
||||||
|
|
||||||
|
Add/remove tags for all messages matching the search terms.
|
||||||
|
|
||||||
|
dump [<filename>]
|
||||||
|
|
||||||
|
Create a plain-text dump of the tags for each message.
|
||||||
|
|
||||||
|
restore <filename>
|
||||||
|
|
||||||
|
Restore the tags from the given dump file (see 'dump').
|
||||||
|
|
||||||
|
search-tags [<search-terms> [...] ]
|
||||||
|
|
||||||
|
List all tags found in the database or matching messages.
|
||||||
|
|
||||||
|
help [<command>]
|
||||||
|
|
||||||
|
This message, or more detailed help for the named command.
|
||||||
|
|
||||||
|
Use "notmuch help <command>" for more details on each command.
|
||||||
|
And "notmuch help search-terms" for the common search-terms syntax.
|
||||||
|
"""
|
||||||
|
|
||||||
|
USAGE="""Notmuch is configured and appears to have a database. Excellent!
|
||||||
|
|
||||||
|
At this point you can start exploring the functionality of notmuch by
|
||||||
|
using commands such as:
|
||||||
|
|
||||||
|
notmuch search tag:inbox
|
||||||
|
|
||||||
|
notmuch search to:"%(fullname)s"
|
||||||
|
|
||||||
|
notmuch search from:"%(mailaddress)s"
|
||||||
|
|
||||||
|
notmuch search subject:"my favorite things"
|
||||||
|
|
||||||
|
See "notmuch help search" for more details.
|
||||||
|
|
||||||
|
You can also use "notmuch show" with any of the thread IDs resulting
|
||||||
|
from a search. Finally, you may want to explore using a more sophisticated
|
||||||
|
interface to notmuch such as the emacs interface implemented in notmuch.el
|
||||||
|
or any other interface described at http://notmuchmail.org
|
||||||
|
|
||||||
|
And don't forget to run "notmuch new" whenever new mail arrives.
|
||||||
|
|
||||||
|
Have fun, and may your inbox never have much mail.
|
||||||
|
"""
|
||||||
|
|
||||||
|
# MAIN
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
||||||
# Handle command line options
|
# Handle command line options
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
# No option given, print USAGE and exit
|
# No option given, print USAGE and exit
|
||||||
if len(sys.argv) == 1:
|
if len(sys.argv) == 1:
|
||||||
print USAGE
|
Notmuch().cmd_usage()
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'setup':
|
elif sys.argv[1] == 'setup':
|
||||||
"""Interactively setup notmuch for first use."""
|
"""Interactively setup notmuch for first use."""
|
||||||
print "Not implemented."
|
print "Not implemented."
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'new':
|
elif sys.argv[1] == 'new':
|
||||||
""" Interactively setup notmuch for first use. """
|
"""Check for new and removed messages."""
|
||||||
#print "Not implemented. We cheat by calling the proper notmuch"
|
Notmuch().cmd_new()
|
||||||
call(['notmuch new'],shell=True)
|
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'help':
|
elif sys.argv[1] == 'help':
|
||||||
if len(sys.argv) == 2: print HELPTEXT
|
"""Print the help text"""
|
||||||
else: print "Not implemented"
|
Notmuch().cmd_help(sys.argv[1:])
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'part':
|
elif sys.argv[1] == 'part':
|
||||||
db = Database()
|
db = Database()
|
||||||
|
@ -309,8 +460,6 @@ if __name__ == '__main__':
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
querystr = quote_query_line(sys.argv[first_search_term:])
|
querystr = quote_query_line(sys.argv[first_search_term:])
|
||||||
|
|
||||||
|
|
||||||
logging.debug("part "+querystr)
|
|
||||||
qry = Query(db,querystr)
|
qry = Query(db,querystr)
|
||||||
msgs = qry.search_messages()
|
msgs = qry.search_messages()
|
||||||
msg_list = []
|
msg_list = []
|
||||||
|
@ -343,8 +492,6 @@ if __name__ == '__main__':
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
querystr = quote_query_line(sys.argv[first_search_term:])
|
querystr = quote_query_line(sys.argv[first_search_term:])
|
||||||
|
|
||||||
|
|
||||||
logging.debug("search "+querystr)
|
|
||||||
qry = Query(db,querystr)
|
qry = Query(db,querystr)
|
||||||
if sort_order == "oldest-first":
|
if sort_order == "oldest-first":
|
||||||
qry.set_sort(Query.SORT.OLDEST_FIRST)
|
qry.set_sort(Query.SORT.OLDEST_FIRST)
|
||||||
|
@ -383,7 +530,6 @@ if __name__ == '__main__':
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
querystr = quote_query_line(sys.argv[first_search_term:])
|
querystr = quote_query_line(sys.argv[first_search_term:])
|
||||||
|
|
||||||
logging.debug("show "+querystr)
|
|
||||||
t = Query(db,querystr).search_threads()
|
t = Query(db,querystr).search_threads()
|
||||||
|
|
||||||
first_toplevel=True
|
first_toplevel=True
|
||||||
|
@ -415,9 +561,8 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
querystr = quote_query_line(sys.argv[2:])
|
querystr = quote_query_line(sys.argv[2:])
|
||||||
logging.debug("reply "+querystr)
|
|
||||||
msgs = Query(db,querystr).search_messages()
|
msgs = Query(db,querystr).search_messages()
|
||||||
print (format_reply(msgs))
|
print (Notmuch().format_reply(msgs))
|
||||||
|
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'count':
|
elif sys.argv[1] == 'count':
|
||||||
|
@ -445,7 +590,6 @@ if __name__ == '__main__':
|
||||||
if sys.argv[2]=='--': sys.argv.pop(2)
|
if sys.argv[2]=='--': sys.argv.pop(2)
|
||||||
#the rest is search terms
|
#the rest is search terms
|
||||||
querystr = quote_query_line(sys.argv[2:])
|
querystr = quote_query_line(sys.argv[2:])
|
||||||
logging.debug("tag search-term "+querystr)
|
|
||||||
db = Database(mode=Database.MODE.READ_WRITE)
|
db = Database(mode=Database.MODE.READ_WRITE)
|
||||||
m = Query(db,querystr).search_messages()
|
m = Query(db,querystr).search_messages()
|
||||||
for msg in m:
|
for msg in m:
|
||||||
|
@ -460,7 +604,6 @@ if __name__ == '__main__':
|
||||||
else:
|
else:
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
querystr = quote_query_line(sys.argv[2:])
|
querystr = quote_query_line(sys.argv[2:])
|
||||||
logging.debug("search-term "+querystr)
|
|
||||||
db = Database()
|
db = Database()
|
||||||
m = Query(db,querystr).search_messages()
|
m = Query(db,querystr).search_messages()
|
||||||
print("\n".join([t for t in m.collect_tags()]))
|
print("\n".join([t for t in m.collect_tags()]))
|
||||||
|
|
Loading…
Reference in a new issue