aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitignore
Commit message (Collapse)AuthorAge
* Improve installation of emacs mode.Gravatar Jeffrey C. Ollie2009-11-20
| | | | | | | | | | | | | | | | | | 1) Add a separate targets to build and install emacs mode. 2) Don't hardcode the installation directory, instead use emacs' pkg-config module. 3) Install a byte compiled version of the emacs mode. 4) Install the emacs mode in emacs' site-lisp directory. Put "(require 'notmuch)" in your .emacs to load it automatically. 5) Ignore byte-compiled emacs files. Signed-off-by: Jeffrey C. Ollie <jeff@ocjtech.us> Reviewed-by: Ingmar Vanhassel <ingmar@exherbo.org> Reviewed-by: Keith Packard <keithp@keithp.com>
* Have git ignore tags & cscope filesGravatar Rolland Santimano2009-11-20
|
* .gitignore: Add common editor droppingsGravatar Ingmar Vanhassel2009-11-19
|
* Have git ignore etags fileGravatar Keith Packard2009-11-18
|
* Update .gitignore, add objects and static archivesGravatar Ingmar Vanhassel2009-11-17
|
* .gitignore: Ignore .deps directory.Gravatar Carl Worth2009-11-10
| | | | | We recently moved dependencies from a single .depends file to a directory named .deps with many files, but neglected to update our .gitignore rules.
* Makefile: Hide away auto-generated dependency file as .depends.Gravatar Carl Worth2009-11-09
| | | | | | 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).
* Add a simple manual page for notmuch.Gravatar Carl Worth2009-11-02
| | | | | By pulling content out of notmuch help, and also the messages printed by "notmuch setup".
* .gitignore: Ignore generated file Makefile.depGravatar Carl Worth2009-10-20
| | | | | Forgot to add this when I first add dependency checking to the Makefile.
* Remove test programs, xapian-dump and notmuch-index-messageGravatar Carl Worth2009-10-19
| | | | | | | | | | These were just little tests while getting comfortable with GMime and xapian. I'll likely use pieces of these as notmuch continues, but for now let's not distract anyone looking at notmuch with these. And the code will live on in the history if I need to look at it.
* notmuch: Start actually adding messages to the index.Gravatar Carl Worth2009-10-18
| | | | | | | | | | | | | | | | | | | | | | This is the beginning of the notmuch library as well, with its interface in notmuch.h. So far we've got create, open, close, and add_message (all with a notmuch_database prefix). The current add_message function has already been whittled down from what we have in notmuch-index-message to add only references, message-id, and thread-id to the index, (that is---just enough to do thread-linkage but nothing for full-text searching). The concept here is to do something quickly so that the user can get some data into notmuch and start using it. (The most interesting stuff is then thread-linkage and labels like inbox and unread.) We can defer the full-text indexing of the body of the messages for later, (such as in the background while the user is reading mail). The initial thread-stitching step is still slower than I would like. We may have to stop using libgmime for this step as its overhead is not worth it for the simple case of just parsing the message-id, references, and in-reply-to headers.
* Rename g_mime_test to notmuch-index-messageGravatar Carl Worth2009-10-13
| | | | | In preparation for actually creating a Xapian index from the message, (not that we're doing that quite yet).
* Add .gitignore file to ignore compiled binaries.Gravatar Carl Worth2009-10-13