From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/17991 Path: main.gmane.org!not-for-mail From: Lars Magne Ingebrigtsen Newsgroups: gmane.emacs.gnus.general Subject: Re: pop server access? Date: 20 Oct 1998 19:57:35 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035156591 3754 80.91.224.250 (20 Oct 2002 23:29:51 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:29:51 +0000 (UTC) Return-Path: Original-Received: from fisher.math.uh.edu (fisher.math.uh.edu [129.7.128.35]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA12798 for ; Tue, 20 Oct 1998 14:07:28 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by fisher.math.uh.edu (8.9.1/8.9.1) with ESMTP id NAB05857; Tue, 20 Oct 1998 13:06:26 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 20 Oct 1998 13:06:03 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id NAA07740 for ; Tue, 20 Oct 1998 13:05:50 -0500 (CDT) Original-Received: from sparky.gnus.org (ppp092.uio.no [129.240.240.97]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA12723 for ; Tue, 20 Oct 1998 14:05:35 -0400 (EDT) Original-Received: (from larsi@localhost) by sparky.gnus.org (8.8.5/8.8.5) id UAA05702; Tue, 20 Oct 1998 20:05:26 +0200 Mail-Copies-To: never X-Now-Reading: Jane Smiley's _At Paradise Gate_ Original-To: ding@gnus.org In-Reply-To: Norbert Koch's message of "20 Oct 1998 12:53:31 +0200" User-Agent: Gnus/5.070036 (Pterodactyl Gnus v0.36) XEmacs/21.2(beta3) (Aglaia) X-Face: &w!^oO~dS|}-P0~ge{$c!h\ writes: > have you made any changes regarding the pop server access? I can't get > onto the server after the installation of 0.35. This patch was applied to make things work under Emacs 20.3: Index: pop3.el =================================================================== RCS file: /local/lib/CVSROOT/gnus/lisp/pop3.el,v retrieving revision 5.1 retrieving revision 5.2 diff -c -r5.1 -r5.2 *** pop3.el 1998/08/29 17:43:28 5.1 --- pop3.el 1998/10/19 22:25:09 5.2 *************** *** 111,124 **** Returns the process associated with the connection." (let ((process-buffer (get-buffer-create (format "trace of POP session to %s" mailhost))) ! (process)) (save-excursion (set-buffer process-buffer) ! (erase-buffer) ! (setq pop3-read-point (point-min)) ! ) (setq process (open-network-stream "POP" process-buffer mailhost port)) (let ((response (pop3-read-response process t))) (setq pop3-timestamp (substring response (or (string-match "<" response) 0) --- 111,126 ---- Returns the process associated with the connection." (let ((process-buffer (get-buffer-create (format "trace of POP session to %s" mailhost))) ! (process) ! (coding-system-for-read 'no-conversion) ! (coding-system-for-write 'no-conversion) ! ) (save-excursion (set-buffer process-buffer) ! (erase-buffer)) (setq process (open-network-stream "POP" process-buffer mailhost port)) + (setq pop3-read-point (point-min)) (let ((response (pop3-read-response process t))) (setq pop3-timestamp (substring response (or (string-match "<" response) 0) It looks a bit weird to me, now that I think about it. Why has the `pop3-read-point' setting moved downwards? I'll move it back up. Ratinox, I know you don't like Muletilations of pop3, but it is necessary it it's going to work in that release. -- (domestic pets only, the antidote for overdose, milk.) larsi@gnus.org * Lars Magne Ingebrigtsen