I use a Gnus score file to mark certain Usenet articles that I don't want to read. For example, a line from my $HOME/News/name.of.newsgroup.SCORE
might look something like:
("[email protected]" -1000 nil e)
When I enter the newsgroup, articles from that user are marked as read, but they still show up in the list of articles in the Summary buffer.
It's easy enough to type x
(gnus-summary-limit-to-unread
) to remove those articles from the list, but is there a way to configure Gnus so I don't see them in the first place?
If so, is it also possible to configure my score file so that some articles are not shown at all, while others are shown but automatically marked as read? (For example, I might assign a larger negative score to articles I don't want to see at all.)
(expunge -1001)
at the bottom of my.SCORE
file. Changing a score from the default-1000
to-2000
does the trick. – Keith Thompson Jan 12 '16 at 05:46