From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28223 Path: main.gmane.org!not-for-mail From: Shigeru OKUMURA Newsgroups: gmane.emacs.gnus.general Subject: Re: pop3.el Date: Wed, 15 Dec 1999 03:52:46 +0900 (JST) Sender: owner-ding@hpc.uh.edu Message-ID: <199912141852.dBEIqkc19720@tomoyochan.jaist.ac.jp> References: <199912141300.dBED0G301827@tomoyochan.jaist.ac.jp> <99Dec14.100603est.115235@gateway.intersys.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165110 28780 80.91.224.250 (21 Oct 2002 01:51:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:51:50 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA16734 for ; Tue, 14 Dec 1999 13:59:03 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.3/8.9.1) with ESMTP id MAB28601; Tue, 14 Dec 1999 12:54:57 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 14 Dec 1999 12:55:01 -0600 (CST) 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 MAA09001 for ; Tue, 14 Dec 1999 12:54:51 -0600 (CST) Original-Received: from tomoyochan.jaist.ac.jp (dm1d10.jaist.ac.jp [150.65.40.120]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA16640 for ; Tue, 14 Dec 1999 13:54:28 -0500 (EST) Original-Received: (from sokumura@localhost) by tomoyochan.jaist.ac.jp (8.10.0.Beta6/8.10.0.Beta6) id dBEIqkc19720; Wed, 15 Dec 1999 03:52:46 +0900 (JST) X-Authentication-Warning: tomoyochan.jaist.ac.jp: sokumura set sender to shigeru@okunet.gr.jp using -f Original-To: ding@gnus.org X-Face-Version: X-Face utility v1.3.6.7 - "Yellow Submarine (remix)" with Select X-Face v0.14 - "Keep Under Cover" X-Face: Sd]@{mH4hY6Fq7?d_Nsm?}?Uc]7,E)a@4skeYByOMItVDy`5s)`${yfQY+d8siN27;u}%yU \St(8;3~'(As,tnEe!p5%x<(]E#R\D${o),q(5OMEkMI$1,Se.|#Y0YdQ`8.a[Yo'4Xi,=;yf In-Reply-To: Stainless Steel Rat's message of "Tue, 14 Dec 1999 09:59:51 -0500" User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5.92 Original-Lines: 37 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:28223 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:28223 Stainless Steel Rat writes: > Not knowing what `subr' is, I cannot say. But as I do not maintain pop3.el > anymore you should probably send your bug reports to the Emacs buglist. I don't think emacs' bug. When I was testing in Emacs-19.28 and Emacs-19.34, pop3.el use ange-ftp-read-passwd. But, Emacs-20.* don't have ange-ftp-read-passwd. Would you please apply this patch in pgnus repository? *** pop3.el.original Wed Dec 15 03:48:51 1999 --- pop3.el Wed Dec 15 03:49:19 1999 *************** *** 215,221 **** (defvar pop3-read-passwd nil) (defun pop3-read-passwd (prompt) (if (not pop3-read-passwd) ! (if (load "passwd" t) (setq pop3-read-passwd 'read-passwd) (autoload 'ange-ftp-read-passwd "ange-ftp") (setq pop3-read-passwd 'ange-ftp-read-passwd))) --- 215,224 ---- (defvar pop3-read-passwd nil) (defun pop3-read-passwd (prompt) (if (not pop3-read-passwd) ! (if (or (and (load "subr" t) ! (fboundp 'read-passwd)) ! (and (load "passwd" t) ! (fboundp 'read-passwd))) (setq pop3-read-passwd 'read-passwd) (autoload 'ange-ftp-read-passwd "ange-ftp") (setq pop3-read-passwd 'ange-ftp-read-passwd))) -- ;; Shigeru OKUMURA