From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9479 Path: main.gmane.org!not-for-mail From: Dan Schmidt Newsgroups: gmane.emacs.gnus.general Subject: Re: pop error in 0.81 and 0.82 Date: 20 Jan 1997 13:37:13 -0500 Sender: dfan%TURANGALILA@ifi.uio.no Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035149499 18742 80.91.224.250 (20 Oct 2002 21:31:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:31:39 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.4/8.8.4) with SMTP id KAA05087 for ; Mon, 20 Jan 1997 10:55:32 -0800 Original-Received: from ntserver.harmonixmusic.com (harmonix.ma.ultranet.com [146.115.237.55]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Mon, 20 Jan 1997 19:34:22 +0100 Original-Received: from TURANGALILA ([146.115.90.78]) by ntserver.harmonixmusic.com (post.office MTA v2.0 0813 ID# 0-29126U35) with SMTP id AAA239; Mon, 20 Jan 1997 13:25:29 -0500 Original-To: ding@ifi.uio.no In-Reply-To: Karl Kleinpaste's message of 20 Jan 1997 12:29:01 -0500 Original-Lines: 34 X-Mailer: Red Gnus v0.82/Emacs 19.34 Xref: main.gmane.org gmane.emacs.gnus.general:9479 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9479 Karl Kleinpaste writes: | The change below ("diff -u", 0.80 -> 0.82) breaks movemail usage for | POP mail access: | | --- nnmail.el Sat Jan 18 13:13:58 1997 | +++ .bad/nnmail.el Thu Jan 16 18:45:30 1997 | @@ -548,7 +550,7 @@ | exec-directory) | nil errors nil inbox tofile) | (when nnmail-internal-password | - (list nnmail-internal-password)))))) | + (list (prin1-to-string nnmail-internal-password))))))) | (if (not (buffer-modified-p errors)) | ;; No output => movemail won | (progn | | The problem is that | (list nnmail-internal-password) | generates | ("xxxxx") | while | (list (prin1-to-string nnmail-internal-password)) | generates | ("\"xxxxx\"") | | Reverting to the non-prin1 case makes it work again. This is my code (sorry); I added it because otherwise passwords with spaces were being passed to movemail as two separate arguments. Is there a solution that will work for both of us? Dan