From unknown Thu Jun 19 14:04:02 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#37470 <37470@debbugs.gnu.org> To: bug#37470 <37470@debbugs.gnu.org> Subject: Status: 26.3; [PATCH] Default value and type of message-make-forward-subject-function Reply-To: bug#37470 <37470@debbugs.gnu.org> Date: Thu, 19 Jun 2025 21:04:02 +0000 retitle 37470 26.3; [PATCH] Default value and type of message-make-forward-= subject-function reassign 37470 emacs submitter 37470 Damien Cassou severity 37470 normal tag 37470 patch fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 05:23:49 2019 Received: (at submit) by debbugs.gnu.org; 20 Sep 2019 09:23:49 +0000 Received: from localhost ([127.0.0.1]:56776 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBF8m-00052S-V2 for submit@debbugs.gnu.org; Fri, 20 Sep 2019 05:23:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:58279) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBF8k-00052H-QJ for submit@debbugs.gnu.org; Fri, 20 Sep 2019 05:23:47 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:51823) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iBF8i-0005j1-Np for bug-gnu-emacs@gnu.org; Fri, 20 Sep 2019 05:23:45 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iBEuM-0005Zb-VB for bug-gnu-emacs@gnu.org; Fri, 20 Sep 2019 05:08:56 -0400 Received: from mail.choca.pics ([2001:bc8:20ab::1]:55456) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iBEuM-0005NN-Qh for bug-gnu-emacs@gnu.org; Fri, 20 Sep 2019 05:08:54 -0400 Received: from localhost (localhost.localdomain [IPv6:::1]) by mail.choca.pics (Postfix) with ESMTP id 65284F04E63 for ; Fri, 20 Sep 2019 11:08:44 +0200 (CEST) Received: from mail.choca.pics ([IPv6:::1]) by localhost (mail.choca.pics [IPv6:::1]) (amavisd-new, port 10032) with ESMTP id i53yivCLhPle for ; Fri, 20 Sep 2019 11:08:43 +0200 (CEST) Received: from localhost (localhost.localdomain [IPv6:::1]) by mail.choca.pics (Postfix) with ESMTP id 4A24FF04E72 for ; Fri, 20 Sep 2019 11:08:43 +0200 (CEST) X-Virus-Scanned: amavisd-new at choca.pics Received: from mail.choca.pics ([IPv6:::1]) by localhost (mail.choca.pics [IPv6:::1]) (amavisd-new, port 10026) with ESMTP id oO7MfIES1DQJ for ; Fri, 20 Sep 2019 11:08:43 +0200 (CEST) Received: from luz4 (arennes-659-1-13-31.w86-215.abo.wanadoo.fr [86.215.172.31]) by mail.choca.pics (Postfix) with ESMTPSA id 105FDF04E63 for ; Fri, 20 Sep 2019 11:08:43 +0200 (CEST) From: Damien Cassou To: bug-gnu-emacs@gnu.org Subject: 26.3; [PATCH] Default value and type of message-make-forward-subject-function Date: Fri, 20 Sep 2019 11:08:42 +0200 Message-ID: <8736grwd0l.fsf@cassou.me> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:bc8:20ab::1 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --=-=-= Content-Type: text/plain Please find attached a patch fixing the default value and type of message-make-forward-subject-function. -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Change-default-value-of-message-make-forward-subject.patch >From f50141be18a15233d45069484b004492b2956cf9 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Fri, 20 Sep 2019 11:04:26 +0200 Subject: [PATCH] Change default value of message-make-forward-subject-function * lisp/gnus/message.el (message-make-forward-subject-function): Change default value to be a list so it's easier for users to add functions. Change the type so the customize interface allows selecting multiple provided functions instead of just one. --- lisp/gnus/message.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 48d79107ea..3d0d7bc631 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -532,7 +532,7 @@ message-user-organization-file :group 'message-headers) (defcustom message-make-forward-subject-function - #'message-forward-subject-name-subject + (list #'message-forward-subject-name-subject) "List of functions called to generate subject headers for forwarded messages. The subject generated by the previous function is passed into each successive function. @@ -547,10 +547,11 @@ message-make-forward-subject-function to it." :group 'message-forwarding :link '(custom-manual "(message)Forwarding") - :type '(radio (function-item message-forward-subject-author-subject) - (function-item message-forward-subject-fwd) - (function-item message-forward-subject-name-subject) - (repeat :tag "List of functions" function))) + :type '(repeat :tag "List of functions" + (radio (function-item message-forward-subject-author-subject) + (function-item message-forward-subject-fwd) + (function-item message-forward-subject-name-subject) + (function)))) (defcustom message-forward-as-mime nil "Non-nil means forward messages as an inline/rfc822 MIME section. -- 2.21.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 06:02:27 2019 Received: (at 37470) by debbugs.gnu.org; 20 Sep 2019 10:02:27 +0000 Received: from localhost ([127.0.0.1]:56835 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBFkA-000619-V9 for submit@debbugs.gnu.org; Fri, 20 Sep 2019 06:02:27 -0400 Received: from mail-wr1-f46.google.com ([209.85.221.46]:46750) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBFk8-00060v-Rl for 37470@debbugs.gnu.org; Fri, 20 Sep 2019 06:02:25 -0400 Received: by mail-wr1-f46.google.com with SMTP id o18so6073268wrv.13 for <37470@debbugs.gnu.org>; Fri, 20 Sep 2019 03:02:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:mail-copies-to:gmane-reply-to-list :date:in-reply-to:message-id:mime-version:content-transfer-encoding; bh=JYdIRdolUQKW362b9259G+bWC93hNjSevpFof6Iyieo=; b=QzeCuhjpoMqhs1kvgrp3LzIB4xln4Jvg6UBAFfCcJ1/9TIKP4zOmhyUnUYSa46QsQq 3ElVz9BckISjLv9qE6mJIUQhc+I6ZWmRB7KB2sZqbyUUWrV5axV79eY0TB/aDpCUFde0 CpjIX1DAEgcF3DbxCMuFC+iOR9IJkZEuGKmlV1caR5wNxq4dW8mNgVPdRNztnd0rA5ZJ exuwcK7C+kW2Qxg94wQOe0ESKgjr05cdPsUSmNdI+Khh9R5XivMwxaVdL75s/YUKKInk dkwtFHnAWHTQKh93YYXllNryhUv3RXz/TuYVfWFBhVOtYIXXmSSv4KKFQ2t243WL2ILi GYwA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:mime-version :content-transfer-encoding; bh=JYdIRdolUQKW362b9259G+bWC93hNjSevpFof6Iyieo=; b=U2u665ik4GLNhzAE5764ZJ1/xbXw7Cegcne2vhEx8bkf6secTRKGgDtTL4hhmbI7Vv G0xA+2BgU8lsO3wPzoHJWt8XaN50G+zc2NUrL9HJzZFjowuR5wLmB1/qJDJRXni/0afS 9jSd7eKPHLb/vbgo/uThDYm9rSnboCRJvRF4HYHMgTQcd0IPyUSvg5M+jrSY83Dl8cXh 7i+PgANYtFRuuDBb9izO8CI9ovc+a6P9tSJA3uGKHV0ablMQ4Lyg0dxyBi+MqAxqjd7k 2Gd3LIJ9tXF1TlgeOtxzT/HR0rdo2eTteWn4w6I0/BZ+NWjpr5xlCRhsQ9+0EfkzPySm yXdg== X-Gm-Message-State: APjAAAXeZa7czcyWGWUyCIUOAr1kLu6yvuOGqYsyEluDYG+dPN5GNZRm mYVzXu5lEYGMz2cZ/zudMRQ0ZAyV X-Google-Smtp-Source: APXvYqzJjnZbq5Kt+QIBHNQ4Hq+dWSF7VyJ6fJgdlwzdfEe+GdLK1+U/01/sDpVZAGnZDb5C3GEXig== X-Received: by 2002:adf:f1d1:: with SMTP id z17mr11908901wro.330.1568973737697; Fri, 20 Sep 2019 03:02:17 -0700 (PDT) Received: from rpluim-mac ([149.5.228.1]) by smtp.gmail.com with ESMTPSA id z142sm2798280wmc.24.2019.09.20.03.02.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 20 Sep 2019 03:02:16 -0700 (PDT) From: Robert Pluim To: Damien Cassou Subject: Re: bug#37470: 26.3; [PATCH] Default value and type of message-make-forward-subject-function References: <8736grwd0l.fsf@cassou.me> X-Debbugs-No-Ack: yes Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Fri, 20 Sep 2019 12:02:15 +0200 In-Reply-To: <8736grwd0l.fsf@cassou.me> (Damien Cassou's message of "Fri, 20 Sep 2019 11:08:42 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37470 Cc: 37470@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Fri, 20 Sep 2019 11:08:42 +0200, Damien Cassou = said: Damien> Please find attached a patch fixing the default value and type = of Damien> message-make-forward-subject-function. Damien> + :type '(repeat :tag "List of functions" Damien> + (radio (function-item message-forward-subject= -author-subject) Damien> + (function-item message-forward-subject= -fwd) Damien> + (function-item message-forward-subject= -name-subject) Damien> + (function)))) I don=CA=BCt see how this could work: 'radio allows selecting only one from the list. How about something like this: diff --git i/lisp/gnus/message.el w/lisp/gnus/message.el index 48d79107ea..1a1cb79039 100644 --- i/lisp/gnus/message.el +++ w/lisp/gnus/message.el @@ -532,7 +532,7 @@ message-user-organization-file :group 'message-headers) =20 (defcustom message-make-forward-subject-function - #'message-forward-subject-name-subject + (list #'message-forward-subject-name-subject) "List of functions called to generate subject headers for forwarded mess= ages. The subject generated by the previous function is passed into each successive function. @@ -547,10 +547,11 @@ message-make-forward-subject-function to it." :group 'message-forwarding :link '(custom-manual "(message)Forwarding") - :type '(radio (function-item message-forward-subject-author-subject) - (function-item message-forward-subject-fwd) - (function-item message-forward-subject-name-subject) - (repeat :tag "List of functions" function))) + :type '(set :tag "List of functions" + (function-item message-forward-subject-author-subject) + (function-item message-forward-subject-fwd) + (function-item message-forward-subject-name-subject) + (repeat :tag "User functions" :inline t (function :tag "Func= tion")))) =20 (defcustom message-forward-as-mime nil "Non-nil means forward messages as an inline/rfc822 MIME section. From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 06:22:27 2019 Received: (at 37470) by debbugs.gnu.org; 20 Sep 2019 10:22:27 +0000 Received: from localhost ([127.0.0.1]:56842 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBG3W-0006UT-Pt for submit@debbugs.gnu.org; Fri, 20 Sep 2019 06:22:27 -0400 Received: from mail.choca.pics ([62.210.108.126]:59540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBG3U-0006UK-NA for 37470@debbugs.gnu.org; Fri, 20 Sep 2019 06:22:25 -0400 Received: from localhost (localhost.localdomain [IPv6:::1]) by mail.choca.pics (Postfix) with ESMTP id 33C39F04EBE; Fri, 20 Sep 2019 12:22:23 +0200 (CEST) Received: from mail.choca.pics ([IPv6:::1]) by localhost (mail.choca.pics [IPv6:::1]) (amavisd-new, port 10032) with ESMTP id XNaEQu9F8o5H; Fri, 20 Sep 2019 12:22:22 +0200 (CEST) Received: from localhost (localhost.localdomain [IPv6:::1]) by mail.choca.pics (Postfix) with ESMTP id 7AA83F04EC5; Fri, 20 Sep 2019 12:22:22 +0200 (CEST) X-Virus-Scanned: amavisd-new at choca.pics Received: from mail.choca.pics ([IPv6:::1]) by localhost (mail.choca.pics [IPv6:::1]) (amavisd-new, port 10026) with ESMTP id 3fA7Yz7jRGkl; Fri, 20 Sep 2019 12:22:22 +0200 (CEST) Received: from luz4 (arennes-659-1-13-31.w86-215.abo.wanadoo.fr [86.215.172.31]) by mail.choca.pics (Postfix) with ESMTPSA id 43E55F04EBE; Fri, 20 Sep 2019 12:22:22 +0200 (CEST) From: Damien Cassou To: Robert Pluim Subject: Re: bug#37470: 26.3; [PATCH] Default value and type of message-make-forward-subject-function In-Reply-To: References: <8736grwd0l.fsf@cassou.me> Date: Fri, 20 Sep 2019 12:22:21 +0200 Message-ID: <87ftkruv1e.fsf@cassou.me> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37470 Cc: 37470@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Robert, Robert Pluim writes: >>>>>> On Fri, 20 Sep 2019 11:08:42 +0200, Damien Cassou = said: > > Damien> Please find attached a patch fixing the default value and typ= e of > Damien> message-make-forward-subject-function. > Damien> + :type '(repeat :tag "List of functions" > Damien> + (radio (function-item message-forward-subje= ct-author-subject) > Damien> + (function-item message-forward-subje= ct-fwd) > Damien> + (function-item message-forward-subje= ct-name-subject) > Damien> + (function)))) > > I don=CA=BCt see how this could work: 'radio allows selecting only one fr= om > the list. but the 'radio is embedded within a 'repeat which seems to be exactly what I want. > How about something like this: > + :type '(set :tag "List of functions" > + (function-item message-forward-subject-author-subject) > + (function-item message-forward-subject-fwd) > + (function-item message-forward-subject-name-subject) > + (repeat :tag "User functions" :inline t (function :tag "Fu= nction")))) this doesn't work because order of functions has a meaning (e.g., adding "Fwd:" before the author or after the author). --=20 Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 08:14:21 2019 Received: (at 37470) by debbugs.gnu.org; 20 Sep 2019 12:14:21 +0000 Received: from localhost ([127.0.0.1]:56912 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBHno-0002xi-QT for submit@debbugs.gnu.org; Fri, 20 Sep 2019 08:14:20 -0400 Received: from mail-wm1-f42.google.com ([209.85.128.42]:33288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBHnm-0002xS-Rg for 37470@debbugs.gnu.org; Fri, 20 Sep 2019 08:14:19 -0400 Received: by mail-wm1-f42.google.com with SMTP id r17so9422425wme.0 for <37470@debbugs.gnu.org>; Fri, 20 Sep 2019 05:14:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:mail-copies-to:gmane-reply-to-list :date:in-reply-to:message-id:mime-version; bh=CnOKogr3GCtKem9Y/ZP6zS/Fo3+ab+TWzsX11ovo6kw=; b=rOUJ1cnyTEO4K3bixI7QiTk4ZA6brgVu3Yo5qn9javV5sYRiL3Azt/xuivtbZqrLku wmMslRDLfqBAfC1w/RwDpEGvpZEA2JdnXHS+g2EfYCjyKpVDEg2OVGeu4oRd8XypXvmg YEMV5C0pZcUoripj2R/8p0h6Sbaenzm+2QVf6wGTzs/4HcsoSwtS6va0IBWl9ArF7Sxc IySVlApiT4Be2EsThIr9/ElK9ZWyBI+clyDxdercxr+Txzba7/WNxali3cmprl4bWdXp Pyez/gOWdxjzaeiwuIczOhDid17nyXttc6rhOjnRQ0608G6FiJRy3JKHL0YMkw5UKAl6 ZXGA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:mime-version; bh=CnOKogr3GCtKem9Y/ZP6zS/Fo3+ab+TWzsX11ovo6kw=; b=tymc+7vZZ9XHV+kz5l0FvKCUTfR9Pj4tcrWdXHUbLLPXjENJdZ4WjoNFOLkZsI2mij 9gYIkcy2K0ms1KCQvhCzzRwEOii8+rLxVHbYTQlRh8Gd0/KnUz9KrkDGPBpj+bX8Z8gr PCpdqHPEbLS6jw2pz9nyUapsKWo1Ek4hwcV9lcOMLVqqfELjTGkY/9X5MtbfcIcgAUt0 BjDXcqJONprLcxsxHwbzT1Wtr3IGm96v+yGyQd2ToLv3eBQB2WfguhXz0o7smjfMphbm xx+JKiiWNqJvpUDdGfJS3SSCpTV09utelECkG+DWYeZCdWc3fiOd6TsTPLQJXK7HekcS EctQ== X-Gm-Message-State: APjAAAUPKNxDb0tlXTSs/0PwHfJ2sTAZOJVqnO33RxKH9xn8KMmRYlqI p2xCcs2wdgYBnvfJZRWtmEl3Y42x X-Google-Smtp-Source: APXvYqzMjVlt+y7VLe+owrcXi9v5l0Ggg09Z36s4JzvboGztL40J/V+LKiu0dsRu9RFWcLRMeRi/Sg== X-Received: by 2002:a7b:c40c:: with SMTP id k12mr3498809wmi.151.1568981652469; Fri, 20 Sep 2019 05:14:12 -0700 (PDT) Received: from rpluim-mac ([149.5.228.1]) by smtp.gmail.com with ESMTPSA id r13sm2637920wrn.0.2019.09.20.05.14.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 20 Sep 2019 05:14:11 -0700 (PDT) From: Robert Pluim To: Damien Cassou Subject: Re: bug#37470: 26.3; [PATCH] Default value and type of message-make-forward-subject-function References: <8736grwd0l.fsf@cassou.me> <87ftkruv1e.fsf@cassou.me> X-Debbugs-No-Ack: yes Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Fri, 20 Sep 2019 14:14:10 +0200 In-Reply-To: <87ftkruv1e.fsf@cassou.me> (Damien Cassou's message of "Fri, 20 Sep 2019 12:22:21 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37470 Cc: 37470@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Fri, 20 Sep 2019 12:22:21 +0200, Damien Cassou said: Damien> but the 'radio is embedded within a 'repeat which seems to be exactly Damien> what I want. Oh, I misunderstood what you wanted. Yes, your way works fine. Robert From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 13:29:03 2019 Received: (at 37470) by debbugs.gnu.org; 20 Sep 2019 17:29:03 +0000 Received: from localhost ([127.0.0.1]:58385 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBMiN-0004u8-2M for submit@debbugs.gnu.org; Fri, 20 Sep 2019 13:29:03 -0400 Received: from quimby.gnus.org ([80.91.231.51]:60214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBMiL-0004ti-LN for 37470@debbugs.gnu.org; Fri, 20 Sep 2019 13:29:02 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iBMiH-0003rv-NW; Fri, 20 Sep 2019 19:29:00 +0200 From: Lars Ingebrigtsen To: Damien Cassou Subject: Re: bug#37470: 26.3; [PATCH] Default value and type of message-make-forward-subject-function References: <8736grwd0l.fsf@cassou.me> Date: Fri, 20 Sep 2019 19:28:57 +0200 In-Reply-To: <8736grwd0l.fsf@cassou.me> (Damien Cassou's message of "Fri, 20 Sep 2019 11:08:42 +0200") Message-ID: <87v9tmanc6.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Damien Cassou writes: > Please find attached a patch fixing the default value and type of > message-make-forward-subject-function. [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37470 Cc: 37470@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Damien Cassou writes: > Please find attached a patch fixing the default value and type of > message-make-forward-subject-function. [...] > (defcustom message-make-forward-subject-function > - #'message-forward-subject-name-subject > + (list #'message-forward-subject-name-subject) > "List of functions called to generate subject headers for forwarded > message Looks good to me; applied to the trunk. (I added a :version tag since the default changed syntactically.) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 13:29:07 2019 Received: (at control) by debbugs.gnu.org; 20 Sep 2019 17:29:07 +0000 Received: from localhost ([127.0.0.1]:58388 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBMiR-0004uO-EK for submit@debbugs.gnu.org; Fri, 20 Sep 2019 13:29:07 -0400 Received: from quimby.gnus.org ([80.91.231.51]:60232) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBMiP-0004uG-HE for control@debbugs.gnu.org; Fri, 20 Sep 2019 13:29:05 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iBMiM-0003s7-R5 for control@debbugs.gnu.org; Fri, 20 Sep 2019 19:29:04 +0200 Date: Fri, 20 Sep 2019 19:29:02 +0200 Message-Id: <87tv96anc1.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #37470 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 37470 fixed close 37470 27.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 37470 fixed close 37470 27.1 quit From unknown Thu Jun 19 14:04:02 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 19 Oct 2019 11:24:10 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator