info-gnus-english
[Top][All Lists]
Advanced

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

Re: How to use Gnus to read newsgroup like gnu.emacs.gnus?


From: Emanuel Berg
Subject: Re: How to use Gnus to read newsgroup like gnu.emacs.gnus?
Date: Tue, 15 Jul 2014 18:10:36 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

David Hume <David.Hume@example.com> writes:

>> This should be the name of the server, not the name
>> of the news group. (I can't remember the name of the
>> free server, but it probably begins with 'news').
>
> Try news.gnus.org.

Or:

(setq gnus-select-method '(nntp "Aioe.org"))

To add a group, I use this:

(defun gnus-add-nntp-group (group)
  (interactive "s Newsgroup: ")
  (gnus-group-make-group group
                         (symbol-to-string (car gnus-select-method))
                         (cadr gnus-select-method) )
  (gnus-save-newsrc-file) )

which I have bound to "a" (for "add").

Otherwise you can just use `M-x gnus-group-make-group'
if you don't mind repeating yourself a few times.

-- 
underground experts united


reply via email to

[Prev in Thread] Current Thread [Next in Thread]