<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/doc, branch 0.38.1_pre0</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=0.38.1_pre0</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=0.38.1_pre0'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2023-09-12T11:07:37Z</updated>
<entry>
<title>build: clean up __pycache__ directories</title>
<updated>2023-09-12T11:07:37Z</updated>
<author>
<name>David Bremner</name>
<email>david@tethera.net</email>
</author>
<published>2023-09-10T23:13:13Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=b21747e0c3b7e2a779f5fad10cef4c8fcf233ae4'/>
<id>urn:sha1:b21747e0c3b7e2a779f5fad10cef4c8fcf233ae4</id>
<content type='text'>
These are generated indirectly by certain uses of python in the build.
</content>
</entry>
<entry>
<title>doc: update copyright date</title>
<updated>2023-08-24T11:03:46Z</updated>
<author>
<name>David Bremner</name>
<email>david@tethera.net</email>
</author>
<published>2023-08-24T11:03:46Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=5ed121bed92601e5512258f5a5f7bf9dbb705fd8'/>
<id>urn:sha1:5ed121bed92601e5512258f5a5f7bf9dbb705fd8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>doc: fix typos</title>
<updated>2023-04-13T14:14:58Z</updated>
<author>
<name>Jakub Wilk</name>
<email>jwilk@jwilk.net</email>
</author>
<published>2023-04-13T13:52:11Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=1b878877d928a5279c3c0003d067d8b875f7e42a'/>
<id>urn:sha1:1b878877d928a5279c3c0003d067d8b875f7e42a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lib: index attachments with mime types matching index.as_text</title>
<updated>2023-04-02T22:24:43Z</updated>
<author>
<name>David Bremner</name>
<email>david@tethera.net</email>
</author>
<published>2023-01-06T00:02:06Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a554690d6af0ac8cb55166a20efd0f449abde389'/>
<id>urn:sha1:a554690d6af0ac8cb55166a20efd0f449abde389</id>
<content type='text'>
Instead of skipping indexing all attachments, we check of a (user
configured) mime type that is indexable as text.
</content>
</entry>
<entry>
<title>emacs: notmuch-tree-outline-mode</title>
<updated>2023-02-20T12:58:32Z</updated>
<author>
<name>jao</name>
<email>jao@gnu.org</email>
</author>
<published>2022-12-13T02:15:42Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=f63d14a8c12ad76024d2865c0223a06f6f4bb372'/>
<id>urn:sha1:f63d14a8c12ad76024d2865c0223a06f6f4bb372</id>
<content type='text'>
With this mode, one can fold trees in the notmuch-tree buffer as if
they were outlines, using all the commands provided by
outline-minor-mode.  We also define a couple of movement commands
that, optional, will ensure that only the thread around point is
unfolded.

The implementation is based on registering a :level property in the
messages p-list, that is then used by outline-minor-mode to to
recognise headers.

Amended by db: Copy docstring to manual and edit for presentation. Add
two tests. Fix typo "wether".
</content>
</entry>
<entry>
<title>doc: mark `--output=summary` as default</title>
<updated>2022-12-03T13:32:48Z</updated>
<author>
<name>Michael J Gruber</name>
<email>git@grubix.eu</email>
</author>
<published>2022-11-30T13:58:34Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a5f7efd7221f338982dbf1b72692bf9095a9a96a'/>
<id>urn:sha1:a5f7efd7221f338982dbf1b72692bf9095a9a96a</id>
<content type='text'>
`notmuch search` behaves differently depending on the output option: It
either outputs information pertaining to all threads with matching
messages (summary, threads) or to all matching messages (messages,
files, tags). The man page refres solely to the former in the main
description.

Help the user by clearly marking `summary` as the default output option.

Signed-off-by: Michael J Gruber &lt;git@grubix.eu&gt;
</content>
</entry>
<entry>
<title>cli: add options --offset and --limit to notmuch show</title>
<updated>2022-11-05T17:18:15Z</updated>
<author>
<name>Robin Jarry</name>
<email>robin@jarry.cc</email>
</author>
<published>2022-10-18T19:41:58Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=793f2980910f612fa33806ef71fa7ee35d093657'/>
<id>urn:sha1:793f2980910f612fa33806ef71fa7ee35d093657</id>
<content type='text'>
notmuch search does not output header values. However, when browsing
through a large email corpus, it can be time saving to be able to
paginate without running notmuch show for each message/thread.

Add --offset and --limit options to notmuch show. This is inspired from
commit 796b629c3b82 ("cli: add options --offset and --limit to notmuch
search").

Update man page, shell completion and add a test case to ensure it works
as expected.

Cc: Tim Culverhouse &lt;tim@timculverhouse.com&gt;
Cc: Tomi Ollila &lt;tomi.ollila@iki.fi&gt;
Signed-off-by: Robin Jarry &lt;robin@jarry.cc&gt;
</content>
</entry>
<entry>
<title>lib: add field processor for lastmod: prefix</title>
<updated>2022-09-03T11:43:33Z</updated>
<author>
<name>David Bremner</name>
<email>david@tethera.net</email>
</author>
<published>2022-08-14T15:02:59Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=2e5ef69fbf9ce9d67720d5d4abba3026302734e5'/>
<id>urn:sha1:2e5ef69fbf9ce9d67720d5d4abba3026302734e5</id>
<content type='text'>
By sharing the existing logic used by the sexp query parser, this
allows negative lastmod revisions to be interpreted as relative to the
most recent revision.
</content>
</entry>
<entry>
<title>lib/sexp: provide relative lastmod queries</title>
<updated>2022-09-03T11:36:53Z</updated>
<author>
<name>David Bremner</name>
<email>david@tethera.net</email>
</author>
<published>2022-08-14T15:02:57Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=606d9b02e46498874f6c3b5af18467c870e8658b'/>
<id>urn:sha1:606d9b02e46498874f6c3b5af18467c870e8658b</id>
<content type='text'>
Test the relatively trivial logic changes for the sexp query parser
first before refactoring that logic to share with the infix query
parser.
</content>
</entry>
<entry>
<title>doc/emacs: use define-key instead of hard-coding markup</title>
<updated>2022-08-11T10:48:54Z</updated>
<author>
<name>David Bremner</name>
<email>david@tethera.net</email>
</author>
<published>2022-07-31T11:33:23Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=b76f73efe3a97c707b3b14ca41e7748e21938fea'/>
<id>urn:sha1:b76f73efe3a97c707b3b14ca41e7748e21938fea</id>
<content type='text'>
Add keys to index. Allow indexing of both keys and commands. Use
standard typesetting for multiple keybindings.
</content>
</entry>
</feed>
