From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/16158 Path: main.gmane.org!not-for-mail From: (Jari Aalto+list.ding) Newsgroups: gmane.emacs.gnus.general Subject: Re: pop3 reading with gnus? Date: 21 Aug 1998 13:09:40 +0300 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035155073 26142 80.91.224.250 (20 Oct 2002 23:04:33 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:04:33 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.9.1/8.9.1) with ESMTP id DAA13955 for ; Fri, 21 Aug 1998 03:10:14 -0700 Original-Received: from sina.hpc.uh.edu (Sina.HPC.UH.EDU [129.7.3.5]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id GAA07923 for ; Fri, 21 Aug 1998 06:11:45 -0400 Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id FAK13752; Fri, 21 Aug 1998 05:11:43 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 21 Aug 1998 05:10: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 FAA13732 for ; Fri, 21 Aug 1998 05:09:51 -0500 (CDT) Original-Received: from axl01it.ntc.nokia.com (axl01it.ntc.nokia.com [131.228.118.232]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA11071 for ; Fri, 21 Aug 1998 06:09:46 -0400 (EDT) Original-Received: from zeus.tele.nokia.fi (zeus.tele.nokia.fi [131.228.134.50]) by axl01it.ntc.nokia.com (8.8.5/8.6.9) with SMTP id NAA20712 for ; Fri, 21 Aug 1998 13:09:30 +0300 (EET DST) Original-Received: from creator.tele.nokia.fi (creator.tele.nokia.fi [131.228.48.178]) by zeus.tele.nokia.fi (8.6.4/8.6.4) with ESMTP id NAA11538 for ; Fri, 21 Aug 1998 13:13:15 +0300 Original-Received: (from jaalto@localhost) by creator.tele.nokia.fi (8.7.5/8.7.1) id NAA09760; Fri, 21 Aug 1998 13:09:42 +0300 (EETDST) Original-To: Ding mailing list X-info: Emacs tiny tools: ftp://cs.uta.fi/pub/ssjaaa/ File server: Send subject 'send help' to In-Reply-To: Jean-Yves Perrier's message of "21 Aug 1998 11:56:52 +0200" Original-Lines: 58 X-Mailer: Gnus v5.6.38/Emacs 19.34 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:16158 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:16158 | 1998-08-21 Jean-Yves Perrier list.ding | writes: | | > Hi, | > | > Does anyone have pointers to set up Gnus for POP3 mailboxes | > in remoe sites? | > | > jari | | This is what I have in .gnus: | | ;; Needed for sending mail (message-mode): use SMTP | (load-library "message") | (setq message-send-mail-function 'smtpmail-send-it) | (require 'messcompat) | | ;; Read mail from popserver | (setenv "MAILHOST" "mailhost.mycompany.ch") ;; my remote pop mail serveur: configure it.... | (setq nnmail-spool-file "po:perrier") ;; my account po: | (setq nnmail-movemail-program 'nnmail-pop3-movemail) | | ;; Use gnus to read mail, too | (setq gnus-secondary-select-methods | '((nnml ""))) Thank you, but I assume this is for one POP3 mailbox reading only. I have 2 remote pop3 mailboxes in different servers and one local mailbox where I'm 99% of the time. so I'd like to add those remote fileboxes behind a gnus pop3 server, but I'm not quite sure how it is done. My first impression after looking at the pop3 varaibles in the manual was that I create nnml server:tpu Which has entries (nnml "tpu" (nnmail-pop-password "cencored") (nnmail-pop-password-required t) (pop3-mailhost "mail.cs.tpu.fi") (nnmail-spool-file "po:jaalto")) Then I created Gnus group nnml "tpu" by using that server, but somehow the movemail program want to look under local disk 'po:jaalto' What's the correct way to define multiple pop3 servers and use them? My primary local mail delivery method is procmail nnmail-use-procmail t nnmail-procmail-directory (concat nnfolder-directory "/spool") nnmail-spool-file 'procmail gnus-secondary-select-methods's value is ((nnml "")) gnus-secondary-servers's value is nil jari