From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 28 04:47:04 2010 Received: (at submit) by debbugs.gnu.org; 28 Feb 2010 09:47:04 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nlfjr-0007No-SF for submit@debbugs.gnu.org; Sun, 28 Feb 2010 04:47:04 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nlfjp-0007NM-Em for submit@debbugs.gnu.org; Sun, 28 Feb 2010 04:47:02 -0500 Received: from mail.gnu.org ([199.232.76.166]:39470 helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nlfjm-0003bh-Hf for submit@debbugs.gnu.org; Sun, 28 Feb 2010 04:46:58 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nlfjk-0002fC-GD for submit@debbugs.gnu.org; Sun, 28 Feb 2010 04:46:58 -0500 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on monty-python X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,UNPARSEABLE_RELAY autolearn=ham version=3.1.0 Received: from lists.gnu.org ([199.232.76.165]:53007) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Nlfjk-0002ez-9V for submit@debbugs.gnu.org; Sun, 28 Feb 2010 04:46:56 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nlfjj-000370-Lz for bug-gnu-emacs@gnu.org; Sun, 28 Feb 2010 04:46:55 -0500 Received: from [140.186.70.92] (port=54306 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nlfji-00035y-1I for bug-gnu-emacs@gnu.org; Sun, 28 Feb 2010 04:46:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nlfjg-0006Ql-TV for bug-gnu-emacs@gnu.org; Sun, 28 Feb 2010 04:46:53 -0500 Received: from mta-out.inet.fi ([195.156.147.13]:39131 helo=kirsi2.inet.fi) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nlfjg-0006QJ-Jc for bug-gnu-emacs@gnu.org; Sun, 28 Feb 2010 04:46:52 -0500 Received: from mithlond.arda (84.251.132.215) by kirsi2.inet.fi (8.5.014) id 4B17EFA603B2C7A6 for bug-gnu-emacs@gnu.org; Sun, 28 Feb 2010 11:46:50 +0200 Received: from dtw by mithlond.arda with local (Exim 4.69) (envelope-from ) id 1Nlfjc-0001fs-G0 for bug-gnu-emacs@gnu.org; Sun, 28 Feb 2010 11:46:48 +0200 From: Teemu Likonen To: bug-gnu-emacs@gnu.org Subject: 23.1; nntp-marks-file-name is reset to nil and causes "IO error reading [...]: Is a directory" Date: Sun, 28 Feb 2010 11:46:48 +0200 Message-ID: <87r5o5snef.fsf@mithlond.arda> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.3 (-----) Using Gnus agent is not exactly a pleasant experience. I have pretty much the default settings and all my nntp servers are agentized. Now, in the Group buffer I go plugged (Jj), check new news (g), download them (Js) and go unplugged (Jj) again. Good, so far. Then I enter some group and read news. When exiting from the Summary buffer Gnus gives me ugly error messages (see below). I answered "yes" to the both questions and got back to Group buffer. --8<---------------cut here---------------start------------->8--- Error reading nntp marks file /home/dtw/News/marks/news.inet.fi/comp/os/linux/misc/ ((error IO error reading /home/dtw/News/marks/news.inet.fi/comp/os/linux/misc/: Is a directory)). Continuing will use marks from .newsrc.eld. Continue? (yes or no) Could not write to /home/dtw/News/marks/news.inet.fi/comp/os/linux/misc/ ((file-error Opening output file is a directory /home/dtw/News/marks/news.inet.fi/comp/os/linux/misc/)). Continue? (yes or no) --8<---------------cut here---------------end--------------->8--- The error happens in file lisp/gnus/nntp.el, function nntp-open-marks and form (condition-case ...). The reason for this error is that variable nntp-marks-file-name is nil. It _should_ be ".marks" but something sets it to nil when I go unplugged with Jj (gnus-agent-toggle-plugged) command. Since the variable is nil function nntp-group-pathname doesn't return complete path with filename but only the directory name, hence the error in trying to read the file: "error IO error reading [...]: Is a directory". So there's a bug somewhere. Who is setting nntp-marks-file-name to nil and why? Below is my work-around which automatically sets the file name back to ".marks": --8<---------------cut here---------------start------------->8--- (add-hook 'gnus-agent-unplugged-hook #'(lambda () (setq nntp-marks-file-name ".marks"))) --8<---------------cut here---------------end--------------->8--- From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 28 05:55:15 2010 Received: (at 5656) by debbugs.gnu.org; 28 Feb 2010 10:55:16 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nlgnr-0008Bz-K9 for submit@debbugs.gnu.org; Sun, 28 Feb 2010 05:55:15 -0500 Received: from mail-out.m-online.net ([212.18.0.9]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nlgnp-0008Br-Fo for 5656@debbugs.gnu.org; Sun, 28 Feb 2010 05:55:14 -0500 Received: from mail01.m-online.net (mail.m-online.net [192.168.3.149]) by mail-out.m-online.net (Postfix) with ESMTP id 1C0B11C15659; Sun, 28 Feb 2010 11:55:09 +0100 (CET) X-Auth-Info: /ZUdjSQH0WIfIbkbw/V5wzjrlh9QwWPkifolDOj7Sr8= Received: from whitebox.home (DSL01.83.171.175.164.ip-pool.NEFkom.net [83.171.175.164]) by mail.mnet-online.de (Postfix) with ESMTP id D2A1B9039B; Sun, 28 Feb 2010 11:55:09 +0100 (CET) Received: by whitebox.home (Postfix, from userid 501) id 965E21E534B; Sun, 28 Feb 2010 11:55:11 +0100 (CET) From: Andreas Schwab To: Teemu Likonen Subject: Re: bug#5656: 23.1; nntp-marks-file-name is reset to nil and causes "IO error reading [...]: Is a directory" References: <87r5o5snef.fsf@mithlond.arda> X-Yow: I have seen these EGG EXTENDERS in my Supermarket.. .. I have read the INSTRUCTIONS... Date: Sun, 28 Feb 2010 11:55:11 +0100 In-Reply-To: <87r5o5snef.fsf@mithlond.arda> (Teemu Likonen's message of "Sun, 28 Feb 2010 11:46:48 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.93 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -2.9 (--) X-Debbugs-Envelope-To: 5656 Cc: 5656@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.9 (--) Teemu Likonen writes: > So there's a bug somewhere. Who is setting nntp-marks-file-name to nil > and why? nntp-marks-file-name is a backend variable. Look in nnoo-definition-alist whether it is modified by some backend. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 28 06:27:26 2010 Received: (at 5656) by debbugs.gnu.org; 28 Feb 2010 11:27:26 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NlhIz-0000AG-S9 for submit@debbugs.gnu.org; Sun, 28 Feb 2010 06:27:26 -0500 Received: from mta-out.inet.fi ([195.156.147.13] helo=jenni2.inet.fi) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NlhIx-0000A6-Ef for 5656@debbugs.gnu.org; Sun, 28 Feb 2010 06:27:23 -0500 Received: from mithlond.arda (84.251.132.215) by jenni2.inet.fi (8.5.014) id 4B17EA3D039214E3; Sun, 28 Feb 2010 13:27:12 +0200 Received: from dtw by mithlond.arda with local (Exim 4.69) (envelope-from ) id 1NlhIl-0001ps-4r; Sun, 28 Feb 2010 13:27:11 +0200 From: Teemu Likonen To: Andreas Schwab Subject: Re: bug#5656: 23.1; nntp-marks-file-name is reset to nil and causes "IO error reading [...]: Is a directory" In-Reply-To: (Andreas Schwab's message of "Sun, 28 Feb 2010 11:55:11 +0100") References: <87r5o5snef.fsf@mithlond.arda> Date: Sun, 28 Feb 2010 13:27:11 +0200 Message-ID: <87635ha9dc.fsf@mithlond.arda> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -3.4 (---) X-Debbugs-Envelope-To: 5656 Cc: 5656@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.3 (---) * 2010-02-28 11:55 (+0100), Andreas Schwab wrote: > Teemu Likonen writes: >> So there's a bug somewhere. Who is setting nntp-marks-file-name to >> nil and why? > > nntp-marks-file-name is a backend variable. Look in > nnoo-definition-alist whether it is modified by some backend. In nnoo-definition-alist there is this: (nntp nil (... (nntp-marks-file-name . ".marks") ...)) The variable is not mentioned in any other parts of nnoo-definition-alist. Still nntp-marks-file-name gets set to nil and I get the error unless I use the work-around hook which I described in the original report. From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 02 14:46:46 2010 Received: (at control) by debbugs.gnu.org; 2 Mar 2010 19:46:46 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NmY3I-0008Qb-DI for submit@debbugs.gnu.org; Tue, 02 Mar 2010 14:46:46 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NmY3H-0008QW-49 for control@debbugs.gnu.org; Tue, 02 Mar 2010 14:46:43 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NmY3B-00067X-QL; Tue, 02 Mar 2010 14:46:37 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19341.27421.767198.12912@fencepost.gnu.org> Date: Tue, 2 Mar 2010 14:46:37 -0500 From: Glenn Morris To: control Subject: control X-Spam-Score: -5.1 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.1 (-----) reassign 5387 emacs,gnus reassign 5656 emacs,gnus reassign 5659 emacs,w32 severity 5658 minor severity 5661 wishlist severity 5666 wishlist reassign 5666 emacs,etags severity 5668 minor tags 5670 patch severity 5671 minor From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 07 19:10:53 2010 Received: (at 5656) by debbugs.gnu.org; 7 Sep 2010 23:10:53 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ot7JV-0004de-LF for submit@debbugs.gnu.org; Tue, 07 Sep 2010 19:10:53 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ot7JT-0004dZ-Jz for 5656@debbugs.gnu.org; Tue, 07 Sep 2010 19:10:52 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1Ot7LL-000571-68; Tue, 07 Sep 2010 19:12:47 -0400 To: Teemu Likonen Subject: Re: bug#5656: 23.1; nntp-marks-file-name is reset to nil and causes "IO error reading [...]: Is a directory" References: <87r5o5snef.fsf@mithlond.arda> <87635ha9dc.fsf@mithlond.arda> From: Glenn Morris X-Spook: genetic SDI nuclear number key 2600 Magazine X-Ran: 4Bh~;;/RQ[a_\.g+GsO6LAHsiUAYH/i.eAu~)}4JBJ6`kn)g}$_8D9)Vc.&W]HCT87\`dX X-Hue: white X-Debbugs-No-Ack: yes X-Attribution: GM Date: Tue, 07 Sep 2010 19:12:47 -0400 In-Reply-To: <87635ha9dc.fsf@mithlond.arda> (Teemu Likonen's message of "Sun\, 28 Feb 2010 13\:27\:11 +0200") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.2 (------) X-Debbugs-Envelope-To: 5656 Cc: 5656@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.2 (------) So can this be closed in light of http://thread.gmane.org/gmane.emacs.gnus.general/70265/focus=70291 ? In any case, it's a purely Gnus problem, and I don't know if Gnus is uisng this tracker. From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 07 23:07:27 2010 Received: (at 5656) by debbugs.gnu.org; 8 Sep 2010 03:07:27 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtB0Q-0006Dj-P7 for submit@debbugs.gnu.org; Tue, 07 Sep 2010 23:07:26 -0400 Received: from mta-out.inet.fi ([195.156.147.13] helo=jenni1.inet.fi) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtB0P-0006De-CQ for 5656@debbugs.gnu.org; Tue, 07 Sep 2010 23:07:26 -0400 Received: from mithlond.arda (84.251.132.215) by jenni1.inet.fi (8.5.122) id 4C5FB7C6010EF182; Wed, 8 Sep 2010 06:09:13 +0300 Received: from dtw by mithlond.arda with local (Exim 4.69) (envelope-from ) id 1OtB29-00013m-9A; Wed, 08 Sep 2010 06:09:13 +0300 From: Teemu Likonen To: Glenn Morris Subject: Re: bug#5656: 23.1; nntp-marks-file-name is reset to nil and causes "IO error reading [...]: Is a directory" In-Reply-To: (Glenn Morris's message of "Tue, 07 Sep 2010 19:12:47 -0400") References: <87r5o5snef.fsf@mithlond.arda> <87635ha9dc.fsf@mithlond.arda> Date: Wed, 08 Sep 2010 06:09:13 +0300 Message-ID: <87aantdj8m.fsf@mithlond.arda> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -3.4 (---) X-Debbugs-Envelope-To: 5656 Cc: 5656@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.3 (---) * 2010-09-07 19:12 (-0400), Glenn Morris wrote: > So can this be closed in light of > > http://thread.gmane.org/gmane.emacs.gnus.general/70265/focus=70291 Maybe, but haven't actually tried the upstream Gnus code. > In any case, it's a purely Gnus problem, and I don't know if Gnus is > uisng this tracker. I reported the problem to Gnus bugs mailing list first but it never got any (public) attention. It seems that neither of my reports weren't of much use. Lars just happened to find the bug by other means. The ending seems to be happy, though. :-) From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 08 03:09:06 2010 Received: (at 5656) by debbugs.gnu.org; 8 Sep 2010 07:09:06 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtEmH-0007jD-MN for submit@debbugs.gnu.org; Wed, 08 Sep 2010 03:09:06 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtEmF-0007ir-Dj for 5656@debbugs.gnu.org; Wed, 08 Sep 2010 03:09:04 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1OtEo6-00041X-Qr; Wed, 08 Sep 2010 03:10:58 -0400 To: Teemu Likonen Subject: Re: bug#5656: 23.1; nntp-marks-file-name is reset to nil and causes "IO error reading [...]: Is a directory" References: <87r5o5snef.fsf@mithlond.arda> <87635ha9dc.fsf@mithlond.arda> <87aantdj8m.fsf@mithlond.arda> From: Glenn Morris X-Spook: warfare Cohiba Tony Blair JPL jihad data haven explosion X-Ran: )W_JI'e!7#[>W;'~OucP.-_(Z,4Tcc}y;\1,e3E (Teemu Likonen's message of "Wed\, 08 Sep 2010 06\:09\:13 +0300") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.2 (------) X-Debbugs-Envelope-To: 5656 Cc: 5656@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.2 (------) Teemu Likonen wrote: >> http://thread.gmane.org/gmane.emacs.gnus.general/70265/focus=70291 > > Maybe, but haven't actually tried the upstream Gnus code. The change is also in Emacs since 2010-09-01. From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 28 18:16:09 2010 Received: (at control) by debbugs.gnu.org; 28 Sep 2010 22:16:09 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0iT3-0004DG-Mr for submit@debbugs.gnu.org; Tue, 28 Sep 2010 18:16:09 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0iT2-0004D8-46 for control@debbugs.gnu.org; Tue, 28 Sep 2010 18:16:08 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1P0iVm-00014X-8U; Tue, 28 Sep 2010 18:18:58 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19618.27090.119686.630307@fencepost.gnu.org> Date: Tue, 28 Sep 2010 18:18:58 -0400 From: Glenn Morris To: control Subject: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: black X-Ran: Y6NbfrnI/,sqBvbbK2#b]*-e|*+5>!)=[MCGfN$0'r7]4UBpA[OdS+HWU^RAy#h:2mxvf$ X-Debbugs-No-Ack: yes X-Spam-Score: -5.2 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.2 (-----) close 5656 close 7055 unarchive 4122 forcemerge 4122 7095 From unknown Fri Jul 11 05:28:19 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 27 Oct 2010 11:24:04 +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