From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58901 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: possible imap.el bug Date: Fri, 15 Oct 2004 18:39:56 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: References: <4nwtxtf84q.fsf@lifelogs.com> <4nfz4gc99o.fsf@lifelogs.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1097858452 1063 80.91.229.6 (15 Oct 2004 16:40:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 15 Oct 2004 16:40:52 +0000 (UTC) Original-X-From: ding-owner+M7439=ding+2Daccount=gmane.org@lists.math.uh.edu Fri Oct 15 18:40:38 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13] ident=mail) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CIV89-0007JQ-00 for ; Fri, 15 Oct 2004 18:40:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1CIV88-0002U3-01 for ding-account@gmane.org; Fri, 15 Oct 2004 11:40:36 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1CIV83-0002Tv-00 for ding@lists.math.uh.edu; Fri, 15 Oct 2004 11:40:31 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1CIV7z-0006dn-20 for ding@lists.math.uh.edu; Fri, 15 Oct 2004 11:40:27 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.229.2]) by justine.libertine.org (Postfix) with ESMTP id 43ED13A0035 for ; Fri, 15 Oct 2004 11:40:24 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1CIV7u-0004TR-00 for ; Fri, 15 Oct 2004 18:40:22 +0200 Original-Received: from c494102a.s-bi.bostream.se ([217.215.27.65]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Oct 2004 18:40:21 +0200 Original-Received: from jas by c494102a.s-bi.bostream.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Oct 2004 18:40:21 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 40 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: c494102a.s-bi.bostream.se User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:Mf8Kg0OmUXvAESe1CXRrajc55W4= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58901 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58901 "Ted Zlatanov" writes: > On Thu, 14 Oct 2004, jas@extundo.com wrote: > >> "Ted Zlatanov" writes: >> >>> I got this today while processing spam. I'm not sure what the problem >>> is, unfortunately, but it looks like some data may be missing from the >>> overview? >>> >>> Ted >>> >>> >>> Debugger entered--Lisp error: (wrong-type-argument stringp nil) >>> string-to-number(nil) >>> imap-message-copyuid-1("train") >>> imap-message-copy("111169" "train" dontcreate nil " *nnimap* depot") >> >> Do (setq imap-log t) and get the last part from *imap-log*, it looks >> like a protocol problem. > > The error may be due to something unusual in the message (a mail > bounce here), so I'm attaching the headers of the bounce. I've also > seen this error happen with spam, which may also have funny headers. > I edited the real address to nosuch@invalid.com. ... > 10845 UID COPY 32361 "soccer". > 10845 OK UID COPY completed. Could you get the CAPABILITY line from that server too? First lines when connecting to the server. The imap.el code check for the UIDPLUS capability (RFC 2359) and uses some special code if present, and it is the code that crashes. If the server really supported UIDPLUS, the UID COPY response should be something like: A003 OK [COPYUID 4711] Done If the capability line includes UIDPLUS, then this is a server bug.