From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/25756 Path: main.gmane.org!not-for-mail From: Dave Liebreich Newsgroups: gmane.emacs.gnus.general Subject: Re: pop3 *very* slow? Date: Thu, 07 Oct 1999 19:11:21 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: <199910080211.TAA28148@oberon.dnai.com> References: <199910072154.OAA19115@oberon.dnai.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163086 15712 80.91.224.250 (21 Oct 2002 01:18:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:18:06 +0000 (UTC) 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 LAA14383 for ; Fri, 8 Oct 1999 11:13:07 -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 KAB02061; Fri, 8 Oct 1999 10:12:28 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 08 Oct 1999 10:12:34 -0500 (CDT) Original-Received: from epithumia.math.uh.edu (IDENT:tibbs@epithumia.math.uh.edu [129.7.128.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id KAA22972 for ; Fri, 8 Oct 1999 10:12:18 -0500 (CDT) Original-Received: (from tibbs@localhost) by epithumia.math.uh.edu (8.9.3/8.9.3) id KAA12604 for ding@hpc.uh.edu; Fri, 8 Oct 1999 10:11:44 -0500 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 VAA13223 for ; Thu, 7 Oct 1999 21:13:49 -0500 (CDT) Original-Received: from oberon.dnai.com (oberon.dnai.com [207.181.194.97]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id WAA09088 for ; Thu, 7 Oct 1999 22:11:53 -0400 (EDT) Original-Received: from dnai-216-15-97-156.cust.dnai.com (dnai-216-15-97-156.cust.dnai.com [216.15.97.156]) by oberon.dnai.com (8.9.3/8.9.3) with ESMTP id TAA28148 for ; Thu, 7 Oct 1999 19:11:22 -0700 (PDT) Original-To: ding@gnus.org In-Reply-To: Stainless Steel Rat's message of "07 Oct 1999 20:14:34 -0400" User-Agent: Gnus/5.070095 (Pterodactyl Gnus v0.95) Emacs/20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:25756 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:25756 Stainless Steel Rat writes: > * Dave Liebreich on Thu, 07 Oct 1999 > | and it's *very* slow. Are the following lines in pop3.el really necessary? > > One, yes, those sleeps are necessary. Without them Emacs hangs on large > messages. ok. > Two, the first sleep does not come up until the message being downloaded is > ~20kB. None of the messages are over 20kB. All are quite a bit under 20kB. > Three, the Numero Uno cause of "slow" POP is not the client, but because > mail is being left on the server. I don't leave the mail on the server. I used the elp stuff and found that for a single short message, pop3-retr was taking 3 seconds. fetchmail on the same machine for the same message took < .5 seconds. :-( Thanks for the suggestions, though. -Dave p.s. just looked again at the code: (while (not (re-search-forward "^\\.\r\n" nil t)) (accept-process-output process 3) ... ) so that's where the 3 seconds comes from. Is anyone else using this pop function to get their mail, and if so, do you see each message take 3 seconds?