From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/21218 Path: main.gmane.org!not-for-mail From: Neil Crellin Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] pop mail source on non-standard port ignored Date: 15 Feb 1999 18:14:01 -0800 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035159366 21890 80.91.224.250 (21 Oct 2002 00:16:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:16: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 VAA20278 for ; Mon, 15 Feb 1999 21:38:06 -0500 (EST) 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 UAB16321; Mon, 15 Feb 1999 20:37:21 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 15 Feb 1999 20:37:28 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id UAA00410 for ; Mon, 15 Feb 1999 20:37:18 -0600 (CST) Original-Received: from wallaby.tesserae.com (Ricochet-41.Stanford.EDU [36.175.0.41]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id VAA19839 for ; Mon, 15 Feb 1999 21:15:25 -0500 (EST) Original-Received: (from neilc@localhost) by wallaby.tesserae.com (8.8.7/8.8.7) id SAA00606; Mon, 15 Feb 1999 18:14:02 -0800 Original-To: ding@gnus.org Original-Lines: 17 User-Agent: Gnus/5.070076 (Pterodactyl Gnus v0.76) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:21218 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:21218 I use an encrypted ssh tunnel on a non-standard port to download my mail. It only worked if I explicitly set pop3-port myself. This appears to be the correct fix. --- mail-source.el.orig Wed Feb 10 21:02:22 1999 +++ mail-source.el Mon Feb 15 17:48:24 1999 @@ -335,6 +335,7 @@ (let ((pop3-password password) (pop3-maildrop user) (pop3-mailhost server) + (pop3-port port) (pop3-authentication-scheme (if (eq authentication 'apop) 'apop 'pass))) (save-excursion (pop3-movemail mail-source-crash-box))))) -- Neil Crellin