From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/88525 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Eric S Fraga Newsgroups: gmane.emacs.gnus.general Subject: Re: subscribe to thread or topic Date: Fri, 26 Apr 2019 06:42:51 +0100 Organization: On the Interweb somewhere Message-ID: <871s1pjp9g.fsf@ucl.ac.uk> References: <867ebs9ofl.fsf@zoho.eu> <87muke7gm1.fsf@gnu.org> <86d0lad0y1.fsf@zoho.eu> <86zhodbtc8.fsf@zoho.eu> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="104767"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) To: ding@gnus.org Original-X-From: ding-owner+M36728@lists.math.uh.edu Fri Apr 26 07:58:51 2019 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from lists1.math.uh.edu ([129.7.128.208]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hJtsp-000R3i-3I for ding-account@gmane.org; Fri, 26 Apr 2019 07:58:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.92) (envelope-from ) id 1hJtsB-00020A-Ix; Fri, 26 Apr 2019 00:58:11 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1hJts5-0001xE-1M for ding@lists.math.uh.edu; Fri, 26 Apr 2019 00:58:05 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1hJts3-0001Ty-7P for ding@lists.math.uh.edu; Fri, 26 Apr 2019 00:58:04 -0500 Original-Received: from [195.159.176.226] (helo=blaine.gmane.org) by quimby.gnus.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hJtrz-0004Wa-R0 for ding@gnus.org; Fri, 26 Apr 2019 07:58:01 +0200 Original-Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hJtdR-0009J5-Hp for ding@gnus.org; Fri, 26 Apr 2019 07:42:57 +0200 X-Injected-Via-Gmane: http://gmane.org/ X-Url: http://twitter.com/ericsfraga/ Cancel-Lock: sha1:zmm32gzGD9w+Kv3T2WNRe9fSocI= List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:88525 Archived-At: On Friday, 26 Apr 2019 at 00:41, Emanuel Berg wrote: > Eric S Fraga wrote: > >>>> If you want, you can really get crazy >>>> with scoring. >>> >>> OK, only that won't work on me, unless you >>> also have some Elisp to make me sane first? >> >> Most of the scoring customizations are done >> through gnus variables. I use scoring (both >> manual ad adaptive) a lot and have no >> specific elisp code other than setq... > > ... :) Okay: #+begin_src emacs-lisp (setq gnus-default-adaptive-score-alist '(;(gnus-kill-file-mark) ;;(gnus-unread-mark) ;; (gnus-read-mark (from 5) (subject 30)) (gnus-replied-mark (from 50) (subject 10)) (gnus-read-mark (from 30) (subject 10)) (gnus-cached-mark (from 30) (subject 10)) (gnus-forwarded-mark (from 10) (subject 5)) (gnus-saved-mark (from 10) (subject 5)) (gnus-expirable-mark (from -5) (subject -10)) (gnus-catchup-mark (from -5) (subject -30)) (gnus-killed-mark (subject -100)) (gnus-del-mark (from -10) (subject -50))) gnus-default-adaptive-word-score-alist '((42 . 3) ;cached (65 . 2) ;replied (70 . 1) ;forwarded (82 . 1) ;read (67 . -1) ;catchup (69 . -1) ;expired (75 . -3) ;killed (114 . -3)) ;deleted gnus-thread-sort-functions '(gnus-thread-sort-by-date gnus-thread-sort-by-total-score) gnus-use-adaptive-scoring '(word line) ) #+end_src although default settings for all of the above are reasonable. -- Eric S Fraga via Emacs 27.0.50 & org 9.2.3 on Debian buster/sid