From unknown Tue Jun 17 01:46:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#47330: [PATCH] Add options to save sent mail Resent-From: "Andrea G. Monaco" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 22 Mar 2021 22:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 47330 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 47330@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161645071119240 (code B ref -1); Mon, 22 Mar 2021 22:06:02 +0000 Received: (at submit) by debbugs.gnu.org; 22 Mar 2021 22:05:11 +0000 Received: from localhost ([127.0.0.1]:59050 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lOSff-00050G-DN for submit@debbugs.gnu.org; Mon, 22 Mar 2021 18:05:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:44232) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lOSfe-000507-BF for submit@debbugs.gnu.org; Mon, 22 Mar 2021 18:05:10 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54734) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lOSfc-0001B6-AT for bug-gnu-emacs@gnu.org; Mon, 22 Mar 2021 18:05:08 -0400 Received: from confino.investici.org ([212.103.72.250]:64543) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lOSfY-0001Za-SU for bug-gnu-emacs@gnu.org; Mon, 22 Mar 2021 18:05:08 -0400 Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4F47pK2zZ9z113P for ; Mon, 22 Mar 2021 22:04:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1616450697; bh=pSNWlyq19tJtcU64tgB6CyUoYB5AhMzVK2vO1eipLiY=; h=From:To:Subject:Date:From; b=lr+sT6OvKk97vR2eOWhexxkT4HrCbqgzZsJit5JmM0Sy3F8z1EhqiZMuvZ2m9LK4b ZiMmSKgbyF4jhKhBRelr/YD9UtluO28WE/59cIKANYVHRuEMLOg4Z/41SGPX0l2MK8 GNoLTL+Vs1M6ccVbiDG6ADOofGz3o98lrsMwEJDI= Received: from [212.103.72.250] (mx1.investici.org [212.103.72.250]) (Authenticated sender: andrea.monaco@autistici.org) by localhost (Postfix) with ESMTPSA id 4F47pK1vT7z110f for ; Mon, 22 Mar 2021 22:04:57 +0000 (UTC) From: "Andrea G. Monaco" Date: Mon, 22 Mar 2021 23:04:56 +0100 Message-ID: <87r1k6x2t3.fsf@autistici.org> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=212.103.72.250; envelope-from=andrea.monaco@autistici.org; helo=confino.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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 (--) I think this might be useful, for me it is. Add options to save sent mail * lisp/gnus/message.el: add defcustoms message-save-sent-mail and message-sent-mail-directory (message-send): save sent mail if message-save-sent-mail is set diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 1e0362a3bf..e159d50ebe 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -469,6 +469,18 @@ message-confirm-send :link '(custom-manual "(message)Sending Variables") :type 'boolean) +(defcustom message-save-sent-mail nil + "When non-nil, save messages after successfully sending them, after running message-sent-hook." + :group 'message-sending + :group 'message-mail + :type 'boolean) + +(defcustom message-sent-mail-directory (concat message-directory "sent/") + "Directory where sent mail is saved, when message-save-sent-mail is set." + :group 'message-sending + :group 'message-mail + :type 'directory) + (defcustom message-generate-new-buffers 'unsent "Say whether to create a new message buffer to compose a message. Valid values include: @@ -4364,7 +4376,7 @@ message-send (message-do-fcc) (save-excursion (run-hooks 'message-sent-hook)) - (message "Sending...done") + (message "Sending... done") ;; Do ecomplete address snarfing. (when (and (message-mail-alias-type-p 'ecomplete) (not message-inhibit-ecomplete)) @@ -4373,6 +4385,9 @@ message-send (set-buffer-modified-p nil) (delete-auto-save-file-if-necessary t) (message-disassociate-draft) + ;; Save mail if the user wishes so + (if message-save-sent-mail + (write-file (concat message-sent-mail-directory (format-time-string "%Y%m%d-%H%M%S")))) ;; Delete other mail buffers and stuff. (message-do-send-housekeeping) (message-do-actions message-send-actions) From unknown Tue Jun 17 01:46:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#47330: [PATCH] Add options to save sent mail Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 23 Mar 2021 07:27:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 47330 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: "Andrea G. Monaco" Cc: 47330@debbugs.gnu.org Received: via spool by 47330-submit@debbugs.gnu.org id=B47330.161648437031930 (code B ref 47330); Tue, 23 Mar 2021 07:27:01 +0000 Received: (at 47330) by debbugs.gnu.org; 23 Mar 2021 07:26:10 +0000 Received: from localhost ([127.0.0.1]:59425 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lObQY-0008Iv-H4 for submit@debbugs.gnu.org; Tue, 23 Mar 2021 03:26:10 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37392) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lObQW-0008Ih-4m for 47330@debbugs.gnu.org; Tue, 23 Mar 2021 03:26:10 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:49254) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lObQP-0005Rt-PO; Tue, 23 Mar 2021 03:26:01 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2672 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lObQP-0006lC-5e; Tue, 23 Mar 2021 03:26:01 -0400 Date: Tue, 23 Mar 2021 09:26:06 +0200 Message-Id: <83o8fa8h69.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87r1k6x2t3.fsf@autistici.org> (andrea.monaco@autistici.org) References: <87r1k6x2t3.fsf@autistici.org> X-Spam-Score: -0.7 (/) 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.7 (-) > From: "Andrea G. Monaco" > Date: Mon, 22 Mar 2021 23:04:56 +0100 > > Add options to save sent mail > > * lisp/gnus/message.el: add defcustoms message-save-sent-mail and > message-sent-mail-directory > (message-send): save sent mail if message-save-sent-mail is set This happens already if you add the Fcc header to the message, AFAIK. Why is there a need for a separate global knob, when you can specify that on a per-message basis? Thanks. From unknown Tue Jun 17 01:46:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#47330: [PATCH] Add options to save sent mail References: <87r1k6x2t3.fsf@autistici.org> In-Reply-To: <87r1k6x2t3.fsf@autistici.org> Resent-From: "Andrea G. Monaco" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 23 Mar 2021 21:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 47330 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 47330@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16165340047065 (code B ref -1); Tue, 23 Mar 2021 21:14:02 +0000 Received: (at submit) by debbugs.gnu.org; 23 Mar 2021 21:13:24 +0000 Received: from localhost ([127.0.0.1]:33214 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lOoKu-0001pd-55 for submit@debbugs.gnu.org; Tue, 23 Mar 2021 17:13:24 -0400 Received: from lists.gnu.org ([209.51.188.17]:34742) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lOoKs-0001pU-2o for submit@debbugs.gnu.org; Tue, 23 Mar 2021 17:13:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37406) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lOoKr-0006WZ-Ke for bug-gnu-emacs@gnu.org; Tue, 23 Mar 2021 17:13:09 -0400 Received: from confino.investici.org ([212.103.72.250]:42747) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lOoKp-0000Ji-8g for bug-gnu-emacs@gnu.org; Tue, 23 Mar 2021 17:13:09 -0400 Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4F4kbz20Z1z119Z for ; Tue, 23 Mar 2021 21:13:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1616533983; bh=lvvkAnaN27ebFYHcNU0Rq7p9mwntyNAqGFzUDyGwQ74=; h=From:To:Subject:Date:From; b=HrNv1/IIElK0viqN7VFbHonLFOqm4shF0LPCMxdDSgpZQ5KjznY2s2YzHthYxMHiB 1I2zSTJ9k8MlSO0Vfa/PbEiJF4sYCukzWSWgq73OszlBnfjwdDymoIDijuPq6ZRIJl W/VbebJsqLJDprpQT4YZ1Ag2xRRuFc/bFmpIU0MI= Received: from [212.103.72.250] (mx1.investici.org [212.103.72.250]) (Authenticated sender: andrea.monaco@autistici.org) by localhost (Postfix) with ESMTPSA id 4F4kbz11jNz119Q for ; Tue, 23 Mar 2021 21:13:03 +0000 (UTC) From: "Andrea G. Monaco" Date: Tue, 23 Mar 2021 22:13:02 +0100 Message-ID: <87pmzpzi8x.fsf@autistici.org> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=212.103.72.250; envelope-from=andrea.monaco@autistici.org; helo=confino.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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 (--) > This happens already if you add the Fcc header to the message, > AFAIK. This is not mentioned in the docs. Also, I think it's a bit of a hack, it sends mail back and forth needlessly and lumps it with other received mail. I think it's more natural to save it when you send it. Andrea Monaco From unknown Tue Jun 17 01:46:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#47330: [PATCH] Add options to save sent mail References: <87r1k6x2t3.fsf@autistici.org> In-Reply-To: <87r1k6x2t3.fsf@autistici.org> Resent-From: "Andrea G. Monaco" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 23 Mar 2021 21:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 47330 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 47330@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16165344977895 (code B ref -1); Tue, 23 Mar 2021 21:22:02 +0000 Received: (at submit) by debbugs.gnu.org; 23 Mar 2021 21:21:37 +0000 Received: from localhost ([127.0.0.1]:33233 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lOoT2-00023H-QW for submit@debbugs.gnu.org; Tue, 23 Mar 2021 17:21:37 -0400 Received: from lists.gnu.org ([209.51.188.17]:45418) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lOoT0-000239-Er for submit@debbugs.gnu.org; Tue, 23 Mar 2021 17:21:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39650) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lOoSz-0006uk-9s for bug-gnu-emacs@gnu.org; Tue, 23 Mar 2021 17:21:34 -0400 Received: from confino.investici.org ([2a00:c38:11e:ffff::a020]:25297) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lOoSw-0003oG-7Q for bug-gnu-emacs@gnu.org; Tue, 23 Mar 2021 17:21:33 -0400 Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4F4knf1kslz119F for ; Tue, 23 Mar 2021 21:21:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1616534486; bh=Lo9qWku9svx95spQ6BEOTCEOCQtHUS7qApkmsQST9OU=; h=From:To:Subject:Date:From; b=Hzr6ZdFeVdIc3lU/FiCaVdEdIQx1BWo+VJtc5+v7NTIpJFyhZ2plLKi8/JzcbWjZ7 fjfAQlBnK04uS0HiE373iTxLggO+hT7928KdIi2DHvXf7MfGz5AKv1umLaLhveb2g3 fchZANQVmZuiGK+6jd/YxHRnOmo9rqyXlXSBY/xI= Received: from [212.103.72.250] (mx1.investici.org [212.103.72.250]) (Authenticated sender: andrea.monaco@autistici.org) by localhost (Postfix) with ESMTPSA id 4F4knf0j4xz119D for ; Tue, 23 Mar 2021 21:21:26 +0000 (UTC) From: "Andrea G. Monaco" Date: Tue, 23 Mar 2021 22:21:25 +0100 Message-ID: <87mtutzhuy.fsf@autistici.org> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=2a00:c38:11e:ffff::a020; envelope-from=andrea.monaco@autistici.org; helo=confino.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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 (--) Wait, I thought you were talking about Bcc. I didn't see Fcc, now I found it. Andrea From unknown Tue Jun 17 01:46:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#47330: [PATCH] Add options to save sent mail Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 24 Mar 2021 10:31:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 47330 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: "Andrea G. Monaco" Cc: 47330@debbugs.gnu.org Received: via spool by 47330-submit@debbugs.gnu.org id=B47330.161658184320248 (code B ref 47330); Wed, 24 Mar 2021 10:31:02 +0000 Received: (at 47330) by debbugs.gnu.org; 24 Mar 2021 10:30:43 +0000 Received: from localhost ([127.0.0.1]:34040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lP0mh-0005GW-Gs for submit@debbugs.gnu.org; Wed, 24 Mar 2021 06:30:43 -0400 Received: from quimby.gnus.org ([95.216.78.240]:37454) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lP0mf-0005GG-Ce for 47330@debbugs.gnu.org; Wed, 24 Mar 2021 06:30:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=or77yBU+ooklhFdYQwhK3saLpkZSysW9Hzjdt3abkDA=; b=Rrysa7lDKulqeBrHQN/BLRFm9e pUWzHF5KGNSnVbSlWRFA8xZI351GUa03ociVFql0olIR1ZTGAv7uanz95w3Na8XlTkDxe7oCpTUq6 6uS+1dLsJbWpwxNhVhorNWz/E3pX7HyuGeviJqiYMLr/H14+q8mFFbpZRtz/1lXP0uM8=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lP0mV-00089r-9K; Wed, 24 Mar 2021 11:30:34 +0100 From: Lars Ingebrigtsen References: <87r1k6x2t3.fsf@autistici.org> <87mtutzhuy.fsf@autistici.org> X-Now-Playing: The Raincoats's _Moving_: "Balloon" Date: Wed, 24 Mar 2021 11:30:29 +0100 In-Reply-To: <87mtutzhuy.fsf@autistici.org> (Andrea G. Monaco's message of "Tue, 23 Mar 2021 22:21:25 +0100") Message-ID: <878s6cdet6.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.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: "Andrea G. Monaco" writes: > Wait, I thought you were talking about Bcc. I didn't see Fcc, now I > found it. So I think Message already has a facility for this, and I'm closing this bug report. 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-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 (-) "Andrea G. Monaco" writes: > Wait, I thought you were talking about Bcc. I didn't see Fcc, now I > found it. So I think Message already has a facility for this, and I'm closing this bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 24 06:30:53 2021 Received: (at control) by debbugs.gnu.org; 24 Mar 2021 10:30:53 +0000 Received: from localhost ([127.0.0.1]:34043 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lP0mq-0005Gu-Q9 for submit@debbugs.gnu.org; Wed, 24 Mar 2021 06:30:53 -0400 Received: from quimby.gnus.org ([95.216.78.240]:37468) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lP0mo-0005Gg-TZ for control@debbugs.gnu.org; Wed, 24 Mar 2021 06:30:51 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=gMY1ZVH9nWtHewp8rVXYE9dZe3munajVzTb8S8K01K0=; b=SpjCnZ2phJ8+eABqyzHEIggBG1 7Q7Lxo5k7nA0L2zE6WxgByPZbeIO9Hxa7LdhhwmTnVhuTRuiWu68f6r0J58BaK71uNoDJqOVGGoo8 r6bTwnkxT4+zVf5O2pNMKhJwyZE8yfs7deGXLnvO49HCyL3A3LLvD+RErpib9m8u56C8=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lP0mh-0008A0-8u for control@debbugs.gnu.org; Wed, 24 Mar 2021 11:30:45 +0100 Date: Wed, 24 Mar 2021 11:30:41 +0100 Message-Id: <877dlwdesu.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #47330 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: close 47330 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 (-) close 47330 quit