[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Reversing Select Methods
From: |
Daniel Bibbens |
Subject: |
Re: Reversing Select Methods |
Date: |
Mon, 16 Aug 2004 09:06:43 -0500 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) |
Kenneth Jacker <khj@be.cs.appstate.edu> writes:
> For years I've used the following "select methods" setup:
>
> (setq gnus-select-method '(nntp "news.machine.org")
>
> gnus-secondary-select-methods
> '((nnml ""
> (setq nnml-get-new-mail nil)
> ... ...
> )))
>
> Since I have *many* more mail (nnml) groups than news (nntp), I
> thought I'd reverse the order on my new machine.
>
> I tried this, but it didn't work (plus it doesn't include the nnml
> "options"):
>
> (setq gnus-select-method '(nnml "")
>
> gnus-secondary-select-methods
> '((nntp "news.machine.org")))
>
>
> Is it possible to do this? If so, I'd appreciate any suggestions on
> the correct coding.
>
> Thanks,
Here's mine (using nnimap):
(setq gnus-select-method
'(nnimap "mail.xobjex.com"
(nnimap-address "mail.xobjex.com")
(nnimap-stream ssl)
(nnimap-list-pattern ("INBOX" "Mail/*"))
)
)
(setq gnus-secondary-select-methods
'(
(nntp "chi.news.speakeasy.net")
)
)
--