Re: Problem. Not much does not work after install.bat and restart opera / Os

2021-08-29 Thread David Bremner
Resan Alkoyun  writes:

> Fresh install and then this. 

I don't understand your report. Are you talking about the mail indexer
notmuch from notmuchmail.org? We don't have 'install.bat' or any native
Windows support. Also I'm not sure how opera would be related, except
perhaps via some 3rd party web front end. Can you explain a bit more
about exactly what you installed, how you installed it, and what you ran
to get the error message you attached to your previous message?
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


Re: configurable summary line for notmuch search

2021-08-29 Thread David Bremner
Jose Antonio Ortega Ruiz  writes:

> On Sat, Aug 28 2021, David Bremner wrote:
>
>> I was idly thinking about how to provide custom summary formats for
>> notmuch-search. I know this has been discussed a few times on IRC, but I
>> can't remember the kind of things people were looking for. So if this a
>> feature you're interested in, what specifically are you looking for?
>
> I actually have a patch in my queue that implements a form of this, in
> two ways.  By allowing the "field" to be a function that gets called with
> the message property and returns a string, and by allowing the format
> string to be a function that takes the value of the field and further
> formats it.  This is the relevant patch with simple examples in the
> documentation:
[snip]
> what do you think?

I was thinking of a facility available to command line users of
notmuch-search. But if the main use case is in emacs, then it would
almost certainly be easier to implement in elisp, assuming the
information is available.
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 2/9] test/emacs: run notmuch-hello with a nonexisting default dir

2021-08-29 Thread David Bremner
This replicates the problem reported in Debian bug #922536.
---
 test/T440-emacs-hello.sh | 9 +
 1 file changed, 9 insertions(+)

diff --git a/test/T440-emacs-hello.sh b/test/T440-emacs-hello.sh
index bafccd1f..9d1e5a9c 100755
--- a/test/T440-emacs-hello.sh
+++ b/test/T440-emacs-hello.sh
@@ -68,4 +68,13 @@ test_emacs '(notmuch-hello)
 notmuch tag -$tag '*'
 test_expect_equal_file $EXPECTED/notmuch-hello-long-names OUTPUT
 
+test_begin_subtest "notmuch-hello with nonexistent CWD"
+test_subtest_known_broken
+test_emacs '
+  (notmuch-hello)
+  (test-log-error
+(let ((default-directory "/nonexistent"))
+ (notmuch-hello-update)))'
+test_expect_equal "$(cat MESSAGES)" "COMPLETE"
+
 test_done
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 3/9] emacs: wrap process-lines

2021-08-29 Thread David Bremner
Initially just set the working directory, to avoid (the implicit)
call-process crashing when the default-directory points to a
non-existent location.

Use of a macro here is over-engineering for this change, but the same
change needs to be applied to several other process creation
primitives.
---
 emacs/notmuch-address.el | 2 +-
 emacs/notmuch-draft.el   | 2 +-
 emacs/notmuch-hello.el   | 6 +++---
 emacs/notmuch-lib.el | 9 +
 emacs/notmuch-tree.el| 2 +-
 emacs/notmuch.el | 2 +-
 6 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/emacs/notmuch-address.el b/emacs/notmuch-address.el
index 9fc13bc5..1a4cdda2 100644
--- a/emacs/notmuch-address.el
+++ b/emacs/notmuch-address.el
@@ -217,7 +217,7 @@ requiring external commands."
   ;; harvest if necessary.
   (notmuch-address-harvest-trigger)))
(t
-(process-lines notmuch-address-command original
+(notmuch--process-lines notmuch-address-command original
 
 (defun notmuch-address-expand-name ()
   (cond
diff --git a/emacs/notmuch-draft.el b/emacs/notmuch-draft.el
index a68b7d8d..1f156746 100644
--- a/emacs/notmuch-draft.el
+++ b/emacs/notmuch-draft.el
@@ -239,7 +239,7 @@ applied to newly inserted messages)."
 (defun notmuch-draft-resume (id)
   "Resume editing of message with id ID."
   ;; Used by command `notmuch-show-resume-message'.
-  (let* ((tags (process-lines notmuch-command "search" "--output=tags"
+  (let* ((tags (notmuch--process-lines notmuch-command "search" "--output=tags"
  "--exclude=false" id))
 (draft (equal tags (notmuch-update-tags tags notmuch-draft-tags
 (when (or draft
diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index 1e66555b..450cfcfb 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -494,7 +494,7 @@ diagonal."
(widget-get widget :notmuch-search-oldest-first)
 
 (defun notmuch-saved-search-count (search)
-  (car (process-lines notmuch-command "count" search)))
+  (car (notmuch--process-lines notmuch-command "count" search)))
 
 (defun notmuch-hello-tags-per-line (widest)
   "Determine how many tags to show per line and how wide they
@@ -746,7 +746,7 @@ Complete list of currently available key bindings:
(list (cons tag
(concat "tag:"
(notmuch-escape-boolean-term tag))
-(process-lines notmuch-command "search" "--output=tags" "*")))
+(notmuch--process-lines notmuch-command "search" "--output=tags" 
"*")))
 
 (defun notmuch-hello-insert-header ()
   "Insert the default notmuch-hello header."
@@ -784,7 +784,7 @@ Complete list of currently available key bindings:
   :help-echo "Refresh"
   (notmuch-hello-nice-number
(string-to-number
-(car (process-lines notmuch-command "count")
+(car (notmuch--process-lines notmuch-command "count")
 (widget-insert " messages.\n")))
 
 (defun notmuch-hello-insert-saved-searches ()
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index c7bb2091..928286c3 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -860,6 +860,15 @@ You may need to restart Emacs or upgrade your notmuch 
package."))
   ;; `notmuch-logged-error' does not return.
   
 
+(defmacro notmuch--apply-with-env (func  args)
+  `(let ((default-directory "~"))
+ (apply ,func ,@args)))
+
+(defun notmuch--process-lines (program  args)
+  "Wrap process-lines, binding DEFAULT-DIRECTORY to a safe
+default"
+  (notmuch--apply-with-env #'process-lines program args))
+
 (defun notmuch-call-notmuch--helper (destination args)
   "Helper for synchronous notmuch invocation commands.
 
diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el
index 2f508128..49192e95 100644
--- a/emacs/notmuch-tree.el
+++ b/emacs/notmuch-tree.el
@@ -1098,7 +1098,7 @@ the same as for the function notmuch-tree."
   (concat " and (" query-context ")"
 (sort-arg (if oldest-first "--sort=oldest-first" 
"--sort=newest-first"))
 (message-arg (if unthreaded "--unthreaded" "--entire-thread")))
-(when (equal (car (process-lines notmuch-command "count" search-args)) "0")
+(when (equal (car (notmuch--process-lines notmuch-command "count" 
search-args)) "0")
   (setq search-args basic-query))
 (notmuch-tag-clear-cache)
 (let ((proc (notmuch-start-notmuch
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index 739cb93b..c81155e6 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -935,7 +935,7 @@ See `notmuch-tag' for information on the format of 
TAG-CHANGES."
 PROMPT is the string to prompt with."
   (let* ((all-tags
  (mapcar (lambda (tag) (notmuch-escape-boolean-term tag))
- (process-lines notmuch-command "search" "--output=tags" "*")))
+ 

[PATCH 4/9] emacs: wrap call-process-region

2021-08-29 Thread David Bremner
As with notmuch--process-lines, initial purpose is to provide a safe
binding for default-directory. This is enough to make notmuch-hello
robust against non-existent or corrupt values default-directory, but
probably not other views.
---
 emacs/notmuch-hello.el   |  2 +-
 emacs/notmuch-lib.el | 10 +-
 emacs/notmuch-print.el   |  2 +-
 test/T440-emacs-hello.sh |  1 -
 4 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index 450cfcfb..30e6bd8e 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -567,7 +567,7 @@ options will be handled as specified for
(or (plist-get options :filter-count)
(plist-get options :filter
 "\n")))
-(unless (= (call-process-region (point-min) (point-max) notmuch-command
+(unless (= (notmuch--call-process-region (point-min) (point-max) 
notmuch-command
t t nil "count" "--batch") 0)
   (notmuch-logged-error
"notmuch count --batch failed"
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index 928286c3..207ea4c2 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -869,6 +869,14 @@ You may need to restart Emacs or upgrade your notmuch 
package."))
 default"
   (notmuch--apply-with-env #'process-lines program args))
 
+(defun notmuch--call-process-region (start end program
+   delete buffer display
+   args)
+  "Wrap call-process-region, binding DEFAULT-DIRECTORY to a safe
+default"
+  (notmuch--apply-with-env
+   #'call-process-region start end program delete buffer display args))
+
 (defun notmuch-call-notmuch--helper (destination args)
   "Helper for synchronous notmuch invocation commands.
 
@@ -885,7 +893,7 @@ for `call-process'.  ARGS is as described for
 (if (null stdin-string)
(apply #'call-process notmuch-command nil destination nil args)
   (insert stdin-string)
-  (apply #'call-process-region (point-min) (point-max)
+  (apply #'notmuch--call-process-region (point-min) (point-max)
 notmuch-command t destination nil args
 
 (defun notmuch-call-notmuch-process ( args)
diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el
index d0061499..85fa1f21 100644
--- a/emacs/notmuch-print.el
+++ b/emacs/notmuch-print.el
@@ -48,7 +48,7 @@
   "Pass the contents of the current buffer to 'muttprint'.
 
 Optional OUTPUT allows passing a list of flags to muttprint."
-  (apply #'call-process-region (point-min) (point-max)
+  (apply #'notmuch--call-process-region (point-min) (point-max)
 ;; Reads from stdin.
 "muttprint"
 nil nil nil
diff --git a/test/T440-emacs-hello.sh b/test/T440-emacs-hello.sh
index 9d1e5a9c..a1ed1c2b 100755
--- a/test/T440-emacs-hello.sh
+++ b/test/T440-emacs-hello.sh
@@ -69,7 +69,6 @@ notmuch tag -$tag '*'
 test_expect_equal_file $EXPECTED/notmuch-hello-long-names OUTPUT
 
 test_begin_subtest "notmuch-hello with nonexistent CWD"
-test_subtest_known_broken
 test_emacs '
   (notmuch-hello)
   (test-log-error
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 8/9] emacs: wrap call-process

2021-08-29 Thread David Bremner
Provide a safe working directory
---
 emacs/notmuch-crypto.el |  6 +++---
 emacs/notmuch-draft.el  |  2 +-
 emacs/notmuch-lib.el| 14 +-
 emacs/notmuch-mua.el|  2 +-
 emacs/notmuch-show.el   |  6 +++---
 emacs/notmuch-tag.el|  2 +-
 test/T450-emacs-show.sh |  1 -
 7 files changed, 18 insertions(+), 15 deletions(-)

diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el
index 3ffb5654..a1cf3ddd 100644
--- a/emacs/notmuch-crypto.el
+++ b/emacs/notmuch-crypto.el
@@ -164,7 +164,7 @@ mode."
(goto-char (point-max))
(insert (format "-- Key %s in message %s:\n"
fingerprint id))
-   (call-process notmuch-crypto-gpg-program nil t t
+   (notmuch--call-process notmuch-crypto-gpg-program nil t t
  "--batch" "--no-tty" "--list-keys" fingerprint))
   (recenter -1
 
@@ -240,9 +240,9 @@ corresponding key when the status button is pressed."
  (with-current-buffer buffer
(goto-char (point-max))
(insert (format "--- Retrieving key %s:\n" keyid))
-   (call-process notmuch-crypto-gpg-program nil t t "--recv-keys" 
keyid)
+   (notmuch--call-process notmuch-crypto-gpg-program nil t t 
"--recv-keys" keyid)
(insert "\n")
-   (call-process notmuch-crypto-gpg-program nil t t "--list-keys" 
keyid))
+   (notmuch--call-process notmuch-crypto-gpg-program nil t t 
"--list-keys" keyid))
  (recenter -1))
(notmuch-show-refresh-view)
 
diff --git a/emacs/notmuch-draft.el b/emacs/notmuch-draft.el
index 1f156746..d87a4805 100644
--- a/emacs/notmuch-draft.el
+++ b/emacs/notmuch-draft.el
@@ -249,7 +249,7 @@ applied to newly inserted messages)."
   (setq buffer-read-only nil)
   (erase-buffer)
   (let ((coding-system-for-read 'no-conversion))
-   (call-process notmuch-command nil t nil "show" "--format=raw" id))
+   (notmuch--call-process notmuch-command nil t nil "show" "--format=raw" 
id))
   (mime-to-mml)
   (goto-char (point-min))
   (when (re-search-forward "^$" nil t)
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index 9693185f..9afdc165 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -195,7 +195,7 @@ will be signaled.
 
 Otherwise the output will be returned."
   (with-temp-buffer
-(let ((status (apply #'call-process notmuch-command nil t nil args))
+(let ((status (apply #'notmuch--call-process notmuch-command nil t nil 
args))
  (output (buffer-string)))
   (notmuch-check-exit-status status (cons notmuch-command args) output)
   output)))
@@ -206,7 +206,7 @@ Otherwise the output will be returned."
 (defun notmuch-cli-sane-p ()
   "Return t if the cli seems to be configured sanely."
   (unless notmuch--cli-sane-p
-(let ((status (call-process notmuch-command nil nil nil
+(let ((status (notmuch--call-process notmuch-command nil nil nil
"config" "get" "user.primary_email")))
   (setq notmuch--cli-sane-p (= status 0
   notmuch--cli-sane-p)
@@ -286,7 +286,7 @@ depending on the value of `notmuch-poll-script'."
   (message "Polling mail...")
   (if (stringp notmuch-poll-script)
   (unless (string-empty-p notmuch-poll-script)
-   (unless (equal (call-process notmuch-poll-script nil nil) 0)
+   (unless (equal (notmuch--call-process notmuch-poll-script nil nil) 0)
  (error "Notmuch: poll script `%s' failed!" notmuch-poll-script)))
 (notmuch-call-notmuch-process "new"))
   (message "Polling mail...done"))
@@ -639,7 +639,7 @@ the given type."
  ;; charset is US-ASCII. RFC6657
  ;; complicates this somewhat.
  'us-ascii)
-  (apply #'call-process
+  (apply #'notmuch--call-process
  notmuch-command nil '(t nil) nil args)
   (buffer-string))
 (when (and cache data)
@@ -882,6 +882,10 @@ default"
   (notmuch--apply-with-env
#'call-process-region start end program delete buffer display args))
 
+(defun notmuch--call-process (program  infile destination display 
 args)
+  (notmuch--apply-with-env
+   #'call-process program infile destination display args))
+
 (defun notmuch-call-notmuch--helper (destination args)
   "Helper for synchronous notmuch invocation commands.
 
@@ -896,7 +900,7 @@ for `call-process'.  ARGS is as described for
(otherwise
 (error "Unknown keyword argument: %s" (car args)
 (if (null stdin-string)
-   (apply #'call-process notmuch-command nil destination nil args)
+   (apply #'notmuch--call-process notmuch-command nil destination nil args)
   (insert stdin-string)
   (apply #'notmuch--call-process-region (point-min) (point-max)
 notmuch-command t destination nil args
diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el
index 

[PATCH 6/9] emacs: wrap make-process

2021-08-29 Thread David Bremner
Provide a safe working directory.
---
 emacs/notmuch-crypto.el | 2 +-
 emacs/notmuch-lib.el| 7 ++-
 test/T310-emacs.sh  | 1 -
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el
index de4d9aea..3ffb5654 100644
--- a/emacs/notmuch-crypto.el
+++ b/emacs/notmuch-crypto.el
@@ -224,7 +224,7 @@ corresponding key when the status button is pressed."
  (with-current-buffer buffer
(goto-char (point-max))
(insert (format "--- Retrieving key %s:\n" keyid)))
- (let ((p (make-process
+ (let ((p (notmuch--make-process
:name "notmuch GPG key retrieval"
:connection-type 'pipe
:buffer buffer
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index 207ea4c2..9693185f 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -869,6 +869,11 @@ You may need to restart Emacs or upgrade your notmuch 
package."))
 default"
   (notmuch--apply-with-env #'process-lines program args))
 
+(defun notmuch--make-process ( args)
+  "Wrap make-process, binding DEFAULT-DIRECTORY to a safe
+default"
+  (notmuch--apply-with-env #'make-process args))
+
 (defun notmuch--call-process-region (start end program
delete buffer display
args)
@@ -950,7 +955,7 @@ status."
   (let* ((command (or (executable-find notmuch-command)
  (error "Command not found: %s" notmuch-command)))
 (err-buffer (generate-new-buffer " *notmuch-stderr*"))
-(proc (make-process
+(proc (notmuch--make-process
:name name
:buffer buffer
:command (cons command args)
diff --git a/test/T310-emacs.sh b/test/T310-emacs.sh
index 3434fd0b..fd0ea11d 100755
--- a/test/T310-emacs.sh
+++ b/test/T310-emacs.sh
@@ -1155,7 +1155,6 @@ EOF
 test_expect_equal_file EXPECTED OUTPUT
 
 test_begin_subtest "notmuch-search with nonexistent CWD"
-test_subtest_known_broken
 test_emacs '(test-log-error
  (let ((default-directory "/nonexistent"))
(notmuch-search "*")))'
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 7/9] test/emacs: test for notmuch-show with nonexistent CWD

2021-08-29 Thread David Bremner
Somewhat predictably, the other code path in
notmuch-call-notmuch--helper also needs to be fixed.
---
 test/T450-emacs-show.sh | 8 
 1 file changed, 8 insertions(+)

diff --git a/test/T450-emacs-show.sh b/test/T450-emacs-show.sh
index a750cc4d..05e3692e 100755
--- a/test/T450-emacs-show.sh
+++ b/test/T450-emacs-show.sh
@@ -230,4 +230,12 @@ test_emacs '(let ((notmuch-crypto-process-mime nil))
  (test-visible-output))'
 test_expect_equal_file $EXPECTED/notmuch-show-decrypted-message-no-crypto 
OUTPUT
 
+test_begin_subtest "notmuch-show with nonexistent CWD"
+tid=$(notmuch search --limit=1 --output=threads '*' | sed s/thread://)
+test_subtest_known_broken
+test_emacs "(test-log-error
+ (let ((default-directory \"/nonexistent\"))
+   (notmuch-show \"$tid\")))"
+test_expect_equal "$(cat MESSAGES)" "COMPLETE"
+
 test_done
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 5/9] test/emacs: test for notmuch-search with nonexistent CWD

2021-08-29 Thread David Bremner
(At least) notmuch-start-notmuch needs to be updated to set a safe
working directory.
---
 test/T310-emacs.sh | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/test/T310-emacs.sh b/test/T310-emacs.sh
index d69d94a3..3434fd0b 100755
--- a/test/T310-emacs.sh
+++ b/test/T310-emacs.sh
@@ -1154,4 +1154,11 @@ This text added by the hook.
 EOF
 test_expect_equal_file EXPECTED OUTPUT
 
+test_begin_subtest "notmuch-search with nonexistent CWD"
+test_subtest_known_broken
+test_emacs '(test-log-error
+ (let ((default-directory "/nonexistent"))
+   (notmuch-search "*")))'
+test_expect_equal "$(cat MESSAGES)" "COMPLETE"
+
 test_done
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 1/9] test/emacs: provide macro test-log-error

2021-08-29 Thread David Bremner
Because of the way emacs reports errors, a test form can crash and not
change the main buffer. To work around this, capture both signalled
errors and any other messages.
---
 test/test-lib.el | 12 
 1 file changed, 12 insertions(+)

diff --git a/test/test-lib.el b/test/test-lib.el
index 32d53736..e12034c3 100644
--- a/test/test-lib.el
+++ b/test/test-lib.el
@@ -159,6 +159,18 @@ running, quit if it terminated."
 (lambda (x) `(prog1 ,x (notmuch-post-command)))
 body)))
 
+;; Log any signalled error (and other messages) to MESSAGES
+;; Log "COMPLETE" if forms complete without error.
+(defmacro test-log-error ( body)
+  `(progn
+ (with-current-buffer "*Messages*"
+   (let ((inhibit-read-only t)) (erase-buffer)))
+ (condition-case err
+   (progn ,@body
+ (message "COMPLETE"))
+   (t (message "%s" err)))
+ (with-current-buffer "*Messages*" (test-output "MESSAGES"
+
 ;; For historical reasons, we hide deleted tags by default in the test
 ;; suite
 (setq notmuch-tag-deleted-formats
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


Wrap process creating primitives with safe CWD

2021-08-29 Thread David Bremner
This a bit more of a change than I was expecting, but there
is nothing very tricky here (except getting the tests for exceptions in emacs 
working took a bit of effort).

I decided against trying to normalize the use of process-creating
primitives (e.g. to all make-process or whatever) in this series, but
that seems like it would be a reasonable project.

___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


[PATCH 9/9] test/emacs: tests for notmuch-{tree,unthreaded} with bad CWD

2021-08-29 Thread David Bremner
These work thanks to the previous wrapping of process creation
primitives.
---
 test/T460-emacs-tree.sh   | 6 ++
 test/T465-emacs-unthreaded.sh | 6 ++
 2 files changed, 12 insertions(+)

diff --git a/test/T460-emacs-tree.sh b/test/T460-emacs-tree.sh
index 405d7ee7..aaece220 100755
--- a/test/T460-emacs-tree.sh
+++ b/test/T460-emacs-tree.sh
@@ -179,4 +179,10 @@ output=$(test_emacs '(notmuch-tree "tag:inbox")
 (notmuch-show-stash-message-id)')
 test_expect_equal "$output" "\"Stashed: 
id:1258493565-13508-1-git-send-email-kei...@keithp.com\""
 
+test_begin_subtest "notmuch-tree with nonexistent CWD"
+test_emacs '(test-log-error
+ (let ((default-directory "/nonexistent"))
+   (notmuch-tree "*")))'
+test_expect_equal "$(cat MESSAGES)" "COMPLETE"
+
 test_done
diff --git a/test/T465-emacs-unthreaded.sh b/test/T465-emacs-unthreaded.sh
index f9a09426..830cefaf 100755
--- a/test/T465-emacs-unthreaded.sh
+++ b/test/T465-emacs-unthreaded.sh
@@ -34,4 +34,10 @@ output=$(test_emacs '(let ((max-lisp-eval-depth 10))
   "SUCCESS")' )
 test_expect_equal "$output" '"SUCCESS"'
 
+test_begin_subtest "notmuch-unthreaded with nonexistent CWD"
+test_emacs '(test-log-error
+ (let ((default-directory "/nonexistent"))
+   (notmuch-unthreaded "*")))'
+test_expect_equal "$(cat MESSAGES)" "COMPLETE"
+
 test_done
-- 
2.33.0
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


Re: [PATCH 0/5] Use closures and other emacs cleanup

2021-08-29 Thread David Bremner
Jonas Bernoulli  writes:

> Some assorted emacs cleanup and fixes.  The big one is the switch to
> using closures instead of backquoted lambdas.  The other commits for
> the most part just deal with things the compiler complained about.
>

series applied to master

d
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


Re: [PATCH v2 1/2] reply: add test for multiple Delivered-To headers

2021-08-29 Thread David Bremner
Hannu Hartikainen  writes:

> Add a known broken subtest for guessing From: correctly when there are
> multiple Delivered-To: headers. The address configured as primary_email
> should get picked.

series applied to master.

d
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


Problem. Not much does not work after install.bat and restart opera / Os

2021-08-29 Thread Resan Alkoyun
Fresh install and then this. 


___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org