From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/27721 Path: main.gmane.org!not-for-mail From: "Eric S. Johansson" Newsgroups: gmane.emacs.gnus.general Subject: imap in emacs and gnus Date: Sun, 5 Dec 1999 09:28:52 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <199912051428.JAA04962@harvee.billerica.ma.us> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035164696 26008 80.91.224.250 (21 Oct 2002 01:44:56 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:44:56 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id JAA25862 for ; Sun, 5 Dec 1999 09:30:55 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id IAB10823; Sun, 5 Dec 1999 08:30:05 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 05 Dec 1999 08:29:46 -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 IAA23635 for ; Sun, 5 Dec 1999 08:29:36 -0600 (CST) Original-Received: from harvee.billerica.ma.us (harvee.ConnActivity.com [206.34.215.253]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id JAA25853 for ; Sun, 5 Dec 1999 09:29:00 -0500 (EST) Original-Received: (from esj@localhost) by harvee.billerica.ma.us (8.9.3/8.9.3) id JAA04962; Sun, 5 Dec 1999 09:28:52 -0500 X-Authentication-Warning: harvee.billerica.ma.us: esj set sender to esj@harvee.billerica.ma.us using -f Original-To: ding@gnus.org Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:27721 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:27721 I'm trying to get the IMAP portion of gnus working. I'm somehow missing the right incantation. I originally tried with pgnus 0.98 and I'm now trying gnus-5.8.2 and I am getting the same error. Platform red hat 6.0 stock with GNU Emacs 20.3.1 (i386-redhat-linux-gnu, X toolkit) of Mon Apr 19 1999 on porky.devel.redhat.com gnus 5.8.2 from tar file. my .gnus contains: ;; gnus config file ;;(setq load-path ;; (cons (expand-file-name "/home/esj/imapwemacs/nnimap-0.131") load-path)) ;(require 'nnimap) (setq imap-debug "*imap-debug*") (setq debug-on-error t) (setq gnus-secondary-select-methods '((nnimap "harvee" (nnimap-address "harvee.billerica.ma.us") (nnimap-stream network) (nnimap-list-pattern ("INBOX" "/home/esj/IMap/*"))))) the back trace I get is: Signaling: (wrong-type-argument wholenump -1) make-string(-1 124) trace-entry-message(imap-opened 0 ((buffer " *nnimap* harvee" optional))) (insert (trace-entry-message (quote imap-opened) trace-level (list ...))) (save-excursion (set-buffer trace-buffer) (goto-char (point-max)) (if (= trace-level 1) (insert trace-separator)) (insert (trace-entry-message ... trace-level ...))) (let ((trace-level ...) (trace-buffer ...)) (save-excursion (set-buffer trace-buffer) (goto-char ...) (if ... ...) (insert ...)) (setq ad-return-value (ad-Orig-imap-opened buffer)) (save-excursion (set-buffer trace-buffer) (goto-char ...) (insert ...))) (let (ad-return-value) (let (... ...) (save-excursion ... ... ... ...) (setq ad-return-value ...) (save-excursion ... ... ...)) ad-return-value) imap-opened(" *nnimap* harvee") nnimap-open-server("harvee" ((nnimap-address "harvee.billerica.ma.us") (nnimap-stream network) (nnimap-list-pattern ("INBOX" "/home/esj/IMap/*")))) gnus-open-server((nnimap "harvee" (nnimap-address "harvee.billerica.ma.us") (nnimap-stream network) (nnimap-list-pattern ("INBOX" "/home/esj/IMap/*")))) gnus-check-server((nnimap "harvee" (nnimap-address "harvee.billerica.ma.us") (nnimap-stream network) (nnimap-list-pattern ("INBOX" "/home/esj/IMap/*")))) gnus-read-active-file-1((nnimap "harvee" (nnimap-address "harvee.billerica.ma.us") (nnimap-stream network) (nnimap-list-pattern ("INBOX" "/home/esj/IMap/*"))) nil) gnus-read-active-file(nil nil) gnus-setup-news(nil nil nil) byte-code("„ gnus-1(nil nil nil) gnus(nil) * call-interactively(gnus) execute-extended-command(nil) * call-interactively(execute-extended-command) any ideas? I'm at a loss as to where to look. --- eric