From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/6113 Path: main.gmane.org!not-for-mail From: Ching-Mo Chang Newsgroups: gmane.emacs.gnus.general Subject: Re: Using just the secondary method? Date: 02 May 1996 12:38:55 -0800 Sender: chang%local@ifi.uio.no Message-ID: References: <87viifrluc.fsf@cyteen.pp.icon.fi> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035146618 2615 80.91.224.250 (20 Oct 2002 20:43:38 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:43:38 +0000 (UTC) Cc: ding@ifi.uio.no Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.5/8.6.9) with SMTP id NAA20250 for ; Thu, 2 May 1996 13:36:57 -0700 Original-Received: from twarp.wsu.edu (xtsd0420.it.wsu.edu [134.121.3.80]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Thu, 2 May 1996 21:57:46 +0200 Original-Received: by twarp.wsu.edu (IBM OS/2 SENDMAIL VERSION 1.3.14/2.12um) id AA0081; Thu, 02 May 96 12:39:06 -0700 Original-To: Juri Pakaste In-Reply-To: Juri Pakaste's message of 02 May 1996 21:06:34 +0300 Original-Lines: 32 X-Mailer: September Gnus v0.80/Emacs 19.30 Xref: main.gmane.org gmane.emacs.gnus.general:6113 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:6113 >>>>> "Juri" == Juri Pakaste writes: Juri> Is there a way to tell sgnus to use just the secondary select Juri> method when starting up and when fetching new articles? The Juri> primary method is nntp, which isn't always available (I use Juri> PPP) and when it is, it isn't exactly fast over the 16800 Juri> link. But AFAIK I always have to use it when I want to read Juri> mail, as I use nnml as the secondary select method. I just define an elisp function which set `nnml' as the primary method and use a different startup file as follow: (defun gm () "Use `GNUS' to read mail." (interactive) (setq gnus-startup-file "~/gnus-startup/private" gnus-select-method '(nnml "private" (nnml-directory "~/Mail") (nnml-active-file "~/Mail/active") (nnml-newsgroups-file "~/Mail/.group-description") (nnml-get-new-mail t) ;;(nnml-nov-is-evil nil) ;;(nnml-prepare-save-mail-hook ) )) (gnus)) to read mail, of course that I also define some other functons to read news from different nntp servers. I am using PPP too. -- Ching-Mo Chang