[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending emai
From: |
Maxim Cournoyer |
Subject: |
[bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email |
Date: |
Tue, 02 May 2023 22:39:27 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
Hi Arun,
Arun Isaac <arunisaac@systemreboot.net> writes:
> * mumi/client.scm: Import (srfi srfi-1).
> (reply-email-headers): New function.
> (send-email): Call reply-email-headers.
> * tests/client.scm ("send patches to existing issue", "send single
> patch to existing issue"): Stub reply-email-headers.
> ("send patch to existing issue and Cc other participants"): New test.
Great series!
> ---
> mumi/client.scm | 35 +++++++++++++++++++++++++++++++----
> tests/client.scm | 24 ++++++++++++++++++++++++
> 2 files changed, 55 insertions(+), 4 deletions(-)
>
> diff --git a/mumi/client.scm b/mumi/client.scm
> index 2750836..f0e4321 100644
> --- a/mumi/client.scm
> +++ b/mumi/client.scm
> @@ -18,6 +18,7 @@
>
> (define-module (mumi client)
> #:use-module (rnrs io ports)
> + #:use-module (srfi srfi-1)
> #:use-module (srfi srfi-19)
> #:use-module (srfi srfi-26)
> #:use-module (srfi srfi-43)
> @@ -236,15 +237,41 @@ OPTIONS. Return the message ID of the first email sent."
> (display (get-string-all port))
> message-id)))))
>
> +(define (reply-email-headers issue-number)
> + "Return an association list of email headers when replying to
> +ISSUE-NUMBER."
> + (let ((messages
> + (assoc-ref
> + (assoc-ref
> + (graphql-http-get (graphql-endpoint)
> + `(document
> + (query (#(issue #:number ,issue-number)
> + (messages (from name address)
> + date)))))
> + "issue")
> + "messages")))
> + ;; When sending email to an issue, we Cc all issue participants.
> + ;; TODO: Also add an In-Reply-To header.
> + `((cc . ,(delete-duplicates
> + (map (lambda (message)
> + (let ((from (assoc-ref message "from")))
> + (string-append (assoc-ref from "name")
> + " <" (assoc-ref from "address") ">")))
> + (vector->list messages)))))))
> +
> (define (send-email patches)
> "Send PATCHES via email."
> (if (current-issue-number)
> ;; If an issue is current, send patches to that issue's email
> ;; address.
> - (git-send-email (string-append (number->string (current-issue-number))
> - "@"
> - (client-config 'debbugs-host))
> - patches)
> + (let ((issue-number (current-issue-number)))
> + (git-send-email (string-append (number->string issue-number)
> + "@"
> + (client-config 'debbugs-host))
> + patches
> + (map (cut string-append "--cc=" <>)
> + (assq-ref (reply-email-headers issue-number)
> + 'cc))))
I was thinking looking at this, with X-Debbugs-Cc headers now being
added automatically by Git for members of a team, there could be
duplication between X-Debbugs-Cc and the participannts retrieved from
the messages above.
To ensure participants do not receive duplicate replies, it'd be
probably best to stick to using X-Debbugs-Cc with all interactions with
Debbugs; this way a duplicate header is (hopefully) ignored by Debbugs
itself.
Does that make sense?
--
Thanks,
Maxim
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email, Arun Isaac, 2023/05/01
- [bug#63215] [PATCH mumi 1/2] client: Support passing options to git send-email., Arun Isaac, 2023/05/01
- [bug#63215] [PATCH v2 mumi 0/2] Cc all issue participants, Arun Isaac, 2023/05/01
- [bug#63215] [PATCH v2 mumi 2/2] client: Cc issue participants when sending email., Arun Isaac, 2023/05/01
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email,
Maxim Cournoyer <=
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email, Arun Isaac, 2023/05/04
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email, Arun Isaac, 2023/05/05
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email, Maxim Cournoyer, 2023/05/05
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email, Arun Isaac, 2023/05/06
- [bug#63215] [PATCH mumi 0/2] Cc all issue participants when sending email, Maxim Cournoyer, 2023/05/06
- bug#63215: [PATCH mumi 0/2] Cc all issue participants when sending email, Arun Isaac, 2023/05/07
[bug#63215] [PATCH v2 mumi 1/2] client: Support passing options to git send-email., Arun Isaac, 2023/05/01
[bug#63215] [PATCH 1/2] client: Support passing options to git send-email., Arun Isaac, 2023/05/06