]> git.notmuchmail.org Git - notmuch/log
notmuch
3 weeks agoSet 'untrusted-content' to t in all modes
Stefan Kangas [Wed, 12 Mar 2025 09:36:21 +0000 (06:36 -0300)]
Set 'untrusted-content' to t in all modes

Instead of trying to guess in which modes this is safe not to set in,
let's just set it in all of them.

Background (added by db):

untrusted-content was added in Emacs 29.3 and is currently set by Gnus
and used by org-mode to prevent certain unsafe operations. I think the
intent is to use it for blocking more unsafe operations in the future.

3 weeks agobindings/python-cffi: fix docstring for message.header()
Michael J Gruber [Tue, 4 Mar 2025 12:39:43 +0000 (13:39 +0100)]
bindings/python-cffi: fix docstring for message.header()

The cffi bindings raise a LookupError in case a header is not present.
Adjust the docstring to say so.

The legacy bindings behaved differently, and this is one of the things
to be aware of when migrating to the cffi bindings.

3 weeks agoDebian build-deps: include emacs-pgtk in conjunction
Daniel Kahn Gillmor [Mon, 3 Mar 2025 21:47:02 +0000 (16:47 -0500)]
Debian build-deps: include emacs-pgtk in conjunction

Debian developers with the pure GTK+ variant of emacs (which does not
support X11 at all, as it builds entirely against the GTK Wayland
backend) should also be able to treat the build-dependencies as
satisfied.

Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
3 weeks agoemacs/tree: add call to notmuch-hl-line-mode from process-filter
David Bremner [Sat, 10 Aug 2024 17:36:25 +0000 (14:36 -0300)]
emacs/tree: add call to notmuch-hl-line-mode from process-filter

This removes the visual gap/stutter between when the screen fills and
when the hl-line "cursor" is drawn.  It is not obviously how to
robustly test this, since it the observable effect is purely a matter
of timing.

3 weeks agoemacs/tree: call notmuch-hl-line-mode from tree-sentinel
David Bremner [Sat, 10 Aug 2024 17:36:24 +0000 (14:36 -0300)]
emacs/tree: call notmuch-hl-line-mode from tree-sentinel

There is a a perceptible gap between when the tree shows up and when
the hl-line is visible, but this is better than the previous state
where the line did not show up at all until the user moved the cursor.

3 weeks agoemacs/tree: condition hl-line-mode on notmuch-hl-line
David Bremner [Sat, 10 Aug 2024 17:36:23 +0000 (14:36 -0300)]
emacs/tree: condition hl-line-mode on notmuch-hl-line

It isn't clear that this call to hl-line-mode will survive the coming
re-organization to stop relying on hooks, but incrementally this at
least makes the disabling behaviour consistent.

3 weeks agoemacs: replace use of hook to draw hl-line in search mode
David Bremner [Sat, 10 Aug 2024 17:36:22 +0000 (14:36 -0300)]
emacs: replace use of hook to draw hl-line in search mode

In the thread at id:87fsfuuxwn.fsf@thinkbox, a bug is discussed where
the point and hl-line overlay get out of sync, leading the user to
open the wrong message. As far as I can tell this is caused by
notmuch-hl-mode being invoked too early.

This change bypasses the logic preventing notmuch-search-hook being
called only once, so that the overlay is updated later after the
buffer is full(er).

This change may lead to the overlay being updated multiple times; if
this is annoying we can add a similar buffer local variable to ensure
it is only called once.

The extra logic to check notmuch-search-target-line reduces the
flicker somewhat by not highlighting the first line every time.

3 weeks agotest/emacs: add tests for hl-line-mode integration
David Bremner [Sat, 10 Aug 2024 17:36:21 +0000 (14:36 -0300)]
test/emacs: add tests for hl-line-mode integration

Most of the known broken tests replicate (my intepretation of) the bug
reported at id:87fsfuuxwn.fsf@thinkbox (or some unreported, but
probably related bugs in tree/unthreaded view). The last 3 broken
tests are just unimplimented planned functionality.

3 weeks agoemacs: add defcustom to control hl-line mode
David Bremner [Sat, 10 Aug 2024 17:36:20 +0000 (14:36 -0300)]
emacs: add defcustom to control hl-line mode

Currently the presence of hl-line highlighting is controlled
implicitely by hooks. In future commits it will be migrated to use
this variable.

3 weeks agodebian: increase test timeout to 10m archive/debian/0.39_rc2-2 debian/0.39_rc2-2
David Bremner [Tue, 11 Mar 2025 22:39:32 +0000 (19:39 -0300)]
debian: increase test timeout to 10m

Workaround for slow riscv64 autobuilders.

3 weeks agodebian: changelog for 0.39~rc2-1 0.39_rc2 archive/debian/0.39_rc2-1 debian/0.39_rc2-1
David Bremner [Tue, 11 Mar 2025 00:01:55 +0000 (21:01 -0300)]
debian: changelog for 0.39~rc2-1

3 weeks agoversion: bump to 0.39~rc2
David Bremner [Mon, 10 Mar 2025 23:57:57 +0000 (20:57 -0300)]
version: bump to 0.39~rc2

3 weeks agoruby: fix "undefining the allocator of T_DATA" warnings
Johannes Larsen [Sun, 1 Sep 2024 00:02:10 +0000 (02:02 +0200)]
ruby: fix "undefining the allocator of T_DATA" warnings

Ruby 3.2 introduced a warning when C-extensions use structs without
redefining the allocation default allocation routine meant for objects.
See https://bugs.ruby-lang.org/issues/18007 for details.

In the Ruby bindings this happens at `Data_Wrap_Notmuch_Object` call
sites, so the object types used there needed to update their allocation.

This ruby code (given a database at the hardcoded path with messages
matching `tag:tmp`) exercise all the ruby objects:

    require 'notmuch'
    Notmuch::Database.open File.expand_path("~/mail") do |db|
      db.get_directory("/tmp")
      db.query("tag:tmp").search_threads.each do |t|
        t.messages.each do |m|
          puts m.header("Subject")
        end
      end
    end

Before these changes with ruby 3.2.5 and notmuch 0.38.3 it outputs:

    notmuch.rb:5: warning: undefining the allocator of T_DATA class Notmuch::Query
    notmuch.rb:5: warning: undefining the allocator of T_DATA class Notmuch::Threads
    notmuch.rb:5: warning: undefining the allocator of T_DATA class Notmuch::Thread
    notmuch.rb:6: warning: undefining the allocator of T_DATA class Notmuch::Messages
    notmuch.rb:6: warning: undefining the allocator of T_DATA class Notmuch::Message
    notmuch release 0.38.3 now available

(the last line is the message I tagged with tmp), and after the changes:

    notmuch release 0.38.3 now available

4 weeks agodocs: avoid nmbug in notmuch-git.1
Michael J Gruber [Mon, 24 Feb 2025 10:20:03 +0000 (11:20 +0100)]
docs: avoid nmbug in notmuch-git.1

These days, `nmbug` is `notmuch-git` with special defaults, so avoid the
term `nmbug` in the doc when we talk about `notmuch-git` in general.

Also, spell git in lower case (as we do for notmuch) except for the one
case where we name the beast.

5 weeks agoAccept "key-missing" from a signature from a revoked key
Daniel Kahn Gillmor [Thu, 27 Feb 2025 18:14:08 +0000 (13:14 -0500)]
Accept "key-missing" from a signature from a revoked key

We have traditionally expected a signature to show up as "revoked"
when the signing key is revoked.  However, GnuPG's recent fix to avoid
a denial of service against legitimate signatures appears to have
changed the status of signature verification from keys which happen to
have been revoked.

See https://bugs.debian.org/1098995 and https://dev.gnupg.org/T7547

This change makes the test suite a little bit less brittle while we
look for a resolution from upstream.  It should probably also be
backported to debian unstable unless a notmuch release to unstable is
imminent.

Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
5 weeks agopython: Fix message ID docstring
Floris Bruynooghe [Mon, 24 Feb 2025 20:08:19 +0000 (21:08 +0100)]
python: Fix message ID docstring

The messageidb attribute does not exist.  The returned BinString type
already allows use as both strings and binary.  Presumably this was
written before that type was adopted.

5 weeks agodebian: upload to experimental instead of unstable archive/debian/0.39_rc1-1 debian/0.39_rc1-1
David Bremner [Tue, 25 Feb 2025 20:35:44 +0000 (16:35 -0400)]
debian: upload to experimental instead of unstable

5 weeks agoversion: bump to 0.39~rc1
David Bremner [Tue, 25 Feb 2025 20:15:24 +0000 (16:15 -0400)]
version: bump to 0.39~rc1

5 weeks agodebian: changelog stanza for 0.39~rc1-1
David Bremner [Tue, 25 Feb 2025 20:11:07 +0000 (16:11 -0400)]
debian: changelog stanza for 0.39~rc1-1

5 weeks agotest/emacs: add workaround for Emacs 30 pp changes
David Bremner [Tue, 25 Feb 2025 11:25:59 +0000 (07:25 -0400)]
test/emacs: add workaround for Emacs 30 pp changes

This relies on the fact that setting pp-default-function has no effect
for Emacs <30.

5 weeks agoConsolidate duplicated dpkg-dev requirements
Xiyue Deng [Mon, 3 Feb 2025 02:21:23 +0000 (18:21 -0800)]
Consolidate duplicated dpkg-dev requirements

* Keep dpkg-dev (>= 1.22.5) which is added for t64 transition.

5 weeks agodebian: changelog for 0.39~rc0-1 0.39_rc0 archive/debian/0.39_rc0-1 debian/0.39_rc0-1
David Bremner [Sat, 22 Feb 2025 11:44:59 +0000 (07:44 -0400)]
debian: changelog for 0.39~rc0-1

Close a few Debian bugs.

5 weeks agoversion: bump to 0.39~rc0
David Bremner [Sat, 15 Feb 2025 19:46:06 +0000 (15:46 -0400)]
version: bump to 0.39~rc0

Normally this would be done as part of the release process, rather
than committed intially to master, but in this case I want to test the
change to python bindings version handling in the previous commit.

5 weeks agobindings/python: strip ~ from python version
David Bremner [Sat, 15 Feb 2025 19:49:53 +0000 (15:49 -0400)]
bindings/python: strip ~ from python version

Inspired by a suggestion of Xiyue Deng, this change ensures that
the python bindings have a version that recent setuptools is happy
with.

This will have the unfortunate side effect of the python view of the
version number differing from the rest of notmuch for the
pre-releases. The alternative would be to transform the version
numbers for the Debian packages for the pre-releases, as there is now
no version scheme that works for both, since setuptools started
rejecting versions with "~" in them.  If we decide to go the latter
way in the future, this change is easy to revert.

5 weeks agobuild: remove handling for legacy python bindings version
David Bremner [Sat, 15 Feb 2025 19:41:29 +0000 (15:41 -0400)]
build: remove handling for legacy python bindings version

The legacy python bindings are no longer built.

5 weeks agopython: move legacy python bindings to contrib.
David Bremner [Sat, 15 Feb 2025 19:30:43 +0000 (15:30 -0400)]
python: move legacy python bindings to contrib.

This forces us to verify the build and test suite completes without
the legacy python bindings.

As of this commit the legacy python bindings are unsupported by
notmuch. They are provided in contrib/ for now, but will most likely
eventually be removed from there as well. We recommend that
downstream/distro packagers phase out their packages for the legacy
python bindings.

5 weeks agopython: fix documentation typo
David Bremner [Sat, 15 Feb 2025 19:27:51 +0000 (15:27 -0400)]
python: fix documentation typo

The method is actually called 'getall'.

5 weeks agotest/message-property: convert python tests from legacy bindings
David Bremner [Sat, 15 Feb 2025 19:22:53 +0000 (15:22 -0400)]
test/message-property: convert python tests from legacy bindings

One test is deleted since that method is not provided by the new
bindings. Similar things can be done by accessing the PropertiesMap
returned by properties.

This change is a prelude to removing the legacy bindings from the build.

5 weeks agotest/count: convert library test from python to C
David Bremner [Sat, 15 Feb 2025 17:58:49 +0000 (13:58 -0400)]
test/count: convert library test from python to C

The new python bindings do not support modifying query objects, so
convert to C. There is a bit more boilerplate to handle errors but
otherwise it is essentially a line by line translation.

5 weeks agotest: drop tests for legacy python bindings
David Bremner [Sat, 15 Feb 2025 17:57:13 +0000 (13:57 -0400)]
test: drop tests for legacy python bindings

This is a prelude to removing the legacy bindings from the build.

5 weeks agodebian: stop packaging legacy python bindings.
David Bremner [Sun, 9 Feb 2025 19:03:46 +0000 (15:03 -0400)]
debian: stop packaging legacy python bindings.

This is in preparation for moving them to contrib and dropping them
from the test suite upstream.

6 weeks agonotmuch-show-imenu-prev-index-position-function: Don't recenter
Damien Cassou [Sun, 16 Feb 2025 21:22:23 +0000 (22:22 +0100)]
notmuch-show-imenu-prev-index-position-function: Don't recenter

The previous version of
notmuch-show-imenu-prev-index-position-function was calling
notmuch-show-previous-message which was recentering the window. This
is a problem when which-func-mode is active because which-func-mode is
called each time the user moves point around.

Because this function is only meant to be executed by imenu, there is
no reason to recenter the window. For the same reason, the new
implementation doesn't have to follow strictly how
notmuch-show-previous-message is implemented because imenu only places
point at very specific locations before calling
notmuch-show-imenu-prev-index-position-function.

8 weeks agofix segfaults in Python cFFI API and add tests
Lars Kotthoff [Thu, 6 Feb 2025 02:52:51 +0000 (19:52 -0700)]
fix segfaults in Python cFFI API and add tests

Several iterators in the Python cFFI API destroyed the objects they iterated
over too early (when the iterator was exhausted), causing subsequent segfaults
in common cases like creating a list from the iterator. This patch fixes the
segfaults and add tests to ensure that they don't happen again.

2 months agoRevert "bump versions to 0.39~rc0"
David Bremner [Sun, 26 Jan 2025 15:30:28 +0000 (11:30 -0400)]
Revert "bump versions to 0.39~rc0"

This reverts commit deea909993513ec6fd800b7571649582d994dcbc.

2 months agodocs: add 2025 to copyright years
David Bremner [Sun, 26 Jan 2025 13:46:43 +0000 (09:46 -0400)]
docs: add 2025 to copyright years

2 months agobump versions to 0.39~rc0
David Bremner [Sun, 26 Jan 2025 13:44:59 +0000 (09:44 -0400)]
bump versions to 0.39~rc0

Prepare to release a snapshot for testing

2 months agodebian: update changelog for 0.39~rc0-1
David Bremner [Sun, 26 Jan 2025 13:42:55 +0000 (09:42 -0400)]
debian: update changelog for 0.39~rc0-1

3 months agodocs: Update intersphinx_mapping
Fredrik Lönnegren [Thu, 5 Dec 2024 16:45:50 +0000 (17:45 +0100)]
docs: Update intersphinx_mapping

Running `make dirhtml` in bindings/python/docs generates the following
error:

```
sphinx-build -b dirhtml -d build/doctrees   source build/dirhtml
Running Sphinx v8.0.2
loading translations [en]... done
making output directory... done
Converting `source_suffix = '.rst'` to `source_suffix = {'.rst': 'restructuredtext'}`.
ERROR: Invalid value `None` in intersphinx_mapping['https://docs.python.org/']. Expected a two-element tuple or list.
```

This commit updates intersphinx_mapping to follow the latest docs [1]

[1] https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html

Signed-off-by: Fredrik Lönnegren <fredrik@frelon.se>
7 months agoNEWS: deprecate Emacs older than 27.1
David Bremner [Sat, 17 Aug 2024 17:00:46 +0000 (14:00 -0300)]
NEWS: deprecate Emacs older than 27.1

The current requirement of 25.1 is more than 5 years old at this
point.

7 months agoemacs/mua: Correct autoload cookies
Pengji Zhang [Fri, 16 Aug 2024 08:25:48 +0000 (16:25 +0800)]
emacs/mua: Correct autoload cookies

This is a follow-up to [1: 8d06dfce]. Per Info node '(elisp)Autoload',
autoload cookies should start with ';;;###'.

1: 2024-04-04 8d06dfce175593aebae9a759c9167df4988a3444
   emacs: Autoload notmuch-user-agent related functions

7 months agoRevert "emacs: Fix saved-search buffer titles"
David Bremner [Fri, 9 Aug 2024 13:18:54 +0000 (10:18 -0300)]
Revert "emacs: Fix saved-search buffer titles"

This reverts commit bc989209171d406b3671024542e59b86b0ecb23d.

This was applied unintentionally to master while still under discussion.

7 months agoemacs/tree: sanitize subjects when drawing tree
David Bremner [Mon, 20 May 2024 11:58:58 +0000 (08:58 -0300)]
emacs/tree: sanitize subjects when drawing tree

This fixes the bug reported in

     id:6F2EF901-8B4B-44FF-83C5-22F732BA95A6@gmail.com

Unfortunately it turns out our test data has several tabs in the
subject lines. The expected output was updated to reflect their
removal and the ripple effect of several more subjects matching the
previous ones.

7 months agotest/emacs-tree: add known broken test for subject with CR/NL
David Bremner [Mon, 20 May 2024 11:58:57 +0000 (08:58 -0300)]
test/emacs-tree: add known broken test for subject with CR/NL

The test is intentionally vague as it's hard to pin down the correct
output before the code is fixed.

7 months agotest/emacs-show: add regression test for subjects with CR/NL
David Bremner [Mon, 20 May 2024 11:58:56 +0000 (08:58 -0300)]
test/emacs-show: add regression test for subjects with CR/NL

This subject is known to be problematic for notmuch-tree.

7 months agoCLI/show: warn if crypto options are used with mbox format
David Bremner [Thu, 21 Dec 2023 17:04:00 +0000 (09:04 -0800)]
CLI/show: warn if crypto options are used with mbox format

This limitation seems somewhat hard to fix, but at least try to warn
users when combining crypto operations with mbox output format.

Because the default is --decrypt=auto, the warning is omitted if
--decrypt=auto is specified. While this is not great, it seems more
wrong to always warn, or to change the default because of this.

7 months agoemacs: Fix saved-search buffer titles
Rudolf Adamkovič [Wed, 13 Dec 2023 21:39:02 +0000 (22:39 +0100)]
emacs: Fix saved-search buffer titles

REPRODUCTION STEPS:

  (let ((notmuch-saved-searches
         (list (list :name "Emacs List"
                     :query "query:lists-emacs")
               (list :name "All Lists"
                     :query "query:lists"))))
    (notmuch-search-buffer-title "query:lists-emacs" ))

ACTUAL:

  "*notmuch-saved-search-[ All Lists ]-emacs*"

EXPECTED:

   "*notmuch-saved-search-Emacs List*"

7 months agodevel: document emacs keybindings u and U
David Bremner [Mon, 29 Jul 2024 11:04:44 +0000 (08:04 -0300)]
devel: document emacs keybindings u and U

Thanks to changing the column widths to accomodate longer function
names, the diff is rather large, but the content is two new rows for
'u' and 'U'

7 months agoMerge branch 'release'
David Bremner [Mon, 5 Aug 2024 13:31:24 +0000 (10:31 -0300)]
Merge branch 'release'

7 months agodebian: migrate build dependency to pkgconf archive/debian/0.38.3-3 debian/0.38.3-3
David Bremner [Mon, 5 Aug 2024 13:14:40 +0000 (10:14 -0300)]
debian: migrate build dependency to pkgconf

pkgconf is apparently the annointed successor to pkg-config, at least
in Debian.

7 months agodebian: skip T810-tsan everywhere
David Bremner [Mon, 5 Aug 2024 11:48:24 +0000 (08:48 -0300)]
debian: skip T810-tsan everywhere

Not sure whose fault the failure is, but for now skip the test.

7 months agodebian: drop build conflicts on gdb-minimal
David Bremner [Mon, 5 Aug 2024 10:03:07 +0000 (07:03 -0300)]
debian: drop build conflicts on gdb-minimal

Recent gdb Provides gdb-minimal, so we can't conflict with it and
require gdb.

This may cause problems for people building in dirty environments for
older gdb, but there is not much we can do.

7 months agoAdd Astroid as an alternative Recommends; this one is a GUI client
Nicholas D Steeves [Sat, 3 Aug 2024 18:56:09 +0000 (14:56 -0400)]
Add Astroid as an alternative Recommends; this one is a GUI client

that may be less intimidating for new users.

7 months agoAllow neomutt to fulfill the "mutt" requirement of notmuch-mutt, and
Nicholas D Steeves [Sat, 3 Aug 2024 18:56:08 +0000 (14:56 -0400)]
Allow neomutt to fulfill the "mutt" requirement of notmuch-mutt, and

add related Enhances (Closes: #1029190).

7 months agoAdd changelog entry for James McCoy's work
Nicholas D Steeves [Sat, 3 Aug 2024 18:56:07 +0000 (14:56 -0400)]
Add changelog entry for James McCoy's work

7 months agoConvert notmuch-vim to Vim addon policy 2.0
James McCoy [Sat, 3 Aug 2024 18:56:06 +0000 (14:56 -0400)]
Convert notmuch-vim to Vim addon policy 2.0

The new Vim addon policy relies on Vim's native package functionality,
rather than the Debian-specific vim-addons tool.  This allows the addon
to be immediately available when the package is installed, rather than
requiring extra setup by the user.

* Install notmuch-vim to its own /usr/share/notmuch-vim directory, so
  the files are self-contained.
* Remove vim-addon-manager from notmuch-vim Depends
* Add ${vim-addon:Depends} to notmuch-vim Depends to ensure it has the
  required relationships on Vim/Neovim.
* Build-Depend on dh-sequence-vim-addon to automatically setup the
  required symlinks for Vim and Neovim to see the addon.

Signed-off-by: James McCoy <jamessan@debian.org>
8 months agoconfig: allow custom separators in author lists
Lars Kotthoff [Fri, 22 Dec 2023 21:06:34 +0000 (14:06 -0700)]
config: allow custom separators in author lists

Allow distinguishing between commas separating authors and separating
first and last names.

Amended by db: reformat NEWS entry and commit message. Tweaked
whitespace in lib/thread.cc.

8 months agochangelog for 0.38.3-2 archive/debian/0.38.3-2 debian/0.38.3-2
David Bremner [Fri, 26 Jul 2024 03:01:38 +0000 (12:01 +0900)]
changelog for 0.38.3-2

8 months agotest/emacs: test notmuch-mua-subject-check
Tony Zorman [Sun, 29 Oct 2023 07:25:21 +0000 (08:25 +0100)]
test/emacs: test notmuch-mua-subject-check

Amended by db: rename test file to avoid collision.

8 months agoemacs/mua: optionally check for erroneous subjects
Tony Zorman [Sun, 29 Oct 2023 07:26:32 +0000 (08:26 +0100)]
emacs/mua: optionally check for erroneous subjects

This works much like notmuch-mua-attachment-regexp, but for the
subject instead. By default, check for empty subjects, as that seems a
reasonable thing to safeguard against.

8 months agoCLI: update commentary in config file to better match code
David Bremner [Thu, 21 Sep 2023 19:50:02 +0000 (16:50 -0300)]
CLI: update commentary in config file to better match code

This comment has been out of date since notmuch 0.32. Although it
isn't really possible to explain all the options here, explain both
one new "split" way of doing things and the traditional one with
database inside $MAIL_ROOT/.notmuch.

8 months agolib: thread-safe s-expression query parser
Kevin Boulain [Sun, 27 Aug 2023 12:31:02 +0000 (14:31 +0200)]
lib: thread-safe s-expression query parser

Follow-up of 6273966d, now that sfsexp 1.4.1 doesn't rely on globals
anymore by default (https://github.com/mjsottile/sfsexp/issues/21).

This simply defers the initial query generation to use the thread-safe
helper (xapian_query_match_all) instead of Xapian::Query::MatchAll.

8 months agoemacs/hello: refresh hello directly
David Bremner [Sat, 22 Jul 2023 12:15:56 +0000 (09:15 -0300)]
emacs/hello: refresh hello directly

According to the now deleted commentary, the hack of using run-at-time
was needed for Emacs 24. It seems to be no longer needed for Emacs
28.2, and removing it makes further changes to the code simpler.

8 months agoCLI/git: add reset command
David Bremner [Mon, 3 Apr 2023 10:22:48 +0000 (07:22 -0300)]
CLI/git: add reset command

Sometimes merging is not what we want with tags; in particular it
tends to keep tags in the local repo that have been removed elsewhere.
This commit provides a new reset command; the reset itself is trivial,
but the work is to provide a safety check that uses the existing
--force and git.safe_fraction machinery.

9 months agoReplace `delete-line` with its definition
Michael J Gruber [Mon, 17 Jun 2024 19:28:25 +0000 (21:28 +0200)]
Replace `delete-line` with its definition

37c022ae ("Use `without-restriction` in `with-temporary-notmuch-message-buffer`", 2024-03-14)
introduced `delete-line` in a test, but this is Emacs 29 and above only.
Replace it with its (almost) definition.

9 months agoReplace `without-restriction` with `save-restriction`
Michael J Gruber [Mon, 17 Jun 2024 19:28:24 +0000 (21:28 +0200)]
Replace `without-restriction` with `save-restriction`

37c022ae ("Use `without-restriction` in `with-temporary-notmuch-message-buffer`", 2024-03-14)
introduced a fix for draft saving in a way which is supported on Emacs
29 and above only. Replace this with a construct which we have used
before, so that we keep the same compatibility level.

9 months agoUse `without-restriction` in `with-temporary-notmuch-message-buffer`
Marc Fargas [Thu, 14 Mar 2024 14:56:49 +0000 (15:56 +0100)]
Use `without-restriction` in `with-temporary-notmuch-message-buffer`

This ensures that the temporary copy of the current message-mode
buffer is whole and not limited by a current restriction.

An example of such restriction is the default one established by
message-mode when composing a reply, that hides the References,
In-Reply-To and similar headers.

9 months agotest/cli: Add known broken test for (missing) quoting in From
David Bremner [Sun, 26 May 2024 12:52:32 +0000 (09:52 -0300)]
test/cli: Add known broken test for (missing) quoting in From

In [1], Jakub Wilk observes that the current behaviour is confusing
since it looks like there are two mailboxes in From, while in fact
there is only one.  It seems to me that notmuch should at least quote
the display-name part of a mailbox if it has "funny" characters in it,
and perhaps always quote it. Either way will require changing the
indexing code, since the structure is lost when writing the headers to
the database.

[1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1021614

9 months agoemacs/show: fix for text/calendar display
David Bremner [Wed, 29 May 2024 10:15:26 +0000 (07:15 -0300)]
emacs/show: fix for text/calendar display

In certain scenarios involving symlinks and setting
find-file-visit-truename, text/calendar parts were not displayed
properly.

Following a suggestion of Al Haji-Ali [1], replace the use of
get-file-buffer with find-buffer-visiting.

[1]: id:m2wmneguh8.fsf@gmail.com

9 months agotest/emacs: add tests for rendering text/calendar parts
David Bremner [Wed, 29 May 2024 10:15:25 +0000 (07:15 -0300)]
test/emacs: add tests for rendering text/calendar parts

The first test is just a general regression test, while the second
duplicates the problem discussed in the thread starting at [1].

[1]: id:m2leo2u0uo.fsf@gmail.com

9 months agotest/emacs: add regression test for display of calendar parts.
David Bremner [Wed, 29 May 2024 10:15:24 +0000 (07:15 -0300)]
test/emacs: add regression test for display of calendar parts.

This will hopefully catch breakage due to either changes in
Emacs (especially Gnus) or changes to the notmuch-show code.

9 months agotest/corpora: add example with text/calendar attachment
David Bremner [Wed, 29 May 2024 10:15:23 +0000 (07:15 -0300)]
test/corpora: add example with text/calendar attachment

Initially for testing rendering in Emacs.

10 months agoemacs: Allow customizing :excluded in notmuch-saved-searches
Mohsin Kaleem [Fri, 19 Apr 2024 18:25:06 +0000 (19:25 +0100)]
emacs: Allow customizing :excluded in notmuch-saved-searches

Provide customize support for the new feature introduced in
cd89065d.

Commit message expanded by: db

10 months agotest: re-enable duplicate UI tests in T460-emacs-tree
David Bremner [Mon, 20 May 2024 11:58:55 +0000 (08:58 -0300)]
test: re-enable duplicate UI tests in T460-emacs-tree

These were disabled (accidentally?) in f63d14a8c12a.

11 months agoemacs: Add new option notmuch-search-hide-excluded
Mohsin Kaleem [Sun, 10 Mar 2024 18:57:41 +0000 (18:57 +0000)]
emacs: Add new option notmuch-search-hide-excluded

The new notmuch-search-hide-excluded option allows users to configure whether
to show or hide excluded messages (as determined by search.exclude_tags
in the local notmuch config file). It defaults to true for now to maintain
backwards-compatibility with how notmuch-{search,tree} already worked.

New commands notmuch-search-toggle-hide-excluded and
notmuch-tree-toggle-exclude have also been added. They toggle the value
of notmuch-search-hide-excluded for the search in the current search or
tree buffer. It's bound to "i" in the respective keymaps for these
modes.

Lastly I've amended some calls to notmuch-tree and notmuch-unthreaded
which didn't pass through the buffer local value of
notmuch-search-oldest-first (and now notmuch-search-exclude).
Examples of where I've done this include:
  + notmuch-jump-search
  + notmuch-tree-from-search-current-query
  + notmuch-unthreaded-from-search-current-query
  + notmuch-tree-from-search-thread

A new test file for Emacs has been added which covers the usage of the
new `notmuch-search-hide-excluded' option and interactively hiding or
showing mail with excluded tags. These test cover the basic usage of
the `notmuch-search-toggle-hide-excluded' command in notmuch-search,
notmuch-tree and notmuch-unthreaded searches. These tests also cover
the persistence of the current value of the hide-excluded mail option
as a user switches from between these different search commands.

[1]: id:87ilxlxsng.fsf@kisara.moe

Amended-by: db, fix indentation in T461-emacs-search-exclude.sh
11 months agoperf-test/tag: add maildir sync tests
David Bremner [Sat, 30 Sep 2023 11:40:50 +0000 (08:40 -0300)]
perf-test/tag: add maildir sync tests

Today someone asked me the (reasonable) question of how much
performance impact there is from synching tags to maildir flags. It
turns out it is noticeable, about a 50% overhead compared to
non-synched tags (according to these tests).  In practice I don't know
if it's a big problem for users, since I don't know what fraction of
tagging operations involve "special" tags.

12 months agoemacs: Autoload notmuch-user-agent related functions
Jelle Licht [Tue, 19 Mar 2024 21:31:00 +0000 (22:31 +0100)]
emacs: Autoload notmuch-user-agent related functions

With this change, users with mail-user-agent set to
'notmuch-user-agent can start composing emails without having to
require 'notmuch-mua first.

12 months agoemacs: Mark "notmuch-tree" command for autoloading
Dmitry Bogatov [Tue, 26 Mar 2024 23:47:22 +0000 (19:47 -0400)]
emacs: Mark "notmuch-tree" command for autoloading

Some people (e.g: me) prefer to read their email with threaded
representation by default.

Without this commit, I have to run "notmuch-search" (autoloaded)
first to get "notmuch-tree" loaded.

12 months agoNEWS: aspell(1)d few words
Tomi Ollila [Tue, 12 Mar 2024 08:25:19 +0000 (10:25 +0200)]
NEWS: aspell(1)d few words

Executed aspell -l en -c NEWS

and replaced few obvious cases.

12 months agoMerge tag 'debian/0.38.3-1'
David Bremner [Mon, 11 Mar 2024 11:17:40 +0000 (08:17 -0300)]
Merge tag 'debian/0.38.3-1'

notmuch release 0.38.3-1 for unstable (sid) [dgit]

[dgit distro=debian no-split --quilt=linear]

12 months agodebian: update changelog date archive/debian/0.38.3-1 debian/0.38.3-1
David Bremner [Sun, 10 Mar 2024 03:13:32 +0000 (23:13 -0400)]
debian: update changelog date

It is a bit weird to have debian changelog before upstream release date.

12 months agoMerge from sid [dgit]
David Bremner [Sun, 10 Mar 2024 03:07:21 +0000 (23:07 -0400)]
Merge from sid [dgit]

12 months agoRevert "debian: start changelog for 0.38.3-1"
David Bremner [Sun, 10 Mar 2024 03:01:43 +0000 (23:01 -0400)]
Revert "debian: start changelog for 0.38.3-1"

This reverts commit 522b279e46c84e4d2d52ccdf082d05fc111dc7b5.

Remove duplicate changelog stanza

12 months agoversion: bump to 0.38.3 0.38.3
David Bremner [Sun, 10 Mar 2024 02:51:06 +0000 (22:51 -0400)]
version: bump to 0.38.3

12 months agodebian: start changelog for 0.38.3-1
David Bremner [Sun, 10 Mar 2024 02:49:50 +0000 (22:49 -0400)]
debian: start changelog for 0.38.3-1

12 months agodoc: update copyright years to include 2024
David Bremner [Sun, 10 Mar 2024 02:47:37 +0000 (22:47 -0400)]
doc: update copyright years to include 2024

12 months agoNEWS: update for 0.38.3
David Bremner [Sun, 10 Mar 2024 02:42:08 +0000 (22:42 -0400)]
NEWS: update for 0.38.3

13 months agoRecord notmuch (0.38.2-1.1) in archive suite sid
Benjamin Drung [Wed, 28 Feb 2024 23:56:48 +0000 (23:56 +0000)]
Record notmuch (0.38.2-1.1) in archive suite sid

13 months agonotmuch (0.38.2-1.1) unstable; urgency=medium
Benjamin Drung [Wed, 28 Feb 2024 23:56:48 +0000 (23:56 +0000)]
notmuch (0.38.2-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Rename libraries for 64-bit time_t transition.  Closes: #1063205

[dgit import unpatched notmuch 0.38.2-1.1]

13 months agoImport notmuch_0.38.2-1.1.debian.tar.xz
Benjamin Drung [Wed, 28 Feb 2024 23:56:48 +0000 (23:56 +0000)]
Import notmuch_0.38.2-1.1.debian.tar.xz

[dgit import tarball notmuch 0.38.2-1.1 notmuch_0.38.2-1.1.debian.tar.xz]

13 months agodebian: recommend gpg-agent instead of gnupg agent
David Bremner [Sat, 17 Feb 2024 13:04:32 +0000 (09:04 -0400)]
debian: recommend gpg-agent instead of gnupg agent

14 months agoCLI/git: remove no-op format() call
Jakub Wilk [Fri, 12 Jan 2024 16:27:50 +0000 (17:27 +0100)]
CLI/git: remove no-op format() call

14 months agoCLI/git: fix name error
Jakub Wilk [Fri, 12 Jan 2024 16:27:49 +0000 (17:27 +0100)]
CLI/git: fix name error

14 months agoCLI/git: remove unused import
Jakub Wilk [Fri, 12 Jan 2024 16:27:48 +0000 (17:27 +0100)]
CLI/git: remove unused import

shutil was used only for the tempfile.TemporaryDirectory backport,
which was removed in commit b7c31f658121a0cf ("CLI/git: drop support for
python < 3.2").

15 months agoMerge branch 'release'
David Bremner [Wed, 6 Dec 2023 11:39:24 +0000 (07:39 -0400)]
Merge branch 'release'

15 months agolib: clear error message on success in _choose_database_path
David Bremner [Sun, 3 Dec 2023 18:56:44 +0000 (14:56 -0400)]
lib: clear error message on success in _choose_database_path

Previously we both found a database and returned a message saying that
the database could not be found (along with a success code). This
change should prevent spurious error output.

15 months agotest: add known broken test for incorrect error message
David Bremner [Sun, 3 Dec 2023 15:41:11 +0000 (11:41 -0400)]
test: add known broken test for incorrect error message

Duplicate bug reported in id:87wmtvcor5.fsf@alyssa.is

The error message is nonsense, because notmuch config list actually
includes the database in those two cases.

16 months agoMerge branch 'release'
David Bremner [Fri, 1 Dec 2023 12:11:39 +0000 (08:11 -0400)]
Merge branch 'release'

16 months agodebian: changelog for 0.38.2-1 0.38.2 archive/debian/0.38.2-1 debian/0.38.2-1
David Bremner [Fri, 1 Dec 2023 11:51:31 +0000 (07:51 -0400)]
debian: changelog for 0.38.2-1

16 months agoImport notmuch_0.38.2.orig.tar.xz
David Bremner [Fri, 1 Dec 2023 11:51:09 +0000 (07:51 -0400)]
Import notmuch_0.38.2.orig.tar.xz

[dgit import orig notmuch_0.38.2.orig.tar.xz]

16 months agoNEWS for 0.38.2
David Bremner [Fri, 1 Dec 2023 11:50:27 +0000 (07:50 -0400)]
NEWS for 0.38.2