]> git.cworth.org Git - notmuch-wiki/blob - news/release-0.6.mdwn
go for level 3 header instead of level 4 header...
[notmuch-wiki] / news / release-0.6.mdwn
1 [[!meta date="2011-07-01"]]
2
3 Notmuch 0.6 (2011-07-01)
4 =======================
5
6 New, general features
7 ---------------------
8
9 ### Folder-based searching
10
11   Notmuch queries can now include a search term to match the
12   directories in which mail files are stored (within the mail
13   storage). The syntax is as follows:
14
15         folder:<path>
16
17   For example, one might use things such as:
18
19         folder:spam
20         folder:2011-*
21         folder:work/todo
22
23   to match any path containing a directory "spam", "work/todo", or
24   containing a directory starting with "2011-", respectively.
25
26   This feature is particularly useful for users of delivery-agent
27   software (such as procmail or maildrop) that is filtering mail and
28   delivering it to particular folders, or users of systems such as
29   Gmail that use filesystem directories to indicate message tags.
30
31   NOTE: Only messages that are newly indexed with this version of
32   notmuch will be searchable with folder: terms. In order to enable
33   this feature for all mail, the entire notmuch index will need to be
34   rebuilt as follows:
35
36         notmuch dump > notmuch.dump
37         # Backup, then remove notmuch database ($MAIL/.notmuch)
38         notmuch new
39         notmuch restore notmuch.dump
40
41 ### Support for PGP/MIME
42
43   Both the command-line interface and the emacs-interface have new
44   support for PGP/MIME, detailed below. Thanks to Daniel Kahn Gillmor
45   and Jameson Graef Rollins for making this happen.
46
47 ### New, automatic tags: "signed" and "encrypted"
48
49   These tags will automatically be applied to messages containing
50   multipart/signed and multipart/encrypted parts.
51
52   NOTE: Only messages that are newly indexed with this version of
53   notmuch will receive these tags.
54
55 New command-line features
56 -------------------------
57
58 ### Add new "notmuch show --verify" option for signature verification
59
60   This option instruct notmuch to verify the signature of
61   PGP/MIME-signed parts.
62
63 ### Add new "notmuch show --decrypt" and "notmuch reply --decrypt" options
64
65   This option instructs notmuch to decrypt PGP/MIME-encrypted parts.
66   Note that this feature currently requires gpg-agent and a passphrase entry
67   tool (e.g. pinentry-gtk or pinentry-curses).
68
69 ### Proper nesting of multipart parts in "notmuch show" output
70
71   MIME parts are now display with proper nesting to reflect original
72   MIME hierarchy of a message. This allows clients to correctly
73   analyze the MIME structure, (such as, for example, determining to
74   which parts a signature part applies).
75
76 ### Add new "notmuch show --part" option
77
78   This is a replacement for the older "notmuch part" command, (which
79   is now deprecated—it should still work as always, but is no longer
80   documented). Putting part output under "notmuch show" allows for all
81   of the "notmuch show" options to be applied when extracting a single
82   part, (such as --format=json for extracting a message part with JSON
83   formatting).
84
85 ### Deprecate "notmuch search-tags" (in favor of "notmuch search --output=tags *")
86
87   The "notmuch search-tags" sub-command has been redundant since the
88   addition of the --output=tags option to "notmuch search". We now
89   make that more clear by deprecating "notmuch search-tags", (dropping
90   it from the documentation). We do continue to support the old syntax
91   by translating it internally to the new call.
92
93 Performance improvements
94 ------------------------
95
96 ### Faster searches (by doing fewer searches to construct threads)
97
98   Whenever a user asks for search results as threads, notmuch first
99   performs a search for messages matching the query, then performs
100   additional searches to find other messages in the resulting threads.
101
102   Removing inefficiencies and redundancies in these secondary searches
103   results in a measured speedups of 1.5x for a typical search.
104
105 ### Faster searches (by doing fewer passes to gather message data)
106
107   Optimizing Xapian data access patterns (using a single pass to get
108   all message-document data rather than a pass for each data type)
109   results in a measured speedup of 1.7x for a typical search.
110
111   The benefits of this optimization combine with the preceding
112   optimization. With both in place, Austin Clements measured a speedup
113   of 2.5x for a search of all messages in his inbox (was 4.5s, now
114   1.8s). Thanks, Austin!
115
116 ### Faster initial indexing
117
118   More efficient indexing of new messages results in a measured
119   speedup of 1.4x for the initial indexing of 3 GB of mail (1h 14m
120   rather than 1h 46m). Thanks to Austin Clements and Michal Sojka.
121
122 ### Make "notmuch new" faster for unchanged directories
123
124   Optimizing to not do any further examinations of sub-directories
125   when the filesystem indicates that a directory is unchanged from the
126   last "notmuch new" results in measured speedups of 8.5 for the "No
127   new mail" case, (was 0.77s, now 0.09s). Thanks to Karel Zak.
128
129 New emacs-interface features
130 ----------------------------
131
132 ### Support for PGP/MIME (GnuPG)
133
134   Automatically indicate validity of signatures for multipart/signed
135   messages.  Automatically display decrypted content for
136   multipart/encrypted messages.  See the emacs variable
137   notmuch-crypto-process-mime for more information. Note that this
138   needs gpg-agent and a pinentry tool just as the command-line tools.
139   Also note there is no support SMIME yet.
140
141 ### Output of pipe command is now displayed if pipe command fails
142
143   This is extremely useful in the common use case of piping a patch to
144   "git am". If git fails to cleanly merge the patch the error messages
145   from the failed merge are now clearly displayed to the user, (where
146   previously they were silently hidden from the user).
147
148 ### User-selectable From address
149
150   A user can choose which configured email addresses should be used as
151   the From address whenever composing a new message. To do so, simply
152   press C-u before the command which will open a new message. Emacs
153   will prompt for the from address to use.
154
155   The user can customize the "Notmuch Identities" setting in the
156   notmuch customize group in order to use addresses other than those in
157   the notmuch configuration file if desired.
158
159   The user can also choose to always be prompted for the from address
160   when composing a new message (without having to use C-u) by setting
161   the "Notmuch Always Prompt For Sender" option in the notmuch
162   customize group.
163
164 ### Hiding of repeated subjects in collapsed thread view
165
166   In notmuch-show mode, if a collapsed message has the same subject as
167   its parent, the subject is not shown.
168
169 ### Automatic detection and hiding of original message in top-posted  message
170
171   When a message contains a line looking something like:
172
173         ----- Original Message -----
174
175   emacs hides this and all subsequent lines as an "original message",
176   (allowing the user to click or press enter on the "original message"
177   button to display it again). This makes the handling of top-posted
178   citations work much like conventional citations.
179
180 ### New hooks for running code when tags are modified
181
182   Some users want to perform additional actions whenever a particular
183   tag is added/removed from a message. This could be used to, for
184   example, interface with some external spam-recognition training
185   tool. To facilitate this, two new hooks are added which can be
186   modified in the following settings of the notmuch customize group:
187
188         Notmuch Before Tag Hook
189         Notmuch After Tag Hook
190
191 ### New optional support for hiding some multipart/alternative parts
192
193   Many emails are sent with redundant content within a
194   multipart/alternative group (such as a text/plain part as well as a
195   text/html part). Users can configure the setting:
196
197         Notmuch Show All Multipart/Alternative Parts
198
199   to "off" in the notmuch customize group to have the interface
200   automatically hide some part alternatives (such as text/html
201   parts). This new part hiding is not configured by default yet
202   because there's not yet a simple way to re-display such a hidden
203   part if it is not actually redundant with a displayed part.
204
205 ### Better rendering of text/x-vcalendar parts
206
207   These parts are now displayed in a format suitable for use with the
208   emacs diary.
209
210 ### Avoid getting confused by Subject and Author fields with newline characters
211
212   Replacing all characters with ASCII code less than 32 with a question mark.
213
214 Cleaner display of From line in email messages (remove double quotes,
215 and drop "name" if it's actually just a repeat of the email address).
216
217 Vim interface improvements
218 --------------------------
219
220 Felipe Contreras provided a number of updates for the vim interface:
221
222   * Using sendmail directly rather than mailx,
223   * Implementing archive in show view
224   * Add support to mark as read in show and search views
225   * Add delete commands
226   * Various cleanups.
227
228 Bindings improvements
229 ---------------------
230
231 ### Ruby bindings are now much more complete
232
233   Including `QUERY.sort`, `QUERY.to_s`, `MESSAGE.maildir_flags_to_tags`,
234   `MESSAGE.tags_to_maildir_flags`, and `MESSAGE.get_filenames`
235
236 ### Python bindings have been updated and extended
237
238   (docs online at http://packages.python.org/notmuch/)
239
240   New bindings:
241   - `Message().get_filenames()`,
242   - `Message().tags_to_maildir_flags()`, `Message().maildir_flags_to_tags()`
243   - `list(Threads())` and `list(Messages)` works now
244
245   - `Message().__cmp__() and __hash__()`
246     These allow, for example:
247         if msg1 == msg2: ...
248
249   As well as set arithmetic on `Messages()`:
250
251         s1, s2= set(msgs1), set(msgs2)
252         s1.union(s2)
253         s2 -= s1
254
255   Removed:
256   - len(Messages()) as it exhausted the iterator.
257     Use len(list(Messages())) or
258     `Query.count_messages()` to get the length.
259
260 ### Added initial Go bindings in bindings/go
261
262 New build-system features
263 -------------------------
264
265 ### Added support for building in a directory other than the source directory
266
267   This can be used with the widely-supported idiom of simply running
268   the configure script from some other directory:
269
270         mkdir build
271         cd build
272         ../configure
273         make
274
275 ### Fix to save configure options for future, implicit runs of configure
276
277   When a user updates the source (such as with "git pull") calling
278   "make" may cause an automatic re-run of the configure script. When
279   this happens, the configure script will automatically be called with
280   the same options the user originally passed in the most-recent
281   manual invocation of configure.
282
283 New test-suite feature
284 ----------------------
285
286 ### Binary for bash for running test suite now located via PATH
287
288   The notmuch test suite requires a fairly recent version of bash (>=
289   bash 4). As some systems supply an older version of bash at
290   /bin/bash, the test suite is now updated to search $PATH to locate
291   the bash binary. This allows users of systems with old /bin/bash to
292   simply install bash >= 4 somewhere on $PATH before /bin and then use
293   the test suite.
294
295 ### Support for testing output with a trailing newline
296
297   Previously, some tests would fail to notice a difference in the
298   presence/absence of a trailing newline in a program output, (which
299   has led to bugs in the past). Now, carefully-written tests (using
300   `test_expect_equal_file` rather than `test_expect_equal`) will detect
301   any change in the presence/absence of a trailing newline. Many tests
302   are updated to take advantage of this.
303
304 ### Avoiding accessing user's $HOME while running test suite
305
306   The test suite now carefully creates its own HOME directory. This
307   allows the test suite to be run with no existing HOME directory, (as
308   some build systems apparently do), and avoids test-suite differences
309   due to configuration files in the users HOME directory.
310
311
312 General bug fixes
313 -----------------
314
315 ### Output *all* files for "notmuch search --output=files"
316
317   For the cases where multiple files have the same Message ID,
318   previous versions of notmuch would output only one such file. This
319   command is now fixed to correctly output all files.
320
321 ### Fixed spurious search results from "overlapped" indexing of addresses
322
323   This fixed a bug where a search for:
324
325         to:user@elsewhere.com
326
327   would incorrectly match a message sent:
328
329         To: user@example,com, someone@elsewhere.com
330
331 ### Fix --output=json when search has no results
332
333   A bug present since notmuch 0.4 had caused searches with no results
334   to produce an invalid json object. This is now fixed to cleanly
335   return a valid json object representing an empty array "[]" as
336   expected.
337
338 ### Fix the automatic detection of the From address for "notmuch reply" from the Received headers in some cases.
339
340 ### Fix core dump on DragonFlyBSD due to -1 return value from `sysconf(_SC_GETPW_R_SIZE_MAX)`.
341
342 ### Cleaned up several memory leaks
343
344 ### Eliminated a few, rare segmentation faults and a double-free
345
346 ### Fix libnotmuch library to only export notmuch API functions
347
348   Previous release of the notmuch library also exported some Xapian
349   C++ exception type symbols. These were never part of the library
350   interface and were never intended to be exported.
351
352 Emacs-interface bug fixes
353 -------------------------
354
355 ### Display any unexpected output or errors from "notmuch search" invocations
356
357   Previously any misformatted output or trailing error messages were
358   silently ignored. This output is now clearly displayed. This fix was
359   very helpful in identifying and fixing the bug described below.
360
361 ### Fix bug where some threads would be missing from large search results
362
363   When a search returned a "large" number of results, the emacs
364   interface was incorrectly dropping one thread every time the output
365   of the "notmuch search" process spanned the emacs read-buffer. This
366   is now fixed.
367
368 ### Avoid re-compression of .gz files (and similar) when saving attachment
369
370   Emacs was being too clever for its own good and trying to
371   re-compress pre-compressed .gz files when saving such attachments
372   (potentially corrupting the attachment). The emacs interface is
373   fixed to avoid this bug.
374
375 ### Fix hiding of a message when a previously-hidden citation is visible
376
377   Previously the citation would remain visible in this case. This is
378   fixed so that hiding a message hides all parts.