From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60373 Path: news.gmane.org!not-for-mail From: Hiroshi Fujishima Newsgroups: gmane.emacs.gnus.general Subject: Re: Gmail Date: Mon, 30 May 2005 04:56:21 +0900 Message-ID: <7cacmd24d6.fsf@nature.tsukuba.ac.jp> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1117479113 28631 80.91.229.2 (30 May 2005 18:51:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 30 May 2005 18:51:53 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M8900@lists.math.uh.edu Mon May 30 20:51:50 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DcpLH-0007Mg-2y for ding-account@gmane.org; Mon, 30 May 2005 20:50:27 +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 1DcpJb-0000EC-00; Mon, 30 May 2005 13:48:43 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1DcTtk-0005sZ-00 for ding@lists.math.uh.edu; Sun, 29 May 2005 14:56:36 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1DcTti-0007HA-FZ for ding@lists.math.uh.edu; Sun, 29 May 2005 14:56:34 -0500 Original-Received: from wproxy.gmail.com ([64.233.184.197]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1DcTtg-0003xW-00 for ; Sun, 29 May 2005 21:56:32 +0200 Original-Received: by wproxy.gmail.com with SMTP id 71so1983930wri for ; Sun, 29 May 2005 12:56:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:cc:subject:in-reply-to:references:user-agent:date:message-id:mime-version:content-type; b=rW9V07gb0p69pHcwye8zMnz1MK1J1bWBzKjNC3czVUgFsqMH+ANaXSETZwLWcwn6o+xb6RY1rbyMPzYzibymPmZPqlmnwJG9ijJulKDLX3KhEIFQ+g+L+fPAxFm0uSGsA6KIM0YTAwFUPUnT3gXTW2kJoco8poXJvQNzCnBUB7w= Original-Received: by 10.54.40.57 with SMTP id n57mr2381631wrn; Sun, 29 May 2005 12:56:31 -0700 (PDT) Original-Received: from alex ([130.158.38.234]) by mx.gmail.com with ESMTP id 66sm1584763wra.2005.05.29.12.56.29; Sun, 29 May 2005 12:56:31 -0700 (PDT) Original-To: Terje Rosten In-Reply-To: (Terje Rosten's message of "Sun, 19 Dec 2004 16:47:44 +0100") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (usg-unix-v) X-Spam-Score: -4.9 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:60373 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60373 Hi, Terje Rosten writes: > If you want to read and send messages for your Gmail account using > Gnus, here is some help: > > http://web.phys.ntnu.no/~terjeros/gnus-gmail/ Quoted from above page. | Bugs | | First time pop.el is loaded (during Gnus startup) you are prompted for | password, after you have given the password Gnus is just hanging. Hit | `C-g' to continue. Then wait to the Group buffer is ready, then hit | `g' to load pop.el again, things should now work. This bug can be evaded by changing mail-source.el referring to mail-source.el included in T-gnus as follows. Index: lisp/mail-source.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/mail-source.el,v retrieving revision 7.10 diff -u -r7.10 mail-source.el --- lisp/mail-source.el 13 Feb 2005 04:44:41 -0000 7.10 +++ lisp/mail-source.el 29 May 2005 18:43:12 -0000 @@ -346,7 +346,9 @@ (:program) (:function) (:password) - (:authentication password)) + (:authentication password) + (:connection) + (:leave)) (maildir (:path (or (getenv "MAILDIR") "~/Maildir/")) (:subdirs ("cur" "new")) @@ -746,7 +748,12 @@ (pop3-mailhost server) (pop3-port port) (pop3-authentication-scheme - (if (eq authentication 'apop) 'apop 'pass))) + (if (eq authentication 'apop) 'apop 'pass)) + (pop3-connection-type connection) + (pop3-leave-mail-on-server + (or leave + (and (boundp 'pop3-leave-mail-on-server) + (symbol-value 'pop3-leave-mail-on-server))))) (if (or debug-on-quit debug-on-error) (save-excursion (pop3-movemail mail-source-crash-box)) (condition-case err -- Hiroshi Fujishima