aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* debian/control: require dtach version >= 0.8 in Build-DependsTomi Ollila2011-11-24
| | | | | | Since version 0.8 of dtach -n does no longer require controlling tty to be present when executed. Currently controlling tty is not always (if ever) present when tests are executed.
* Merge branch 'release'David Bremner2011-11-23
|\
| * debian: changelog stanza for 0.10David Bremner2011-11-23
| | | | | | | | Give a brief summary of (and pointer to) NEWS
| * NEWS: set (approximate) date for 0.10 releaseDavid Bremner2011-11-23
| | | | | | | | It doesn't really matter if we are off by a day.
| * version: update to 0.10David Bremner2011-11-23
| |
| * NEWS: item for silent killing of search buffers.David Bremner2011-11-23
| | | | | | | | | | This is maybe borderline for inclusion in NEWS, but maybe the NEWS item helps someone who thinks there is a bug.
| * contrib/notmuch-deliver: don't export from gitDavid Bremner2011-11-23
| | | | | | | | | | | | This prevents it from being part of the release tarballs. Hopefully this is only temporary while we sort out the GPL2 versus GPL3 question.
* | emacs: Make saving new saved searches append, not prependJani Nikula2011-11-22
| | | | | | | | | | | | | | Append new saved searches at the end of saved searches rather than insert in front. Signed-off-by: Jani Nikula <jani@nikula.org>
* | emacs: Add new customization option to sort saved searchesJani Nikula2011-11-22
| | | | | | | | | | | | | | | | | | | | | | Add new customization option notmuch-saved-search-sort-function to sort saved searches in user-defined order. Provide a sort function to sort the saved searches in alphabetical order. Setting the search function to nil causes the saved searches not to be sorted, as before. This also remains the default. The function only affects display of the saved searches, not the order in which they are stored by custom. Signed-off-by: Jani Nikula <jani@nikula.org>
* | tags_to_maildir_flags: Cleanup double assignementLouis Rilling2011-11-21
| | | | | | | | | | | | The for loop right after already does the job. Signed-off-by: Louis Rilling <l.rilling@av7.net>
* | lib: Kill last usage of C++ type boolLouis Rilling2011-11-21
| | | | | | | | Signed-off-by: Louis Rilling <l.rilling@av7.net>
* | Merge branch 'release'David Bremner2011-11-21
|\|
| * version: update version info for 0.10~rc2David Bremner2011-11-19
| | | | | | | | | | Arguably editing debian/changelog violates the "do one thing at a time" rule, but all of these versions need to be kept in sync.
* | fix a double // to single /Florian Friesdorf2011-11-20
| |
* | emacs: breakout notmuch-show-advance functionality from ↵Jameson Graef Rollins2011-11-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | notmuch-show-advance-and-archive This patch breaks out much of the functionality of notmuch-show-advance-and-archive into a new function: notmuch-show-advance. This new function does all the advancing through a show buffer that notmuch-show-advance-and-archive did, without all the invasive thread archiving. The return value of notmuch-show-advance is nil if the bottom of the thread is not reached, and t if it is. notmuch-show-advance-and-archive is modified to just call notmuch-show-advance, and then call notmuch-show-archive-thread if the return value is true. In this way the previous functionality of notmuch-show-advance-and-archive is preserved. This provides a way for people to rebind the space bar to a more sane function if they don't like the default behavior.
* | Don't link libnotmuch if libutil isn't linked in properly.Tom Prince2011-11-19
| | | | | | | | | | | | | | For some reason, on my machine, the link is picking up /usr/lib/libutil.so instead of util/libutil.a. This causes there to be undefined symbols in libnotmuch, making it unuseable. This patch causes the link to fail instead.
* | RELEASING: document the semi-automated version propagation.David Bremner2011-11-19
| | | | | | | | | | | | The instructions are purposely a bit coy about what files are updated, so we don't have to update immediately when something else is plugged into the make recipe.
* | build system: add target update-versions to propagate versionDavid Bremner2011-11-19
| | | | | | | | | | | | The version from file "version" is propagated to the man page and the python bindings via sed. Note that the git version is ignored because of the check for MAKECMDGOALS.
* | build system: use $(filter ...) to test MAKECMDGOALSDavid Bremner2011-11-19
| | | | | | | | | | This makes the test easier to extend to more targets. It also corrects a bug where "special" targets were only detected when given alone.
* | test: make all tests terminable with Ctrl-cTomi Ollila2011-11-18
| | | | | | | | | | | | | | Some tests don't break when HUP signal is sent tho those (by pressing ctrl-c on the terminal). Therefore, the top-level test script catches the HUP and sends TERM signal to the started test script.
* | test: emacs: tidy up "Stashing in notmuch-show" testPieter Praet2011-11-18
| | | | | | | | | | Merge expected output into the actual test, so we can verify the stashed filename using ${gen_msg_filename} instead of doing sed tricks.
* | test: attempt to send QUIT to smtp-dummy in case mail send failedTomi Ollila2011-11-18
|/ | | | | | If mail sending from emacs fails before it has chance to connect to the smtp-dummy mail server, the opportunistic QUIT message sending makes smtp-dummy to exit.
* test: create dtach's session socket in $TEST_TMPDIRTomi Ollila2011-11-17
| | | | | | | | Due to 108-character limit in unix domain socket path this change is required; it is more probable that length of ${TMPDIR:-/tmp} is shorter than length of path to the current directory of notmuch test source directory. One can expect to create reasonable-length unix domain sockets wherever $TMPDIR points to.
* test: create TEST_TMPDIR for holding temporary filesTomi Ollila2011-11-17
| | | | | | The TEST_TMPDIR if first needed to hold dtach's socket (due to 108-character limit in socket file names). Later it can be used to hold other temporary files; directory deleted at exit.
* build system: tweak VERSION so that debian-snapshot works for N.NN~rcNDavid Bremner2011-11-17
| | | | | The problem was that the version is recovered from the git tag, which has the ~ replaced by _. This broke the sequencing of version numbers.
* NEWS: fix some old typos and trailing whitespacePieter Praet2011-11-16
| | | | (with a further M-x whitespace-cleanup by db)
* NEWS: add entries for stashing-related keybinding and testsPieter Praet2011-11-16
| | | | | | Add news entries for commits: f9764bfacc97457d1154c2d2a6001a6564f13ec3 64febdf71c4184ca369f5d11d7f196704a3ec1a6
* NEWS entry for id-linksDaniel Schoepe2011-11-16
| | | | | | This adds a NEWS entry for commit 4a4ada73b751b1916c5dc4d408a8056411566e38 (second try, with whitespace fix)
* Revert "NEWS entry for id-links"David Bremner2011-11-16
| | | | | | This reverts commit e93bf1f842d4d06b2468d1cdbd5e4e25877c7a44. reverting to fix whitespace
* NEWS entry for id-linksDaniel Schoepe2011-11-16
| | | | This adds a NEWS entry for commit 4a4ada73b751b1916c5dc4d408a8056411566e38
* NEWS entry for adding tab-completion to notmuch-searchDaniel Schoepe2011-11-16
| | | | Add a news entry for commit6a280088e6769015ade7758b9790384997a21ff3.
* NEWS: mention improved search buffer performance, change Optimizations to ↵David Bremner2011-11-16
| | | | | | Performance via email: id:"20111116154317.GC2852@mit.edu"
* notmuch.1: bump version numberDavid Bremner2011-11-16
| | | | | | More of a leap than a bump. This is a bit silly keeping 3 files syncronized. At least for this file, I would prefer a solution that generates notmuch.1 from some template at build time.
* RELEASING: update description of "make release".David Bremner2011-11-16
| | | | | | | The additional "safety feature" documented here is motivated by the fact that I use gpg-agent and I don't always get the GPG prompt that Carl was relying on as an abort point. The new version also allows more to be done in "dry run" mode.
* RELEASING: update discussion of version handlingDavid Bremner2011-11-16
| | | | This is definitely reaching the point where it should be automated.
* RELEASING: update symbol handling description for current practice.David Bremner2011-11-16
| | | | | | | | We really did bump SONAME, and we probably will again, but not just for a simple symbol addition. Debian versions generally need to be removed from symbols file; this wasn't a problem before because there was no Debian versions
* NEWS: discuss contrib and nmbugDavid Bremner2011-11-15
| | | | | I mention the possibility of a seperate license here because currently notmuch-deliver is licensed GPL v2 only.
* debian/libnotmuch2.symbols: add notmuch_query_count_threadsDavid Bremner2011-11-15
| | | | Since this is only an added symbol, no soname bump required.
* debian: new changelog stanza for 0.10~rc1-1David Bremner2011-11-15
| | | | | The changelog is a bit minimalist, but we'll do better for the real release.
* version: update to 0.10~rc1David Bremner2011-11-15
| | | | and the usual dance with the python bindings version.
* test: add tests for notmuch search --offset and --limitJani Nikula2011-11-15
| | | | Signed-off-by: Jani Nikula <jani@nikula.org>
* test: add tests for notmuch countJani Nikula2011-11-15
| | | | Signed-off-by: Jani Nikula <jani@nikula.org>
* cli: add support for --output parameter in notmuch countJani Nikula2011-11-15
| | | | | | | Add support for --output=messages (which remains the default) and --output=threads to notmuch count. Signed-off-by: Jani Nikula <jani@nikula.org>
* cli: drop unused code from notmuch countJani Nikula2011-11-15
| | | | | | Remove unused code within #if 0 blocks from notmuch count. Signed-off-by: Jani Nikula <jani@nikula.org>
* cli: add options --offset and --limit to notmuch searchJani Nikula2011-11-15
| | | | | | | | | | | | | | | Add options --offset=[-]N and --limit=M to notmuch search to determine the first result and maximum number of results to display. Option --limit=M limits the maximum number of results to display to M. Option --offset=[-]N skips the first N results; with the leading '-' skip until the Nth result from the end. Note that --offset with a negative N for thread or summary output requires counting the number of matching threads in advance. Signed-off-by: Jani Nikula <jani@nikula.org>
* lib: add function to get the number of threads matching a searchJani Nikula2011-11-15
| | | | | | | | | Add function notmuch_query_count_threads() to get the number of threads matching a search. This is done by performing a search and figuring out the number of unique thread IDs in the matching messages, a significantly heavier operation than notmuch_query_count_messages(). Signed-off-by: Jani Nikula <jani@nikula.org>
* test: Add a test script for "notmuch tag"Austin Clements2011-11-14
|
* news: Store "from" and "subject" headers in the database.Austin Clements2011-11-14
|
* Store "from" and "subject" headers in the database.Austin Clements2011-11-14
| | | | | | | | | | | | | | This is a rebase and cleanup of Istvan Marko's patch from id:m3pqnj2j7a.fsf@zsu.kismala.com Search retrieves these headers for every message in the search results. Previously, this required opening and parsing every message file. Storing them directly in the database significantly reduces IO and computation, speeding up search by between 50% and 10X. Taking full advantage of this requires a database rebuild, but it will fall back to the old behavior for messages that do not have headers stored in the database.
* test/atomicity: change shebang to '#!/usr/bin/env bash'Tomi Ollila2011-11-14
|