From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/25037 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Problem with .gnus.el Date: 09 Sep 1999 02:13:13 -0400 Organization: U of Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <2n7lm0a9za.fsf@tiger.jia.vnet> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035162497 11967 80.91.224.250 (21 Oct 2002 01:08:17 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:08:17 +0000 (UTC) Cc: Gnus Mailing List , Lars Magne Ingebrigtsen Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id CAA07886 for ; Thu, 9 Sep 1999 02:12:40 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id BAB17972; Thu, 9 Sep 1999 01:12:36 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 09 Sep 1999 01:12:46 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id BAA28482 for ; Thu, 9 Sep 1999 01:12:35 -0500 (CDT) Original-Received: from cayuga.cs.rochester.edu (cayuga.cs.rochester.edu [192.5.53.209]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id CAA07818; Thu, 9 Sep 1999 02:10:24 -0400 (EDT) Original-Received: from heart.cs.rochester.edu (heart.cs.rochester.edu [192.5.53.109]) by cayuga.cs.rochester.edu (8.9.3/Q) with ESMTP id CAA29197; Thu, 9 Sep 1999 02:10:18 -0400 (EDT) Original-Received: (from zsh@localhost) by heart.cs.rochester.edu (8.9.3/8.9.3) id CAA06247; Thu, 9 Sep 1999 02:13:14 -0400 Original-To: eldrik@quicksilver.bzl.bzl (Bruce Z. Lysik) X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: eldrik@quicksilver.bzl.bzl's message of "09 Sep 1999 12:54:37 -0400" Original-Lines: 35 User-Agent: Gnus/5.070096 (Pterodactyl Gnus v0.96) XEmacs/21.2 (Shinjuku) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:25037 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:25037 --=-=-= >>>>> "BZL" == Bruce Z Lysik writes: BZL> Hi guys. BZL> I decided to change my MTA, and went about installing qmail. Things BZL> appeared to have went fine with the installation. BZL> Next I wanted to make gnus read from my Maildir as a mail source. So BZL> I stuck (setq mail-sources '((file) (maildir))) into my .gnus.el. BZL> On starting up gnus I got the error: Wrong type argument: BZL> integer-or-marker-p, nil BZL> Thinking there's something wrong with my mail-sources, I comment it BZL> out, and do what I think is setting my .gnus.el back to normal. BZL> Unforunately I /STILL/ get the error. Kinda serious. BZL> I turned on debug-on-exit. Here's the result of the backtrace when I BZL> try to enter gnus: I guess you got a bad mail which does not contain "\n\n" (maybe an empty file). Anyway, I found a typo in nnmail-process-maildir-mail-format. Hope this patch solve your problem. BTW, gnu.emacs.gnus is wrong place to post bug about pgnus. Send it to ding@gnus.org. Shenghuo 1999-09-09 Shenghuo ZHU * nnmail.el (nnmail-process-maildir-mail-format): Typo. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=96-zsh4.diff --- ../../pgnus-sent/lisp/nnmail.el Fri Aug 27 16:33:42 1999 +++ nnmail.el Thu Sep 9 01:58:59 1999 @@ -814,8 +814,8 @@ ;; if there is no head-body delimiter, we search a bit manually. (while (and (looking-at "From \\|[^ \t]+:") (not (eobp))) - (forward-line 1) - (point)))) + (forward-line 1)) + (point))) ;; Find the Message-ID header. (goto-char (point-min)) (if (re-search-forward "^Message-ID:[ \t]*\\(<[^>]+>\\)" nil t) --=-=-=--