From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/23350 Path: main.gmane.org!not-for-mail From: "Erik =?iso-8859-1?q?=D8stlyngen?=" Newsgroups: gmane.emacs.gnus.general Subject: Re: pop3-movemail trouble Date: 16 Jun 1999 09:26:32 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1035161098 1491 80.91.224.250 (21 Oct 2002 00:44:58 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:44:58 +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 DAA18300 for ; Wed, 16 Jun 1999 03:30:47 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id CAB22784; Wed, 16 Jun 1999 02:30:33 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 16 Jun 1999 02:31:19 -0500 (CDT) 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 CAA06930 for ; Wed, 16 Jun 1999 02:31:10 -0500 (CDT) Original-Received: from inbit.ifbt.ntnu.no (inbit.ifbt.ntnu.no [129.241.172.19]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id DAA18293 for ; Wed, 16 Jun 1999 03:30:13 -0400 (EDT) Original-Received: from DIFB0013 (D-172117-DHCP.medisin.ntnu.no [129.241.172.117]) by inbit.ifbt.ntnu.no (8.8.8/8.8.8) with ESMTP id JAA10585 for ; Wed, 16 Jun 1999 09:27:27 +0200 (METDST) Original-To: ding@gnus.org In-Reply-To: Stainless Steel Rat's message of "15 Jun 1999 14:23:55 -0400" Original-Lines: 62 User-Agent: Gnus/5.070088 (Pterodactyl Gnus v0.88) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:23350 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:23350 Stainless Steel Rat writes: > * "Erik Østlyngen" on Tue, 15 Jun 1999 > | Is it possible to log the commands that pguns sends to the pop server? > > I rather miserably failed to get that working right (the code is commented > out of pop3.el if you want to take a look at it). What pop3 does leave > behind is a trace buffer of everything that comes back from the server > (less actual message bodies). Looking at that might give you an idea of > what is going on. Yes, I've seen that. The buffer contains the following after the "Mail source error" occurs: +OK POP3 dj.stud.ntnu.no proxy server v1.0 ready. -ERR Command line too long. -ERR Null command. It looks like pguns (I'm using version 0.88) sends an invalid command to the server after connecting. Is there an easy way to insert trace sentences into the pop3 code? (I'm not a very skilled lisp programmer). The pop3-user and pop3-pass functions contains some string variables which I would like to examine. I have tried connecting to the pop server by telnet, and it accepts the usual commands (which pgnus is supposed to send): telnet pop.stud.ntnu.no 110 +OK POP3 dj.stud.ntnu.no proxy server v1.0 ready. user erikoest +OK User name accepted, password please pass SecretWord +OK Mailbox open, 2 messages quit +OK Sayonara My .emacs file has the following (relevant) declarations: (setq nnmail-spool-file '( (pop :user "erikoest" :server "pop.stud.ntnu.no" :password "SecretWord") )) (setq nnmail-split-methods 'nnmail-split-fancy) (setq mail-source-delete-incoming t) (setq user-full-name "Erik Østlyngen") (setq user-mail-address "Erik.Ostlyngen@ifbt.ntnu.no") (setq smtpmail-default-smtp-server "inbit.ifbt.ntnu.no") (setq smtpmail-local-domain nil) (setq send-mail-function 'smtpmail-send-it) (setq gnus-select-method (quote (nntp "news.ntnu.no"))) (setq gnus-secondary-select-methods '((nnml "private"))) (setq gnus-message-archive-group "archive") -Erik Østlyngen