[ Usenet FAQs | Web FAQs | Documents | RFC Index ]
Single Page
Top Document: Gnus (Emacs Newsreader) FAQ
Previous Document: Q3.3 How do I use an NNTP server with authentication?
Next Document: Q3.5 Why aren't BBDB known posters marked in the summary buffer?
-
Search the FAQ Archives
Single Page
Top Document: Gnus (Emacs Newsreader) FAQ
Previous Document: Q3.3 How do I use an NNTP server with authentication?
Next Document: Q3.5 Why aren't BBDB known posters marked in the summary buffer?
Q3.4 Not reading the first article.
How do I avoid reading the first article when a group is selected?
1. Use RET to select the group instead of SPC.
2. (setq gnus-auto-select-first nil)
3. elf@mailhost.ee.ryerson.ca (Luis Fernandes) writes:
This is what I use...customize as necessary...
;;; Don't auto-select first article if reading sources, or archives or
;;; jobs postings, etc. and just display the summary buffer
(add-hook 'gnus-select-group-hook
(function
(lambda ()
(cond ((string-match "sources" gnus-newsgroup-name)
(setq gnus-auto-select-first nil))
((string-match "jobs" gnus-newsgroup-name)
(setq gnus-auto-select-first nil))
((string-match "comp\\.archives" gnus-newsgroup-name)
(setq gnus-auto-select-first nil))
((string-match "reviews" gnus-newsgroup-name)
(setq gnus-auto-select-first nil))
((string-match "announce" gnus-newsgroup-name)
(setq gnus-auto-select-first nil))
((string-match "binaries" gnus-newsgroup-name)
(setq gnus-auto-select-first nil))
(t
(setq gnus-auto-select-first t))))))
4. abraham@dina.kvl.dk (Per Abrahamsen) writes:
Another possibility is to create an `all.binaries.all.SCORE' file
like this:
((local
(gnus-auto-select-first nil)))
and insert
(setq gnus-auto-select-first t)
in your .gnus.
Top Document: Gnus (Emacs Newsreader) FAQ
Previous Document: Q3.3 How do I use an NNTP server with authentication?
Next Document: Q3.5 Why aren't BBDB known posters marked in the summary buffer?
Single Page
[ Usenet FAQs | Web FAQs | Documents | RFC Index ]
Send corrections/additions to the FAQ Maintainer:
Justin Sheehy <dworkin@ccs.neu.edu>
Last Update October 23 2009 @ 08:41 AM