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

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

bug#61797: closed ([PATCH] teams: Don't generate multiple X-Debbugs-Cc:


From: GNU bug Tracking System
Subject: bug#61797: closed ([PATCH] teams: Don't generate multiple X-Debbugs-Cc: headers.)
Date: Sun, 26 Feb 2023 13:12:02 +0000

Your message dated Sun, 26 Feb 2023 14:10:07 +0100
with message-id <87sfeswow5.fsf@nckx>
and subject line [PATCH] teams: Don't generate multiple X-Debbugs-Cc: headers.
has caused the debbugs.gnu.org bug report #61797,
regarding [PATCH] teams: Don't generate multiple X-Debbugs-Cc: headers.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
61797: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61797
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] teams: Don't generate multiple X-Debbugs-Cc: headers. Date: Sun, 19 Feb 2023 01:00:08 +0100
Debbugs has never supported this: the documented way to CC multiple
people is to comma-separate their addresses in one single header line.

See <https://www.debian.org/Bugs/Reporting>, ‘Sending copies of bug
reports to other addresses’.

* etc/teams.scm.in (cc): Generate a single X-Debbugs-Cc header.

Reported by Ludovic Courtès <ludo@gnu.org>
---
 etc/teams.scm.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index ff913673e8..7dfe321ed9 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -569,7 +569,7 @@ (define (cc . teams)
   "Return arguments for `git send-email' to notify the members of the given
 TEAMS when a patch is received by Debbugs."
   (format #true
-          "~{--add-header=\"X-Debbugs-Cc: ~a\"~^ ~}"
+          "--add-header=\"X-Debbugs-Cc: ~{~a~^,~}\""
           (map person-email
                (delete-duplicates (append-map team-members teams) equal?))))
 

base-commit: 54bcdaa3b13650c6ed2478707f02b82175d1ea27
-- 
2.39.1




--- End Message ---
--- Begin Message --- Subject: [PATCH] teams: Don't generate multiple X-Debbugs-Cc: headers. Date: Sun, 26 Feb 2023 14:10:07 +0100
Wait.

As apteryx notes in bug #58813, using this to ‘guix send-mail … $(etc/teams.scm cc TEAM)’ is never going to work.

If that's the proposed use case, this is not worth fixing.

Closing.

T G-R

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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