aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-12notmuch.el: Remove functions to show/hide thread IDs.Carl Worth
I wrote these originally jsut for debugging. They've never been hooked up to any keybinding and the existing "M-x visible-mode" does what's needed anyway.
2009-11-12notmuch reply: Add Bcc to the user's primary email address.Carl Worth
The user really wants a copy of all outbound messages to come back in.
2009-11-12notmuch show: Display "Subject: " before the subject.Carl Worth
I think I was being uselessly terse when I dropped that. Put it back.
2009-11-12notmuch search: Print the names of author of matched emails.Carl Worth
It's important to have the names present for determining whether a thread is worth reading or not. We may want to think about abbreviating the list somehow if it is excessively long (or redundant as in bugzilla-daemon, bugzilla-daemon, bugzilla-daemon, etc.).
2009-11-12Don't create "contact" terms in the database.Carl Worth
We never did export any interface to get at these, and when I went to use these, I found them inadequate, (because I wanted to distinguish address found in from: from those found in To:). Meanwhile, it was easy enough to extract addresses with a search like: notmuch show tag:sent | grep ^To: so the storage of contact terms was just wasting space. Stop that.
2009-11-12TODO: Add note on making "notmuch new" interruptible.Carl Worth
This note was described in the previous commit message, but mistakenly not committed: The note about making "notmuch setup" faster is now rewritten to apply to "notmuch new" since "notmuch setup" no longer does any mail indexing.
2009-11-12TODO: Update based on recent additions.Carl Worth
We recently added support for "notmuch reply" and also made (most of) the hidden components self documenting. The note about making "notmuch setup" faster is now rewritten to apply to "notmuch new" since "notmuch setup" no longer does any mail indexing.
2009-11-12notmuch new: Don't ignore files with mtime of 0.Carl Worth
I recently discovered that mb2md has the annoying bug of creating files with mtime of 0, and notmuch then promptly ignored them, (thinking that its timestamps initialized to 0 were just as new). We fix notmuch to not exclude messages based on a database timestamp of 0.
2009-11-11notmuch show: Avoid segmentation for message with no subject.Carl Worth
It's safer to return an empty string rather than NULL for missing header values.
2009-11-11Initialize count of new files to zero.Keith Packard
Leaving this variable uninitialized caused notmuch to display a random number while counting files for the new database. Signed-off-by: Keith Packard <keithp@keithp.com>
2009-11-11notmuch.el: Switch to using "notmuch reply" rather than message-reply.Carl Worth
This way we get to take advantage of the configuration of the user's email addresses in notmuch, (rather than expecting the user to configure all of their email addresses in message mode as well).
2009-11-11notmuch reply: Fish out user's address from recipient list to use as From.Carl Worth
That is, if mail was addresses to one of the "other" addresses in the configuration file, then the reply will have its "From" header set to that same address rather than the primary address.
2009-11-11notmuch reply: Don't reply to address belonging to the user.Carl Worth
Here's our first real advantage of having a configuration system. We get to omit our own addresses from the recipient list of any replies.
2009-11-11Unbreak several notmuch commands after the addition of configuration.Carl Worth
All of the following commands: notmuch dump notmuch reply notmuch restore notmuch search notmuch show notmuch tag were calling notmuch_database_open with an argument of NULL. This was a legitimate call until the recent addition of configuration, after which it is expected that all commands will lookup the correct path in the configuration file. So fix all these commands to do that. Also, while touching all of these commands, we fix them to use the talloc context that is passed in rather than creating a local talloc context. We also switch from using goto for return values, to doing direct returns as soon as an error is detected, (which can be leak free thanks to talloc).
2009-11-11notmuch new: Unbreak after the addition of notmuch-config.Carl Worth
Pull in the code from add-files.c now that notmuch_new_command is the only user, (we no longer have notmuch_setup_command adding any messages).
2009-11-11notmuch: Make the command of "notmuch" walk the user through the next step.Carl Worth
If this is run first, it will run "notmuch setup" directly. After that is successful, it will look for a databae and tell the user to run "notmuch new" if the database doesn't exist yet. Finally, if the database is present, it will provide some example "notmuch search" commands for the user to try.
2009-11-11notmuch: Move welcome messages from "notmuch" to "notmuch setup".Carl Worth
It's quite possible for someone to read the documentation and run "notmuch setup" rather than just "notmuch". In that case, we don't want to be any less welcoming.
2009-11-11notmuch setup: Add some comments when creating a .notmuch-config file.Carl Worth
The "notmuch setup" command is nice and all, but we also want to allow users to conveniently edit the configuration file directly.
2009-11-11notmuch: Add a configuration system.Carl Worth
This will allow for things like the database path to be specified without any cheesy NOTMUCH_BASE environment variable. It also will allow "notmuch reply" to recognize the user's email address when constructing a reply in order to do the right thing, (that is, to use the user's address to which mail was sent as From:, and not to reply to the user's own addresses). With this change, the "notmuch setup" command is now strictly for changing the configuration of notmuch. It no longer creates the database, but instead instructs the user to call "notmuch new" to do that.
2009-11-11notmuch setup: Break the implementation up into manageable functions.Carl Worth
The notmuch_setup_command function was getting entirely unwieldy. Break it up into smaller functions for better maintainability.
2009-11-11notmuch reply: Use GMime to construct the header for the reply.Carl Worth
The advantage here is that we actually get the necessary folding of long headers, (particularly the References header, but also things like Subject). This also gives us parsed recipient addresses so that we can easily elide the sender's address(es) from the recipient list (just as soon as we have a configured value for the recipient's address(es)).
2009-11-10notmuch.el: Add a binding ('r') to reply to the current message.Carl Worth
We were just starting to get "notmuch reply" into shape in order to provide the needed functionality here, but then I realized that the message-reply function built into emacs is already more functional, (at least for the case of replying to a single message).
2009-11-10notmuch reply: Process headers a bit more accurately.Carl Worth
We know take the original From: and all recipients and put them on the To: line. We also add a "Re: " to the subject, and we add In-Reply-To: and References: headers.
2009-11-10notmuch.el: Simplify get-message-idCarl Worth
We were stripping off the "id:" portion of the identifier, only to put it back on again in all cases. Stop this madness.
2009-11-10notmuch reply: Add (incomplete) reply commandKeith Packard
Reviewed-by: Carl Worth <cworth@cworth.org> Keith wrote all the code here against notmuch before notmuch.c was split up into multiple files. So I've pushed the code around in various ways to match the new code structure, but have generally tried to avoid making any changes to the behavior of the code. I did fix one bug---a missing call to g_mime_stream_file_set_owner in show_part which would cause "notmuch show" to go off into the weeds when trying to show multiple messages, (since the first stream would fclose stdout).
2009-11-10notmuch: Break notmuch.c up into several smaller files.Carl Worth
Now that the client sources are alone here in their own directory, (with all the library sources down inside the lib directory), we can break the client up into multiple files without mixing the files up. The hope is that these smaller files will be easier to manage and maintain.
2009-11-10.gitignore: Ignore .deps directory.Carl Worth
We recently moved dependencies from a single .depends file to a directory named .deps with many files, but neglected to update our .gitignore rules.
2009-11-10Makefile: Change default flags to -O2.Carl Worth
We've now verified that it's reliable for the user to override CFLAGS on the command line, so just make the user do to get a debug build.
2009-11-10Makefile: Make the top-level Makefile a little more independent.Carl Worth
Previously, the top-level Makefile was explicitly adding -I./lib to the compiler flags. However, that's something that's much better done from within the Makefile.local fragment within the lib directory itself.
2009-11-10Makefile: Simplify setting of CFLAGS, etc.Carl Worth
We were previously using separate CFLAGS and NOTMUCH_CFLAGS variables in an attempt to allow the user to specify CFLAGS on the command-line. However, that's just a lot of extra noise in the Makefile when we can instead let the user specify what is desired for CFLAGS and then use an override to append the things we require. So our Makefile is much neater now.
2009-11-10Makefile: Fix dependency generation to make .d files themselves dependent.Carl Worth
I saw this recommendation in the implementation notes for "Recursive Make Considered Harmful" and then the further recommendation for implementing the idea in the GNU make manual. The idea is that if any of the files change then we need to regenerate the dependency file before we regenerate any targets. The approach from the GNU make manual is simpler in that it just uses a sed script to fix up the output of an extra invocation of the compiler, (as opposed to the approach in the implementation notes from the paper's author which use a wrapper script for the compiler that's always invoked rather than the compiler itself).
2009-11-10Implement a non-recursive make.Carl Worth
The idea here is that every Makefile at each lower level will be an identical, tiny file that simply defers to a top-level make. Meanwhile, the Makefile.local file at each level is a Makefile snippet to be included at the top-level into a large, flat Makefile. As such, it needs to define its rules with the entire relative directory to each file, (typically in $(dir)). The local files can also append to variables such as SRCS and CLEAN for files to be analyzed for dependencies and to be cleaned.
2009-11-09Makefile: Hide away auto-generated dependency file as .depends.Carl Worth
Instead of the old name of Makefile.dep. The idea being that the user really doesn't need to see this by default, (and if debugging the Makefile, the rules will make the name obvious).
2009-11-09Remove obsolete message.h.Carl Worth
This has been around but never used, and only became apparent now that the other sources moved down into the lib sub-directory.
2009-11-09libify: Move library sources down into lib directory.Carl Worth
A "make" invocation still works from the top-level, but not from down inside the lib directory yet.
2009-11-09notmuch.el: Don't advance line in search buffer before showing thread.Carl Worth
Previously, when selecting a thread to view from the search buffer, we would advance the point by one line before showing the thread, (so that it would be ready to show the next thread once the user was done with the current thread). This was annoying when the user temporarily exited the thread view, (because the "wrong" thread was then selected in the search view). We get a more consistent experience by waiting to advance until the user has finished viewing one thread and is ready to view the next.
2009-11-09notmuch.el: Fix add/remove tag from search buffers.Carl Worth
These were recently broken with the change of "notmuch search" to prefix thread IDs with "thread:" rather than printing them raw.
2009-11-09add_message: Fix crash for file recognized as not email.Carl Worth
This crash was introduced sometime recently, as previously things worked fine when notmuch detected that a file is not an email. We're definitely overdue for that test suite.
2009-11-09TODO: Note that notmuch restore needs some progress indication.Carl Worth
A recent "notmuch restore" command took *forever* for me. Obviously, we need to fix the underlying performance bug in Xapian, but in the meantime, a progress indicator would help.
2009-11-09notmuch setup: Remove a debugging print.Carl Worth
This was just some extra noise printed when requesting a non-default mail directory itneractively.
2009-11-06add_message: Start storing In-Reply-To information in the database.Carl Worth
We'll use this eventually for properly nesting messages in the output of "notmuch show", etc.
2009-11-06Makefile: Fix install target to depend on the all target.Carl Worth
Otherwise, it would just fail if you hadn't run "make" already.
2009-11-06notmuch show: Don't show the subject line twice.Carl Worth
I recently added a print of the subject line for use as part of a two-line summary in the emacs client. But of course, the subject was already being printed on the next line. So I didn't really need to add anything, I could have just stopped hiding what was already printed. Anyway, we now avoid printing it twice in a row.
2009-11-06add_message: Fix segfault for message with no Date header.Carl Worth
I'd fixed this earlier when I had a private copy of GMime's date-parsing code, but I lost the fix when I recently switched to calling the GMime function.
2009-11-05notmuch show: Move subject from one-line summary down to its own line.Carl Worth
And change the display code in emacs to display the one-line summary in inverse video.
2009-11-05notmuch.el: Bring back the "End of search results." message.Carl Worth
The recent change of the hidden thread-ID syntax caused this message to instead be replaced with a cryptic "search failed" error and an internal regular expression. Put our nice message back.
2009-11-05notmuch.el: Make hidden parts advertise how to unhide them.Carl Worth
This is in place now citations and signatures. We'll still need to add something else for hidden messages (those that are already read and hidden away).
2009-11-05notmuch.el: Add 'A' binding to archive thread after removing all "unread" tags.Carl Worth
This is useful for when the rest of the thread is visible on screen so the user really has read the rest of it.
2009-11-05Update notmuch man page with recently-added documentation.Carl Worth
It would be nice to have this documentation live in a single place, but for now, this is what we get.
2009-11-05notmuch search: Document the from, to, and subject prefixes.Carl Worth
I've been using these for a long time, but I had neglected to document them until now.