[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: More than one IMAP mailbox on the same server
From: |
CHENG Gao |
Subject: |
Re: More than one IMAP mailbox on the same server |
Date: |
Thu, 25 Dec 2008 16:21:39 +0800 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (darwin) |
*On Sun, 19 Oct 2008 13:34:59 -0400
* Also sprach victor@algebraic.org (Victor S. Miller):
> I have two different IMAP mailboxes on the same server. How do I set
> up my .gnus and .authinfo to handle them. From reading the
> documentation it appears that gnus seems keyed on the server alone and
> not the server/mailbox pair. Please correct me if I'm wrong.
>
> Victor
You can use labels.
in .gnus
,----
| ;; (nnimap "account1"
| ;; (nnimap-server-port 143)
| ;; (nnimap-address "imapserver")
| ;; (nnimap-authinfo-file "~/.authinfo"))
`----
,----
| ;; (nnimap "account2"
| ;; (nnimap-server-port 143)
| ;; (nnimap-address "imapserver")
| ;; (nnimap-authinfo-file "~/.authinfo"))
`----
then in .authinfo:
,----
| machine account1 login YOURLOGIN password YOURPASS
| machine account2 login YOURLOGIN password YOURPASS
`----