Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* A problem getting pop mail
@ 2005-12-05  0:35 metonymy
  2005-12-05  1:43 ` Tim McNamara
  0 siblings, 1 reply; 2+ messages in thread
From: metonymy @ 2005-12-05  0:35 UTC (permalink / raw)


I have gnus 5.9 and gnu emacs 21.2.1 running under
cygwin under windows xp media center.

I can't get gnus to fetch my pop mail. I assume I'm
doing something stupid, but I can't figure out what it
is.

Here are the relevent portions of my gnus:

(setq gnus-select-method '(nntp "news.newsguy.com"))
(setq gnus-secondary-select-methods '((nnml "private")))     


(setq mail-sources nil)         ;make it empty
(eval-after-load "mail-source"
  '(add-to-list 'mail-sources '(pop :server "pop.newsguy.com"
                                    :user "metonymy"
                                    :password "password")))

(add-to-list 'mail-sources '(pop :user "gpond" :server "loyno.edu" :password "password"))


TIA


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: A problem getting pop mail
  2005-12-05  0:35 A problem getting pop mail metonymy
@ 2005-12-05  1:43 ` Tim McNamara
  0 siblings, 0 replies; 2+ messages in thread
From: Tim McNamara @ 2005-12-05  1:43 UTC (permalink / raw)


metonymy <metonymy@newsguy.com> writes:

> I have gnus 5.9 and gnu emacs 21.2.1 running under cygwin under
> windows xp media center.
>
> I can't get gnus to fetch my pop mail. I assume I'm doing something
> stupid, but I can't figure out what it is.

Yo have two POP accounts listed.  Does it get mail from either server?

> Here are the relevent portions of my gnus:
>
> (setq gnus-select-method '(nntp "news.newsguy.com"))
> (setq gnus-secondary-select-methods '((nnml "private")))     
>
>
> (setq mail-sources nil)         ;make it empty
> (eval-after-load "mail-source"
>   '(add-to-list 'mail-sources '(pop :server "pop.newsguy.com"
>                                     :user "metonymy"
>                                     :password "password")))
>
> (add-to-list 'mail-sources '(pop :user "gpond" :server "loyno.edu"
> :password "password"))

I think you have some a problem there.  Several, possibly.  One is
your second line, which I think should be

     (add-to-list 'gnus-secondary-select-methods '(nnml ""))

instead of

     (setq gnus-secondary-select-methods '((nnml "private")))

I wonder if  (setq mail-sources nil) isn't creating a problem.

Also, there's no quote (') before 

     (add-to-list 'mail-sources '(pop :user "gpond" :server "loyno.edu"
   :password "password"))

and the name of the server looks incomplete (loyno.edu not pop.loyno.edu).

Try filling in the relevant information for each server into this:

(add-to-list 'gnus-secondary-select-methods '(nnml ""))
(eval-after-load "mail-source"
 '(add-to-list 'mail-sources '(pop :server "pop.newsguy.com"
                                   :user ""metonymy"
                                   :password "password")))

and see if that works.  If so, use that in your .gnus or .emacs.

HTH!


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-12-05  1:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-05  0:35 A problem getting pop mail metonymy
2005-12-05  1:43 ` Tim McNamara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).