From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/25738 Path: main.gmane.org!not-for-mail From: Dave Liebreich Newsgroups: gmane.emacs.gnus.general Subject: pop3 *very* slow? Date: Thu, 07 Oct 1999 14:54:37 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: <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 1035163071 15603 80.91.224.250 (21 Oct 2002 01:17:51 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:17:51 +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 SAA06748 for ; Thu, 7 Oct 1999 18:55:00 -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 RAB00821; Thu, 7 Oct 1999 17:51:16 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 07 Oct 1999 17:51:22 -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 RAA11051 for ; Thu, 7 Oct 1999 17:51:15 -0500 (CDT) Original-Received: (from tibbs@localhost) by epithumia.math.uh.edu (8.9.3/8.9.3) id RAA07622 for ding@hpc.uh.edu; Thu, 7 Oct 1999 17:50:41 -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 QAA10622 for ; Thu, 7 Oct 1999 16:57:05 -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 RAA06349 for ; Thu, 7 Oct 1999 17:55:09 -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 OAA19115 for ; Thu, 7 Oct 1999 14:54:37 -0700 (PDT) Original-To: ding@gnus.org 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:25738 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:25738 [apologies if this shows up twice] [using pgnus-0.95 - I know I should go to .97] I've set (setq mail-sources '((pop :server "mailhost"))) and it's *very* slow. Are the following lines in pop3.el really necessary? ;; bill@att.com ... to save wear and tear on the heap ;; uncommented because the condensed version below is a problem for ;; some. (if (> (buffer-size) 20000) (sleep-for 1)) (if (> (buffer-size) 50000) (sleep-for 1)) (if (> (buffer-size) 100000) (sleep-for 1)) (if (> (buffer-size) 200000) (sleep-for 1)) (if (> (buffer-size) 500000) (sleep-for 1)) ;; bill@att.com ;; condensed into: ;; (sometimes causes problems for really large messages.) ; (if (> (buffer-size) 20000) (sleep-for (/ (buffer-size) 20000))) And if pop just has to be slow, then does anyone have a working setup using fetchmail that I can copy? (I want to fetch the messages only when I manually check for new mail; otherwise, I'd set up fetchmail/procmail to get the mail in daemon mode and point gnus at a local spool file). Thanks _Dave