From unknown Fri Aug 15 17:55:39 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#17876 <17876@debbugs.gnu.org> To: bug#17876 <17876@debbugs.gnu.org> Subject: Status: 24.3; Incorrect frame resize Reply-To: bug#17876 <17876@debbugs.gnu.org> Date: Sat, 16 Aug 2025 00:55:39 +0000 retitle 17876 24.3; Incorrect frame resize reassign 17876 emacs submitter 17876 penthief severity 17876 normal tag 17876 moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 29 13:47:54 2014 Received: (at submit) by debbugs.gnu.org; 29 Jun 2014 17:47:54 +0000 Received: from localhost ([127.0.0.1]:36950 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X1JCj-0003PL-CE for submit@debbugs.gnu.org; Sun, 29 Jun 2014 13:47:54 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40728) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X1GRq-0006jn-Ry for submit@debbugs.gnu.org; Sun, 29 Jun 2014 10:51:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X1GRf-0006YQ-RZ for submit@debbugs.gnu.org; Sun, 29 Jun 2014 10:51:13 -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 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:42514) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1GRf-0006YM-O8 for submit@debbugs.gnu.org; Sun, 29 Jun 2014 10:51:07 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1GRa-00015a-Gl for bug-gnu-emacs@gnu.org; Sun, 29 Jun 2014 10:51:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X1GRV-0006Xh-Cu for bug-gnu-emacs@gnu.org; Sun, 29 Jun 2014 10:51:02 -0400 Received: from mx.sdf.org ([192.94.73.24]:56914 helo=sdf.lonestar.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1GRV-0006Xd-43 for bug-gnu-emacs@gnu.org; Sun, 29 Jun 2014 10:50:57 -0400 Received: from wm.sdf.org (mx.sdf.org [192.94.73.24]) by sdf.lonestar.org (8.14.8/8.14.5) with ESMTP id s5TEosuG011274 for ; Sun, 29 Jun 2014 14:50:54 GMT MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sun, 29 Jun 2014 15:50:54 +0100 From: penthief To: bug-gnu-emacs@gnu.org Subject: 24.3; Incorrect frame resize Message-ID: X-Sender: penthief@SDF.ORG User-Agent: Roundcube Webmail/1.0.1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 29 Jun 2014 13:47:47 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) When setting the a font on a frame after a resize, there is an apparent race condition that more often than not, causes the frame height and/or width to be reset to an incorrect value. This behaviour also occurs on 24.3.92. 1. Create a file bug-frame-resize.el with the following contents (assuming that Courier and Monaco are present on the system). (setq -last-used-font nil) (setq -target-font-1 "Courier") (setq -target-font-2 "Monaco") (setq -target-height 5) (setq -target-width 5) (defun bug-frame-resize () (interactive) (with-selected-frame (make-frame) (set-frame-width (selected-frame) -target-width) (set-frame-height (selected-frame) -target-height) (let ((target-font (if (equal -last-used-font -target-font-1) -target-font-2 -target-font-1))) (setq -last-used-font target-font) (set-frame-font target-font)))) 2. Start emacs $ /usr/bin/emacs24-x -Q -l bug-frame-resize.el 3. Type "M-x bug-frame-resize" four or five times. The frames appear with the correct size briefly, but then resize after a split second. On this machine this usually results one of the height or width is incorrect on each of the created frames. The bug requires the font to be changed when creating the frame. In GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7) of 2014-03-07 on lamiak, modified by Debian Windowing system distributor `The X.Org Foundation', version 11.0.11501000 System Description: Ubuntu 14.04 LTS Configured using: `configure '--build' 'x86_64-linux-gnu' '--build' 'x86_64-linux-gnu' '--prefix=/usr' '--sharedstatedir=/var/lib' '--libexecdir=/usr/lib' '--localstatedir=/var/lib' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--with-pop=yes' '--enable-locallisppath=/etc/emacs24:/etc/emacs:/usr/local/share/emacs/24.3/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/24.3/site-lisp:/usr/share/emacs/site-lisp' '--with-crt-dir=/usr/lib/x86_64-linux-gnu' '--with-x=yes' '--with-x-toolkit=gtk3' '--with-toolkit-scroll-bars' 'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro' 'CPPFLAGS=-D_FORTIFY_SOURCE=2'' Important settings: value of $LC_CTYPE: en_US.UTF-8 value of $LANG: en_US.UTF-8 value of $XMODIFIERS: @im=ibus locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent input: M-x r e - e - b Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils time-date tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty emacs) From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 04 06:46:54 2020 Received: (at 17876) by debbugs.gnu.org; 4 Dec 2020 11:46:54 +0000 Received: from localhost ([127.0.0.1]:43130 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kl9Y6-0004nm-6u for submit@debbugs.gnu.org; Fri, 04 Dec 2020 06:46:54 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58362) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kl9Y1-0004fN-1O for 17876@debbugs.gnu.org; Fri, 04 Dec 2020 06:46:51 -0500 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=5ItQDwoAX3zTFL9/v40ES7M4YYvL025+G4iOqXDRWhg=; b=qhqp3ngTNl5j1qdenoP2n4SkIG SKYWumIJ6h9T0xO4Z3D31r9cEu+/vTc8qYuj+3B4aTcghHo0Rwzf14Zv7cHe6d9WCWghV3H+Klj4Z P7SPIuooEUWPIvRCXcz2qiHoVBZJfcwqqPKWWxfjksJeQhXFxx9Gon2aNcgNODR32Z1Q=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kl9Xq-0008B2-QS; Fri, 04 Dec 2020 12:46:42 +0100 From: Lars Ingebrigtsen To: penthief Subject: Re: bug#17876: 24.3; Incorrect frame resize References: X-Now-Playing: The Matthew Herbert Big Band's _The State Between Us (1)_: "Be Still" Date: Fri, 04 Dec 2020 12:46:37 +0100 In-Reply-To: (penthief@sdf.org's message of "Sun, 29 Jun 2014 15:50:54 +0100") Message-ID: <87blf9iyjm.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: penthief writes: > When setting the a font on a frame after a resize, there is an apparent > race condition that more often than not, causes the frame height > and/or width to be reset to an incorrect value. > > This [...] 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: 17876 Cc: 17876@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 (-) penthief writes: > When setting the a font on a frame after a resize, there is an apparent > race condition that more often than not, causes the frame height > and/or width to be reset to an incorrect value. > > This behaviour also occurs on 24.3.92. > > 1. Create a file bug-frame-resize.el with the following contents > (assuming that Courier and Monaco are present on the system). > > (setq -last-used-font nil) > (setq -target-font-1 "Courier") > (setq -target-font-2 "Monaco") > (setq -target-height 5) > (setq -target-width 5) > > (defun bug-frame-resize () > (interactive) > (with-selected-frame (make-frame) > (set-frame-width (selected-frame) -target-width) > (set-frame-height (selected-frame) -target-height) > (let ((target-font (if (equal -last-used-font -target-font-1) > -target-font-2 > -target-font-1))) > (setq -last-used-font target-font) > (set-frame-font target-font)))) > > 2. Start emacs > > $ /usr/bin/emacs24-x -Q -l bug-frame-resize.el > > 3. Type "M-x bug-frame-resize" four or five times. > > The frames appear with the correct size briefly, but then resize after > a split second. On this machine this usually results one of the height > or width is incorrect on each of the created frames. (This bug report unfortunately got no response at the time.) I tried reproducing this in Emacs 28 on Debian/bullseye, but was unable to. All the Monaco frames have the exact same width/height, and so do all the Courier frames. Do you still see this issue in more recent Emacs versions? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 04 06:46:56 2020 Received: (at control) by debbugs.gnu.org; 4 Dec 2020 11:46:57 +0000 Received: from localhost ([127.0.0.1]:43133 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kl9Y8-0004pd-Fq for submit@debbugs.gnu.org; Fri, 04 Dec 2020 06:46:56 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58386) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kl9Y6-0004jq-Ly for control@debbugs.gnu.org; Fri, 04 Dec 2020 06:46:55 -0500 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=VwHk+q0RjgxocnevYexZkLaIBkVGiiKsaw9IqAqgD7g=; b=YesIHNCJD9Frsjtr/ikRIXnrUS LwUes7zdFpWpzK+kNMrZXs1JdG+8QHWP6wwqCE5jD6JFEiOxsdmY8GP5O4QW2fE3WKIgP1SbOdFyA 1/cbSaQcWp/pHAzRcvBtbrx2lMxyM64ldWkxI4+Ol8XdldVoa8qCZTcRMKvsvMmjd4XI=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kl9Xy-0008BB-Th for control@debbugs.gnu.org; Fri, 04 Dec 2020 12:46:49 +0100 Date: Fri, 04 Dec 2020 12:46:45 +0100 Message-Id: <87a6utiyje.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #17876 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 17876 + moreinfo 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 17876 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 04 07:15:46 2020 Received: (at 17876) by debbugs.gnu.org; 4 Dec 2020 12:15:46 +0000 Received: from localhost ([127.0.0.1]:43318 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1klA01-0000Yl-Lh for submit@debbugs.gnu.org; Fri, 04 Dec 2020 07:15:45 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58838) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kl9zz-0000Qr-5H for 17876@debbugs.gnu.org; Fri, 04 Dec 2020 07:15:44 -0500 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:To:From:Sender:Reply-To:Cc: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=+eFfqln5kH5D6r99AB2EHeSrMb3JnoerMLikpc5Gq7s=; b=E636oxc5T1yLtq6b74KUbXt5iz pPhg3aO0u8y1S6CMdMt8UEM2koi/3RjHnYP55ZaPpUzyFomUk9oEzbc75IrktYqofHukUjWswbQRC jIra1fthdFT2k95pthWIz0q7m1dr9BljGfJ7P+37loo+llIEaC7Fdrazol4KdfBObWTo=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kl9zr-0008Ul-40 for 17876@debbugs.gnu.org; Fri, 04 Dec 2020 13:15:37 +0100 From: Lars Ingebrigtsen To: 17876@debbugs.gnu.org Subject: Re: bug#17876: 24.3; Incorrect frame resize References: <87blf9iyjm.fsf@gnus.org> X-Now-Playing: The Matthew Herbert Big Band's _The State Between Us (2)_: "Where's Home?" Date: Fri, 04 Dec 2020 13:15:34 +0100 In-Reply-To: <87blf9iyjm.fsf@gnus.org> (Lars Ingebrigtsen's message of "Fri, 04 Dec 2020 12:46:37 +0100") Message-ID: <87360lhimx.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: Lars Ingebrigtsen writes: > I tried reproducing this in Emacs 28 on Debian/bullseye, but was unable > to. All the Monaco frames have the exact same width/height, and so do > all the Courier frames. > > Do you still see this is [...] 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: 17876 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 (-) Lars Ingebrigtsen writes: > I tried reproducing this in Emacs 28 on Debian/bullseye, but was unable > to. All the Monaco frames have the exact same width/height, and so do > all the Courier frames. > > Do you still see this issue in more recent Emacs versions? The address bounced, so it seems unlikely that we'll make more progress here, 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 Fri Dec 04 07:15:51 2020 Received: (at control) by debbugs.gnu.org; 4 Dec 2020 12:15:51 +0000 Received: from localhost ([127.0.0.1]:43321 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1klA06-0000e1-VJ for submit@debbugs.gnu.org; Fri, 04 Dec 2020 07:15:51 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58850) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1klA05-0000X3-1k for control@debbugs.gnu.org; Fri, 04 Dec 2020 07:15:49 -0500 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=H5iY2VxE1StiE/7ohhtXbZfZGMgfqHrNHoOSu0gfvd8=; b=FsRgkX/dHdyk305VMVNEQ+tvIa zMpEDtqNTx9CycHIScC2eKzMpTySRalONFioa2muym2FB2GtctQ+U+ztWHEBXOhxTdV1/LlhbgB2B NlXBTRZZTSBAOGz4dhoZnlMFVLasUBxQJgpiClnkikbLXYDhmNjzZw/ajWCxO45JQ7KA=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kl9zx-0008Ut-Bn for control@debbugs.gnu.org; Fri, 04 Dec 2020 13:15:43 +0100 Date: Fri, 04 Dec 2020 13:15:40 +0100 Message-Id: <871rg5himr.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #17876 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 17876 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 17876 quit From unknown Fri Aug 15 17:55:39 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 01 Jan 2021 12:24:12 +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