aboutsummaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorJani Nikula <jani@nikula.org>2014-11-10 21:27:52 +0200
committerDavid Bremner <david@tethera.net>2014-11-11 08:13:04 +0100
commit049bb7b86ef4b97e217c650dfea8b2e8b9318cda (patch)
tree12cb28332ef915949839a78ac98f4107df299bd4 /NEWS
parent4499c07531787e7d0258f8384ff5e518d18b6bd6 (diff)
NEWS: notmuch insert, search updates
News for - cli: add support for notmuch search --duplicate=N with --output=messages - cli/insert: add post-insert hook - cli/insert: require succesful message indexing for success statu
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS23
1 files changed, 23 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 7a121e4b..0b51a6eb 100644
--- a/NEWS
+++ b/NEWS
@@ -12,6 +12,29 @@ Stopped `notmuch dump` failing if someone writes to the database
process already has the write lock the dump will not start, so
script callers should still check the return value.
+`notmuch insert` requires succesful message indexing for success status
+
+ Previously the `notmuch insert` subcommand indicated success even if
+ the message indexing failed, as long as the message was delivered to
+ file system. This could have lead to delivered messages missing
+ tags, etc. `notmuch insert` is now more strict, also requiring
+ succesful indexing for success status. Use the new `--keep` option
+ to revert to the old behaviour (keeping the delivered message file
+ and returning success even if indexing fails).
+
+`notmuch insert` has gained support for `post-insert` hook
+
+ The new `post-insert` hook is run after message delivery, similar to
+ `post-new`. There's also a new option `notmuch insert --no-hooks` to
+ skip the hook. See the notmuch-hooks(1) man page for details.
+
+`notmuch search` now supports `--duplicate=N` option with `--output=messages`
+
+ Complementing the `notmuch search --duplicate=N --output=files`
+ options, the new `--duplicate=N --output=messages` combination
+ limits output of message IDs to messages matching search terms that
+ have at least `N` files associated with them.
+
Emacs Interface
---------------