From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/53176 Path: main.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.gnus.general Subject: nnml and compressed message files Date: Mon, 16 Jun 2003 09:16:53 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: Reply-To: Michael Albinus NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1055771895 11306 80.91.224.249 (16 Jun 2003 13:58:15 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 16 Jun 2003 13:58:15 +0000 (UTC) Original-X-From: ding-owner+M1720@lists.math.uh.edu Mon Jun 16 15:58:05 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19RuN7-0002HV-00 for ; Mon, 16 Jun 2003 15:50:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19RuOn-0005U6-00; Mon, 16 Jun 2003 08:51:53 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19RoF2-0004jv-00 for ding@lists.math.uh.edu; Mon, 16 Jun 2003 02:17:25 -0500 Original-Received: (qmail 96886 invoked by alias); 16 Jun 2003 07:17:24 -0000 Original-Received: (qmail 96881 invoked from network); 16 Jun 2003 07:17:24 -0000 Original-Received: from mailrelay2.alcatel.de (HELO mailrelay1.alcatel.de) (194.113.59.71) by sclp3.sclp.com with SMTP; 16 Jun 2003 07:17:24 -0000 Original-Received: from slbh00.bln.sel.alcatel.de (slbh00.bln.sel.alcatel.de [149.204.49.8]) by mailrelay1.alcatel.de (8.9.3/8.9.3) with ESMTP id JAA28203 for ; Mon, 16 Jun 2003 09:16:39 +0200 (MET DST) Original-Received: from slbwba.bln.sel.alcatel.de (albinus@slbwba [149.204.93.83]) by slbh00.bln.sel.alcatel.de (8.9.3/8.9.3) with ESMTP id JAA01055 for ; Mon, 16 Jun 2003 09:16:55 +0200 (MET DST) Original-To: ding@gnus.org User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/20.7 (hpux) X-Alcanet-MTA-scanned-and-authorized: yes Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:53176 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:53176 [I've sent this message 2 weeks ago to bugs@gnus.org; unfortunately nothing happened. So I try it on the Ding mailing list] Hi, I switched recently to Gnus 5.10.2. Unfortunately, I cannot read anymore the messages which are stored as compressed files ("123.gz"), which worked for Gnus 5.8.8. Problem seems to be that message file names are taken from the NOV file now. The following patch works for me: albinus@slbwba:[1126] diff -u nnml.el.orig nnml.el --- nnml.el.orig Thu May 1 16:23:15 2003 +++ nnml.el Sun Jun 1 17:21:28 2003 @@ -886,7 +886,8 @@ (defun nnml-current-group-article-to-file-alist () "Return an alist of article/file pairs in the current group. Use the nov database for the current group if available." - (if (or gnus-nov-is-evil + (if (or nnml-use-compressed-files + gnus-nov-is-evil nnml-nov-is-evil (not (file-exists-p (expand-file-name nnml-nov-file-name Other possiblities might be to set nnml-nov-is-evil to 't (which is not desirable), or to store message file names but message numbers in the NOV database, which would lead to side effects. Best regards, Michael.