aboutsummaryrefslogtreecommitdiff
path: root/database.cc
AgeCommit message (Expand)Author
2009-11-06add_message: Start storing In-Reply-To information in the database.Carl Worth
2009-10-29notmuch show: Add a one-line summary of the message before the header.Carl Worth
2009-10-28Fix add_message and get_filename to strip/re-add the database path.Carl Worth
2009-10-28notmuch_database_add_message: Sanity check the file as the first thingCarl Worth
2009-10-28Tweak formatting of internal error messages.Carl Worth
2009-10-28index: Store "Full Name <user@example.com>" addressses in the databaseCarl Worth
2009-10-28Add full-text indexing using the GMime library for parsing.Carl Worth
2009-10-27Fix segfault in case of the database lock not being available.Carl Worth
2009-10-27Update prefix so that "thread:" can be used in search strings.Carl Worth
2009-10-27notmuch_database_add_message: Do not return a message on failure.Carl Worth
2009-10-27notmuch_database_close: Explicitly flush the Xapian database.Carl Worth
2009-10-26notmuch restore: Fix to remove all tags before adding tags.Carl Worth
2009-10-26add_message: Add an optional parameter for getting the just-added message.Carl Worth
2009-10-26Remove all calls to g_strdup_printfCarl Worth
2009-10-25Drop dead function add_term.Carl Worth
2009-10-25Add -Wswitch-enum and fix warnings.Carl Worth
2009-10-25Add -Wmising-declarations and fix warnings.Carl Worth
2009-10-25_notmuch_database_linke_message: Fix error-status propagation.Carl Worth
2009-10-25Change database to store only a single thread ID per message.Carl Worth
2009-10-25link_message: Remove dead code.Carl Worth
2009-10-25add_message: Pull the thread-stitching portion out into new _notmuch_database_link_messageCarl Worth
2009-10-25Add an INTERNAL_ERROR macro and use it for all internal errors.Carl Worth
2009-10-25add_message: Propagate error status from notmuch_message_create_for_message_idCarl Worth
2009-10-25Add comment documenting our current database schema.Carl Worth
2009-10-25Drop the storage of thread ID(s) in a value.Carl Worth
2009-10-24Shuffle the value numbers around in the database.Carl Worth
2009-10-24Invent our own prefix values.Carl Worth
2009-10-24Split BOOLEAN_PREFIX into INTERNAL and EXTERNAL subsets.Carl Worth
2009-10-24Change all occurrences of "msgid" to "id".Carl Worth
2009-10-24Add the magic to allow searches such as "tag:inbox".Carl Worth
2009-10-24Fix timestamp generation to avoid overflowing the term limitCarl Worth
2009-10-24Trim down prefix list to things we are actually using.Carl Worth
2009-10-24Move the prefix-string arrays back into database.cc from message.ccCarl Worth
2009-10-23Add NOTMUCH_STATUS_DUPLICATE_MESSAGE_IDCarl Worth
2009-10-23Clarify documentation and error string for NOTMUCH_STATUS_TAG_TOO_LONGCarl Worth
2009-10-23Add notmuch_database_set_timestamp and notmuch_database_get_timestampCarl Worth
2009-10-23database: Add private find_unique_doc_id and find_unique_document functionsCarl Worth
2009-10-23database: Similarly rename find_message_by_docid to find_document_for_doc_idCarl Worth
2009-10-23database: Rename internal find_messages_by_term to find_doc_idsCarl Worth
2009-10-23add_message: Fix to not add multiple documents with the same message IDCarl Worth
2009-10-23add_message: Re-order the code a bit (find message-id first).Carl Worth
2009-10-23Move thread_id generation code from database.cc to message.ccCarl Worth
2009-10-23add_message: Rename message to message_fileCarl Worth
2009-10-22Don't forget the "to" header when restrict parsing to certain headersCarl Worth
2009-10-22Fix missing error check.Carl Worth
2009-10-22Generate message ID (using SHA1) when a mail message contains none.Carl Worth
2009-10-21Merge branch from fixing up bugs after bisecting.Carl Worth
2009-10-21Bring back the insert_thread_id function.Carl Worth
2009-10-21Add notmuch_status_to_string function.Carl Worth
2009-10-21Add notmuch_message_add_tag and notmuch_message_remove_tagCarl Worth