Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* Re: Reading mails in Gnus
       [not found] <mailman.13753.1391573419.10748.info-gnus-english@gnu.org>
@ 2014-02-05  7:19 ` Georg Pfeiffer
  0 siblings, 0 replies; 6+ messages in thread
From: Georg Pfeiffer @ 2014-02-05  7:19 UTC (permalink / raw)
  To: info-gnus-english

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Xue Fuqiao <xfq@gnu.org> writes:

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

In my .emacs I have something like:

(gnus-secondary-select-methods (quote ((nnimap "account1"
(nnimap-address "host1") (nnimap-list-pattern ("INBOX" "*"))))))

created with:
> M-x customize-variable
> gnus-secondary-select-methods

If the Messages log shows a successful login maybe you should „Make a
foreign group“ ("G m" in the Groups buffer).  

Georg
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlLx5hMACgkQeekUveeeVotXWgCfdb+0Reo8c4dKQcSfFk+CgbZx
uzUAn1kanuGoHjglcXUdYxizeuSU2/rt
=SLvN
-----END PGP SIGNATURE-----
_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

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

* Re: Reading mails in Gnus
  2014-02-05 13:10   ` Xue Fuqiao
@ 2014-02-05 13:34     ` Xue Fuqiao
  0 siblings, 0 replies; 6+ messages in thread
From: Xue Fuqiao @ 2014-02-05 13:34 UTC (permalink / raw)
  To: info-gnus-english


Finally, I solved this problem by adding ":authentication 'apop" to
`mail-sources', although I don't know what "apop" means...

-- 
http://www.gnu.org/software/emacs/

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

* Re: Reading mails in Gnus
  2014-02-05  7:21 ` Glyn Millington
@ 2014-02-05 13:10   ` Xue Fuqiao
  2014-02-05 13:34     ` Xue Fuqiao
  0 siblings, 1 reply; 6+ messages in thread
From: Xue Fuqiao @ 2014-02-05 13:10 UTC (permalink / raw)
  To: info-gnus-english

Glyn Millington <glyn.millington@gmail.com> writes:

> Xue Fuqiao <xfq@gnu.org> writes:
>> I just started to learn Gnus. I managed to send news/mails and get
>> news, but I can't read my mail.
>
>  (setq read-mail-command 'gnus)
>
> Does that help?

It _is_ in my init file.  I tried `M-x gnus' and `M-x
menu-bar-read-mail' but neither worked.

-- 
http://www.gnu.org/software/emacs/

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

* Re: Reading mails in Gnus
  2014-02-05  4:06 Xue Fuqiao
  2014-02-05  5:48 ` Xue Fuqiao
@ 2014-02-05  7:21 ` Glyn Millington
  2014-02-05 13:10   ` Xue Fuqiao
  1 sibling, 1 reply; 6+ messages in thread
From: Glyn Millington @ 2014-02-05  7:21 UTC (permalink / raw)
  To: info-gnus-english

Xue Fuqiao <xfq@gnu.org> writes:

> Hi,
>
> I just started to learn Gnus. I managed to send news/mails and get
> news, but I can't read my mail.
>
> Here's the Gnus part of my .emacs (I don't use ~/.gnus.el because I
> prefer putting all stuff in my .emacs):
> (setq gnus-select-method '(nntp "news.gmane.org")) (add-to-list
> gnus-secondary-select-methods '(nnml "")) (setq read-mail-command
> gnus) 

 (setq read-mail-command 'gnus) 

Does that help?


atb



Glyn

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

* Re: Reading mails in Gnus
  2014-02-05  4:06 Xue Fuqiao
@ 2014-02-05  5:48 ` Xue Fuqiao
  2014-02-05  7:21 ` Glyn Millington
  1 sibling, 0 replies; 6+ messages in thread
From: Xue Fuqiao @ 2014-02-05  5:48 UTC (permalink / raw)
  To: info-gnus-english


BTW, there's a `{nnml:} (opened)' entry in the *Server* buffer, but
I saw nothing after entering it by RET.  (In fact, I have some unread mails.)

-- 
http://www.gnu.org/software/emacs/

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

* Reading mails in Gnus
@ 2014-02-05  4:06 Xue Fuqiao
  2014-02-05  5:48 ` Xue Fuqiao
  2014-02-05  7:21 ` Glyn Millington
  0 siblings, 2 replies; 6+ messages in thread
From: Xue Fuqiao @ 2014-02-05  4:06 UTC (permalink / raw)
  To: info-gnus-english

Hi,

I just started to learn Gnus.  I managed to send news/mails and get
news, but I can't read my mail.

Here's the Gnus part of my .emacs (I don't use ~/.gnus.el because I
prefer putting all stuff in my .emacs):

--8<---------------cut here---------------start------------->8---
(setq gnus-select-method '(nntp "news.gmane.org"))
(add-to-list 'gnus-secondary-select-methods '(nnml ""))
(setq read-mail-command 'gnus)
(setq send-mail-function 'smtpmail-send-it)
(setq message-send-mail-function 'smtpmail-send-it)
(setq smtpmail-default-smtp-server "fencepost.gnu.org")
(setq smtpmail-smtp-service 587)
(setq mail-sources '((pop :server "fencepost.gnu.org"
			  :user "xfq"
			  :password "secret"
			  :port 995)))
(setq gnus-novice-user t
      gnus-expert-user nil)
--8<---------------cut here---------------end--------------->8---

My .authinfo:
  machine fencepost.gnu.org login xfq port 587 password secret

The two "secret"s above are my passwords.

My mail settings are:

  POP3 server: fencepost.gnu.org
  POP3 port: 995
  POP3 settings: SSL/TLS
  SMTP server: fencepost.gnu.org
  SMTP port: 587
  SMTP settings: STARTTLS

And I'm using Gnus v5.13 bundled with GNU Emacs 24.3.50 (r116149
larsi@gnus.org-20140125005216-vwndukqrdbq2xv4u) on GNU/Linux.

After executing `M-x gnus', I pressed `A A' to see the complete group
list.  I only saw gmane.* and gwene.* groups, and there's no nnml*
groups.  There wasn't any error/warning message.

I have skimmed the Gnus manual and searched the web, but didn't get
anything that looked promising.  Can anyone point me in the right direction?

-- 
http://www.gnu.org/software/emacs/

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

end of thread, other threads:[~2014-02-05 13:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mailman.13753.1391573419.10748.info-gnus-english@gnu.org>
2014-02-05  7:19 ` Reading mails in Gnus Georg Pfeiffer
2014-02-05  4:06 Xue Fuqiao
2014-02-05  5:48 ` Xue Fuqiao
2014-02-05  7:21 ` Glyn Millington
2014-02-05 13:10   ` Xue Fuqiao
2014-02-05 13:34     ` Xue Fuqiao

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).