aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* emacs: Don't override mm-show-part in notmuch-show-view-partGravatar Austin Clements2013-05-26
| | | | | | | | | | | | | | Previously, notmuch-show-view-part overrode the function binding of mm-show-part to redirect it to notmuch-show-save-part to get notmuch's default file name handling in case mm-display-part decided to fall back to saving the part. In addition to being messy, this depended on the now-deprecated dynamic binding behavior of flet. This patch removes the mm-show-part override in favor of passing the file name in to mm-show-part the way it expects, so we get its default file name handling. It's not clear why we didn't do this before; mm-show-part has supported default file names since at least Emacs 23.1.
* NEWS: a bunch of cli news since 0.15Gravatar Jani Nikula2013-05-26
|
* Merge branch 'release'Gravatar David Bremner2013-05-25
|\ | | | | | | merge back debian-only release into master
| * debian: bump standards version to 3.9.4Gravatar David Bremner2013-05-25
| |
* | NEWS: No Emacs 22 supportGravatar Tomi Ollila2013-05-25
| |
* | debian: package ruby bindingsGravatar Felipe Contreras2013-05-23
| | | | | | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* | ruby: use in-tree notmuch libraryGravatar Felipe Contreras2013-05-23
| | | | | | | | | | | | | | | | | | | | | | | | Currently it simply finds any library available, and if notmuch is installed in the system, it would give priority to that library. Let's implement our own helper functions to link directly to the local library, and give priority to the local header file. Also, add an option to properly check if there are missing symbols. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* | emacs: Compute build dependencies to fix byte compile issuesGravatar Austin Clements2013-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we simply byte compiled each Elisp source file independently. This is actually the wrong thing to do and can lead to issues with macros and performance issues with substitutions because 1) when the byte compiler encounters a (require 'x) form, it will load x.elc in preference to x.el, even if x.el is newer, and as a result may load old macro and substitution definitions and 2) if we update a macro or substitution definition in one file, we currently won't re-compile other files that depend on the file containing the definition. This patch addresses these problems by computing make dependency rules from the (require 'x) forms in the Elisp source files, which we inject into make's dependency database.
* | ruby: fix missing symbol UINT2FIX()Gravatar Felipe Contreras2013-05-23
| | | | | | | | | | | | | | | | It has never existed in Ruby (maybe JRuby). Fortunately the symbols are loaded lazily, so nobody would notice unless they try 'query::count_messages'. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* | devel: add dkg's printmimestructure script to notmuch devel scriptsGravatar David Bremner2013-05-23
| | | | | | | | | | | | | | | | I find this script pretty useful when figuring out who to blame for MIME rendering problems. The notmuch repo will be the new primary home for this script, unless and until a better home turns up.
* | contrib: pick: add a target message for pickGravatar Mark Walters2013-05-20
| | | | | | | | | | | | | | | | This adds a target message for pick which it will jump to when (if) it appears. It adds the target to notmuch-pick-from-show-current-query so that pick goes straight to the message that was current in the show view and it adds target to notmuch-pick-refresh-view so that the current message is preserved.
* | contrib: pick: move save-excursion closer to message insertionGravatar Mark Walters2013-05-20
| | | | | | | | | | | | | | | | | | | | | | | | | | Pick keeps point roughly at the top of the buffer while inserting messages at the end as they come in (from the async parser). Previously the save-excursion to do this was done once for each thread inserted: now it is done for each individual message. The advantage is that the message insertion code can decide where to leave point. In the next patch point will be left on the target message. Note notmuch-pick-insert-msg is unchanged as that is used by the tag display update code.
* | emacs: show: handle inline patch fake parts at top levelGravatar Mark Walters2013-05-20
| | | | | | | | | | The inline patch fake part handler also modifies the content-type so handle this in notmuch-show-insert-bodypart too.
* | emacs:show: separate out handling of application/octet-streamGravatar Mark Walters2013-05-20
| | | | | | | | | | | | | | | | | | | | Currently mime parts are basically handled based on their mime-type with the exception of application/octet-stream parts. Deal with these parts at the top level (notmuch-show-insert-bodypart). This is needed later in the series as we need to put in a part button for each part (which means knowing its mime type) while deferring the actual insertion of the part.
* | emacs: Proper error string handling in search sentinelGravatar Austin Clements2013-05-18
| | | | | | | | | | | | | | Apparently Emacs provides a function to stringify errors properly. Use this in the search sentinel where we have to do our own error messaging, rather than assuming the first error argument will be the descriptive string.
* | emacs: tag: fix compile warningGravatar Mark Walters2013-05-15
| | | | | | | | | | | | | | | | When compiling notmuch-tag.el there is a compile warning: notmuch-tag.el:27:1:Warning: cl package required at runtime Since we have decided to allow runtime use of cl we suppress this warning by adding a tail comment to the file.
* | perf-test: add notmuch-memory-testGravatar David Bremner2013-05-15
| | | | | | | | | | | | Somehow this file was not added to the patch set which split the tests into time and memory tests. Take advantage of the the "new" way of running tests to avoid listing the explicitly.
* | perf-test: run all appropriately named time testsGravatar David Bremner2013-05-15
| | | | | | | | This avoids hassle with manually adding every test to the master list.
* | perf-test: rename time tests to have .sh suffixGravatar David Bremner2013-05-15
| | | | | | | | This will simplify notmuch time tests
* | perf-test: rename memory testsGravatar David Bremner2013-05-15
| | | | | | | | The common suffix will help running them all automatically.
* | man: document search --exclude=allGravatar Peter Wang2013-05-13
| | | | | | | | Document the new search --exclude=all option.
* | test: add tests for search --exclude=allGravatar Peter Wang2013-05-13
| | | | | | | | Test the new search --exclude=all option.
* | cli: add --exclude=all option to notmuch-search.cGravatar Mark Walters2013-05-13
| | | | | | | | Add a --exclude=all option to notmuch search.
* | lib: add --exclude=all optionGravatar Mark Walters2013-05-13
| | | | | | | | | | | | Adds a exclude all option to the lib which means that excluded messages are completely ignored (as if they had actually been deleted).
* | lib/database.cc: change how the parent of a message is calculatedGravatar Aaron Ecay2013-05-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Presently, the code which finds the parent of a message as it is being added to the database assumes that the first Message-ID-like substring of the In-Reply-To header is the parent Message ID. Some mail clients, however, put stuff other than the Message-ID of the parent in the In-Reply-To header, such as the email address of the sender of the parent. This can fool notmuch. The updated algorithm prefers the last Message ID in the References header. The References header lists messages oldest-first, so the last Message ID is the parent (RFC2822, p. 24). The References header is also less likely to be in a non-standard syntax (http://cr.yp.to/immhf/thread.html, http://www.jwz.org/doc/threading.html). In case the References header is not to be found, fall back to the old behavior. V2 of this patch, incorporating feedback from Jani and (indirectly) Austin.
* | test: add tests for the handling of References and In-Reply-To headersGravatar Aaron Ecay2013-05-13
| | | | | | | | | | | | | | | | | | These tests are known_broken, the following commit fixes them. amended per id:87txmi1zq3.fsf@nikula.org id:87vc6yalo7.fsf@zancas.localnet
* | emacs: removed code attempting to support emaces prior to version 23Gravatar Tomi Ollila2013-05-13
| | | | | | | | | | | | | | | | | | The support for emacs version 22 has not worked at least since September 2011 when I attempted to use it. I expanded the support in id:yf6ippgtbn0.fsf@taco2.nixu.fi but that was not enough and then I found it easier to switch to emacs 23. In case one wants to resurrect emacs 22 (or earlier!) support, pick the changes from the patch email referenced above.
* | emacs/notmuch-address.el: add notmuch-address-selection-functionGravatar Tomi Ollila2013-05-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a customizable variable notmuch-address-selection-function and the function with the same name to provide a way for user to change the function called to do address selection. By default the functionality is exactly the same as it has been so far; completing-read is called with the same parameters as before. Setting equivalent lambda expression in place of using notmuch-address-selection-function function is done as follows: (setq notmuch-address-selection-function (lambda (prompt collection initial-input) (completing-read prompt collection nil nil initial-input))) For example drop-in replacement with ido-completing-read can be done easily as an one alternative to the default.
* | cli: config: fix config file save when the file does not existGravatar Jani Nikula2013-05-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The use of realpath(3) in commit 58ed67992d0ec1fa505026105218fa449f7980b0 Author: Jani Nikula <jani@nikula.org> Date: Sun Apr 7 20:15:03 2013 +0300 cli: config: do not overwrite symlinks when saving config file broke config file save when the file does not exist, which results in 'notmuch setup' always failing to create a new config file. Fix by checking ENOENT from realpath(3).
* | test: add basic test for notmuch setupGravatar Jani Nikula2013-05-12
| | | | | | | | And annotate with test_subtest_known_broken. Hooray.
* | man: clarify search --exclude=flagGravatar Peter Wang2013-05-12
| | | | | | | | | | Improve the description of the search --exclude=flag option, using text taken from the commit that introduced the option.
* | man: clarify search --exclude documentationGravatar Peter Wang2013-05-12
| | | | | | | | | | | | | | | | Highlight "excluded messages" as a term with a meaning that may not be obvious. Be explicit about the effects of search --exclude=true and --exclude=false.
* | emacs: add kernel.org mail archive redirectorGravatar Jani Nikula2013-05-05
| | | | | | | | See http://lkml.kernel.org/
* | python: Add bindings for notmuch_thread_get_messagesGravatar Austin Clements2013-05-05
| |
* | go: use a different goconfig packageGravatar Justus Winter2013-05-03
| | | | | | | | | | | | | | | | | | | | | | The notmuch-addrlookup utility uses a third party library to read the notmuch configuration file. The previously used implementation at "github.com/kless/goconfig" vanished, so this patch switches to the implementation at "github.com/msbranco/goconfig". As the implementations differ at the API level, the code is updated accordingly. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
* | lib/message.cc: stale pointer bug (v3)Gravatar Vladimir Marek2013-05-03
| | | | | | | | | | | | | | | | Xapian::TermIterator::operator* returns std::string which is destroyed as soon as (*i).c_str() finishes. The remembered pointer 'term' then references invalid memory. Signed-off-by: Vladimir Marek <vlmarek@volny.cz>
* | emacs: fixed (declare-function ...) definitionsGravatar Tomi Ollila2013-04-30
| | | | | | | | | | | | | | | | Some (declare-function ...) definitions were drifted away from the actual (defun ...)'s. To find the drifts and to verify changes the following command line was used: $ emacs --batch -L emacs --eval '(check-declare-directory "emacs")'
* | man: document NOTMUCH_DEBUG_QUERYGravatar David Bremner2013-04-30
| | | | | | | | | | This is is really functionality of the library, but CLI users might not look at library docs even if they existed beyond notmuch.h
* | cli: mime node: fix compiler warning when building against gmime 2.4Gravatar Jani Nikula2013-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit d487ef9e58bcd193118f19f771d5ef3984616be5 Author: Jani Nikula <jani@nikula.org> Date: Sat Mar 30 15:53:16 2013 +0200 cli: mime node: abstract decryption and signature verification introduced a compiler warning, reported by Mark Walters, when building against gmime 2.4: mime-node.c:224:9: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] Pass the non-const signature validity to the destructor to fix this.
* | TODO: remove some completed todo items from the listGravatar Jani Nikula2013-04-14
| | | | | | | | | | | | Bash completion has been rewritten. Configuration file saves follow symlinks. There is --config=FILE top level option to specify configuration file.
* | cli: config: do not overwrite symlinks when saving config fileGravatar Jani Nikula2013-04-14
| | | | | | | | | | | | | | Use realpath to canonicalize the config path before writing. Previously 'notmuch setup' and 'notmuch config set' overwrote the config file even if it was a symbolic link.
* | test: add some config file testsGravatar Jani Nikula2013-04-14
| | | | | | | | | | Test the --config=FILE option, and add a broken test for writing config file through a symbolic link.
* | Revert "emacs: functions to import sender or recipient into BBDB"Gravatar David Bremner2013-04-06
| | | | | | | | | | | | | | | | This reverts commit 238bf4cb09423cac4efa968e70184daad39e2846. This commit was causing a build failure. Bad me for not checking before pushing.
* | emacs: functions to import sender or recipient into BBDBGravatar Daniel Bergey2013-04-06
| | | | | | | | | | | | | | | | From a show buffer, notmuch-bbdb/snarf-from imports the sender into bbdb. notmuch-bbdb/snarf-to imports all recipients. Newly imported contacts are reported in the minibuffer / Messages buffer. Both functions use the BBDB parser to recognize email address formats.
* | nmbug-status: only import notmuch when neededGravatar Jani Nikula2013-04-06
| | | | | | | | | | Make it possible to use the script to query search views without notmuch python bindings installed.
* | nmbug-status: add support for querying the search viewsGravatar Jani Nikula2013-04-06
| | | | | | | | Make it easy for scripts to read the views and corresponding searches.
* | cli: conform to same conditional build style as elsewhere in notmuch-showGravatar Jani Nikula2013-04-01
| | | | | | | | | | | | | | Conform to the same style for #ifdef GMIME_ATLEAST_26 conditional builds as elsewhere. There are no functional changes.
* | cli: mime node: abstract decryption and signature verificationGravatar Jani Nikula2013-04-01
| | | | | | | | | | | | | | | | | | The code filled with #ifdef GMIME_ATLEAST_26 is difficult to read. Abstract the decryption and signature verification into functions, with separate implementations for GMime 2.4 and 2.6, to clarify the code. There should be no functional changes.
* | cli: crypto: abstract gpg context creation for clarityGravatar Jani Nikula2013-04-01
| | | | | | | | | | | | | | | | The code filled with #ifdef GMIME_ATLEAST_26 is difficult to read. Abstract gpg context creation into a function, with separate implementations for GMime 2.4 and 2.6, to clarify the code. There should be no functional changes.
* | emacs: hello: use batch countGravatar Mark Walters2013-04-01
| | | | | | | | | | | | | | | | | | | | | | | | This modifies notmuch hello to use the new count --batch functionality. It should give exactly the same results as before but under many conditions it should be much faster. In particular it is much faster for remote use. The code is a little ugly as it has to do some working out of the query when asking the query and some when dealing with the result. However, the code path is exactly the same in both local and remote use.