9d58e09ac4b25870f6611139231c76e0281d9ab2
[elisp/gnus.git-] / lisp / gnus-score.el
1 ;;; gnus-score.el --- scoring code for Gnus
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Per Abrahamsen <amanda@iesd.auc.dk>
6 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (eval-when-compile (require 'cl))
31
32 (require 'gnus)
33 (require 'gnus-sum)
34 (require 'gnus-range)
35 (require 'gnus-win)
36 (require 'message)
37 (require 'score-mode)
38
39 (defcustom gnus-global-score-files nil
40   "List of global score files and directories.
41 Set this variable if you want to use people's score files.  One entry
42 for each score file or each score file directory.  Gnus will decide
43 by itself what score files are applicable to which group.
44
45 Say you want to use the single score file
46 \"/ftp.gnus.org@ftp:/pub/larsi/ding/score/soc.motss.SCORE\" and all
47 score files in the \"/ftp.some-where:/pub/score\" directory.
48
49  (setq gnus-global-score-files
50        '(\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\"
51          \"/ftp.some-where:/pub/score\"))"
52   :group 'gnus-score-files
53   :type '(repeat file))
54
55 (defcustom gnus-score-file-single-match-alist nil
56   "Alist mapping regexps to lists of score files.
57 Each element of this alist should be of the form
58         (\"REGEXP\" [ \"SCORE-FILE-1\" ] [ \"SCORE-FILE-2\" ] ... )
59
60 If the name of a group is matched by REGEXP, the corresponding scorefiles
61 will be used for that group.
62 The first match found is used, subsequent matching entries are ignored (to
63 use multiple matches, see `gnus-score-file-multiple-match-alist').
64
65 These score files are loaded in addition to any files returned by
66 `gnus-score-find-score-files-function'."
67   :group 'gnus-score-files
68   :type '(repeat (cons regexp (repeat file))))
69
70 (defcustom gnus-score-file-multiple-match-alist nil
71   "Alist mapping regexps to lists of score files.
72 Each element of this alist should be of the form
73         (\"REGEXP\" [ \"SCORE-FILE-1\" ] [ \"SCORE-FILE-2\" ] ... )
74
75 If the name of a group is matched by REGEXP, the corresponding scorefiles
76 will be used for that group.
77 If multiple REGEXPs match a group, the score files corresponding to each
78 match will be used (for only one match to be used, see
79 `gnus-score-file-single-match-alist').
80
81 These score files are loaded in addition to any files returned by
82 `gnus-score-find-score-files-function'."
83   :group 'gnus-score-files
84   :type '(repeat (cons regexp (repeat file))))
85
86 (defcustom gnus-score-file-suffix "SCORE"
87   "Suffix of the score files."
88   :group 'gnus-score-files
89   :type 'string)
90
91 (defcustom gnus-adaptive-file-suffix "ADAPT"
92   "Suffix of the adaptive score files."
93   :group 'gnus-score-files
94   :group 'gnus-score-adapt
95   :type 'string)
96
97 (defcustom gnus-score-find-score-files-function 'gnus-score-find-bnews
98   "Function used to find score files.
99 The function will be called with the group name as the argument, and
100 should return a list of score files to apply to that group.  The score
101 files do not actually have to exist.
102
103 Predefined values are:
104
105 `gnus-score-find-single': Only apply the group's own score file.
106 `gnus-score-find-hierarchical': Also apply score files from parent groups.
107 `gnus-score-find-bnews': Apply score files whose names matches.
108
109 See the documentation to these functions for more information.
110
111 This variable can also be a list of functions to be called.  Each
112 function is given the group name as argument and should either return
113 a list of score files, or a list of score alists.
114
115 If functions other than these pre-defined functions are used,
116 the `a' symbolic prefix to the score commands will always use
117 \"all.SCORE\"."
118   :group 'gnus-score-files
119   :type '(radio (function-item gnus-score-find-single)
120                 (function-item gnus-score-find-hierarchical)
121                 (function-item gnus-score-find-bnews)
122                 (repeat :tag "List of functions"
123                         (choice (function :tag "Other" :value 'ignore)
124                                 (function-item gnus-score-find-single)
125                                 (function-item gnus-score-find-hierarchical)
126                                 (function-item gnus-score-find-bnews)))
127                 (function :tag "Other" :value 'ignore)))
128
129 (defcustom gnus-score-interactive-default-score 1000
130   "*Scoring commands will raise/lower the score with this number as the default."
131   :group 'gnus-score-default
132   :type 'integer)
133
134 (defcustom gnus-score-expiry-days 7
135   "*Number of days before unused score file entries are expired.
136 If this variable is nil, no score file entries will be expired."
137   :group 'gnus-score-expire
138   :type '(choice (const :tag "never" nil)
139                  number))
140
141 (defcustom gnus-update-score-entry-dates t
142   "*In non-nil, update matching score entry dates.
143 If this variable is nil, then score entries that provide matches
144 will be expired along with non-matching score entries."
145   :group 'gnus-score-expire
146   :type 'boolean)
147
148 (defcustom gnus-decay-scores nil
149   "*If non-nil, decay non-permanent scores."
150   :group 'gnus-score-decay
151   :type 'boolean)
152
153 (defcustom gnus-decay-score-function 'gnus-decay-score
154   "*Function called to decay a score.
155 It is called with one parameter -- the score to be decayed."
156   :group 'gnus-score-decay
157   :type '(radio (function-item gnus-decay-score)
158                 (function :tag "Other")))
159
160 (defcustom gnus-score-decay-constant 3
161   "*Decay all \"small\" scores with this amount."
162   :group 'gnus-score-decay
163   :type 'integer)
164
165 (defcustom gnus-score-decay-scale .05
166   "*Decay all \"big\" scores with this factor."
167   :group 'gnus-score-decay
168   :type 'number)
169
170 (defcustom gnus-home-score-file nil
171   "Variable to control where interactive score entries are to go.
172 It can be:
173
174  * A string
175    This file file will be used as the home score file.
176
177  * A function
178    The result of this function will be used as the home score file.
179    The function will be passed the name of the group as its
180    parameter.
181
182  * A list
183    The elements in this list can be:
184
185    * `(regexp file-name ...)'
186      If the `regexp' matches the group name, the first `file-name' will
187      will be used as the home score file.  (Multiple filenames are
188      allowed so that one may use gnus-score-file-single-match-alist to
189      set this variable.)
190
191    * A function.
192      If the function returns non-nil, the result will be used
193      as the home score file.  The function will be passed the
194      name of the group as its parameter.
195
196    * A string.  Use the string as the home score file.
197
198    The list will be traversed from the beginning towards the end looking
199    for matches."
200   :group 'gnus-score-files
201   :type '(choice string
202                  (repeat (choice string
203                                  (cons regexp (repeat file))
204                                  (function :value fun)))
205                  (function-item gnus-hierarchial-home-score-file)
206                  (function-item gnus-current-home-score-file)
207                  (function :value fun)))
208
209 (defcustom gnus-home-adapt-file nil
210   "Variable to control where new adaptive score entries are to go.
211 This variable allows the same syntax as `gnus-home-score-file'."
212   :group 'gnus-score-adapt
213   :group 'gnus-score-files
214   :type '(choice string
215                  (repeat (choice string
216                                  (cons regexp (repeat file))
217                                  (function :value fun)))
218                  (function :value fun)))
219
220 (defcustom gnus-default-adaptive-score-alist
221   '((gnus-kill-file-mark)
222     (gnus-unread-mark)
223     (gnus-read-mark (from 3) (subject 30))
224     (gnus-catchup-mark (subject -10))
225     (gnus-killed-mark (from -1) (subject -20))
226     (gnus-del-mark (from -2) (subject -15)))
227   "*Alist of marks and scores."
228   :group 'gnus-score-adapt
229   :type '(repeat (cons (symbol :tag "Mark")
230                        (repeat (list (choice :tag "Header"
231                                              (const from)
232                                              (const subject)
233                                              (symbol :tag "other"))
234                                      (integer :tag "Score"))))))
235
236 (defcustom gnus-adaptive-word-length-limit nil
237   "*Words of a length lesser than this limit will be ignored when doing adaptive scoring."
238   :group 'gnus-score-adapt
239   :type '(radio (const :format "Unlimited " nil)
240                 (integer :format "Maximum length: %v\n" :size 0)))
241
242 (defcustom gnus-ignored-adaptive-words nil
243   "List of words to be ignored when doing adaptive word scoring."
244   :group 'gnus-score-adapt
245   :type '(repeat string))
246
247 (defcustom gnus-default-ignored-adaptive-words
248   '("a" "i" "the" "to" "of" "and" "in" "is" "it" "for" "that" "if" "you"
249     "this" "be" "on" "with" "not" "have" "are" "or" "as" "from" "can"
250     "but" "by" "at" "an" "will" "no" "all" "was" "do" "there" "my" "one"
251     "so" "we" "they" "what" "would" "any" "which" "about" "get" "your"
252     "use" "some" "me" "then" "name" "like" "out" "when" "up" "time"
253     "other" "more" "only" "just" "end" "also" "know" "how" "new" "should"
254     "been" "than" "them" "he" "who" "make" "may" "people" "these" "now"
255     "their" "here" "into" "first" "could" "way" "had" "see" "work" "well"
256     "were" "two" "very" "where" "while" "us" "because" "good" "same"
257     "even" "much" "most" "many" "such" "long" "his" "over" "last" "since"
258     "right" "before" "our" "without" "too" "those" "why" "must" "part"
259     "being" "current" "back" "still" "go" "point" "value" "each" "did"
260     "both" "true" "off" "say" "another" "state" "might" "under" "start"
261     "try" "re")
262   "*Default list of words to be ignored when doing adaptive word scoring."
263   :group 'gnus-score-adapt
264   :type '(repeat string))
265
266 (defcustom gnus-default-adaptive-word-score-alist
267   `((,gnus-read-mark . 30)
268     (,gnus-catchup-mark . -10)
269     (,gnus-killed-mark . -20)
270     (,gnus-del-mark . -15))
271   "*Alist of marks and scores."
272   :group 'gnus-score-adapt
273   :type '(repeat (cons (character :tag "Mark")
274                        (integer :tag "Score"))))
275
276 (defcustom gnus-adaptive-word-minimum nil
277   "If a number, this is the minimum score value that can be assigned to a word."
278   :group 'gnus-score-adapt
279   :type '(choice (const nil) integer))
280
281 (defcustom gnus-adaptive-word-no-group-words nil
282   "If t, don't adaptively score words included in the group name."
283   :group 'gnus-score-adapt
284   :type 'boolean)
285
286 (defcustom gnus-score-mimic-keymap nil
287   "*Have the score entry functions pretend that they are a keymap."
288   :group 'gnus-score-default
289   :type 'boolean)
290
291 (defcustom gnus-score-exact-adapt-limit 10
292   "*Number that says how long a match has to be before using substring matching.
293 When doing adaptive scoring, one normally uses fuzzy or substring
294 matching.  However, if the header one matches is short, the possibility
295 for false positives is great, so if the length of the match is less
296 than this variable, exact matching will be used.
297
298 If this variable is nil, exact matching will always be used."
299   :group 'gnus-score-adapt
300   :type '(choice (const nil) integer))
301
302 (defcustom gnus-score-uncacheable-files "ADAPT$"
303   "All score files that match this regexp will not be cached."
304   :group 'gnus-score-adapt
305   :group 'gnus-score-files
306   :type 'regexp)
307
308 (defcustom gnus-score-default-header nil
309   "Default header when entering new scores.
310
311 Should be one of the following symbols.
312
313  a: from
314  s: subject
315  b: body
316  h: head
317  i: message-id
318  t: references
319  x: xref
320  e: `extra' (non-standard overview)
321  l: lines
322  d: date
323  f: followup
324
325 If nil, the user will be asked for a header."
326   :group 'gnus-score-default
327   :type '(choice (const :tag "from" a)
328                  (const :tag "subject" s)
329                  (const :tag "body" b)
330                  (const :tag "head" h)
331                  (const :tag "message-id" i)
332                  (const :tag "references" t)
333                  (const :tag "xref" x)
334                  (const :tag "extra" e)
335                  (const :tag "lines" l)
336                  (const :tag "date" d)
337                  (const :tag "followup" f)
338                  (const :tag "ask" nil)))
339
340 (defcustom gnus-score-default-type nil
341   "Default match type when entering new scores.
342
343 Should be one of the following symbols.
344
345  s: substring
346  e: exact string
347  f: fuzzy string
348  r: regexp string
349  b: before date
350  a: after date
351  n: this date
352  <: less than number
353  >: greater than number
354  =: equal to number
355
356 If nil, the user will be asked for a match type."
357   :group 'gnus-score-default
358   :type '(choice (const :tag "substring" s)
359                  (const :tag "exact string" e)
360                  (const :tag "fuzzy string" f)
361                  (const :tag "regexp string" r)
362                  (const :tag "before date" b)
363                  (const :tag "after date" a)
364                  (const :tag "this date" n)
365                  (const :tag "less than number" <)
366                  (const :tag "greater than number" >)
367                  (const :tag "equal than number" =)
368                  (const :tag "ask" nil)))
369
370 (defcustom gnus-score-default-fold nil
371   "Use case folding for new score file entries iff not nil."
372   :group 'gnus-score-default
373   :type 'boolean)
374
375 (defcustom gnus-score-default-duration nil
376   "Default duration of effect when entering new scores.
377
378 Should be one of the following symbols.
379
380  t: temporary
381  p: permanent
382  i: immediate
383
384 If nil, the user will be asked for a duration."
385   :group 'gnus-score-default
386   :type '(choice (const :tag "temporary" t)
387                  (const :tag "permanent" p)
388                  (const :tag "immediate" i)
389                  (const :tag "ask" nil)))
390
391 (defcustom gnus-score-after-write-file-function nil
392   "Function called with the name of the score file just written to disk."
393   :group 'gnus-score-files
394   :type '(choice (const nil) function))
395
396 (defcustom gnus-score-thread-simplify nil
397   "If non-nil, subjects will simplified as in threading."
398   :group 'gnus-score-various
399   :type 'boolean)
400
401 \f
402
403 ;; Internal variables.
404
405 (defvar gnus-score-use-all-scores t
406   "If nil, only `gnus-score-find-score-files-function' is used.")
407
408 (defvar gnus-adaptive-word-syntax-table
409   (let ((table (copy-syntax-table (standard-syntax-table)))
410         (numbers '(?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9)))
411     (while numbers
412       (modify-syntax-entry (pop numbers) " " table))
413     (modify-syntax-entry ?' "w" table)
414     table)
415   "Syntax table used when doing adaptive word scoring.")
416
417 (defvar gnus-scores-exclude-files nil)
418 (defvar gnus-internal-global-score-files nil)
419 (defvar gnus-score-file-list nil)
420
421 (defvar gnus-short-name-score-file-cache nil)
422
423 (defvar gnus-score-help-winconf nil)
424 (defvar gnus-adaptive-score-alist gnus-default-adaptive-score-alist)
425 (defvar gnus-adaptive-word-score-alist gnus-default-adaptive-word-score-alist)
426 (defvar gnus-score-trace nil)
427 (defvar gnus-score-edit-buffer nil)
428
429 (defvar gnus-score-alist nil
430   "Alist containing score information.
431 The keys can be symbols or strings.  The following symbols are defined.
432
433 touched: If this alist has been modified.
434 mark:    Automatically mark articles below this.
435 expunge: Automatically expunge articles below this.
436 files:   List of other score files to load when loading this one.
437 eval:    Sexp to be evaluated when the score file is loaded.
438
439 String entries have the form (HEADER (MATCH TYPE SCORE DATE) ...)
440 where HEADER is the header being scored, MATCH is the string we are
441 looking for, TYPE is a flag indicating whether it should use regexp or
442 substring matching, SCORE is the score to add and DATE is the date
443 of the last successful match.")
444
445 (defvar gnus-score-cache nil)
446 (defvar gnus-scores-articles nil)
447 (defvar gnus-score-index nil)
448
449
450 (defconst gnus-header-index
451   ;; Name to index alist.
452   `(("number"
453      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
454                              'location)
455      gnus-score-integer)
456     ("subject"
457      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
458                              'subject)
459      gnus-score-string)
460     ("from"
461      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
462                              'from)
463      gnus-score-string)
464     ("date"
465      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
466                              'date)
467      gnus-score-date)
468     ("message-id"
469      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
470                              'id)
471      gnus-score-string)
472     ("references"
473      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
474                              'references)
475      gnus-score-string)
476     ("chars"
477      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
478                              'chars)
479      gnus-score-integer)
480     ("lines"
481      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
482                              'lines)
483      gnus-score-integer)
484     ("xref"
485      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
486                              'xref)
487      gnus-score-string)
488 ;;    ("extra" 16 gnus-score-string)
489     ("extra" -1 gnus-score-body)
490     ("head" -1 gnus-score-body)
491     ("body" -1 gnus-score-body)
492     ("all" -1 gnus-score-body)
493     ("followup"
494      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
495                              'from)
496      gnus-score-followup)
497     ("thread"
498      ,(luna-class-slot-index (luna-find-class 'mime-gnus-entity)
499                              'references)
500      gnus-score-thread)))
501
502 ;;; Summary mode score maps.
503
504 (gnus-define-keys (gnus-summary-score-map "V" gnus-summary-mode-map)
505   "s" gnus-summary-set-score
506   "S" gnus-summary-current-score
507   "c" gnus-score-change-score-file
508   "C" gnus-score-customize
509   "m" gnus-score-set-mark-below
510   "x" gnus-score-set-expunge-below
511   "R" gnus-summary-rescore
512   "e" gnus-score-edit-current-scores
513   "f" gnus-score-edit-file
514   "F" gnus-score-flush-cache
515   "t" gnus-score-find-trace
516   "w" gnus-score-find-favourite-words)
517
518 ;; Summary score file commands
519
520 ;; Much modification of the kill (ahem, score) code and lots of the
521 ;; functions are written by Per Abrahamsen <amanda@iesd.auc.dk>.
522
523 (defun gnus-summary-lower-score (&optional score symp)
524   "Make a score entry based on the current article.
525 The user will be prompted for header to score on, match type,
526 permanence, and the string to be used.  The numerical prefix will be
527 used as score.  A symbolic prefix of `a' says to use the `all.SCORE'
528 file for the command instead of the current score file."
529   (interactive (gnus-interactive "P\ny"))
530   (gnus-summary-increase-score (- (gnus-score-delta-default score)) symp))
531
532 (defun gnus-score-kill-help-buffer ()
533   (when (get-buffer "*Score Help*")
534     (kill-buffer "*Score Help*")
535     (when gnus-score-help-winconf
536       (set-window-configuration gnus-score-help-winconf))))
537
538 (defun gnus-summary-increase-score (&optional score symp)
539   "Make a score entry based on the current article.
540 The user will be prompted for header to score on, match type,
541 permanence, and the string to be used.  The numerical prefix will be
542 used as score.  A symbolic prefix of `a' says to use the `all.SCORE'
543 file for the command instead of the current score file."
544   (interactive (gnus-interactive "P\ny"))
545   (let* ((nscore (gnus-score-delta-default score))
546          (prefix (if (< nscore 0) ?L ?I))
547          (increase (> nscore 0))
548          (char-to-header
549           '((?a "from" nil nil string)
550             (?s "subject" nil nil string)
551             (?b "body" "" nil body-string)
552             (?h "head" "" nil body-string)
553             (?i "message-id" nil nil string)
554             (?r "references" "message-id" nil string)
555             (?x "xref" nil nil string)
556             (?e "extra" nil nil string)
557             (?l "lines" nil nil number)
558             (?d "date" nil nil date)
559             (?f "followup" nil nil string)
560             (?t "thread" "message-id" nil string)))
561          (char-to-type
562           '((?s s "substring" string)
563             (?e e "exact string" string)
564             (?f f "fuzzy string" string)
565             (?r r "regexp string" string)
566             (?z s "substring" body-string)
567             (?p r "regexp string" body-string)
568             (?b before "before date" date)
569             (?a after "after date" date)
570             (?n at "this date" date)
571             (?< < "less than number" number)
572             (?> > "greater than number" number)
573             (?= = "equal to number" number)))
574          (current-score-file gnus-current-score-file)
575          (char-to-perm
576           (list (list ?t (current-time-string) "temporary")
577                 '(?p perm "permanent") '(?i now "immediate")))
578          (mimic gnus-score-mimic-keymap)
579          (hchar (and gnus-score-default-header
580                      (aref (symbol-name gnus-score-default-header) 0)))
581          (tchar (and gnus-score-default-type
582                      (aref (symbol-name gnus-score-default-type) 0)))
583          (pchar (and gnus-score-default-duration
584                      (aref (symbol-name gnus-score-default-duration) 0)))
585          entry temporary type match extra)
586
587     (unwind-protect
588         (progn
589
590           ;; First we read the header to score.
591           (while (not hchar)
592             (if mimic
593                 (progn
594                   (sit-for 1)
595                   (message "%c-" prefix))
596               (message "%s header (%s?): " (if increase "Increase" "Lower")
597                        (mapconcat (lambda (s) (char-to-string (car s)))
598                                   char-to-header "")))
599             (setq hchar (read-char))
600             (when (or (= hchar ??) (= hchar ?\C-h))
601               (setq hchar nil)
602               (gnus-score-insert-help "Match on header" char-to-header 1)))
603
604           (gnus-score-kill-help-buffer)
605           (unless (setq entry (assq (downcase hchar) char-to-header))
606             (if mimic (error "%c %c" prefix hchar)
607               (error "Invalid header type")))
608
609           (when (/= (downcase hchar) hchar)
610             ;; This was a majuscule, so we end reading and set the defaults.
611             (if mimic (message "%c %c" prefix hchar) (message ""))
612             (setq tchar (or tchar ?s)
613                   pchar (or pchar ?t)))
614
615           (let ((legal-types
616                  (delq nil
617                        (mapcar (lambda (s)
618                                  (if (eq (nth 4 entry)
619                                          (nth 3 s))
620                                      s nil))
621                                char-to-type))))
622             ;; We continue reading - the type.
623             (while (not tchar)
624               (if mimic
625                   (progn
626                     (sit-for 1) (message "%c %c-" prefix hchar))
627                 (message "%s header '%s' with match type (%s?): "
628                          (if increase "Increase" "Lower")
629                          (nth 1 entry)
630                          (mapconcat (lambda (s) (char-to-string (car s)))
631                                     legal-types "")))
632               (setq tchar (read-char))
633               (when (or (= tchar ??) (= tchar ?\C-h))
634                 (setq tchar nil)
635                 (gnus-score-insert-help "Match type" legal-types 2)))
636
637             (gnus-score-kill-help-buffer)
638             (unless (setq type (nth 1 (assq (downcase tchar) legal-types)))
639               (if mimic (error "%c %c" prefix hchar)
640                 (error "Invalid match type"))))
641
642           (when (/= (downcase tchar) tchar)
643             ;; It was a majuscule, so we end reading and use the default.
644             (if mimic (message "%c %c %c" prefix hchar tchar)
645               (message ""))
646             (setq pchar (or pchar ?t)))
647
648           ;; We continue reading.
649           (while (not pchar)
650             (if mimic
651                 (progn
652                   (sit-for 1) (message "%c %c %c-" prefix hchar tchar))
653               (message "%s permanence (%s?): " (if increase "Increase" "Lower")
654                        (mapconcat (lambda (s) (char-to-string (car s)))
655                                   char-to-perm "")))
656             (setq pchar (read-char))
657             (when (or (= pchar ??) (= pchar ?\C-h))
658               (setq pchar nil)
659               (gnus-score-insert-help "Match permanence" char-to-perm 2)))
660
661           (gnus-score-kill-help-buffer)
662           (if mimic (message "%c %c %c %c" prefix hchar tchar pchar)
663             (message ""))
664           (unless (setq temporary (cadr (assq pchar char-to-perm)))
665             ;; Deal with der(r)ided superannuated paradigms.
666             (when (and (eq (1+ prefix) 77)
667                        (eq (+ hchar 12) 109)
668                        (eq (1- tchar) 113)
669                        (eq (- pchar 4) 111))
670               (error "You rang?"))
671             (if mimic
672                 (error "%c %c %c %c" prefix hchar tchar pchar)
673               (error "Invalid match duration"))))
674       ;; Always kill the score help buffer.
675       (gnus-score-kill-help-buffer))
676
677     ;; If scoring an extra (non-standard overview) header,
678     ;; we must find out which header is in question.
679     (setq extra
680           (and gnus-extra-headers
681                (equal (nth 1 entry) "extra")
682                (intern                  ; need symbol
683                 (gnus-completing-read-with-default
684                  (symbol-name (car gnus-extra-headers)) ; default response
685                  "Score extra header:"  ; prompt
686                  (mapcar (lambda (x)    ; completion list
687                            (cons (symbol-name x) x))
688                          gnus-extra-headers)
689                  nil                    ; no completion limit
690                  t))))                  ; require match
691     ;; extra is now nil or a symbol.
692
693     ;; We have all the data, so we enter this score.
694     (setq match (if (string= (nth 2 entry) "") ""
695                   (gnus-summary-header (or (nth 2 entry) (nth 1 entry))
696                                        nil extra)))
697
698     ;; Modify the match, perhaps.
699     (cond
700      ((equal (nth 1 entry) "xref")
701       (when (string-match "^Xref: *" match)
702         (setq match (substring match (match-end 0))))
703       (when (string-match "^[^:]* +" match)
704         (setq match (substring match (match-end 0))))))
705
706     (when (memq type '(r R regexp Regexp))
707       (setq match (regexp-quote match)))
708
709     ;; Change score file to the "all.SCORE" file.
710     (when (eq symp 'a)
711       (save-excursion
712         (set-buffer gnus-summary-buffer)
713         (gnus-score-load-file
714          ;; This is a kludge; yes...
715          (cond
716           ((eq gnus-score-find-score-files-function
717                'gnus-score-find-hierarchical)
718            (gnus-score-file-name ""))
719           ((eq gnus-score-find-score-files-function 'gnus-score-find-single)
720            current-score-file)
721           (t
722            (gnus-score-file-name "all"))))))
723
724     (gnus-summary-score-entry
725      (nth 1 entry)                      ; Header
726      match                              ; Match
727      type                               ; Type
728      (if (eq score 's) nil score)       ; Score
729      (if (eq temporary 'perm)           ; Temp
730          nil
731        temporary)
732      (not (nth 3 entry))                ; Prompt
733      nil                                ; not silent
734      extra)                             ; non-standard overview.
735
736     (when (eq symp 'a)
737       ;; We change the score file back to the previous one.
738       (save-excursion
739         (set-buffer gnus-summary-buffer)
740         (gnus-score-load-file current-score-file)))))
741
742 (defun gnus-score-insert-help (string alist idx)
743   (setq gnus-score-help-winconf (current-window-configuration))
744   (save-excursion
745     (set-buffer (gnus-get-buffer-create "*Score Help*"))
746     (buffer-disable-undo)
747     (delete-windows-on (current-buffer))
748     (erase-buffer)
749     (insert string ":\n\n")
750     (let ((max -1)
751           (list alist)
752           (i 0)
753           n width pad format)
754       ;; find the longest string to display
755       (while list
756         (setq n (length (nth idx (car list))))
757         (unless (> max n)
758           (setq max n))
759         (setq list (cdr list)))
760       (setq max (+ max 4))              ; %c, `:', SPACE, a SPACE at end
761       (setq n (/ (1- (window-width)) max)) ; items per line
762       (setq width (/ (1- (window-width)) n)) ; width of each item
763       ;; insert `n' items, each in a field of width `width'
764       (while alist
765         (if (< i n)
766             ()
767           (setq i 0)
768           (delete-char -1)              ; the `\n' takes a char
769           (insert "\n"))
770         (setq pad (- width 3))
771         (setq format (concat "%c: %-" (int-to-string pad) "s"))
772         (insert (format format (caar alist) (nth idx (car alist))))
773         (setq alist (cdr alist))
774         (setq i (1+ i))))
775     (goto-char (point-min))
776     ;; display ourselves in a small window at the bottom
777     (gnus-appt-select-lowest-window)
778     (if (< (/ (window-height) 2) window-min-height)
779         (switch-to-buffer "*Score Help*")
780       (split-window)
781       (pop-to-buffer "*Score Help*"))
782     (let ((window-min-height 1))
783       (shrink-window-if-larger-than-buffer))
784     (select-window (gnus-get-buffer-window gnus-summary-buffer t))))
785
786 (defun gnus-summary-header (header &optional no-err extra)
787   ;; Return HEADER for current articles, or error.
788   (let ((article (gnus-summary-article-number))
789         headers)
790     (if article
791         (if (and (setq headers (gnus-summary-article-header article))
792                  (vectorp headers))
793             (if extra                   ; `header' must be "extra"
794                 (or (cdr (assq extra (mail-header-extra headers))) "")
795               (aref headers (nth 1 (assoc header gnus-header-index))))
796           (if no-err
797               nil
798             (error "Pseudo-articles can't be scored")))
799       (if no-err
800           (error "No article on current line")
801         nil))))
802
803 (defun gnus-newsgroup-score-alist ()
804   (or
805    (let ((param-file (gnus-group-find-parameter
806                       gnus-newsgroup-name 'score-file)))
807      (when param-file
808        (gnus-score-load param-file)))
809    (gnus-score-load
810     (gnus-score-file-name gnus-newsgroup-name)))
811   gnus-score-alist)
812
813 (defsubst gnus-score-get (symbol &optional alist)
814   ;; Get SYMBOL's definition in ALIST.
815   (cdr (assoc symbol
816               (or alist
817                   gnus-score-alist
818                   (gnus-newsgroup-score-alist)))))
819
820 (defun gnus-summary-score-entry (header match type score date
821                                         &optional prompt silent extra)
822   "Enter score file entry.
823 HEADER is the header being scored.
824 MATCH is the string we are looking for.
825 TYPE is the match type: substring, regexp, exact, fuzzy.
826 SCORE is the score to add.
827 DATE is the expire date, or nil for no expire, or 'now for immediate expire.
828 If optional argument `PROMPT' is non-nil, allow user to edit match.
829 If optional argument `SILENT' is nil, show effect of score entry.
830 If optional argument `EXTRA' is non-nil, it's a non-standard overview header."
831   ;; Regexp is the default type.
832   (when (eq type t)
833     (setq type 'r))
834   ;; Simplify matches...
835   (cond ((or (eq type 'r) (eq type 's) (eq type nil))
836          (setq match (if match (gnus-simplify-subject-re match) "")))
837         ((eq type 'f)
838          (setq match (gnus-simplify-subject-fuzzy match))))
839   (let ((score (gnus-score-delta-default score))
840         (header (downcase header))
841         new)
842     (set-text-properties 0 (length header) nil header)
843     (when prompt
844       (setq match (read-string
845                    (format "Match %s on %s, %s: "
846                            (cond ((eq date 'now)
847                                   "now")
848                                  ((stringp date)
849                                   "temp")
850                                  (t "permanent"))
851                            header
852                            (if (< score 0) "lower" "raise"))
853                    (if (numberp match)
854                        (int-to-string match)
855                      match))))
856
857     ;; If this is an integer comparison, we transform from string to int.
858     (if (eq (nth 2 (assoc header gnus-header-index)) 'gnus-score-integer)
859         (if (stringp match)
860             (setq match (string-to-int match)))
861       (set-text-properties 0 (length match) nil match))
862
863     (unless (eq date 'now)
864       ;; Add the score entry to the score file.
865       (when (= score gnus-score-interactive-default-score)
866         (setq score nil))
867       (let ((old (gnus-score-get header))
868             elem)
869         (setq new
870               (cond
871                (extra
872                 (list match score
873                       (and date (if (numberp date) date
874                                   (date-to-day date)))
875                       type (symbol-name extra)))
876                (type
877                 (list match score
878                       (and date (if (numberp date) date
879                                   (date-to-day date)))
880                       type))
881                (date (list match score (date-to-day date)))
882                (score (list match score))
883                (t (list match))))
884         ;; We see whether we can collapse some score entries.
885         ;; This isn't quite correct, because there may be more elements
886         ;; later on with the same key that have matching elems...  Hm.
887         (if (and old
888                  (setq elem (assoc match old))
889                  (eq (nth 3 elem) (nth 3 new))
890                  (or (and (numberp (nth 2 elem)) (numberp (nth 2 new)))
891                      (and (not (nth 2 elem)) (not (nth 2 new)))))
892             ;; Yup, we just add this new score to the old elem.
893             (setcar (cdr elem) (+ (or (nth 1 elem)
894                                       gnus-score-interactive-default-score)
895                                   (or (nth 1 new)
896                                       gnus-score-interactive-default-score)))
897           ;; Nope, we have to add a new elem.
898           (gnus-score-set header (if old (cons new old) (list new)) nil t))
899         (gnus-score-set 'touched '(t))))
900
901     ;; Score the current buffer.
902     (unless silent
903       (if (and (>= (nth 1 (assoc header gnus-header-index)) 0)
904                (eq (nth 2 (assoc header gnus-header-index))
905                    'gnus-score-string))
906           (gnus-summary-score-effect header match type score extra)
907         (gnus-summary-rescore)))
908
909     ;; Return the new scoring rule.
910     new))
911
912 (defun gnus-summary-score-effect (header match type score &optional extra)
913   "Simulate the effect of a score file entry.
914 HEADER is the header being scored.
915 MATCH is the string we are looking for.
916 TYPE is the score type.
917 SCORE is the score to add.
918 EXTRA is the possible non-standard header."
919   (interactive (list (completing-read "Header: "
920                                       gnus-header-index
921                                       (lambda (x) (fboundp (nth 2 x)))
922                                       t)
923                      (read-string "Match: ")
924                      (if (y-or-n-p "Use regexp match? ") 'r 's)
925                      (string-to-int (read-string "Score: "))))
926   (save-excursion
927     (unless (and (stringp match) (> (length match) 0))
928       (error "No match"))
929     (goto-char (point-min))
930     (let ((regexp (cond ((eq type 'f)
931                          (gnus-simplify-subject-fuzzy match))
932                         ((eq type 'r)
933                          match)
934                         ((eq type 'e)
935                          (concat "\\`" (regexp-quote match) "\\'"))
936                         (t
937                          (regexp-quote match)))))
938       (while (not (eobp))
939         (let ((content (gnus-summary-header header 'noerr extra))
940               (case-fold-search t))
941           (and content
942                (when (if (eq type 'f)
943                          (string-equal (gnus-simplify-subject-fuzzy content)
944                                        regexp)
945                        (string-match regexp content))
946                  (gnus-summary-raise-score score))))
947         (beginning-of-line 2))))
948   (gnus-set-mode-line 'summary))
949
950 (defun gnus-summary-score-crossposting (score date)
951   ;; Enter score file entry for current crossposting.
952   ;; SCORE is the score to add.
953   ;; DATE is the expire date.
954   (let ((xref (gnus-summary-header "xref"))
955         (start 0)
956         group)
957     (unless xref
958       (error "This article is not crossposted"))
959     (while (string-match " \\([^ \t]+\\):" xref start)
960       (setq start (match-end 0))
961       (when (not (string=
962                   (setq group
963                         (substring xref (match-beginning 1) (match-end 1)))
964                   gnus-newsgroup-name))
965         (gnus-summary-score-entry
966          "xref" (concat " " group ":") nil score date t)))))
967
968 \f
969 ;;;
970 ;;; Gnus Score Files
971 ;;;
972
973 ;; All score code written by Per Abrahamsen <abraham@iesd.auc.dk>.
974
975 (defun gnus-score-set-mark-below (score)
976   "Automatically mark articles with score below SCORE as read."
977   (interactive
978    (list (or (and current-prefix-arg (prefix-numeric-value current-prefix-arg))
979              (string-to-int (read-string "Mark below: ")))))
980   (setq score (or score gnus-summary-default-score 0))
981   (gnus-score-set 'mark (list score))
982   (gnus-score-set 'touched '(t))
983   (setq gnus-summary-mark-below score)
984   (gnus-score-update-lines))
985
986 (defun gnus-score-update-lines ()
987   "Update all lines in the summary buffer."
988   (save-excursion
989     (goto-char (point-min))
990     (while (not (eobp))
991       (gnus-summary-update-line)
992       (forward-line 1))))
993
994 (defun gnus-score-update-all-lines ()
995   "Update all lines in the summary buffer, even the hidden ones."
996   (save-excursion
997     (goto-char (point-min))
998     (let (hidden)
999       (while (not (eobp))
1000         (when (gnus-summary-show-thread)
1001           (push (point) hidden))
1002         (gnus-summary-update-line)
1003         (forward-line 1))
1004       ;; Re-hide the hidden threads.
1005       (while hidden
1006         (goto-char (pop hidden))
1007         (gnus-summary-hide-thread)))))
1008
1009 (defun gnus-score-set-expunge-below (score)
1010   "Automatically expunge articles with score below SCORE."
1011   (interactive
1012    (list (or (and current-prefix-arg (prefix-numeric-value current-prefix-arg))
1013              (string-to-int (read-string "Set expunge below: ")))))
1014   (setq score (or score gnus-summary-default-score 0))
1015   (gnus-score-set 'expunge (list score))
1016   (gnus-score-set 'touched '(t)))
1017
1018 (defun gnus-score-followup-article (&optional score)
1019   "Add SCORE to all followups to the article in the current buffer."
1020   (interactive "P")
1021   (setq score (gnus-score-delta-default score))
1022   (when (gnus-buffer-live-p gnus-summary-buffer)
1023     (save-excursion
1024       (save-restriction
1025         (message-narrow-to-headers)
1026         (let ((id (mail-fetch-field "message-id")))
1027           (when id
1028             (set-buffer gnus-summary-buffer)
1029             (gnus-summary-score-entry
1030              "references" (concat id "[ \t]*$") 'r
1031              score (current-time-string) nil t)))))))
1032
1033 (defun gnus-score-followup-thread (&optional score)
1034   "Add SCORE to all later articles in the thread the current buffer is part of."
1035   (interactive "P")
1036   (setq score (gnus-score-delta-default score))
1037   (when (gnus-buffer-live-p gnus-summary-buffer)
1038     (save-excursion
1039       (save-restriction
1040         (goto-char (point-min))
1041         (let ((id (mail-fetch-field "message-id")))
1042           (when id
1043             (set-buffer gnus-summary-buffer)
1044             (gnus-summary-score-entry
1045              "references" id 's
1046              score (current-time-string))))))))
1047
1048 (defun gnus-score-set (symbol value &optional alist warn)
1049   ;; Set SYMBOL to VALUE in ALIST.
1050   (let* ((alist
1051           (or alist
1052               gnus-score-alist
1053               (gnus-newsgroup-score-alist)))
1054          (entry (assoc symbol alist)))
1055     (cond ((gnus-score-get 'read-only alist)
1056            ;; This is a read-only score file, so we do nothing.
1057            (when warn
1058              (gnus-message 4 "Note: read-only score file; entry discarded")))
1059           (entry
1060            (setcdr entry value))
1061           ((null alist)
1062            (error "Empty alist"))
1063           (t
1064            (setcdr alist
1065                    (cons (cons symbol value) (cdr alist)))))))
1066
1067 (defun gnus-summary-raise-score (n)
1068   "Raise the score of the current article by N."
1069   (interactive "p")
1070   (gnus-summary-set-score (+ (gnus-summary-article-score)
1071                              (or n gnus-score-interactive-default-score ))))
1072
1073 (defun gnus-summary-set-score (n)
1074   "Set the score of the current article to N."
1075   (interactive "p")
1076   (save-excursion
1077     (gnus-summary-show-thread)
1078     (let ((buffer-read-only nil))
1079       ;; Set score.
1080       (gnus-summary-update-mark
1081        (if (= n (or gnus-summary-default-score 0)) ?  ;Whitespace
1082          (if (< n (or gnus-summary-default-score 0))
1083              gnus-score-below-mark gnus-score-over-mark))
1084        'score))
1085     (let* ((article (gnus-summary-article-number))
1086            (score (assq article gnus-newsgroup-scored)))
1087       (if score (setcdr score n)
1088         (push (cons article n) gnus-newsgroup-scored)))
1089     (gnus-summary-update-line)))
1090
1091 (defun gnus-summary-current-score ()
1092   "Return the score of the current article."
1093   (interactive)
1094   (gnus-message 1 "%s" (gnus-summary-article-score)))
1095
1096 (defun gnus-score-change-score-file (file)
1097   "Change current score alist."
1098   (interactive
1099    (list (read-file-name "Change to score file: " gnus-kill-files-directory)))
1100   (gnus-score-load-file file)
1101   (gnus-set-mode-line 'summary))
1102
1103 (defvar gnus-score-edit-exit-function)
1104 (defun gnus-score-edit-current-scores (file)
1105   "Edit the current score alist."
1106   (interactive (list gnus-current-score-file))
1107   (if (not gnus-current-score-file)
1108       (error "No current score file")
1109     (let ((winconf (current-window-configuration)))
1110       (when (buffer-name gnus-summary-buffer)
1111         (gnus-score-save))
1112       (gnus-make-directory (file-name-directory file))
1113       (setq gnus-score-edit-buffer (find-file-noselect file))
1114       (gnus-configure-windows 'edit-score)
1115       (gnus-score-mode)
1116       (setq gnus-score-edit-exit-function 'gnus-score-edit-done)
1117       (make-local-variable 'gnus-prev-winconf)
1118       (setq gnus-prev-winconf winconf))
1119     (gnus-message
1120      4 (substitute-command-keys
1121         "\\<gnus-score-mode-map>\\[gnus-score-edit-exit] to save edits"))))
1122
1123 (defun gnus-score-edit-all-score ()
1124   "Edit the all.SCORE file."
1125   (interactive)
1126   (find-file (gnus-score-file-name "all"))
1127   (gnus-score-mode))
1128
1129 (defun gnus-score-edit-file (file)
1130   "Edit a score file."
1131   (interactive
1132    (list (read-file-name "Edit score file: " gnus-kill-files-directory)))
1133   (gnus-make-directory (file-name-directory file))
1134   (when (buffer-name gnus-summary-buffer)
1135     (gnus-score-save))
1136   (let ((winconf (current-window-configuration)))
1137     (setq gnus-score-edit-buffer (find-file-noselect file))
1138     (gnus-configure-windows 'edit-score)
1139     (gnus-score-mode)
1140     (setq gnus-score-edit-exit-function 'gnus-score-edit-done)
1141     (make-local-variable 'gnus-prev-winconf)
1142     (setq gnus-prev-winconf winconf))
1143   (gnus-message
1144    4 (substitute-command-keys
1145       "\\<gnus-score-mode-map>\\[gnus-score-edit-exit] to save edits")))
1146
1147 (defun gnus-score-edit-file-at-point (&optional format)
1148   "Edit score file at point in Score Trace buffers.
1149 If FORMAT, also format the current score file."
1150   (let* ((rule (save-excursion
1151                  (beginning-of-line)
1152                  (read (current-buffer))))
1153          (sep "[ \n\r\t]*")
1154          ;; Must be synced with `gnus-score-find-trace':
1155          (reg " -> +")
1156          (file (save-excursion
1157                  (end-of-line)
1158                  (if (and (re-search-backward reg (point-at-bol) t)
1159                           (re-search-forward  reg (point-at-eol) t))
1160                      (buffer-substring (point) (point-at-eol))
1161                    nil))))
1162     (if (or (not file)
1163             (string-match "\\<\\(non-file rule\\|A file\\)\\>" file)
1164             ;; (see `gnus-score-find-trace' and `gnus-score-advanced')
1165             (string= "" file))
1166         (gnus-error 3 "Can't find a score file in current line.")
1167       (gnus-score-edit-file file)
1168       (when format
1169         (gnus-score-pretty-print))
1170       (when (consp rule) ;; the rule exists
1171         (setq rule (mapconcat #'(lambda (obj)
1172                                   (regexp-quote (format "%S" obj)))
1173                               rule
1174                               sep))
1175         (goto-char (point-min))
1176         (re-search-forward rule nil t)
1177         ;; make it easy to use `kill-sexp':
1178         (goto-char (1- (match-beginning 0)))))))
1179
1180 (defun gnus-score-load-file (file)
1181   ;; Load score file FILE.  Returns a list a retrieved score-alists.
1182   (let* ((file (expand-file-name
1183                 (or (and (string-match
1184                           (concat "^" (regexp-quote
1185                                        (expand-file-name
1186                                         gnus-kill-files-directory)))
1187                           (expand-file-name file))
1188                          file)
1189                     (expand-file-name file gnus-kill-files-directory))))
1190          (cached (assoc file gnus-score-cache))
1191          (global (member file gnus-internal-global-score-files))
1192          lists alist)
1193     (if cached
1194         ;; The score file was already loaded.
1195         (setq alist (cdr cached))
1196       ;; We load the score file.
1197       (setq gnus-score-alist nil)
1198       (setq alist (gnus-score-load-score-alist file))
1199       ;; We add '(touched) to the alist to signify that it hasn't been
1200       ;; touched (yet).
1201       (unless (assq 'touched alist)
1202         (push (list 'touched nil) alist))
1203       ;; If it is a global score file, we make it read-only.
1204       (and global
1205            (not (assq 'read-only alist))
1206            (push (list 'read-only t) alist))
1207       (push (cons file alist) gnus-score-cache))
1208     (let ((a alist)
1209           found)
1210       (while a
1211         ;; Downcase all header names.
1212         (cond
1213          ((stringp (caar a))
1214           (setcar (car a) (downcase (caar a)))
1215           (setq found t))
1216          ;; Advanced scoring.
1217          ((consp (caar a))
1218           (setq found t)))
1219         (pop a))
1220       ;; If there are actual scores in the alist, we add it to the
1221       ;; return value of this function.
1222       (when found
1223         (setq lists (list alist))))
1224     ;; Treat the other possible atoms in the score alist.
1225     (let ((mark (car (gnus-score-get 'mark alist)))
1226           (expunge (car (gnus-score-get 'expunge alist)))
1227           (mark-and-expunge (car (gnus-score-get 'mark-and-expunge alist)))
1228           (files (gnus-score-get 'files alist))
1229           (exclude-files (gnus-score-get 'exclude-files alist))
1230           (orphan (car (gnus-score-get 'orphan alist)))
1231           (adapt (gnus-score-get 'adapt alist))
1232           (thread-mark-and-expunge
1233            (car (gnus-score-get 'thread-mark-and-expunge alist)))
1234           (adapt-file (car (gnus-score-get 'adapt-file alist)))
1235           (local (gnus-score-get 'local alist))
1236           (decay (car (gnus-score-get 'decay alist)))
1237           (eval (car (gnus-score-get 'eval alist))))
1238       ;; Perform possible decays.
1239       (when (and gnus-decay-scores
1240                  (or cached (file-exists-p file))
1241                  (or (not decay)
1242                      (gnus-decay-scores alist decay)))
1243         (gnus-score-set 'touched '(t) alist)
1244         (gnus-score-set 'decay (list (time-to-days (current-time))) alist))
1245       ;; We do not respect eval and files atoms from global score
1246       ;; files.
1247       (when (and files (not global))
1248         (setq lists (apply 'append lists
1249                            (mapcar (lambda (file)
1250                                      (gnus-score-load-file file))
1251                                    (if adapt-file (cons adapt-file files)
1252                                      files)))))
1253       (when (and eval (not global))
1254         (eval eval))
1255       ;; We then expand any exclude-file directives.
1256       (setq gnus-scores-exclude-files
1257             (nconc
1258              (apply
1259               'nconc
1260               (mapcar
1261                (lambda (sfile)
1262                  (list
1263                   (expand-file-name sfile (file-name-directory file))
1264                   (expand-file-name sfile gnus-kill-files-directory)))
1265                exclude-files))
1266              gnus-scores-exclude-files))
1267       (when local
1268         (save-excursion
1269           (set-buffer gnus-summary-buffer)
1270           (while local
1271             (and (consp (car local))
1272                  (symbolp (caar local))
1273                  (progn
1274                    (make-local-variable (caar local))
1275                    (set (caar local) (nth 1 (car local)))))
1276             (setq local (cdr local)))))
1277       (when orphan
1278         (setq gnus-orphan-score orphan))
1279       (setq gnus-adaptive-score-alist
1280             (cond ((equal adapt '(t))
1281                    (setq gnus-newsgroup-adaptive t)
1282                    gnus-default-adaptive-score-alist)
1283                   ((equal adapt '(ignore))
1284                    (setq gnus-newsgroup-adaptive nil))
1285                   ((consp adapt)
1286                    (setq gnus-newsgroup-adaptive t)
1287                    adapt)
1288                   (t
1289                    gnus-default-adaptive-score-alist)))
1290       (setq gnus-thread-expunge-below
1291             (or thread-mark-and-expunge gnus-thread-expunge-below))
1292       (setq gnus-summary-mark-below
1293             (or mark mark-and-expunge gnus-summary-mark-below))
1294       (setq gnus-summary-expunge-below
1295             (or expunge mark-and-expunge gnus-summary-expunge-below))
1296       (setq gnus-newsgroup-adaptive-score-file
1297             (or adapt-file gnus-newsgroup-adaptive-score-file)))
1298     (setq gnus-current-score-file file)
1299     (setq gnus-score-alist alist)
1300     lists))
1301
1302 (defun gnus-score-load (file)
1303   ;; Load score FILE.
1304   (let ((cache (assoc file gnus-score-cache)))
1305     (if cache
1306         (setq gnus-score-alist (cdr cache))
1307       (setq gnus-score-alist nil)
1308       (gnus-score-load-score-alist file)
1309       (unless gnus-score-alist
1310         (setq gnus-score-alist (copy-alist '((touched nil)))))
1311       (push (cons file gnus-score-alist) gnus-score-cache))))
1312
1313 (defun gnus-score-remove-from-cache (file)
1314   (setq gnus-score-cache
1315         (delq (assoc file gnus-score-cache) gnus-score-cache)))
1316
1317 (defun gnus-score-load-score-alist (file)
1318   "Read score FILE."
1319   (let (alist)
1320     (if (not (file-readable-p file))
1321         ;; Couldn't read file.
1322         (setq gnus-score-alist nil)
1323       ;; Read file.
1324       (with-temp-buffer
1325         (insert-file-contents-as-coding-system
1326          score-mode-coding-system file)
1327         (goto-char (point-min))
1328         ;; Only do the loading if the score file isn't empty.
1329         (when (save-excursion (re-search-forward "[()0-9a-zA-Z]" nil t))
1330           (setq alist
1331                 (condition-case ()
1332                     (read (current-buffer))
1333                   (error
1334                    (gnus-error 3.2 "Problem with score file %s" file))))))
1335       (cond
1336        ((and alist
1337              (atom alist))
1338         ;; Bogus score file.
1339         (error "Invalid syntax with score file %s" file))
1340        ((eq (car alist) 'setq)
1341         ;; This is an old-style score file.
1342         (setq gnus-score-alist (gnus-score-transform-old-to-new alist)))
1343        (t
1344         (setq gnus-score-alist alist)))
1345       ;; Check the syntax of the score file.
1346       (setq gnus-score-alist
1347             (gnus-score-check-syntax gnus-score-alist file)))))
1348
1349 (defun gnus-score-check-syntax (alist file)
1350   "Check the syntax of the score ALIST."
1351   (cond
1352    ((null alist)
1353     nil)
1354    ((not (consp alist))
1355     (gnus-message 1 "Score file is not a list: %s" file)
1356     (ding)
1357     nil)
1358    (t
1359     (let ((a alist)
1360           sr err s type)
1361       (while (and a (not err))
1362         (setq
1363          err
1364          (cond
1365           ((not (listp (car a)))
1366            (format "Invalid score element %s in %s" (car a) file))
1367           ((stringp (caar a))
1368            (cond
1369             ((not (listp (setq sr (cdar a))))
1370              (format "Invalid header match %s in %s" (nth 1 (car a)) file))
1371             (t
1372              (setq type (caar a))
1373              (while (and sr (not err))
1374                (setq s (pop sr))
1375                (setq
1376                 err
1377                 (cond
1378                  ((if (member (downcase type) '("lines" "chars"))
1379                       (not (numberp (car s)))
1380                     (not (stringp (car s))))
1381                   (format "Invalid match %s in %s" (car s) file))
1382                  ((and (cadr s) (not (integerp (cadr s))))
1383                   (format "Non-integer score %s in %s" (cadr s) file))
1384                  ((and (caddr s) (not (integerp (caddr s))))
1385                   (format "Non-integer date %s in %s" (caddr s) file))
1386                  ((and (cadddr s) (not (symbolp (cadddr s))))
1387                   (format "Non-symbol match type %s in %s" (cadddr s) file)))))
1388              err)))))
1389         (setq a (cdr a)))
1390       (if err
1391           (progn
1392             (ding)
1393             (gnus-message 3 err)
1394             (sit-for 2)
1395             nil)
1396         alist)))))
1397
1398 (defun gnus-score-transform-old-to-new (alist)
1399   (let* ((alist (nth 2 alist))
1400          out entry)
1401     (when (eq (car alist) 'quote)
1402       (setq alist (nth 1 alist)))
1403     (while alist
1404       (setq entry (car alist))
1405       (if (stringp (car entry))
1406           (let ((scor (cdr entry)))
1407             (push entry out)
1408             (while scor
1409               (setcar scor
1410                       (list (caar scor) (nth 2 (car scor))
1411                             (and (nth 3 (car scor))
1412                                  (date-to-day (nth 3 (car scor))))
1413                             (if (nth 1 (car scor)) 'r 's)))
1414               (setq scor (cdr scor))))
1415         (push (if (not (listp (cdr entry)))
1416                   (list (car entry) (cdr entry))
1417                 entry)
1418               out))
1419       (setq alist (cdr alist)))
1420     (cons (list 'touched t) (nreverse out))))
1421
1422 (defun gnus-score-save ()
1423   ;; Save all score information.
1424   (let ((cache gnus-score-cache)
1425         entry score file)
1426     (save-excursion
1427       (setq gnus-score-alist nil)
1428       (nnheader-set-temp-buffer " *Gnus Scores*")
1429       (while cache
1430         (current-buffer)
1431         (setq entry (pop cache)
1432               file (nnheader-translate-file-chars (car entry) t)
1433               score (cdr entry))
1434         (if (or (not (equal (gnus-score-get 'touched score) '(t)))
1435                 (gnus-score-get 'read-only score)
1436                 (and (file-exists-p file)
1437                      (not (file-writable-p file))))
1438             ()
1439           (setq score (setcdr entry (gnus-delete-alist 'touched score)))
1440           (erase-buffer)
1441           (let (emacs-lisp-mode-hook)
1442             (if (string-match
1443                  (concat (regexp-quote gnus-adaptive-file-suffix) "$")
1444                  file)
1445                 ;; This is an adaptive score file, so we do not run
1446                 ;; it through `pp'.  These files can get huge, and
1447                 ;; are not meant to be edited by human hands.
1448                 (gnus-prin1 score)
1449               ;; This is a normal score file, so we print it very
1450               ;; prettily.
1451               (let ((lisp-mode-syntax-table score-mode-syntax-table))
1452                 (pp score (current-buffer)))))
1453           (gnus-make-directory (file-name-directory file))
1454           ;; If the score file is empty, we delete it.
1455           (if (zerop (buffer-size))
1456               (delete-file file)
1457             ;; There are scores, so we write the file.
1458             (when (file-writable-p file)
1459               (gnus-write-buffer-as-coding-system
1460                score-mode-coding-system file)
1461               (when gnus-score-after-write-file-function
1462                 (funcall gnus-score-after-write-file-function file)))))
1463         (and gnus-score-uncacheable-files
1464              (string-match gnus-score-uncacheable-files file)
1465              (gnus-score-remove-from-cache file)))
1466       (kill-buffer (current-buffer)))))
1467
1468 (defun gnus-score-load-files (score-files)
1469   "Load all score files in SCORE-FILES."
1470   ;; Load the score files.
1471   (let (scores)
1472     (while score-files
1473       (if (stringp (car score-files))
1474           ;; It is a string, which means that it's a score file name,
1475           ;; so we load the score file and add the score alist to
1476           ;; the list of alists.
1477           (setq scores (nconc (gnus-score-load-file (car score-files)) scores))
1478         ;; It is an alist, so we just add it to the list directly.
1479         (setq scores (nconc (car score-files) scores)))
1480       (setq score-files (cdr score-files)))
1481     ;; Prune the score files that are to be excluded, if any.
1482     (when gnus-scores-exclude-files
1483       (let ((s scores)
1484             c)
1485         (while s
1486           (and (setq c (rassq (car s) gnus-score-cache))
1487                (member (car c) gnus-scores-exclude-files)
1488                (setq scores (delq (car s) scores)))
1489           (setq s (cdr s)))))
1490     scores))
1491
1492 (defun gnus-score-headers (score-files &optional trace)
1493   ;; Score `gnus-newsgroup-headers'.
1494   (let (scores news)
1495     ;; PLM: probably this is not the best place to clear orphan-score
1496     (setq gnus-orphan-score nil
1497           gnus-scores-articles nil
1498           gnus-scores-exclude-files nil
1499           scores (gnus-score-load-files score-files))
1500     (setq news scores)
1501     ;; Do the scoring.
1502     (while news
1503       (setq scores news
1504             news nil)
1505       (when (and gnus-summary-default-score
1506                  scores)
1507         (let* ((entries gnus-header-index)
1508                (now (date-to-day (current-time-string)))
1509                (expire (and gnus-score-expiry-days
1510                             (- now gnus-score-expiry-days)))
1511                (headers gnus-newsgroup-headers)
1512                (current-score-file gnus-current-score-file)
1513                entry header new)
1514           (gnus-message 7 "Scoring...")
1515           ;; Create articles, an alist of the form `(HEADER . SCORE)'.
1516           (while (setq header (pop headers))
1517             ;; WARNING: The assq makes the function O(N*S) while it could
1518             ;; be written as O(N+S), where N is (length gnus-newsgroup-headers)
1519             ;; and S is (length gnus-newsgroup-scored).
1520             (unless (assq (mail-header-number header) gnus-newsgroup-scored)
1521               (setq gnus-scores-articles ;Total of 2 * N cons-cells used.
1522                     (cons (cons header (or gnus-summary-default-score 0))
1523                           gnus-scores-articles))))
1524
1525           (save-excursion
1526             (set-buffer (gnus-get-buffer-create "*Headers*"))
1527             (buffer-disable-undo)
1528             (when (gnus-buffer-live-p gnus-summary-buffer)
1529               (message-clone-locals gnus-summary-buffer))
1530
1531             ;; Set the global variant of this variable.
1532             (setq gnus-current-score-file current-score-file)
1533             ;; score orphans
1534             (when gnus-orphan-score
1535               (setq gnus-score-index
1536                     (nth 1 (assoc "references" gnus-header-index)))
1537               (gnus-score-orphans gnus-orphan-score))
1538             ;; Run each header through the score process.
1539             (while entries
1540               (setq entry (pop entries)
1541                     header (nth 0 entry)
1542                     gnus-score-index (nth 1 (assoc header gnus-header-index)))
1543               (when (< 0 (apply 'max (mapcar
1544                                       (lambda (score)
1545                                         (length (gnus-score-get header score)))
1546                                       scores)))
1547                 ;; Call the scoring function for this type of "header".
1548                 (when (setq new (funcall (nth 2 entry) scores header
1549                                          now expire trace))
1550                   (push new news))))
1551             (when (gnus-buffer-live-p gnus-summary-buffer)
1552               (let ((scored gnus-newsgroup-scored))
1553                 (with-current-buffer gnus-summary-buffer
1554                   (setq gnus-newsgroup-scored scored))))
1555             ;; Remove the buffer.
1556             (gnus-kill-buffer (current-buffer)))
1557
1558           ;; Add articles to `gnus-newsgroup-scored'.
1559           (while gnus-scores-articles
1560             (when (or (/= gnus-summary-default-score
1561                           (cdar gnus-scores-articles))
1562                       gnus-save-score)
1563               (push (cons (mail-header-number (caar gnus-scores-articles))
1564                           (cdar gnus-scores-articles))
1565                     gnus-newsgroup-scored))
1566             (setq gnus-scores-articles (cdr gnus-scores-articles)))
1567
1568           (let (score)
1569             (while (setq score (pop scores))
1570               (while score
1571                 (when (consp (caar score))
1572                   (gnus-score-advanced (car score) trace))
1573                 (pop score))))
1574
1575           (gnus-message 7 "Scoring...done"))))))
1576
1577 (defun gnus-score-lower-thread (thread score-adjust)
1578   "Lower the score on THREAD with SCORE-ADJUST.
1579 THREAD is expected to contain a list of the form `(PARENT [CHILD1
1580 CHILD2 ...])' where PARENT is a header array and each CHILD is a list
1581 of the same form as THREAD.  The empty list nil is valid.  For each
1582 article in the tree, the score of the corresponding entry in
1583 `gnus-newsgroup-scored' is adjusted by SCORE-ADJUST."
1584   (while thread
1585     (let ((head (car thread)))
1586       (if (listp head)
1587           ;; handle a child and its descendants
1588           (gnus-score-lower-thread head score-adjust)
1589         ;; handle the parent
1590         (let* ((article (mail-header-number head))
1591                (score (assq article gnus-newsgroup-scored)))
1592           (if score (setcdr score (+ (cdr score) score-adjust))
1593             (push (cons article score-adjust) gnus-newsgroup-scored)))))
1594     (setq thread (cdr thread))))
1595
1596 (defun gnus-score-orphans (score)
1597   "Score orphans.
1598 A root is an article with no references.  An orphan is an article
1599 which has references, but is not connected via its references to a
1600 root article.  This function finds all the orphans, and adjusts their
1601 score in `gnus-newsgroup-scored' by SCORE."
1602   ;; gnus-make-threads produces a list, where each entry is a "thread"
1603   ;; as described in the gnus-score-lower-thread docs.  This function
1604   ;; will be called again (after limiting has been done) if the display
1605   ;; is threaded.  It would be nice to somehow save this info and use
1606   ;; it later.
1607   (dolist (thread (gnus-make-threads))
1608     (let ((id (aref (car thread) gnus-score-index)))
1609       ;; If the parent of the thread is not a root, lower the score of
1610       ;; it and its descendants.  Note that some roots seem to satisfy
1611       ;; (eq id nil) and some (eq id "");  not sure why.
1612       (when (and id
1613                  (not (string= id "")))
1614         (gnus-score-lower-thread thread score)))))
1615
1616 (defun gnus-score-integer (scores header now expire &optional trace)
1617   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
1618         entries alist)
1619     ;; Find matches.
1620     (while scores
1621       (setq alist (car scores)
1622             scores (cdr scores)
1623             entries (assoc header alist))
1624       (while (cdr entries)              ;First entry is the header index.
1625         (let* ((rest (cdr entries))
1626                (kill (car rest))
1627                (match (nth 0 kill))
1628                (type (or (nth 3 kill) '>))
1629                (score (or (nth 1 kill) gnus-score-interactive-default-score))
1630                (date (nth 2 kill))
1631                (found nil)
1632                (match-func (if (or (eq type '>) (eq type '<) (eq type '<=)
1633                                    (eq type '>=) (eq type '=))
1634                                type
1635                              (error "Invalid match type: %s" type)))
1636                (articles gnus-scores-articles))
1637           ;; Instead of doing all the clever stuff that
1638           ;; `gnus-score-string' does to minimize searches and stuff,
1639           ;; I will assume that people generally will put so few
1640           ;; matches on numbers that any cleverness will take more
1641           ;; time than one would gain.
1642           (while articles
1643             (when (funcall match-func
1644                            (or (aref (caar articles) gnus-score-index) 0)
1645                            match)
1646               (when trace
1647                 (push (cons (car-safe (rassq alist gnus-score-cache)) kill)
1648                       gnus-score-trace))
1649               (setq found t)
1650               (setcdr (car articles) (+ score (cdar articles))))
1651             (setq articles (cdr articles)))
1652           ;; Update expire date
1653           (cond ((null date))           ;Permanent entry.
1654                 ((and found gnus-update-score-entry-dates) ;Match, update date.
1655                  (gnus-score-set 'touched '(t) alist)
1656                  (setcar (nthcdr 2 kill) now))
1657                 ((and expire (< date expire)) ;Old entry, remove.
1658                  (gnus-score-set 'touched '(t) alist)
1659                  (setcdr entries (cdr rest))
1660                  (setq rest entries)))
1661           (setq entries rest)))))
1662   nil)
1663
1664 (defun gnus-score-date (scores header now expire &optional trace)
1665   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
1666         entries alist match match-func article)
1667     ;; Find matches.
1668     (while scores
1669       (setq alist (car scores)
1670             scores (cdr scores)
1671             entries (assoc header alist))
1672       (while (cdr entries)              ;First entry is the header index.
1673         (let* ((rest (cdr entries))
1674                (kill (car rest))
1675                (type (or (nth 3 kill) 'before))
1676                (score (or (nth 1 kill) gnus-score-interactive-default-score))
1677                (date (nth 2 kill))
1678                (found nil)
1679                (articles gnus-scores-articles)
1680                l)
1681           (cond
1682            ((eq type 'after)
1683             (setq match-func 'string<
1684                   match (gnus-date-iso8601 (nth 0 kill))))
1685            ((eq type 'before)
1686             (setq match-func 'gnus-string>
1687                   match (gnus-date-iso8601 (nth 0 kill))))
1688            ((eq type 'at)
1689             (setq match-func 'string=
1690                   match (gnus-date-iso8601 (nth 0 kill))))
1691            ((eq type 'regexp)
1692             (setq match-func 'string-match
1693                   match (nth 0 kill)))
1694            (t (error "Invalid match type: %s" type)))
1695           ;; Instead of doing all the clever stuff that
1696           ;; `gnus-score-string' does to minimize searches and stuff,
1697           ;; I will assume that people generally will put so few
1698           ;; matches on numbers that any cleverness will take more
1699           ;; time than one would gain.
1700           (while (setq article (pop articles))
1701             (when (and
1702                    (setq l (aref (car article) gnus-score-index))
1703                    (funcall match-func match (gnus-date-iso8601 l)))
1704               (when trace
1705                 (push (cons (car-safe (rassq alist gnus-score-cache)) kill)
1706                       gnus-score-trace))
1707               (setq found t)
1708               (setcdr article (+ score (cdr article)))))
1709           ;; Update expire date
1710           (cond ((null date))           ;Permanent entry.
1711                 ((and found gnus-update-score-entry-dates) ;Match, update date.
1712                  (gnus-score-set 'touched '(t) alist)
1713                  (setcar (nthcdr 2 kill) now))
1714                 ((and expire (< date expire)) ;Old entry, remove.
1715                  (gnus-score-set 'touched '(t) alist)
1716                  (setcdr entries (cdr rest))
1717                  (setq rest entries)))
1718           (setq entries rest)))))
1719   nil)
1720
1721 (defun gnus-score-body (scores header now expire &optional trace)
1722   (if gnus-agent-fetching
1723       nil
1724     (save-excursion
1725       (setq gnus-scores-articles
1726             (sort gnus-scores-articles
1727                   (lambda (a1 a2)
1728                     (< (mail-header-number (car a1))
1729                        (mail-header-number (car a2))))))
1730       (set-buffer nntp-server-buffer)
1731       (save-restriction
1732         (let* ((buffer-read-only nil)
1733                (articles gnus-scores-articles)
1734                (all-scores scores)
1735                (request-func (cond ((string= "head" header)
1736                                     'gnus-request-head)
1737                                    ((string= "body" header)
1738                                     'gnus-request-body)
1739                                    (t 'gnus-request-article)))
1740                entries alist ofunc article last)
1741           (when articles
1742             (setq last (mail-header-number (caar (last articles))))
1743             ;; Not all backends support partial fetching.  In that case,
1744             ;; we just fetch the entire article.
1745             (unless (gnus-check-backend-function
1746                      (and (string-match "^gnus-" (symbol-name request-func))
1747                           (intern (substring (symbol-name request-func)
1748                                              (match-end 0))))
1749                      gnus-newsgroup-name)
1750               (setq ofunc request-func)
1751               (setq request-func 'gnus-request-article))
1752             (while articles
1753               (setq article (mail-header-number (caar articles)))
1754               (gnus-message 7 "Scoring article %s of %s..." article last)
1755               (widen)
1756               (when (funcall request-func article gnus-newsgroup-name)
1757                 (goto-char (point-min))
1758                 ;; If just parts of the article is to be searched, but the
1759                 ;; backend didn't support partial fetching, we just narrow
1760                 ;; to the relevant parts.
1761                 (when ofunc
1762                   (if (eq ofunc 'gnus-request-head)
1763                       (narrow-to-region
1764                        (point)
1765                        (or (search-forward "\n\n" nil t) (point-max)))
1766                     (narrow-to-region
1767                      (or (search-forward "\n\n" nil t) (point))
1768                      (point-max))))
1769                 (setq scores all-scores)
1770                 ;; Find matches.
1771                 (while scores
1772                   (setq alist (pop scores)
1773                         entries (assoc header alist))
1774                   (while (cdr entries) ;First entry is the header index.
1775                     (let* ((rest (cdr entries))
1776                            (kill (car rest))
1777                            (match (nth 0 kill))
1778                            (type (or (nth 3 kill) 's))
1779                            (score (or (nth 1 kill)
1780                                       gnus-score-interactive-default-score))
1781                            (date (nth 2 kill))
1782                            (found nil)
1783                            (case-fold-search
1784                             (not (or (eq type 'R) (eq type 'S)
1785                                      (eq type 'Regexp) (eq type 'String))))
1786                            (search-func
1787                             (cond ((or (eq type 'r) (eq type 'R)
1788                                        (eq type 'regexp) (eq type 'Regexp))
1789                                    're-search-forward)
1790                                   ((or (eq type 's) (eq type 'S)
1791                                        (eq type 'string) (eq type 'String))
1792                                    'search-forward)
1793                                   (t
1794                                    (error "Invalid match type: %s" type)))))
1795                       (goto-char (point-min))
1796                       (when (funcall search-func match nil t)
1797                         ;; Found a match, update scores.
1798                         (setcdr (car articles) (+ score (cdar articles)))
1799                         (setq found t)
1800                         (when trace
1801                           (push
1802                            (cons (car-safe (rassq alist gnus-score-cache))
1803                                  kill)
1804                            gnus-score-trace)))
1805                       ;; Update expire date
1806                       (unless trace
1807                         (cond
1808                          ((null date))  ;Permanent entry.
1809                          ((and found gnus-update-score-entry-dates)
1810                           ;; Match, update date.
1811                           (gnus-score-set 'touched '(t) alist)
1812                           (setcar (nthcdr 2 kill) now))
1813                          ((and expire (< date expire)) ;Old entry, remove.
1814                           (gnus-score-set 'touched '(t) alist)
1815                           (setcdr entries (cdr rest))
1816                           (setq rest entries))))
1817                       (setq entries rest)))))
1818               (setq articles (cdr articles)))))))
1819     nil))
1820
1821 (defun gnus-score-thread (scores header now expire &optional trace)
1822   (gnus-score-followup scores header now expire trace t))
1823
1824 (defun gnus-score-followup (scores header now expire &optional trace thread)
1825   (if gnus-agent-fetching
1826       ;; FIXME: It seems doable in fetching mode.
1827       nil
1828     ;; Insert the unique article headers in the buffer.
1829     (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
1830           (current-score-file gnus-current-score-file)
1831           (all-scores scores)
1832           ;; gnus-score-index is used as a free variable.
1833           alike last this art entries alist articles
1834           new news)
1835
1836       ;; Change score file to the adaptive score file.  All entries that
1837       ;; this function makes will be put into this file.
1838       (save-excursion
1839         (set-buffer gnus-summary-buffer)
1840         (gnus-score-load-file
1841          (or gnus-newsgroup-adaptive-score-file
1842              (gnus-score-file-name
1843               gnus-newsgroup-name gnus-adaptive-file-suffix))))
1844
1845       (setq gnus-scores-articles (sort gnus-scores-articles
1846                                        'gnus-score-string<)
1847             articles gnus-scores-articles)
1848
1849       (erase-buffer)
1850       (while articles
1851         (setq art (car articles)
1852               this (aref (car art) gnus-score-index)
1853               articles (cdr articles))
1854         (if (equal last this)
1855             (push art alike)
1856           (when last
1857             (insert last ?\n)
1858             (put-text-property (1- (point)) (point) 'articles alike))
1859           (setq alike (list art)
1860                 last this)))
1861       (when last                        ; Bwadr, duplicate code.
1862         (insert last ?\n)
1863         (put-text-property (1- (point)) (point) 'articles alike))
1864
1865       ;; Find matches.
1866       (while scores
1867         (setq alist (car scores)
1868               scores (cdr scores)
1869               entries (assoc header alist))
1870         (while (cdr entries)            ;First entry is the header index.
1871           (let* ((rest (cdr entries))
1872                  (kill (car rest))
1873                  (match (nth 0 kill))
1874                  (type (or (nth 3 kill) 's))
1875                  (score (or (nth 1 kill) gnus-score-interactive-default-score))
1876                  (date (nth 2 kill))
1877                  (found nil)
1878                  (mt (aref (symbol-name type) 0))
1879                  (case-fold-search
1880                   (not (or (= mt ?R) (= mt ?S) (= mt ?E) (= mt ?F))))
1881                  (dmt (downcase mt))
1882                  (search-func
1883                   (cond ((= dmt ?r) 're-search-forward)
1884                         ((or (= dmt ?e) (= dmt ?s) (= dmt ?f)) 'search-forward)
1885                         (t (error "Invalid match type: %s" type))))
1886                  arts art)
1887             (goto-char (point-min))
1888             (if (= dmt ?e)
1889                 (while (funcall search-func match nil t)
1890                   (and (= (point-at-bol)
1891                           (match-beginning 0))
1892                        (= (progn (end-of-line) (point))
1893                           (match-end 0))
1894                        (progn
1895                          (setq found (setq arts (get-text-property
1896                                                  (point) 'articles)))
1897                          ;; Found a match, update scores.
1898                          (while arts
1899                            (setq art (car arts)
1900                                  arts (cdr arts))
1901                            (gnus-score-add-followups
1902                             (car art) score all-scores thread))))
1903                   (end-of-line))
1904               (while (funcall search-func match nil t)
1905                 (end-of-line)
1906                 (setq found (setq arts (get-text-property (point) 'articles)))
1907                 ;; Found a match, update scores.
1908                 (while (setq art (pop arts))
1909                   (setcdr art (+ score (cdr art)))
1910                   (when trace
1911                     (push (cons
1912                            (car-safe (rassq alist gnus-score-cache))
1913                            kill)
1914                           gnus-score-trace))
1915                   (when (setq new (gnus-score-add-followups
1916                                    (car art) score all-scores thread))
1917                     (push new news)))))
1918             ;; Update expire date
1919             (cond ((null date))         ;Permanent entry.
1920                   ((and found gnus-update-score-entry-dates)
1921                    ;Match, update date.
1922                    (gnus-score-set 'touched '(t) alist)
1923                    (setcar (nthcdr 2 kill) now))
1924                   ((and expire (< date expire)) ;Old entry, remove.
1925                    (gnus-score-set 'touched '(t) alist)
1926                    (setcdr entries (cdr rest))
1927                    (setq rest entries)))
1928             (setq entries rest))))
1929       ;; We change the score file back to the previous one.
1930       (save-excursion
1931         (set-buffer gnus-summary-buffer)
1932         (gnus-score-load-file current-score-file))
1933       (list (cons "references" news)))))
1934
1935 (defun gnus-score-add-followups (header score scores &optional thread)
1936   "Add a score entry to the adapt file."
1937   (save-excursion
1938     (set-buffer gnus-summary-buffer)
1939     (let* ((id (mail-header-id header))
1940            (scores (car scores))
1941            entry dont)
1942       ;; Don't enter a score if there already is one.
1943       (while (setq entry (pop scores))
1944         (and (equal "references" (car entry))
1945              (or (null (nth 3 (cadr entry)))
1946                  (eq 's (nth 3 (cadr entry))))
1947              (assoc id entry)
1948              (setq dont t)))
1949       (unless dont
1950         (gnus-summary-score-entry
1951          (if thread "thread" "references")
1952          id 's score (current-time-string) nil t)))))
1953
1954 (defun gnus-score-string (score-list header now expire &optional trace)
1955   ;; Score ARTICLES according to HEADER in SCORE-LIST.
1956   ;; Update matching entries to NOW and remove unmatched entries older
1957   ;; than EXPIRE.
1958
1959   ;; Insert the unique article headers in the buffer.
1960   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
1961         ;; gnus-score-index is used as a free variable.
1962         (simplify (and gnus-score-thread-simplify
1963                        (string= "subject" header)))
1964         alike last this art entries alist articles
1965         fuzzies arts words kill)
1966
1967     ;; Sorting the articles costs os O(N*log N) but will allow us to
1968     ;; only match with each unique header.  Thus the actual matching
1969     ;; will be O(M*U) where M is the number of strings to match with,
1970     ;; and U is the number of unique headers.  It is assumed (but
1971     ;; untested) this will be a net win because of the large constant
1972     ;; factor involved with string matching.
1973     (setq gnus-scores-articles
1974           ;; We cannot string-sort the extra headers list.  *sigh*
1975           (if (= gnus-score-index 9)
1976               gnus-scores-articles
1977             (sort gnus-scores-articles 'gnus-score-string<))
1978           articles gnus-scores-articles)
1979
1980     (erase-buffer)
1981     (while (setq art (pop articles))
1982       (setq this (aref (car art) gnus-score-index))
1983
1984       ;; If we're working with non-standard headers, we are stuck
1985       ;; with working on them as a group.  What a hassle.
1986       ;; Just wait 'til you see what horrors we commit against `match'...
1987       (if (= gnus-score-index 9)
1988           (setq this (gnus-prin1-to-string this))) ; ick.
1989
1990       (if simplify
1991           (setq this (gnus-map-function gnus-simplify-subject-functions this)))
1992       (if (equal last this)
1993           ;; O(N*H) cons-cells used here, where H is the number of
1994           ;; headers.
1995           (push art alike)
1996         (when last
1997           ;; Insert the line, with a text property on the
1998           ;; terminating newline referring to the articles with
1999           ;; this line.
2000           (insert last ?\n)
2001           (put-text-property (1- (point)) (point) 'articles alike))
2002         (setq alike (list art)
2003               last this)))
2004     (when last                          ; Bwadr, duplicate code.
2005       (insert last ?\n)
2006       (put-text-property (1- (point)) (point) 'articles alike))
2007
2008     ;; Go through all the score alists and pick out the entries
2009     ;; for this header.
2010     (while score-list
2011       (setq alist (pop score-list)
2012             ;; There's only one instance of this header for
2013             ;; each score alist.
2014             entries (assoc header alist))
2015       (while (cdr entries)              ;First entry is the header index.
2016         (let* ((kill (cadr entries))
2017                (type (or (nth 3 kill) 's))
2018                (score (or (nth 1 kill) gnus-score-interactive-default-score))
2019                (date (nth 2 kill))
2020                (extra (nth 4 kill))     ; non-standard header; string.
2021                (found nil)
2022                (mt (aref (symbol-name type) 0))
2023                (case-fold-search (not (memq mt '(?R ?S ?E ?F))))
2024                (dmt (downcase mt))
2025                ;; Assume user already simplified regexp and fuzzies
2026                (match (if (and simplify (not (memq dmt '(?f ?r))))
2027                           (gnus-map-function
2028                            gnus-simplify-subject-functions
2029                            (nth 0 kill))
2030                         (nth 0 kill)))
2031                (search-func
2032                 (cond ((= dmt ?r) 're-search-forward)
2033                       ((or (= dmt ?e) (= dmt ?s) (= dmt ?f)) 'search-forward)
2034                       ((= dmt ?w) nil)
2035                       (t (error "Invalid match type: %s" type)))))
2036
2037           ;; Evil hackery to make match usable in non-standard headers.
2038           (when extra
2039             (setq match (concat "[ (](" extra " \\. \"[^)]*"
2040                                 match "[^\"]*\")[ )]")
2041                   search-func 're-search-forward)) ; XXX danger?!?
2042
2043           (cond
2044            ;; Fuzzy matches.  We save these for later.
2045            ((= dmt ?f)
2046             (push (cons entries alist) fuzzies)
2047             (setq entries (cdr entries)))
2048            ;; Word matches.  Save these for even later.
2049            ((= dmt ?w)
2050             (push (cons entries alist) words)
2051             (setq entries (cdr entries)))
2052            ;; Exact matches.
2053            ((= dmt ?e)
2054             ;; Do exact matching.
2055             (goto-char (point-min))
2056             (while (and (not (eobp))
2057                         (funcall search-func match nil t))
2058               ;; Is it really exact?
2059               (and (eolp)
2060                    (= (point-at-bol) (match-beginning 0))
2061                    ;; Yup.
2062                    (progn
2063                      (setq found (setq arts (get-text-property
2064                                              (point) 'articles)))
2065                      ;; Found a match, update scores.
2066                      (if trace
2067                          (while (setq art (pop arts))
2068                            (setcdr art (+ score (cdr art)))
2069                            (push
2070                             (cons
2071                              (car-safe (rassq alist gnus-score-cache))
2072                              kill)
2073                             gnus-score-trace))
2074                        (while (setq art (pop arts))
2075                          (setcdr art (+ score (cdr art)))))))
2076               (forward-line 1))
2077             ;; Update expiry date
2078             (if trace
2079                 (setq entries (cdr entries))
2080               (cond
2081                ;; Permanent entry.
2082                ((null date)
2083                 (setq entries (cdr entries)))
2084                ;; We have a match, so we update the date.
2085                ((and found gnus-update-score-entry-dates)
2086                 (gnus-score-set 'touched '(t) alist)
2087                 (setcar (nthcdr 2 kill) now)
2088                 (setq entries (cdr entries)))
2089                ;; This entry has expired, so we remove it.
2090                ((and expire (< date expire))
2091                 (gnus-score-set 'touched '(t) alist)
2092                 (setcdr entries (cddr entries)))
2093                ;; No match; go to next entry.
2094                (t
2095                 (setq entries (cdr entries))))))
2096            ;; Regexp and substring matching.
2097            (t
2098             (goto-char (point-min))
2099             (when (string= match "")
2100               (setq match "\n"))
2101             (while (and (not (eobp))
2102                         (funcall search-func match nil t))
2103               (goto-char (match-beginning 0))
2104               (end-of-line)
2105               (setq found (setq arts (get-text-property (point) 'articles)))
2106               ;; Found a match, update scores.
2107               (if trace
2108                   (while (setq art (pop arts))
2109                     (setcdr art (+ score (cdr art)))
2110                     (push (cons (car-safe (rassq alist gnus-score-cache)) kill)
2111                           gnus-score-trace))
2112                 (while (setq art (pop arts))
2113                   (setcdr art (+ score (cdr art)))))
2114               (forward-line 1))
2115             ;; Update expiry date
2116             (if trace
2117                 (setq entries (cdr entries))
2118               (cond
2119                ;; Permanent entry.
2120                ((null date)
2121                 (setq entries (cdr entries)))
2122                ;; We have a match, so we update the date.
2123                ((and found gnus-update-score-entry-dates)
2124                 (gnus-score-set 'touched '(t) alist)
2125                 (setcar (nthcdr 2 kill) now)
2126                 (setq entries (cdr entries)))
2127                ;; This entry has expired, so we remove it.
2128                ((and expire (< date expire))
2129                 (gnus-score-set 'touched '(t) alist)
2130                 (setcdr entries (cddr entries)))
2131                ;; No match; go to next entry.
2132                (t
2133                 (setq entries (cdr entries))))))))))
2134
2135     ;; Find fuzzy matches.
2136     (when fuzzies
2137       ;; Simplify the entire buffer for easy matching.
2138       (gnus-simplify-buffer-fuzzy)
2139       (while (setq kill (cadaar fuzzies))
2140         (let* ((match (nth 0 kill))
2141                (type (nth 3 kill))
2142                (score (or (nth 1 kill) gnus-score-interactive-default-score))
2143                (date (nth 2 kill))
2144                (mt (aref (symbol-name type) 0))
2145                (case-fold-search (not (= mt ?F)))
2146                found)
2147           (goto-char (point-min))
2148           (while (and (not (eobp))
2149                       (search-forward match nil t))
2150             (when (and (= (point-at-bol) (match-beginning 0))
2151                        (eolp))
2152               (setq found (setq arts (get-text-property (point) 'articles)))
2153               (if trace
2154                   (while (setq art (pop arts))
2155                     (setcdr art (+ score (cdr art)))
2156                     (push (cons
2157                            (car-safe (rassq (cdar fuzzies) gnus-score-cache))
2158                            kill)
2159                           gnus-score-trace))
2160                 ;; Found a match, update scores.
2161                 (while (setq art (pop arts))
2162                   (setcdr art (+ score (cdr art))))))
2163             (forward-line 1))
2164           ;; Update expiry date
2165           (if (not trace)
2166               (cond
2167                ;; Permanent.
2168                ((null date)
2169                 ;; Do nothing.
2170                 )
2171                ;; Match, update date.
2172                ((and found gnus-update-score-entry-dates)
2173                 (gnus-score-set 'touched '(t) (cdar fuzzies))
2174                 (setcar (nthcdr 2 kill) now))
2175                ;; Old entry, remove.
2176                ((and expire (< date expire))
2177                 (gnus-score-set 'touched '(t) (cdar fuzzies))
2178                 (setcdr (caar fuzzies) (cddaar fuzzies)))))
2179           (setq fuzzies (cdr fuzzies)))))
2180
2181     (when words
2182       ;; Enter all words into the hashtb.
2183       (let ((hashtb (gnus-make-hashtable
2184                      (* 10 (count-lines (point-min) (point-max))))))
2185         (gnus-enter-score-words-into-hashtb hashtb)
2186         (while (setq kill (cadaar words))
2187           (let* ((score (or (nth 1 kill) gnus-score-interactive-default-score))
2188                  (date (nth 2 kill))
2189                  found)
2190             (when (setq arts (intern-soft (nth 0 kill) hashtb))
2191               (setq arts (symbol-value arts))
2192               (setq found t)
2193               (if trace
2194                   (while (setq art (pop arts))
2195                     (setcdr art (+ score (cdr art)))
2196                     (push (cons
2197                            (car-safe (rassq (cdar words) gnus-score-cache))
2198                            kill)
2199                           gnus-score-trace))
2200                 ;; Found a match, update scores.
2201                 (while (setq art (pop arts))
2202                   (setcdr art (+ score (cdr art))))))
2203             ;; Update expiry date
2204             (if (not trace)
2205                 (cond
2206                  ;; Permanent.
2207                  ((null date)
2208                   ;; Do nothing.
2209                   )
2210                  ;; Match, update date.
2211                  ((and found gnus-update-score-entry-dates)
2212                   (gnus-score-set 'touched '(t) (cdar words))
2213                   (setcar (nthcdr 2 kill) now))
2214                  ;; Old entry, remove.
2215                  ((and expire (< date expire))
2216                   (gnus-score-set 'touched '(t) (cdar words))
2217                   (setcdr (caar words) (cddaar words)))))
2218             (setq words (cdr words))))))
2219     nil))
2220
2221 (defun gnus-enter-score-words-into-hashtb (hashtb)
2222   ;; Find all the words in the buffer and enter them into
2223   ;; the hashtable.
2224   (let (word val)
2225     (goto-char (point-min))
2226     (with-syntax-table gnus-adaptive-word-syntax-table
2227       (while (re-search-forward "\\b\\w+\\b" nil t)
2228         (setq val
2229               (gnus-gethash
2230                (setq word (downcase (buffer-substring
2231                                      (match-beginning 0) (match-end 0))))
2232                hashtb))
2233         (gnus-sethash
2234          word
2235          (append (get-text-property (point-at-eol) 'articles) val)
2236          hashtb)))
2237     ;; Make all the ignorable words ignored.
2238     (let ((ignored (append gnus-ignored-adaptive-words
2239                            (if gnus-adaptive-word-no-group-words
2240                                (message-tokenize-header
2241                                 (gnus-group-real-name gnus-newsgroup-name)
2242                                 "."))
2243                            gnus-default-ignored-adaptive-words)))
2244       (while ignored
2245         (gnus-sethash (pop ignored) nil hashtb)))))
2246
2247 (defun gnus-score-string< (a1 a2)
2248   ;; Compare headers in articles A2 and A2.
2249   ;; The header index used is the free variable `gnus-score-index'.
2250   (string-lessp (aref (car a1) gnus-score-index)
2251                 (aref (car a2) gnus-score-index)))
2252
2253 (defun gnus-current-score-file-nondirectory (&optional score-file)
2254   (let ((score-file (or score-file gnus-current-score-file)))
2255     (if score-file
2256         (gnus-short-group-name (file-name-nondirectory score-file))
2257       "none")))
2258
2259 (defun gnus-score-adaptive ()
2260   "Create adaptive score rules for this newsgroup."
2261   (when gnus-newsgroup-adaptive
2262     ;; We change the score file to the adaptive score file.
2263     (save-excursion
2264       (set-buffer gnus-summary-buffer)
2265       (gnus-score-load-file
2266        (or gnus-newsgroup-adaptive-score-file
2267            (gnus-home-score-file gnus-newsgroup-name t)
2268            (gnus-score-file-name
2269             gnus-newsgroup-name gnus-adaptive-file-suffix))))
2270     ;; Perform ordinary line scoring.
2271     (when (or (not (listp gnus-newsgroup-adaptive))
2272               (memq 'line gnus-newsgroup-adaptive))
2273       (save-excursion
2274         (let* ((malist (gnus-copy-sequence gnus-adaptive-score-alist))
2275                (alist malist)
2276                (date (current-time-string))
2277                (data gnus-newsgroup-data)
2278                elem headers match func)
2279           ;; First we transform the adaptive rule alist into something
2280           ;; that's faster to process.
2281           (while malist
2282             (setq elem (car malist))
2283             (when (symbolp (car elem))
2284               (setcar elem (symbol-value (car elem))))
2285             (setq elem (cdr elem))
2286             (while elem
2287               (when (fboundp
2288                      (setq func
2289                            (intern
2290                             (concat "mail-header-"
2291                                     (if (eq (caar elem) 'followup)
2292                                         "message-id"
2293                                       (downcase (symbol-name (caar elem))))))))
2294                 (setcdr (car elem)
2295                         (cons (if (eq (caar elem) 'followup)
2296                                   "references"
2297                                 (symbol-name (caar elem)))
2298                               (cdar elem)))
2299                 (setcar (car elem)
2300                         `(lambda (h)
2301                            (,func h))))
2302               (setq elem (cdr elem)))
2303             (setq malist (cdr malist)))
2304           ;; Then we score away.
2305           (while data
2306             (setq elem (cdr (assq (gnus-data-mark (car data)) alist)))
2307             (if (or (not elem)
2308                     (gnus-data-pseudo-p (car data)))
2309                 ()
2310               (when (setq headers (gnus-data-header (car data)))
2311                 (while elem
2312                   (setq match (funcall (caar elem) headers))
2313                   (gnus-summary-score-entry
2314                    (nth 1 (car elem)) match
2315                    (cond
2316                     ((numberp match)
2317                      '=)
2318                     ((equal (nth 1 (car elem)) "date")
2319                      'a)
2320                     (t
2321                      ;; Whether we use substring or exact matches is
2322                      ;; controlled here.
2323                      (if (or (not gnus-score-exact-adapt-limit)
2324                              (< (length match) gnus-score-exact-adapt-limit))
2325                          'e
2326                        (if (equal (nth 1 (car elem)) "subject")
2327                            'f 's))))
2328                    (nth 2 (car elem)) date nil t)
2329                   (setq elem (cdr elem)))))
2330             (setq data (cdr data))))))
2331
2332     ;; Perform adaptive word scoring.
2333     (when (and (listp gnus-newsgroup-adaptive)
2334                (memq 'word gnus-newsgroup-adaptive))
2335       (with-temp-buffer
2336         (let* ((hashtb (gnus-make-hashtable 1000))
2337                (date (date-to-day (current-time-string)))
2338                (data gnus-newsgroup-data)
2339                word d score val)
2340           (with-syntax-table gnus-adaptive-word-syntax-table
2341             ;; Go through all articles.
2342             (while (setq d (pop data))
2343               (when (and
2344                      (not (gnus-data-pseudo-p d))
2345                      (setq score
2346                            (cdr (assq
2347                                  (gnus-data-mark d)
2348                                  gnus-adaptive-word-score-alist))))
2349                 ;; This article has a mark that should lead to
2350                 ;; adaptive word rules, so we insert the subject
2351                 ;; and find all words in that string.
2352                 (insert (mail-header-subject (gnus-data-header d)))
2353                 (downcase-region (point-min) (point-max))
2354                 (goto-char (point-min))
2355                 (while (re-search-forward "\\b\\w+\\b" nil t)
2356                   ;; Put the word and score into the hashtb.
2357                   (setq val (gnus-gethash (setq word (match-string 0))
2358                                           hashtb))
2359                   (when (or (not gnus-adaptive-word-length-limit)
2360                             (> (length word)
2361                                gnus-adaptive-word-length-limit))
2362                     (setq val (+ score (or val 0)))
2363                     (if (and gnus-adaptive-word-minimum
2364                              (< val gnus-adaptive-word-minimum))
2365                         (setq val gnus-adaptive-word-minimum))
2366                     (gnus-sethash word val hashtb)))
2367                 (erase-buffer))))
2368           ;; Make all the ignorable words ignored.
2369           (let ((ignored (append gnus-ignored-adaptive-words
2370                                  (if gnus-adaptive-word-no-group-words
2371                                      (message-tokenize-header
2372                                       (gnus-group-real-name
2373                                        gnus-newsgroup-name)
2374                                       "."))
2375                                  gnus-default-ignored-adaptive-words)))
2376             (while ignored
2377               (gnus-sethash (pop ignored) nil hashtb)))
2378           ;; Now we have all the words and scores, so we
2379           ;; add these rules to the ADAPT file.
2380           (set-buffer gnus-summary-buffer)
2381           (mapatoms
2382            (lambda (word)
2383              (when (symbol-value word)
2384                (gnus-summary-score-entry
2385                 "subject" (symbol-name word) 'w (symbol-value word)
2386                 date nil t)))
2387            hashtb))))))
2388
2389 (defun gnus-score-edit-done ()
2390   (let ((bufnam (buffer-file-name (current-buffer)))
2391         (winconf gnus-prev-winconf))
2392     (when winconf
2393       (set-window-configuration winconf))
2394     (gnus-score-remove-from-cache bufnam)
2395     (gnus-score-load-file bufnam)))
2396
2397 (defun gnus-score-find-trace ()
2398   "Find all score rules that applies to the current article."
2399   (interactive)
2400   (let ((old-scored gnus-newsgroup-scored))
2401     (let ((gnus-newsgroup-headers
2402            (list (gnus-summary-article-header)))
2403           (gnus-newsgroup-scored nil)
2404           ;; Must be synced with `gnus-score-edit-file-at-point':
2405           (frmt "%S [%s] -> %s\n")
2406           trace
2407           file)
2408       (save-excursion
2409         (nnheader-set-temp-buffer "*Score Trace*"))
2410       (setq gnus-score-trace nil)
2411       (gnus-possibly-score-headers 'trace)
2412       (if (not (setq trace gnus-score-trace))
2413           (gnus-error
2414            1 "No score rules apply to the current article (default score %d)."
2415            gnus-summary-default-score)
2416         (set-buffer "*Score Trace*")
2417         ;; Use a keymap instead?
2418         (local-set-key "q"
2419                        (lambda ()
2420                          (interactive)
2421                          (bury-buffer nil)
2422                          (gnus-summary-expand-window)))
2423         (local-set-key "k"
2424                        (lambda ()
2425                          (interactive)
2426                          (kill-buffer (current-buffer))
2427                          (gnus-summary-expand-window)))
2428         (local-set-key "e" (lambda ()
2429                              "Run `gnus-score-edit-file-at-point'."
2430                              (interactive)
2431                              (gnus-score-edit-file-at-point)))
2432         (local-set-key "f" (lambda ()
2433                              "Run `gnus-score-edit-file-at-point'."
2434                              (interactive)
2435                              (gnus-score-edit-file-at-point 'format)))
2436         (local-set-key "t" 'toggle-truncate-lines)
2437         (setq truncate-lines t)
2438         (dolist (entry trace)
2439           (setq file (or (car entry)
2440                          ;; Must be synced with
2441                          ;; `gnus-score-edit-file-at-point':
2442                          "(non-file rule)"))
2443           (insert
2444            (format frmt
2445                    (cdr entry)
2446                    ;; Don't use `file-name-sans-extension' to see .SCORE and
2447                    ;; .ADAPT directly:
2448                    (file-name-nondirectory file)
2449                    (abbreviate-file-name file))))
2450         (insert
2451          "\n\nQuick help:
2452
2453 Type `e' to edit score file corresponding to the score rule on current line,
2454 `f' to format (pretty print) the score file and edit it,
2455 `t' toggle to truncate long lines in this buffer,
2456 `q' to quit, `k' to kill score trace buffer.
2457
2458 The first sexp on each line is the score rule, followed by the file name of
2459 the score file and its full name, including the directory.")
2460         (goto-char (point-min))
2461         (gnus-configure-windows 'score-trace)))
2462     (set-buffer gnus-summary-buffer)
2463     (setq gnus-newsgroup-scored old-scored)))
2464
2465 (defun gnus-score-find-favourite-words ()
2466   "List words used in scoring."
2467   (interactive)
2468   (let ((alists (gnus-score-load-files (gnus-all-score-files)))
2469         alist rule rules kill)
2470     ;; Go through all the score alists for this group
2471     ;; and find all `w' rules.
2472     (while (setq alist (pop alists))
2473       (while (setq rule (pop alist))
2474         (when (and (stringp (car rule))
2475                    (equal "subject" (downcase (pop rule))))
2476           (while (setq kill (pop rule))
2477             (when (memq (nth 3 kill) '(w W word Word))
2478               (push (cons (or (nth 1 kill)
2479                               gnus-score-interactive-default-score)
2480                           (car kill))
2481                     rules))))))
2482     (setq rules (sort rules (lambda (r1 r2)
2483                               (string-lessp (cdr r1) (cdr r2)))))
2484     ;; Add up words that have appeared several times.
2485     (let ((r rules))
2486       (while (cdr r)
2487         (if (equal (cdar r) (cdadr r))
2488             (progn
2489               (setcar (car r) (+ (caar r) (caadr r)))
2490               (setcdr r (cddr r)))
2491           (pop r))))
2492     ;; Insert the words.
2493     (nnheader-set-temp-buffer "*Score Words*")
2494     (if (not (setq rules (sort rules (lambda (r1 r2) (> (car r1) (car r2))))))
2495         (gnus-error 3 "No word score rules")
2496       (while rules
2497         (insert (format "%-5d: %s\n" (caar rules) (cdar rules)))
2498         (pop rules))
2499       (goto-char (point-min))
2500       (gnus-configure-windows 'score-words))))
2501
2502 (defun gnus-summary-rescore ()
2503   "Redo the entire scoring process in the current summary."
2504   (interactive)
2505   (gnus-score-save)
2506   (setq gnus-score-cache nil)
2507   (setq gnus-newsgroup-scored nil)
2508   (gnus-possibly-score-headers)
2509   (gnus-score-update-all-lines))
2510
2511 (defun gnus-score-flush-cache ()
2512   "Flush the cache of score files."
2513   (interactive)
2514   (gnus-score-save)
2515   (setq gnus-score-cache nil
2516         gnus-score-alist nil
2517         gnus-short-name-score-file-cache nil)
2518   (gnus-message 6 "The score cache is now flushed"))
2519
2520 (gnus-add-shutdown 'gnus-score-close 'gnus)
2521
2522 (defvar gnus-score-file-alist-cache nil)
2523
2524 (defun gnus-score-close ()
2525   "Clear all internal score variables."
2526   (setq gnus-score-cache nil
2527         gnus-internal-global-score-files nil
2528         gnus-score-file-list nil
2529         gnus-score-file-alist-cache nil))
2530
2531 ;; Summary score marking commands.
2532
2533 (defun gnus-summary-raise-same-subject-and-select (score)
2534   "Raise articles which has the same subject with SCORE and select the next."
2535   (interactive "p")
2536   (let ((subject (gnus-summary-article-subject)))
2537     (gnus-summary-raise-score score)
2538     (while (gnus-summary-find-subject subject)
2539       (gnus-summary-raise-score score))
2540     (gnus-summary-next-article t)))
2541
2542 (defun gnus-summary-raise-same-subject (score)
2543   "Raise articles which has the same subject with SCORE."
2544   (interactive "p")
2545   (let ((subject (gnus-summary-article-subject)))
2546     (gnus-summary-raise-score score)
2547     (while (gnus-summary-find-subject subject)
2548       (gnus-summary-raise-score score))
2549     (gnus-summary-next-subject 1 t)))
2550
2551 (defun gnus-score-delta-default (level)
2552   (if level (prefix-numeric-value level)
2553     gnus-score-interactive-default-score))
2554
2555 (defun gnus-summary-raise-thread (&optional score)
2556   "Raise the score of the articles in the current thread with SCORE."
2557   (interactive "P")
2558   (setq score (gnus-score-delta-default score))
2559   (let (e)
2560     (save-excursion
2561       (let ((articles (gnus-summary-articles-in-thread)))
2562         (while articles
2563           (gnus-summary-goto-subject (car articles))
2564           (gnus-summary-raise-score score)
2565           (setq articles (cdr articles))))
2566       (setq e (point)))
2567     (let ((gnus-summary-check-current t))
2568       (unless (zerop (gnus-summary-next-subject 1 t))
2569         (goto-char e))))
2570   (gnus-summary-recenter)
2571   (gnus-summary-position-point)
2572   (gnus-set-mode-line 'summary))
2573
2574 (defun gnus-summary-lower-same-subject-and-select (score)
2575   "Raise articles which has the same subject with SCORE and select the next."
2576   (interactive "p")
2577   (gnus-summary-raise-same-subject-and-select (- score)))
2578
2579 (defun gnus-summary-lower-same-subject (score)
2580   "Raise articles which has the same subject with SCORE."
2581   (interactive "p")
2582   (gnus-summary-raise-same-subject (- score)))
2583
2584 (defun gnus-summary-lower-thread (&optional score)
2585   "Lower score of articles in the current thread with SCORE."
2586   (interactive "P")
2587   (gnus-summary-raise-thread (- (gnus-score-delta-default score))))
2588
2589 ;;; Finding score files.
2590
2591 (defun gnus-score-score-files (group)
2592   "Return a list of all possible score files."
2593   ;; Search and set any global score files.
2594   (when gnus-global-score-files
2595     (unless gnus-internal-global-score-files
2596       (gnus-score-search-global-directories gnus-global-score-files)))
2597   ;; Fix the kill-file dir variable.
2598   (setq gnus-kill-files-directory
2599         (file-name-as-directory gnus-kill-files-directory))
2600   ;; If we can't read it, there are no score files.
2601   (if (not (file-exists-p (expand-file-name gnus-kill-files-directory)))
2602       (setq gnus-score-file-list nil)
2603     (if (not (gnus-use-long-file-name 'not-score))
2604         ;; We do not use long file names, so we have to do some
2605         ;; directory traversing.
2606         (setq gnus-score-file-list
2607               (cons nil
2608                     (or gnus-short-name-score-file-cache
2609                         (prog2
2610                             (gnus-message 6 "Finding all score files...")
2611                             (setq gnus-short-name-score-file-cache
2612                                   (gnus-score-score-files-1
2613                                    gnus-kill-files-directory))
2614                           (gnus-message 6 "Finding all score files...done")))))
2615       ;; We want long file names.
2616       (when (or (not gnus-score-file-list)
2617                 (not (car gnus-score-file-list))
2618                 (gnus-file-newer-than gnus-kill-files-directory
2619                                       (car gnus-score-file-list)))
2620         (setq gnus-score-file-list
2621               (cons (nth 5 (file-attributes gnus-kill-files-directory))
2622                     (nreverse
2623                      (directory-files
2624                       gnus-kill-files-directory t
2625                       (gnus-score-file-regexp)))))))
2626     (cdr gnus-score-file-list)))
2627
2628 (defun gnus-score-score-files-1 (dir)
2629   "Return all possible score files under DIR."
2630   (let ((files (list (expand-file-name dir)))
2631         (regexp (gnus-score-file-regexp))
2632         (case-fold-search nil)
2633         seen out file)
2634     (while (setq file (pop files))
2635       (cond
2636        ;; Ignore files that start with a dot.
2637        ((string-match "^\\." (file-name-nondirectory file))
2638         nil)
2639        ;; Add subtrees of directory to also be searched.
2640        ((and (file-directory-p file)
2641              (not (member (file-truename file) seen)))
2642         (push (file-truename file) seen)
2643         (setq files (nconc (directory-files file t nil t) files)))
2644        ;; Add files to the list of score files.
2645        ((string-match regexp file)
2646         (push file out))))
2647     (or out
2648         ;; Return a dummy value.
2649         (list (expand-file-name "this.file.does.not.exist.SCORE"
2650                                 gnus-kill-files-directory)))))
2651
2652 (defun gnus-score-file-regexp ()
2653   "Return a regexp that match all score files."
2654   (concat "\\(" (regexp-quote gnus-score-file-suffix )
2655           "\\|" (regexp-quote gnus-adaptive-file-suffix) "\\)\\'"))
2656
2657 (defun gnus-score-find-bnews (group)
2658   "Return a list of score files for GROUP.
2659 The score files are those files in the ~/News/ directory which matches
2660 GROUP using BNews sys file syntax."
2661   (let* ((sfiles (append (gnus-score-score-files group)
2662                          gnus-internal-global-score-files))
2663          (kill-dir (file-name-as-directory
2664                     (expand-file-name gnus-kill-files-directory)))
2665          (klen (length kill-dir))
2666          (score-regexp (gnus-score-file-regexp))
2667          (trans (cdr (assq ?: nnheader-file-name-translation-alist)))
2668          (group-trans (nnheader-translate-file-chars group t))
2669          ofiles not-match regexp)
2670     (save-excursion
2671       (set-buffer (gnus-get-buffer-create "*gnus score files*"))
2672       (buffer-disable-undo)
2673       ;; Go through all score file names and create regexp with them
2674       ;; as the source.
2675       (while sfiles
2676         (erase-buffer)
2677         (insert (car sfiles))
2678         (goto-char (point-min))
2679         ;; First remove the suffix itself.
2680         (when (re-search-forward (concat "." score-regexp) nil t)
2681           (replace-match "" t t)
2682           (goto-char (point-min))
2683           (if (looking-at (regexp-quote kill-dir))
2684               ;; If the file name was just "SCORE", `klen' is one character
2685               ;; too much.
2686               (delete-char (min (1- (point-max)) klen))
2687             (goto-char (point-max))
2688             (if (re-search-backward gnus-directory-sep-char-regexp nil t)
2689                 (delete-region (1+ (point)) (point-min))
2690               (gnus-message 1 "Can't find directory separator in %s"
2691                             (car sfiles))))
2692           ;; If short file names were used, we have to translate slashes.
2693           (goto-char (point-min))
2694           (let ((regexp (concat
2695                          "[/:" (if trans (char-to-string trans)) "]")))
2696             (while (re-search-forward regexp nil t)
2697               (replace-match "." t t)))
2698           ;; Kludge to get rid of "nntp+" problems.
2699           (goto-char (point-min))
2700           (when (looking-at "nn[a-z]+\\+")
2701             (search-forward "+")
2702             (forward-char -1)
2703             (insert "\\")
2704             (forward-char 1))
2705           ;; Kludge to deal with "++".
2706           (while (search-forward "+" nil t)
2707             (replace-match "\\+" t t))
2708           ;; Translate "all" to ".*".
2709           (goto-char (point-min))
2710           (while (search-forward "all" nil t)
2711             (replace-match ".*" t t))
2712           (goto-char (point-min))
2713           ;; Deal with "not."s.
2714           (if (looking-at "not.")
2715               (progn
2716                 (setq not-match t)
2717                 (setq regexp
2718                       (concat "^" (buffer-substring 5 (point-max)) "$")))
2719             (setq regexp (concat "^" (buffer-substring 1 (point-max)) "$"))
2720             (setq not-match nil))
2721           ;; Finally - if this resulting regexp matches the group name,
2722           ;; we add this score file to the list of score files
2723           ;; applicable to this group.
2724           (when (or (and not-match
2725                          (ignore-errors
2726                            (not (string-match regexp group-trans))))
2727                     (and (not not-match)
2728                          (ignore-errors (string-match regexp group-trans))))
2729             (push (car sfiles) ofiles)))
2730         (setq sfiles (cdr sfiles)))
2731       (gnus-kill-buffer (current-buffer))
2732       ;; Slight kludge here - the last score file returned should be
2733       ;; the local score file, whether it exists or not.  This is so
2734       ;; that any score commands the user enters will go to the right
2735       ;; file, and not end up in some global score file.
2736       (let ((localscore (gnus-score-file-name group)))
2737         (setq ofiles (cons localscore (delete localscore ofiles))))
2738       (gnus-sort-score-files (nreverse ofiles)))))
2739
2740 (defun gnus-score-find-single (group)
2741   "Return list containing the score file for GROUP."
2742   (list (or gnus-newsgroup-adaptive-score-file
2743             (gnus-score-file-name group gnus-adaptive-file-suffix))
2744         (gnus-score-file-name group)))
2745
2746 (defun gnus-score-find-hierarchical (group)
2747   "Return list of score files for GROUP.
2748 This includes the score file for the group and all its parents."
2749   (let* ((prefix (gnus-group-real-prefix group))
2750          (all (list nil))
2751          (group (gnus-group-real-name group))
2752          (start 0))
2753     (while (string-match "\\." group (1+ start))
2754       (setq start (match-beginning 0))
2755       (push (substring group 0 start) all))
2756     (push group all)
2757     (setq all
2758           (nconc
2759            (mapcar (lambda (group)
2760                      (gnus-score-file-name group gnus-adaptive-file-suffix))
2761                    (setq all (nreverse all)))
2762            (mapcar 'gnus-score-file-name all)))
2763     (if (equal prefix "")
2764         all
2765       (mapcar
2766        (lambda (file)
2767          (nnheader-translate-file-chars
2768           (concat (file-name-directory file) prefix
2769                   (file-name-nondirectory file))))
2770        all))))
2771
2772 (defun gnus-score-file-rank (file)
2773   "Return a number that says how specific score FILE is.
2774 Destroys the current buffer."
2775   (if (member file gnus-internal-global-score-files)
2776       0
2777     (when (string-match
2778            (concat "^" (regexp-quote
2779                         (expand-file-name
2780                          (file-name-as-directory gnus-kill-files-directory))))
2781            file)
2782       (setq file (substring file (match-end 0))))
2783     (insert file)
2784     (goto-char (point-min))
2785     (let ((beg (point))
2786           elems)
2787       (while (re-search-forward "[./]" nil t)
2788         (push (buffer-substring beg (1- (point)))
2789               elems))
2790       (erase-buffer)
2791       (setq elems (delete "all" elems))
2792       (length elems))))
2793
2794 (defun gnus-sort-score-files (files)
2795   "Sort FILES so that the most general files come first."
2796   (with-temp-buffer
2797     (let ((alist
2798            (mapcar
2799             (lambda (file)
2800               (cons (inline (gnus-score-file-rank file)) file))
2801             files)))
2802       (mapcar
2803        (lambda (f) (cdr f))
2804        (sort alist 'car-less-than-car)))))
2805
2806 (defun gnus-score-find-alist (group)
2807   "Return list of score files for GROUP.
2808 The list is determined from the variable `gnus-score-file-alist'."
2809   (let ((alist gnus-score-file-multiple-match-alist)
2810         score-files)
2811     ;; if this group has been seen before, return the cached entry
2812     (if (setq score-files (assoc group gnus-score-file-alist-cache))
2813         (cdr score-files)               ;ensures caching groups with no matches
2814       ;; handle the multiple match alist
2815       (while alist
2816         (when (string-match (caar alist) group)
2817           (setq score-files
2818                 (nconc score-files (copy-sequence (cdar alist)))))
2819         (setq alist (cdr alist)))
2820       (setq alist gnus-score-file-single-match-alist)
2821       ;; handle the single match alist
2822       (while alist
2823         (when (string-match (caar alist) group)
2824           ;; progn used just in case ("regexp") has no files
2825           ;; and score-files is still nil.  -sj
2826           ;; this can be construed as a "stop searching here" feature :>
2827           ;; and used to simplify regexps in the single-alist
2828           (setq score-files
2829                 (nconc score-files (copy-sequence (cdar alist))))
2830           (setq alist nil))
2831         (setq alist (cdr alist)))
2832       ;; cache the score files
2833       (push (cons group score-files) gnus-score-file-alist-cache)
2834       score-files)))
2835
2836 (defun gnus-all-score-files (&optional group)
2837   "Return a list of all score files for the current group."
2838   (let ((funcs gnus-score-find-score-files-function)
2839         (group (or group gnus-newsgroup-name))
2840         score-files)
2841     (when group
2842       ;; Make sure funcs is a list.
2843       (and funcs
2844            (not (listp funcs))
2845            (setq funcs (list funcs)))
2846       (when gnus-score-use-all-scores
2847         ;; Get the initial score files for this group.
2848         (when funcs
2849           (setq score-files (nreverse (gnus-score-find-alist group))))
2850         ;; Add any home adapt files.
2851         (let ((home (gnus-home-score-file group t)))
2852           (when home
2853             (push home score-files)
2854             (setq gnus-newsgroup-adaptive-score-file home)))
2855         ;; Check whether there is a `adapt-file' group parameter.
2856         (let ((param-file (gnus-group-find-parameter group 'adapt-file)))
2857           (when param-file
2858             (push param-file score-files)
2859             (setq gnus-newsgroup-adaptive-score-file param-file))))
2860       ;; Go through all the functions for finding score files (or actual
2861       ;; scores) and add them to a list.
2862       (while funcs
2863         (when (functionp (car funcs))
2864           (setq score-files
2865                 (append score-files
2866                         (nreverse (funcall (car funcs) group)))))
2867         (setq funcs (cdr funcs)))
2868       (when gnus-score-use-all-scores
2869         ;; Add any home score files.
2870         (let ((home (gnus-home-score-file group)))
2871           (when home
2872             (push home score-files)))
2873         ;; Check whether there is a `score-file' group parameter.
2874         (let ((param-file (gnus-group-find-parameter group 'score-file)))
2875           (when param-file
2876             (push param-file score-files))))
2877       ;; Expand all files names.
2878       (let ((files score-files))
2879         (while files
2880           (when (stringp (car files))
2881             (setcar files (expand-file-name
2882                            (car files) gnus-kill-files-directory)))
2883           (pop files)))
2884       (setq score-files (nreverse score-files))
2885       ;; Remove any duplicate score files.
2886       (while (and score-files
2887                   (member (car score-files) (cdr score-files)))
2888         (pop score-files))
2889       (let ((files score-files))
2890         (while (cdr files)
2891           (if (member (cadr files) (cddr files))
2892               (setcdr files (cddr files))
2893             (pop files))))
2894       ;; Do the scoring if there are any score files for this group.
2895       score-files)))
2896
2897 (defun gnus-possibly-score-headers (&optional trace)
2898   "Do scoring if scoring is required."
2899   (let ((score-files (gnus-all-score-files)))
2900     (when score-files
2901       (gnus-score-headers score-files trace))))
2902
2903 (defun gnus-score-file-name (newsgroup &optional suffix)
2904   "Return the name of a score file for NEWSGROUP."
2905   (let ((suffix (or suffix gnus-score-file-suffix)))
2906     (nnheader-translate-file-chars
2907      (cond
2908       ((or (null newsgroup)
2909            (string-equal newsgroup ""))
2910        ;; The global score file is placed at top of the directory.
2911        (expand-file-name suffix gnus-kill-files-directory))
2912       ((gnus-use-long-file-name 'not-score)
2913        ;; Append ".SCORE" to newsgroup name.
2914        (expand-file-name (concat (gnus-newsgroup-savable-name newsgroup)
2915                                  "." suffix)
2916                          gnus-kill-files-directory))
2917       (t
2918        ;; Place "SCORE" under the hierarchical directory.
2919        (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
2920                                  "/" suffix)
2921                          gnus-kill-files-directory))))))
2922
2923 (defun gnus-score-search-global-directories (files)
2924   "Scan all global score directories for score files."
2925   ;; Set the variable `gnus-internal-global-score-files' to all
2926   ;; available global score files.
2927   (interactive (list gnus-global-score-files))
2928   (let (out)
2929     (while files
2930       ;; #### /$ Unix-specific?
2931       (if (file-directory-p (car files))
2932           (setq out (nconc (directory-files
2933                             (car files) t
2934                             (concat (gnus-score-file-regexp) "$"))))
2935         (push (car files) out))
2936       (setq files (cdr files)))
2937     (setq gnus-internal-global-score-files out)))
2938
2939 (defun gnus-score-default-fold-toggle ()
2940   "Toggle folding for new score file entries."
2941   (interactive)
2942   (setq gnus-score-default-fold (not gnus-score-default-fold))
2943   (if gnus-score-default-fold
2944       (gnus-message 1 "New score file entries will be case insensitive.")
2945     (gnus-message 1 "New score file entries will be case sensitive.")))
2946
2947 ;;; Home score file.
2948
2949 (defun gnus-home-score-file (group &optional adapt)
2950   "Return the home score file for GROUP.
2951 If ADAPT, return the home adaptive file instead."
2952   (let ((list (if adapt gnus-home-adapt-file gnus-home-score-file))
2953         elem found)
2954     ;; Make sure we have a list.
2955     (unless (listp list)
2956       (setq list (list list)))
2957     ;; Go through the list and look for matches.
2958     (while (and (not found)
2959                 (setq elem (pop list)))
2960       (setq found
2961             (cond
2962              ;; Simple string.
2963              ((stringp elem)
2964               elem)
2965              ;; Function.
2966              ((functionp elem)
2967               (funcall elem group))
2968              ;; Regexp-file cons.
2969              ((consp elem)
2970               (when (string-match (gnus-globalify-regexp (car elem)) group)
2971                 (replace-match (cadr elem) t nil group))))))
2972     (when found
2973       (setq found (nnheader-translate-file-chars found))
2974       (if (file-name-absolute-p found)
2975           found
2976         (nnheader-concat gnus-kill-files-directory found)))))
2977
2978 (defun gnus-hierarchial-home-score-file (group)
2979   "Return the score file of the top-level hierarchy of GROUP."
2980   (if (string-match "^[^.]+\\." group)
2981       (concat (match-string 0 group) gnus-score-file-suffix)
2982     ;; Group name without any dots.
2983     (concat group (if (gnus-use-long-file-name 'not-score) "." "/")
2984             gnus-score-file-suffix)))
2985
2986 (defun gnus-hierarchial-home-adapt-file (group)
2987   "Return the adapt file of the top-level hierarchy of GROUP."
2988   (if (string-match "^[^.]+\\." group)
2989       (concat (match-string 0 group) gnus-adaptive-file-suffix)
2990     ;; Group name without any dots.
2991     (concat group (if (gnus-use-long-file-name 'not-score) "." "/")
2992             gnus-adaptive-file-suffix)))
2993
2994 (defun gnus-current-home-score-file (group)
2995   "Return the \"current\" regular score file."
2996   (car (nreverse (gnus-score-find-alist group))))
2997
2998 ;;;
2999 ;;; Score decays
3000 ;;;
3001
3002 (defun gnus-decay-score (score)
3003   "Decay SCORE according to `gnus-score-decay-constant' and `gnus-score-decay-scale'."
3004   (let ((n (- score
3005               (* (if (< score 0) -1 1)
3006                  (min (abs score)
3007                       (max gnus-score-decay-constant
3008                            (* (abs score)
3009                               gnus-score-decay-scale)))))))
3010     (if (and (featurep 'xemacs)
3011              ;; XEmacs' floor can handle only the floating point
3012              ;; number below the half of the maximum integer.
3013              (> (abs n) (lsh -1 -2)))
3014         (string-to-number
3015          (car (split-string (number-to-string n) "\\.")))
3016       (floor n))))
3017
3018 (defun gnus-decay-scores (alist day)
3019   "Decay non-permanent scores in ALIST."
3020   (let ((times (- (time-to-days (current-time)) day))
3021         kill entry updated score n)
3022     (unless (zerop times)               ;Done decays today already?
3023       (while (setq entry (pop alist))
3024         (when (stringp (car entry))
3025           (setq entry (cdr entry))
3026           (while (setq kill (pop entry))
3027             (when (nth 2 kill)
3028               (setq updated t)
3029               (setq score (or (nth 1 kill)
3030                               gnus-score-interactive-default-score)
3031                     n times)
3032               (while (natnump (decf n))
3033                 (setq score (funcall gnus-decay-score-function score)))
3034               (setcdr kill (cons score
3035                                  (cdr (cdr kill)))))))))
3036     ;; Return whether this score file needs to be saved.  By Je-haysuss!
3037     updated))
3038
3039 (defun gnus-score-regexp-bad-p (regexp)
3040   "Test whether REGEXP is safe for Gnus scoring.
3041 A regexp is unsafe if it matches newline or a buffer boundary.
3042
3043 If the regexp is good, return nil.  If the regexp is bad, return a
3044 cons cell (SYM . STRING), where the symbol SYM is `new' or `bad'.
3045 In the `new' case, the string is a safe replacement for REGEXP.
3046 In the `bad' case, the string is a unsafe subexpression of REGEXP,
3047 and we do not have a simple replacement to suggest.
3048
3049 See Info node `(gnus)Scoring Tips' for examples of good regular expressions."
3050   (let (case-fold-search)
3051     (and
3052      ;; First, try a relatively fast necessary condition.
3053      ;; Notice ranges (like [^:] or [\t-\r]), \s>, \Sw, \W, \', \`:
3054      (string-match "\n\\|\\\\[SsW`']\\|\\[\\^\\|[\0-\n]-" regexp)
3055      ;; Now break the regexp into tokens, and check each:
3056      (let ((tail regexp)                ; remaining regexp to check
3057            tok                          ; current token
3058            bad                          ; nil, or bad subexpression
3059            new                          ; nil, or replacement regexp so far
3060            end)                         ; length of current token
3061        (while (and (not bad)
3062                    (string-match
3063                     "\\`\\(\\\\[sS]?.\\|\\[\\^?]?[^]]*]\\|[^\\]\\)"
3064                     tail))
3065          (setq end (match-end 0)
3066                tok (substring tail 0 end)
3067                tail (substring tail end))
3068          (if;; Is token `bad' (matching newline or buffer ends)?
3069              (or (member tok '("\n" "\\W" "\\`" "\\'"))
3070                  ;; This next handles "[...]", "\\s.", and "\\S.":
3071                  (and (> end 2) (string-match tok "\n")))
3072              (let ((newtok
3073                     ;; Try to suggest a replacement for tok ...
3074                     (cond ((string-equal tok "\\`") "^") ; or "\\(^\\)"
3075                           ((string-equal tok "\\'") "$") ; or "\\($\\)"
3076                           ((string-match "\\[\\^" tok) ; very common
3077                            (concat (substring tok 0 -1) "\n]")))))
3078                (if newtok
3079                    (setq new
3080                          (concat
3081                           (or new
3082                               ;; good prefix so far:
3083                               (substring regexp 0 (- (+ (length tail) end))))
3084                           newtok))
3085                  ;; No replacement idea, so give up:
3086                  (setq bad tok)))
3087            ;; tok is good, may need to extend new
3088            (and new (setq new (concat new tok)))))
3089        ;; Now return a value:
3090        (cond
3091         (bad (cons 'bad bad))
3092         (new (cons 'new new))
3093         (t nil))))))
3094
3095 (provide 'gnus-score)
3096
3097 ;;; gnus-score.el ends here