[Patchew-devel] [PATCH] add rfc822msgid: as a synonym of id:

Paolo Bonzini posted 1 patch 4 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/patchew next tags/patchew/20200327175414.132872-1-pbonzini@redhat.com
api/search.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
[Patchew-devel] [PATCH] add rfc822msgid: as a synonym of id:
Posted by Paolo Bonzini 4 years, 1 month ago
There is a Chrome extension here

https://chrome.google.com/webstore/detail/gmail-message-id-finder/comcoiiifldaaejpbgbincdkoohihbae

that copies the message-id to the clipboard.  It uses a "rfc822msgid:"
prefix instead of Patchew's "id:", so accept that as well.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 api/search.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/api/search.py b/api/search.py
index d4213e5..4f6650c 100644
--- a/api/search.py
+++ b/api/search.py
@@ -183,6 +183,7 @@ Negative of an expression. Example:
 ### Search by message id
 
  - Syntax: id:MESSAGE-ID
+ - Syntax: rfc822msgid:MESSAGE-ID
 
 Exact match of message-id. Example:
 
@@ -192,6 +193,8 @@ or
 
     id:1416902879-17422-1-git-send-email-user@domain.com
 
+The two prefixes are equivalent.
+
 ---
 
 ### Search by text
@@ -294,7 +297,7 @@ Search text keyword in the email message. Example:
         elif term.startswith("subject:"):
             cond = term[term.find(":") + 1 :]
             return self._add_to_keywords(cond)
-        elif term.startswith("id:"):
+        elif term.startswith("id:") or term.startswith("rfc822msgid:"):
             cond = term[term.find(":") + 1 :]
             if cond[0] == "<" and cond[-1] == ">":
                 cond = cond[1:-1]
-- 
2.24.1

_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel

Re: [Patchew-devel] [PATCH] add rfc822msgid: as a synonym of id:
Posted by Philippe Mathieu-Daudé 4 years ago
On 3/27/20 6:54 PM, Paolo Bonzini wrote:
> There is a Chrome extension here
> 
> https://chrome.google.com/webstore/detail/gmail-message-id-finder/comcoiiifldaaejpbgbincdkoohihbae
> 
> that copies the message-id to the clipboard.  It uses a "rfc822msgid:"
> prefix instead of Patchew's "id:", so accept that as well.

This is indeed a valid gmail API query, poorly documented (probably on 
purpose...):
https://developers.google.com/gmail/api/v1/reference/users/messages/list

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   api/search.py | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/api/search.py b/api/search.py
> index d4213e5..4f6650c 100644
> --- a/api/search.py
> +++ b/api/search.py
> @@ -183,6 +183,7 @@ Negative of an expression. Example:
>   ### Search by message id
>   
>    - Syntax: id:MESSAGE-ID
> + - Syntax: rfc822msgid:MESSAGE-ID
>   
>   Exact match of message-id. Example:
>   
> @@ -192,6 +193,8 @@ or
>   
>       id:1416902879-17422-1-git-send-email-user@domain.com
>   
> +The two prefixes are equivalent.
> +
>   ---
>   
>   ### Search by text
> @@ -294,7 +297,7 @@ Search text keyword in the email message. Example:
>           elif term.startswith("subject:"):
>               cond = term[term.find(":") + 1 :]
>               return self._add_to_keywords(cond)
> -        elif term.startswith("id:"):
> +        elif term.startswith("id:") or term.startswith("rfc822msgid:"):
>               cond = term[term.find(":") + 1 :]
>               if cond[0] == "<" and cond[-1] == ">":
>                   cond = cond[1:-1]
> 


_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel