From: Tomas Volf <~@wolfsden.cz>
To: 74658@debbugs.gnu.org
Subject: bug#74658: Remove the Mail-Followup-To header when empty
Date: Tue, 03 Dec 2024 00:17:10 +0100 [thread overview]
Message-ID: <87iks14qvd.fsf@wolfsden.cz> (raw)
[-- Attachment #1: Type: text/plain, Size: 1607 bytes --]
Tags: patch
According to the info manual (message)Mailing Lists, the
Mail-Followup-To header should be removed when it is empty:
> If there is one, it is left alone. (Except if it’s empty; in that
> case, the field is removed and is not replaced with an automatically
> generated one. This lets you disable MFT generation on a per-message
> basis.)
While the code attempted to do that, the call to `message-remove-header'
passed wrong arguments. Since the IS-REGEXP argument was not passed,
the HEADER was considered a full header name (if I read the code right)
and therefore failed to match (since the code passed in a regexp instead
of a fixed string).
The fix is simple, remove the leading ^ and trailing :.
Change log entry as requested:
Actually remove the Mail-Followup-To header iff empty in
message-send-mail.
* lisp/gnus/message.el (message-send-mail)
[(equal "" (mail-fetch-field "mail-followup-to")]: Pass a fixed string
instead of regexp to `message-remove-header'.
In GNU Emacs 29.4 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.41,
cairo version 1.18.0)
Windowing system distributor 'The X.Org Foundation', version 11.0.12101012
System Description: Guix System
Configured using:
'configure
CONFIG_SHELL=/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash
SHELL=/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash
--prefix=/gnu/store/s8757iarmns4dpklil8pgdikmb68v7bf-emacs-29.4
--enable-fast-install --with-cairo --with-modules
--with-native-compilation=aot --disable-build-details'
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: mail-followup-to.patch --]
[-- Type: text/patch, Size: 603 bytes --]
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index b49e3f9d9ca..b4c5a1e2436 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -4900,7 +4900,7 @@ If you always want Gnus to send messages in one piece, set
message-required-mail-headers))
;; otherwise, delete the MFT header if the field is empty
(when (equal "" (mail-fetch-field "mail-followup-to"))
- (message-remove-header "^Mail-Followup-To:")))
+ (message-remove-header "Mail-Followup-To")))
;; Insert some headers.
(let ((message-deletable-headers
(if news nil message-deletable-headers)))
next reply other threads:[~2024-12-02 23:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-02 23:17 Tomas Volf [this message]
2024-12-03 14:02 ` bug#74658: Remove the Mail-Followup-To header when empty Robert Pluim
2024-12-03 14:18 ` Eli Zaretskii
2024-12-03 15:22 ` Robert Pluim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87iks14qvd.fsf@wolfsden.cz \
--to=~@wolfsden.cz \
--cc=74658@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).