[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cvs access



Harry Putnam <reader@newsguy.com> writes:

> "The machine cyrus.andrew.cmu.edu runs the Cyrus IMAP server and may
> be used for testing.
> 
> To use the IMAP server, log in as the user "anonymous" with your
> e-mail address as the password. The anonymous user receives mail as
> "anonymous@cyrus.andrew.cmu.edu" and can create mailboxes with names
> starting with "INBOX."
> 
> It looks for all the world like anyone is supposed to be able to login
> and try it out. Trying every login technique I could come up with
> failed.
> 
> I tried emacs then /anonymous@cyrus.andrew.cmu.edu:  then tried both my
> email address and the one listed on the page... nada
> 
> Also /ftp@cyrus.andrew.cmu.edu:  
> 
> Telnet, ssh ncftp all .. nada
> 
> What kind of "login" is expected here?

An IMAP login. With nnimap, pGnus is a IMAP client so you would add
another select method to `gnus-secondary-select-methods':

(setq gnus-secondary-select-methods
        '((nnml "")   ;; your current server, don't remove it!
          (nnimap "cyrus"
               (nnimap-list-pattern ("archive.*"))
		(nnimap-stream network)
		(nnimap-authenticator anonymous)
		(nnimap-address "cyrus.andrew.cmu.edu"))))

The nnimap documentation actually use this server as an example.