From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/18852 Path: news.gmane.org!.POSTED!not-for-mail From: Winston Newsgroups: gmane.emacs.gnus.user Subject: Re: on automatic gnus-summary-insert-new-articles after posting Date: Sun, 29 Jul 2018 10:37:22 -0400 Organization: Aioe.org NNTP Server Message-ID: References: <86d0v7jrvd.fsf@dev.null> <8636w2hp1b.fsf@dev.null> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1532875082 25807 195.159.176.226 (29 Jul 2018 14:38:02 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 29 Jul 2018 14:38:02 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (berkeley-unix) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Sun Jul 29 16:37:58 2018 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fjmpZ-0006dX-Pq for gegu-info-gnus-english@m.gmane.org; Sun, 29 Jul 2018 16:37:57 +0200 Original-Received: from localhost ([::1]:48648 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fjmrg-0000uW-JX for gegu-info-gnus-english@m.gmane.org; Sun, 29 Jul 2018 10:40:08 -0400 Original-Path: usenet.stanford.edu!goblin3!goblin2!goblin.stu.neva.ru!aioe.org!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 53 Original-NNTP-Posting-Host: HiP9CM4zZKmgWNAsVK99/w.user.gioia.aioe.org Original-X-Complaints-To: abuse@aioe.org X-Notice: Filtered by postfilter v. 0.8.3 Cancel-Lock: sha1:VTcUGEGhUap5R086kpuiQG2SVns= Mail-Copies-To: never Original-Xref: usenet.stanford.edu gnu.emacs.gnus:89795 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: "info-gnus-english" Xref: news.gmane.org gmane.emacs.gnus.user:18852 Archived-At: Robert Girault writes: > This brings me to a point I've been trying to set up Gnus for. I'd like > to keep, for a while, a history of everything I wrote. ... > When I enter a group, I feel lost. I think it's slrn that I've used in > the past. When I'd enter a news group, I'd have a clear idea of what's > happening --- which threads are growing and which are not. Some adjustments you could try to see if they help: (setq gnus-use-cross-reference t) (setq gnus-thread-indent-level 2) (setq gnus-thread-sort-functions '(gnus-thread-sort-by-subject)) I find that sorting threads by subject does a decent job of putting related articles together, even when their original context is no longer in the article summary. Next, use Gnus article scoring to highlight articles you've posted and replies to them: * Increase score in all newsgroups on articles "From" you () and * Increase score in all newsgroups on articles with "References" that include "fsf@dev.null>" The easiest way to do that is usually to start by going to an article you posted. The scoring rules should end up in News/all.SCORE and (depending on what you left in the string to match on) might look something like: (("from" ("r@dev\\.null" 1000 nil r)) ("references" ("\\.fsf@dev\\.null>" 1000 nil r)) [I'm not certain about the "\\." instead of just plain "." above, but I think it's a regular expression and thus needs \. to prevent "." from being the 1-char wild card.] If you follow groups that are very active, setting a number-of-articles limit such as (setq gnus-large-newsgroup 400) might also be helpful. If there are more articles than the limit, you get the choice of which (oldest or newest), and how many to view. HTH, -WBE