summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* notmuch show: Switch to control character to mark sections of outputCarl Worth2009-11-02
| | | | | | | | | | We were previously using things like "%message{" which were not guaranteed to never appear in an email message. Using a control character (^L or '\f' instead of '%') gives us better assurance that our delimiter doesn't show up in an original email message. This still isn't entirely safe since we're decoding encoded text in the body of the email message so almost all bets are off really.
* notmuch.el: Make 'n' and 'p' bring the current message to the top.Carl Worth2009-11-02
| | | | | This is much more convenient for reading the messages, and happens to match the behavior of sup.
* notmuch.el: Add (n)ext and (p)revious bindings to notmuch-show mode.Carl Worth2009-11-02
| | | | | | Almost starting to get usable now. Still need to make it mark messages as they are read, (by removing the unread tag), and selectively hiding the full header.
* TODO: Add an idea from talking with keithp on the train.Carl Worth2009-11-02
| | | | | I mentioned the read-only directory optimization to Keith, and he liked it but wanted to be able to configure it to be fully automated.
* notmuch.el: Add '<' and '>' bindings to goto first/last thread.Carl Worth2009-11-02
| | | | | Also, take care to remove a final blank line to avoid the point going beyond the last thread in the buffer.
* TODO: Organize tasks based on emacs interface, command-line tool, or library.Carl Worth2009-11-02
| | | | | There are conceptually three different projects here, so it helps to keep the tasks for each separated.
* notmuch.el: Add commands to (s)earch globally, and (f)ilter a searchCarl Worth2009-11-02
| | | | Also add 'q' and 'x' keybindings to kill the current buffer.
* Tweak relative dates to be close to the same length.Carl Worth2009-11-02
| | | | | Most all of the returned strings will now fill most of a 12-character string, (depending on the length of the month).
* Remove notmuch_message_get_header_size and notmuch_message_get_all_headersCarl Worth2009-11-02
| | | | | | The notmuch.c main program now uses GMime directly rather than using these functions, and I'd rather not export any functions unless we have good evidence that the functions are necessary.
* notmuch.el: Hide thread IDs in notmuch-search mode.Carl Worth2009-11-02
| | | | One more baby step toward something that's pleasant to use.
* notmuch.el: Implement visual feedback for add/remove tags.Carl Worth2009-11-02
| | | | | There's no undo still, but at least you can see what you are doing now.
* Drop date.c file, (use identical function from GMime instead).Carl Worth2009-11-02
| | | | | | | We had originally copied this function in at a time when notmuch wasn't actually depending on the GMime library. Now that it does, we might as well call the function that exists there rather than having a private copy of it.
* notmuch show: Don't print non-text MIME parts.Carl Worth2009-11-02
| | | | | | Additionally, print a part number for each MIME part so that the client could (conceivably) ask for the contents of a specific part by part number.
* Fix to decode header values, (primarily subject).Carl Worth2009-11-02
| | | | | Use GMime function to decode message-header values according to RFC 2047.
* Print "part" markers for each MIME part (with Content-type).Carl Worth2009-11-02
| | | | | This can allow for the client to hide undesired MIME parts such as text/html.
* notmuch show: Use GMime to decode messages.Carl Worth2009-11-02
| | | | We now actually get text content rather than blocks of BASE64, etc.
* TODO: Add several items.Carl Worth2009-11-02
| | | | | These are the things that are actively preventing me from being able to use notmuch as an email-reading client.
* Add an INSTALL file.Carl Worth2009-11-02
| | | | | The README file was already referring to this, so we actually add it now.
* Add a simple configure script.Carl Worth2009-11-02
| | | | | | | | | | | This is *not* based on autoconf. In fact, this doesn't actually configure anything, (one can compile notmuch directly with just "make" without running configure if the dependencies are all satisfied). The only thing that this configure script does is to check for the presence of the various dependencies and provide some guidance to the user if they are not all available.
* Makefile: Rewrite to use NOTMUCH rather than MY in variable names.Carl Worth2009-11-02
| | | | | I was about to refer to these names in some documentation, so I wanted a slightly better name for them.
* README: Add a simple file explaining notmuch and pointing out resources.Carl Worth2009-11-02
| | | | This is part of getting notmuch ready for a more public announcement.
* Add a simple manual page for notmuch.Carl Worth2009-11-02
| | | | | By pulling content out of notmuch help, and also the messages printed by "notmuch setup".
* notmuch: Add a talloc context argument to each top-level command function.Carl Worth2009-10-31
| | | | | | | I had noticed several times earlier that having a talloc context passed in would make things more convenient. I'm not exercising that convenience yet, but the context is there now, (and there's one fewer item on our TODO list).
* Rename message_results/thread_results to messages/threads.Carl Worth2009-10-31
| | | | Shorter naming without being any less clear. A definite win.
* notmuch.el: Add commands to add tag, remove tag, and archive (== remove ↵Carl Worth2009-10-31
| | | | | | | | | | | | | | inbox tag) These have keybindings of '+', '-', and 'a'. The bug they have so far is lack of visual feedback for their effect, and lack of undo. (Also the fact that adding or removing a single tag for a thread takes way too long--but that's as a Xapian issue as discussed here: replace_document should make minimal changes to database file http://trac.xapian.org/ticket/250 )
* notmuch: Reference help, don't print it for unknown commands.Carl Worth2009-10-31
| | | | | The shorter output is much nicer for something that might end up in an emacs mini-buffer, for example.
* notmuch.el: Add final '*' to generated buffer names.Carl Worth2009-10-31
| | | | Just looks a little neater that way.
* notmuch.el: Enter now calls "notmuch show" on the current threadCarl Worth2009-10-31
| | | | | It's remarkable how little code we need for a very functional GUI here. I think we're doing something right.
* notmuch.el: Start fleshing out notmuch-search-mode with a custom keymapCarl Worth2009-10-31
| | | | | All we have here so far is 'n' and 'p' for going to next and previous lines respectively.
* notmuch.el: Switch from start-process to call-processCarl Worth2009-10-31
| | | | | | | We now get the point staying right at the top where we want it. We also don't get any extraneous noise about "Process notmuch completed" or anything like that. Just the output in a read-only buffer.
* notmuch.el: Switch from compilation-start to start-processCarl Worth2009-10-30
| | | | | | Compilation mode does a bunch of things that we don't want. Instead of trying to tear it down to what we want, let's start at the other end and build up only things that we really want.
* notmuch.el: Add notmuch-search command as well as notmuchCarl Worth2009-10-30
| | | | This allows for entering a query string interactively.
* notmuch.el: Copy copyright information from compilation.elCarl Worth2009-10-30
| | | | | | I'm using that file as my reference here, so I'm likely to end up copying some code here or there. Might as well be safe and just copy the copyright statement.
* notmuch.el: Rename from notmuch-mode.el to notmuch.elCarl Worth2009-10-30
| | | | Also add the copyright and licensing blurb.
* notmuch-mode: Add an actualy notmuch-search-mode as wellCarl Worth2009-10-30
| | | | | | Doesn't really do anything so far other than mark the buffer read- only. This does have the benefit of giving us our own name rather than "Compilation" for the mode.
* The very beginnings of an emacs mode for notmuch in notmuch-mode.el.Carl Worth2009-10-30
| | | | | As expected, there's not much done here yet---it simply displays the output of "notmuch search" in a new window.
* TODO: Add man page and compiling a libnotmuch library to the list.Carl Worth2009-10-30
| | | | These are things we'll want done before any big announcement.
* Makefile: Add a simple target for "make install".Carl Worth2009-10-30
| | | | The more I do here, the less I see the need for autotools.
* TODO: Note that "notmuch show" exists now and list several new ideas.Carl Worth2009-10-30
| | | | | | The timestamp stuff we'll want to do soon, since it's a database change, (though not a major one---at worst a handful of stale timestamp documents would be left in the database).
* Fix relative date formatting to not split one day into two formats.Carl Worth2009-10-29
| | | | | | | | | | | | | We were aware of this bug when we wrote the function, (that a date six days in the past would be treated as the "Friday" or as the "Oct. 23" case depending on whether its time was before or after the current time today). We thought it wouldn't be a problem, but in practice it is. In scanning search results with this output, the transition between formats makes it look like a day boundary, (so it would be easy to mistakenly think "Oct. 23" is Thursday). Fix this to avoid confusion, (still being careful to never print "Thursday" for a date 7 days in the past when today is Thursday).
* notmuch search: Add (relative) date to search outputCarl Worth2009-10-29
| | | | | The new function for formatting relative dates is nice enough that we need to start using it more places. Here's one of them.
* notmuch show: Add a one-line summary of the message before the header.Carl Worth2009-10-29
| | | | | The idea here is that a client could usefully display just this one line while optionally hiding the other header fields.
* notmuch show: Trim down header list.Carl Worth2009-10-29
| | | | | This is for now a non-configurable list of Subject, From, To, Cc, Bcc, and Date.
* notmuch show: Add body of message as well.Carl Worth2009-10-29
| | | | | This is just the raw message body for now, (so any MIME parsing will be up to the consumer). And this will likely change in the future.
* notmuch show: Initial implementation (headers only)Carl Worth2009-10-29
| | | | | | | We're using a delimiter syntax that Keith is optimistic about being able to easily parse in emacs. Note: We're not escaping any occurrence of the delimiters in the message yet, so we'll need to fix that.
* TODO: Update now that full-text indexing is in.Carl Worth2009-10-28
| | | | | The optimization idea removed here doesn't make sense anymore with full-text indexing happening up front.
* Fix add_message and get_filename to strip/re-add the database path.Carl Worth2009-10-28
| | | | | We now store only a relative path inside the database so the database is not nicely relocatable.
* notmuch setup/new: Print progress once per second instead of after 1000 files.Carl Worth2009-10-28
| | | | | | With the recent addition of full-text indexing, printing only once per 1000 files just isn't often enough. The new timer-based approach will be reliable regardless of the speed of adding message.
* index: Don't bother indexing quoted portions of messages (and signatures).Carl Worth2009-10-28
| | | | | | | | | | | | | Our old notmuch-index-message.cc code had this, but I originally left it out when adding indexing back in. I was concerned primarily with mistakenly detecting signature markers and omitting important text, (for example, I often do long lines of "----" as section separators). But now I see that there's a performance benefit to skippint the quotations, (about 120 files/sec. instead of 95 files/sec.). I mitigated the bogus signature checking by recognizing nothing other than the all-time classic "-- ".
* notmuch_database_add_message: Sanity check the file as the first thingCarl Worth2009-10-28
| | | | | This avoids us wasting a bunch of time doing an expensive SHA-1 over a large file only to discover later that it doesn't even *look* like an email message.