From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/9046 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: Problem with archive group Date: Wed, 30 May 2007 09:50:30 +0900 Organization: Emacsen advocacy group Message-ID: References: <87r6p0b699.fsf@janni.cybervalley.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1180489225 32578 80.91.229.12 (30 May 2007 01:40:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 30 May 2007 01:40:25 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Wed May 30 03:40:24 2007 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HtDAm-0004DD-0l for gegu-info-gnus-english@m.gmane.org; Wed, 30 May 2007 03:40:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HtDAl-00068M-Jo for gegu-info-gnus-english@m.gmane.org; Tue, 29 May 2007 21:40:23 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 58 Original-X-Trace: individual.net eozwt28K1a/Z264RaU4EeQQ7H7R5nmzI6pOJJURwcrkTAsYm0= X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:SVBMh/NFc4fKCgBN+TJUvEcKPi8= Original-Xref: shelby.stanford.edu gnu.emacs.gnus:79229 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:9046 Archived-At: >>>>> In <87r6p0b699.fsf@janni.cybervalley.org> >>>>> leandro noferini wrote: > some days ago I changed my archive group from nnfolder to nnml with > these lines in .gnus > (setq gnus-message-archive-method '(nnml "archive" > (nnml-directory "~/Mail/archive") > (nnml-active-file "~/Mail/archive/active") > (nnml-get-new-mail nil) > (nnml-inhibit-expiry t))) > (setq gnus-message-archive-group > '((if (message-news-p) > "misc-news" > (concat "mail-" (format-time-string "%Y-%m"))))) > But now I have in Summary this line for archive: > nnfolder+archive:mail-2007-05 > And when I try to select this I cannot see anything: how could correct? I've been thinking that that is a bug, though I have no idea of how to fix it so far. But I can offer a workaround. 1. Close Gnus and Emacs. 2. Make backup files of ~/.newsrc.eld and ~/.newsrc (there might not be the later). 3. Start Emacs and Gnus, and read at least one article. 4. Evaluate the following form in the *scratch* buffer (copy this form to the *scratch* buffer and type `C-j' at the end of the form): (assoc "archive" gnus-server-alist) Confirm that it returns something like the following: ("archive" nnfolder ...) If you don't see it (unfortunately), do nothing further. 5. Evaluate the following form in the *scratch* buffer: (setcdr (assoc "archive" gnus-server-alist) gnus-message-archive-method) 6. Exit Gnus by typing `q', not `Q', in the group buffer. Then, the problem has been solved, hasn't it? The problem is that the server named "archive" in the `gnus-server-alist' variable, which is saved in the ~/.newsrc.eld file, does not reflect the value of `gnus-message-archive-method' being changed by a user. Regards,