如何将Gnus与Google Group等新闻组一起使用?

时间:2014-07-14 17:01:35

标签: emacs gnus

我尝试了这个设置:

(setq gnus-select-method '(nnml "comp.lang.lisp"))

但是当我激活Gnus时,没有显示任何组织。如何添加comp.lang.*等组?

编辑:我尝试使用nntp:

(setq gnus-select-method '(nntp "comp.lang.lisp"))

但它不起作用:

Warning: Opening nntp server on comp.lang.lisp...failed: ; Server nntp+comp.lang.lisp previously determined to be down; not retrying

1 个答案:

答案 0 :(得分:11)

扩展@ logoscia的评论, comp.lang.lisp 不是NNTP服务器,而是新闻组。您可以使用Gmane/Gwene通过NNTP阅读邮件列表和RSS源。您还可以添加传统的新闻服务器,例如news.eternal-september.org。下面的elisp片段可以帮助您入门。

(setq gnus-select-method '(nnml "")) ;; this depends on how you want
                                     ;; to get your mail
(setq gnus-secondary-select-methods '((nntp "news.gmane.org")
                                      (nntp "news.eternal-september.org")))

使用M-x gnus启动Gnus。在组缓冲区中,单击^以转到* Server *缓冲区,然后浏览服务器上的新闻组。从那里,您可以使用u订阅/取消订阅新闻组。回到* Group *缓冲区,您将看到您订阅的组。有关详细信息,请参阅the Gnus manual