bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#49926: [PATCH] Fix NNIMAP search command in the gnus


From: Jan Stranik
Subject: bug#49926: [PATCH] Fix NNIMAP search command in the gnus
Date: Sat, 7 Aug 2021 00:52:30 -0400

In the version 27.2 of emacs, the nnimap search commands stopped
working in gnus.

Good example is a command AT to find a referred
thread in the summary buffer. The observed behaviour was that the
search command returned no error.

The problem turned out to be in the way how imap query is sent to the
server. The function nnimap-make-thread-query used a format function
with foramt specifier %S. For string values with formatting the string
returned is in the format #("string" ....). The result was tha the
query sent to the server looked like:
  23:52:00 [stranik.org] 1980 UID SEARCH (OR HEADER REFERENCES 
#("<87pmurac3u.fsf@stranik.org>" 0 28 (ws-butler-chg chg)) HEADER Message-Id 
#("<87pmurac3u.fsf@stranik.org>" 0 28 (ws-butler-chg chg)))

which is an invalid query.

The change formats the string with %s specifier which discards text
properties.
---
 lisp/gnus/nnimap.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el
index 3cf65453f3..33bd6ee5a8 100644
--- a/lisp/gnus/nnimap.el
+++ b/lisp/gnus/nnimap.el
@@ -2295,11 +2295,11 @@ Return the server's response to the SELECT or EXAMINE 
command."
                    "")))
         (value
          (format
-          "(OR HEADER REFERENCES %S HEADER Message-Id %S)"
+          "(OR HEADER REFERENCES %s HEADER Message-Id %s)"
           id id)))
     (dolist (refid refs value)
       (setq value (format
-                  "(OR (OR HEADER Message-Id %S HEADER REFERENCES %S) %s)"
+                  "(OR (OR HEADER Message-Id %s HEADER REFERENCES %s) %s)"
                   refid refid value)))))
 
 
-- 
2.31.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]