From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/50896 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: Re: nnimap minor niggle. Date: Wed, 19 Mar 2003 00:38:55 -0600 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87isug9ny8.fsf@enki.rimspace.net> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1048056034 9707 80.91.224.249 (19 Mar 2003 06:40:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 19 Mar 2003 06:40:34 +0000 (UTC) Original-X-From: owner-ding@hpc.uh.edu Wed Mar 19 07:40:30 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 18vXFW-0002WO-00 for ; Wed, 19 Mar 2003 07:40:30 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 18vXET-0006xA-00; Wed, 19 Mar 2003 00:39:25 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 19 Mar 2003 00:40:26 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [66.230.238.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id AAA10914 for ; Wed, 19 Mar 2003 00:40:15 -0600 (CST) Original-Received: (qmail 30185 invoked by alias); 19 Mar 2003 06:39:09 -0000 Original-Received: (qmail 30180 invoked from network); 19 Mar 2003 06:39:09 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by 66.230.238.6 with SMTP; 19 Mar 2003 06:39:09 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 18vXEi-0006bt-00 for ; Wed, 19 Mar 2003 07:39:40 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 38 Original-NNTP-Posting-Host: 216.12.207.99 Original-X-Trace: quimby.gnus.org 1048055980 25389 216.12.207.99 (19 Mar 2003 06:39:40 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 19 Mar 2003 06:39:40 GMT User-Agent: Gnus/5.090017 (Oort Gnus v0.17) Emacs/21.2 (windows-nt) Cancel-Lock: sha1:UOOJOER1JWScEqTcoub643U4Uk8= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:50896 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:50896 --=-=-= Daniel Pittman writes: > If the IMAP server closes the connection under nnimap while it is > prompting for the password, nnimap (during Gnus startup) throws an error > and kills the startup process. > > This happens often for me because my IMAP server has a short timeout at > the login stage, and because nnimap is a secondary method after nnmail, > which takes long enough to split a few hundred messages that I ignore > the startup for a bit... Daniel, Does this patch keep the startup process running after nnimap dies? --=-=-= Content-Disposition: attachment; filename=patch.txt Content-Description: Patch for gnus-int.el --- lisp.cvs_ref/gnus-int.el Sun Mar 2 21:13:44 2003 +++ lisp/gnus-int.el Tue Mar 18 23:21:00 2003 @@ -206,6 +206,7 @@ (funcall (gnus-get-function gnus-command-method 'open-server) (nth 1 gnus-command-method) (nthcdr 2 gnus-command-method)) + (error nil) (quit (message "Quit trying to open server") nil)))) --=-=-= Kevin --=-=-=--