1 ;;; wl-score.el -- Scoring in Wanderlust.
3 ;; Copyright (C) 1998,1999,2000 Masahiro MURATA <muse@ba2.so-net.ne.jp>
4 ;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
6 ;; Author: Masahiro MURATA <muse@ba2.so-net.ne.jp>
7 ;; Keywords: mail, net news
9 ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
11 ;; This program 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)
16 ;; This program 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.
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.
28 ;; Original codes are gnus-score.el and score-mode.el
37 (require 'elmo-msgdb)) ; for inline functions
39 (defvar wl-score-edit-header-char
40 '((?a "from" nil string)
41 (?s "subject" nil string)
42 (?i "message-id" nil string)
43 (?r "references" "message-id" string)
44 (?x "xref" nil string)
45 (?e "extra" nil string)
46 (?l "lines" nil number)
48 (?f "followup" nil string)
49 (?t "thread" "message-id" string)))
51 (defvar wl-score-edit-type-char
52 '((?s s "substring" string)
53 (?e e "exact string" string)
54 (?f f "fuzzy string" string)
55 (?r r "regexp string" string)
56 (?b before "before date" date)
57 (?a after "after date" date)
58 (?n at "this date" date)
59 (?< < "less than number" number)
60 (?> > "greater than number" number)
61 (?= = "equal to number" number)))
63 (defvar wl-score-edit-perm-char
64 '((?t temp "temporary")
66 (?i now "immediate")))
70 (defconst wl-score-header-index
71 ;; Name to function alist.
72 '(("number" wl-score-integer elmo-msgdb-overview-entity-get-number) ;;0
73 ("subject" wl-score-string 3 charset)
74 ("from" wl-score-string 2 charset)
75 ("date" wl-score-date elmo-msgdb-overview-entity-get-date) ;;4
76 ("message-id" wl-score-string elmo-msgdb-overview-entity-get-id)
77 ("references" wl-score-string 1)
78 ("to" wl-score-string 5)
79 ("cc" wl-score-string 6)
80 ("chars" wl-score-integer elmo-msgdb-overview-entity-get-size) ;;7
81 ("lines" wl-score-integer wl-score-overview-entity-get-lines)
82 ("xref" wl-score-string wl-score-overview-entity-get-xref)
83 ("extra" wl-score-extra wl-score-overview-entity-get-extra mime)
84 ("followup" wl-score-followup 2 charset)
85 ("thread" wl-score-thread 1)))
87 (defvar wl-score-auto-make-followup-entry nil)
88 (defvar wl-score-debug nil)
89 (defvar wl-score-trace nil)
91 (defvar wl-score-alist nil)
92 (defvar wl-score-index nil)
93 (defvar wl-score-cache nil)
94 (defvar wl-scores-messages nil)
95 (defvar wl-current-score-file nil)
96 (defvar wl-score-make-followup nil)
97 (defvar wl-score-stop-add-entry nil)
99 (defvar wl-prev-winconf nil)
100 (defvar wl-score-help-winconf nil)
101 (defvar wl-score-header-buffer-list nil)
102 (defvar wl-score-alike-hashtb nil)
104 (defvar wl-score-edit-exit-function nil
105 "Function run on exit from the score buffer.")
107 (make-variable-buffer-local 'wl-current-score-file)
108 (make-variable-buffer-local 'wl-score-alist)
112 (defun wl-score-simplify-buffer-fuzzy ()
113 "Simplify string in the buffer fuzzily.
114 The string in the accessible portion of the current buffer is simplified.
115 It is assumed to be a single-line subject.
116 Whitespace is generally cleaned up, and miscellaneous leading/trailing
117 matter is removed. Additional things can be deleted by setting
118 `wl-score-simplify-fuzzy-regexp'."
120 (if (listp wl-score-simplify-fuzzy-regexp)
121 (mapconcat (function identity) wl-score-simplify-fuzzy-regexp
123 wl-score-simplify-fuzzy-regexp))
126 (elmo-buffer-replace "\t" " ")
127 (while (not (eq modified-tick (buffer-modified-tick)))
128 (setq modified-tick (buffer-modified-tick))
129 (elmo-buffer-replace regexp)
130 (elmo-buffer-replace "^ *\\[[-+?*!][-+?*!]\\] *")
132 "^ *\\(re\\|fw\\|fwd\\|forward\\)[[{(^0-9]*[])}]?[:;] *")
133 (elmo-buffer-replace "^[[].*:\\( .*\\)[]]$" "\\1"))
134 (elmo-buffer-replace " *[[{(][^()\n]*[]})] *$")
135 (elmo-buffer-replace " +" " ")
136 (elmo-buffer-replace " $")
137 (elmo-buffer-replace "^ +")))
139 (defun wl-score-simplify-string-fuzzy (string)
140 "Simplify a STRING fuzzily.
141 See `wl-score-simplify-buffer-fuzzy' for details."
143 (let ((case-fold-search t))
145 (wl-score-simplify-buffer-fuzzy)
148 (defun wl-score-simplify-subject (subject)
149 "Simplify a SUBJECT fuzzily.
150 Remove Re, Was, Fwd etc."
153 (if (listp wl-score-simplify-fuzzy-regexp)
154 (mapconcat (function identity) wl-score-simplify-fuzzy-regexp
156 wl-score-simplify-fuzzy-regexp))
157 (case-fold-search t))
159 (elmo-buffer-replace regexp)
161 "^[ \t]*\\(re\\|was\\|fw\\|fwd\\|forward\\)[:;][ \t]*")
166 (defun wl-score-overview-entity-get-lines (entity)
168 (elmo-msgdb-overview-entity-get-extra-field entity "lines")))
170 (string-to-int lines))))
172 (defun wl-score-overview-entity-get-xref (entity)
173 (or (elmo-msgdb-overview-entity-get-extra-field entity "xref")
176 (defun wl-score-overview-entity-get-extra (entity header &optional decode)
177 (let ((extra (elmo-msgdb-overview-entity-get-extra-field entity header)))
178 (if (and extra decode)
180 (decode-mime-charset-string extra elmo-mime-charset))
183 (defun wl-string> (s1 s2)
184 (not (or (string< s1 s2)
187 (defmacro wl-score-ov-entity-get-by-index (entity index)
188 (` (aref (cdr (, entity)) (, index))))
190 (defsubst wl-score-ov-entity-get (entity index &optional extra decode)
191 (let ((str (cond ((integerp index)
192 (wl-score-ov-entity-get-by-index entity index))
194 (funcall index entity extra decode))
196 (funcall index entity)))))
197 (if (and decode (not extra))
198 (decode-mime-charset-string str elmo-mime-charset)
201 (defun wl-score-string-index< (a1 a2)
202 (string-lessp (wl-score-ov-entity-get-by-index (car a1) wl-score-index)
203 (wl-score-ov-entity-get-by-index (car a2) wl-score-index)))
205 (defun wl-score-string-func< (a1 a2)
206 (string-lessp (funcall wl-score-index (car a1))
207 (funcall wl-score-index (car a2))))
209 (defun wl-score-string-sort (messages index)
210 (let ((func (cond ((integerp index)
211 'wl-score-string-index<)
213 'wl-score-string-func<))))
214 (sort messages func)))
216 (defsubst wl-score-get (symbol &optional alist)
217 "Get SYMBOL's definition in ALIST."
218 ;; Get SYMBOL's definition in ALIST.
223 (defun wl-score-set (symbol value &optional alist warn)
224 "Set SYMBOL to VALUE in ALIST."
225 ;; Set SYMBOL to VALUE in ALIST.
226 (let* ((alist (or alist wl-score-alist))
227 (entry (assoc symbol alist)))
228 (cond ((wl-score-get 'read-only alist)
229 ;; This is a read-only score file, so we do nothing.
231 (message "Note: read-only score file; entry discarded")))
233 (setcdr entry value))
235 (error "Empty alist"))
238 (cons (cons symbol value) (cdr alist)))))))
240 (defun wl-score-cache-clean ()
241 "Cleaning score cache.
242 Set `wl-score-cache' nil."
244 (setq wl-score-cache nil))
246 (defun wl-score-load-score-alist (file)
249 (if (not (file-readable-p file))
250 (setq wl-score-alist nil)
252 (wl-as-mime-charset wl-score-mode-mime-charset
253 (insert-file-contents file))
254 (goto-char (point-min))
255 ;; Only do the loading if the score file isn't empty.
256 (when (save-excursion (re-search-forward "[()0-9a-zA-Z]" nil t))
259 (read (current-buffer))
260 (error "Problem with score file %s" file))))
264 (error "Invalid syntax with score file %s" file))
266 (setq wl-score-alist alist)))))))
268 (defun wl-score-save ()
269 "Save all score information."
270 ;; Save all score information.
271 (let ((cache wl-score-cache)
272 entry score file dir)
274 (setq wl-score-alist nil)
276 (setq entry (pop cache)
279 (unless (or (not (equal (wl-score-get 'touched score) '(t)))
280 (wl-score-get 'read-only score)
281 (and (file-exists-p file)
282 (not (file-writable-p file))))
283 (setq score (setcdr entry (wl-delete-alist 'touched score)))
285 (let (emacs-lisp-mode-hook
286 (lisp-mode-syntax-table wl-score-mode-syntax-table))
287 (pp score (current-buffer)))
288 (setq dir (file-name-directory file))
289 (if (file-directory-p dir)
291 (if (file-exists-p dir)
292 (error "File %s already exists" dir)
293 (elmo-make-directory dir)))
294 ;; If the score file is empty, we delete it.
295 (if (zerop (buffer-size))
296 (when (file-exists-p file) ; added by teranisi.
298 ;; There are scores, so we write the file.
299 (when (file-writable-p file)
300 (wl-as-mime-charset wl-score-mode-mime-charset
301 (write-region (point-min) (point-max)
302 file nil 'no-msg)))))))))
304 (defun wl-score-remove-from-cache (file)
306 (delq (assoc file wl-score-cache) wl-score-cache)))
308 (defun wl-score-load-file (file)
309 (let* ((file (expand-file-name
310 (or (and (string-match
311 (concat "^" (regexp-quote
313 wl-score-files-dir)))
314 (expand-file-name file))
318 (file-name-as-directory wl-score-files-dir)))))
319 (cached (assoc file wl-score-cache))
322 ;; The score file was already loaded.
323 (setq alist (cdr cached))
324 ;; We load the score file.
325 (setq wl-score-alist nil)
326 (setq alist (wl-score-load-score-alist file))
327 (unless (assq 'touched alist)
328 (wl-push (list 'touched nil) alist))
329 (wl-push (cons file alist) wl-score-cache))
332 ;; Downcase all header names.
335 (setcar (car a) (downcase (caar a)))))
337 (setq wl-current-score-file file)
338 (setq wl-score-alist alist)))
340 (defun wl-score-get-score-files (score-alist folder)
341 (let ((files (wl-get-assoc-list-value
343 (if (not wl-score-folder-alist-matchone) 'all-list)))
345 (while (setq f (wl-pop files))
354 (defun wl-score-get-score-alist (&optional folder)
356 (let* ((fld (or folder (wl-summary-buffer-folder-name)))
357 (score-alist (reverse
358 (wl-score-get-score-files wl-score-folder-alist fld)))
360 (setq wl-current-score-file nil)
361 (unless (and wl-score-default-file
362 (member wl-score-default-file score-alist))
363 (wl-push wl-score-default-file score-alist))
366 (cond ((stringp (car score-alist)) ;; file
367 (wl-score-load-file (car score-alist)))
368 ((consp (car score-alist)) ;; alist
370 ((boundp (car score-alist)) ;; variable
371 (symbol-value (car score-alist)))
373 (error "Void variable: %s" (car score-alist)))))
374 (let ((mark (car (wl-score-get 'mark alist)))
375 (expunge (car (wl-score-get 'expunge alist)))
376 (mark-and-expunge (car (wl-score-get 'mark-and-expunge alist)))
377 (temp (car (wl-score-get 'temp alist))) ; obsolate
378 (target (car (wl-score-get 'target alist)))
379 (important (car (wl-score-get 'important alist))))
380 (setq wl-summary-important-above
381 (or important wl-summary-important-above))
382 (setq wl-summary-target-above
383 (or target temp wl-summary-target-above))
384 (setq wl-summary-mark-below
385 (or mark mark-and-expunge wl-summary-mark-below))
386 (setq wl-summary-expunge-below
387 (or expunge mark-and-expunge wl-summary-expunge-below)))
388 (wl-append scores (list alist))
389 (setq score-alist (cdr score-alist)))
392 (defun wl-score-headers (scores &optional msgdb force-msgs not-add)
393 (let* ((elmo-mime-charset wl-summary-buffer-mime-charset)
394 (now (wl-day-number (current-time-string)))
395 (expire (and wl-score-expiry-days
396 (- now wl-score-expiry-days)))
397 (overview (elmo-msgdb-get-overview
398 (or msgdb (wl-summary-buffer-msgdb))))
399 (mark-alist (elmo-msgdb-get-mark-alist
400 (or msgdb (wl-summary-buffer-msgdb))))
401 (wl-score-stop-add-entry not-add)
403 news new num entry ov header)
404 (setq wl-scores-messages nil)
405 (message "Scoring...")
407 ;; Create messages, an alist of the form `(OVERVIEW . SCORE)'.
408 (while (setq ov (pop overview))
409 (when (and (not (assq
411 (elmo-msgdb-overview-entity-get-number ov))
413 (or (memq num force-msgs)
414 (member (cadr (assq num mark-alist))
415 wl-summary-score-marks)))
416 (setq wl-scores-messages
417 (cons (cons ov (or wl-summary-default-score 0))
418 wl-scores-messages))))
425 ;; Run each header through the score process.
426 (setq entries wl-score-header-index)
428 (setq entry (pop entries)
430 (if (> (length wl-scores-messages) 500)
431 (message "Scoring...\"%s\"" header))
432 (when (< 0 (apply 'max (mapcar
434 (length (wl-score-get header score)))
436 ;; Call the scoring function for this type of "header".
437 (when (setq new (funcall (nth 1 entry) scores header now expire))
438 (wl-push new news))))))
440 ;; Add messages to `wl-summary-scored'.
441 (let (entry num score)
442 (while wl-scores-messages
443 (when (or (/= wl-summary-default-score
444 (cdar wl-scores-messages)))
445 (setq num (elmo-msgdb-overview-entity-get-number
446 (caar wl-scores-messages))
447 score (cdar wl-scores-messages))
448 (if (setq entry (assq num wl-summary-scored))
449 (setcdr entry (+ score (cdr entry)))
450 (wl-push (cons num score)
452 (setq wl-scores-messages (cdr wl-scores-messages))))
453 (message "Scoring...done")
455 (while wl-score-header-buffer-list
456 (elmo-kill-buffer (pop wl-score-header-buffer-list)))))
458 (defun wl-score-integer (scores header now expire)
459 (let ((wl-score-index (nth 2 (assoc header wl-score-header-index)))
464 (setq alist (car scores)
466 entries (assoc header alist))
467 (while (cdr entries) ;First entry is the header index.
468 (let* ((rest (cdr entries))
471 (type (or (nth 3 kill) '>))
472 (score (or (nth 1 kill) wl-score-interactive-default-score))
475 (match-func (if (memq type '(> < <= >= =))
477 (error "Invalid match type: %s" type)))
478 (messages wl-scores-messages))
480 (when (funcall match-func
481 (or (wl-score-ov-entity-get
482 (caar messages) wl-score-index)
486 (setcdr (car messages) (+ score (cdar messages))))
487 (setq messages (cdr messages)))
488 ;; Update expire date
489 (cond ((null date)) ;Permanent entry.
490 ((and found wl-score-update-entry-dates) ;Match, update date.
491 (wl-score-set 'touched '(t) alist)
492 (setcar (nthcdr 2 kill) now))
493 ((and expire (< date expire)) ;Old entry, remove.
494 (wl-score-set 'touched '(t) alist)
495 (setcdr entries (cdr rest))
496 (setq rest entries)))
497 (setq entries rest)))))
500 (defun wl-score-date (scores header now expire)
501 (let ((wl-score-index (nth 2 (assoc header wl-score-header-index)))
502 entries alist match match-func message)
505 (setq alist (car scores)
507 entries (assoc header alist))
508 (while (cdr entries) ;First entry is the header index.
509 (let* ((rest (cdr entries))
511 (type (or (nth 3 kill) 'before))
512 (score (or (nth 1 kill) wl-score-interactive-default-score))
515 (messages wl-scores-messages)
519 (setq match-func 'string<
520 match (wl-date-iso8601 (nth 0 kill))))
522 (setq match-func 'wl-string>
523 match (wl-date-iso8601 (nth 0 kill))))
525 (setq match-func 'string=
526 match (wl-date-iso8601 (nth 0 kill))))
528 (setq match-func 'string-match
530 (t (error "Invalid match type: %s" type)))
531 (while (setq message (pop messages))
533 (setq l (wl-score-ov-entity-get
534 (car message) wl-score-index))
535 (funcall match-func match (wl-date-iso8601 l)))
537 (setcdr message (+ score (cdr message)))))
538 ;; Update expire date
539 (cond ((null date)) ;Permanent entry.
540 ((and found wl-score-update-entry-dates) ;Match, update date.
541 (wl-score-set 'touched '(t) alist)
542 (setcar (nthcdr 2 kill) now))
543 ((and expire (< date expire)) ;Old entry, remove.
544 (wl-score-set 'touched '(t) alist)
545 (setcdr entries (cdr rest))
546 (setq rest entries)))
547 (setq entries rest)))))
550 (defun wl-score-extra (scores header now expire)
551 (let ((score-list scores)
552 entries alist extra extras)
554 (setq alist (pop score-list)
555 entries (assoc header alist))
557 (setq extra (nth 4 (cadr entries)))
558 (unless (member extra extras)
559 (wl-push extra extras))
560 (setq entries (cdr entries))))
562 (wl-score-string scores header now expire (car extras))
563 (setq extras (cdr extras)))
566 (defmacro wl-score-put-alike ()
567 (` (elmo-set-hash-val (format "#%d" (wl-count-lines))
569 wl-score-alike-hashtb)))
571 (defmacro wl-score-get-alike ()
572 (` (elmo-get-hash-val (format "#%d" (wl-count-lines))
573 wl-score-alike-hashtb)))
575 (defun wl-score-insert-header (header messages &optional extra-header)
576 (let ((mime-decode (nth 3 (assoc header wl-score-header-index)))
577 (buffer-name (concat "*Score-Headers-" header
579 (concat "-" extra-header)
583 (if (setq buf (get-buffer buffer-name))
585 (set-buffer (setq buf (get-buffer-create buffer-name)))
586 (wl-append wl-score-header-buffer-list (list buf))
587 (buffer-disable-undo (current-buffer))
588 (make-local-variable 'wl-score-alike-hashtb)
589 (setq wl-score-alike-hashtb (elmo-make-hash (* (length messages) 2)))
591 (elmo-set-buffer-multibyte default-enable-multibyte-characters))
592 (let (art last this alike)
593 (while (setq art (pop messages))
594 (setq this (wl-score-ov-entity-get (car art)
597 (and this (setq this (std11-unfold-string this)))
598 (if (equal last this)
599 ;; O(N*H) cons-cells used here, where H is the number of
605 (setq alike (list art)
611 (decode-mime-charset-region (point-min) (point-max)
613 (when (eq mime-decode 'mime)
614 (eword-decode-region (point-min) (point-max))))))))
616 (defun wl-score-string (scores header now expire &optional extra-header)
617 "Insert the unique message headers in the buffer."
618 ;; Insert the unique message headers in the buffer.
619 (let ((wl-score-index (nth 2 (assoc header wl-score-header-index)))
620 entries alist messages
622 (when (integerp wl-score-index)
623 (setq wl-scores-messages
624 (wl-score-string-sort wl-scores-messages wl-score-index)))
625 (setq messages wl-scores-messages)
627 (wl-score-insert-header header messages extra-header)
629 ;; Go through all the score alists and pick out the entries
632 (setq alist (pop scores)
633 entries (assoc header alist))
634 (while (cdr entries) ;First entry is the header index.
635 (let* ((kill (cadr entries))
636 (type (or (nth 3 kill) 's))
637 (score (or (nth 1 kill) wl-score-interactive-default-score))
639 (extra (nth 4 kill)) ; non-standard header; string.
640 (mt (aref (symbol-name type) 0))
641 (case-fold-search (not (memq mt '(?R ?S ?E ?F))))
645 (cond ((= dmt ?r) 're-search-forward)
646 ((memq dmt '(?e ?s ?f)) 'search-forward)
648 (t (error "Invalid match type: %s" type))))
650 (if (and extra-header
652 (not (string= extra-header extra))))
653 (setq entries (cdr entries))
655 ;; Fuzzy matches. We save these for later.
657 (wl-push (cons entries alist) fuzzies)
658 (setq entries (cdr entries)))
660 ;; Regexp, substring and exact matching.
661 (goto-char (point-min))
662 (when (and (not (= dmt ?e))
665 (while (and (not (eobp))
666 (funcall search-func match nil t))
667 (when (or (not (= dmt ?e))
668 ;; Is it really exact?
670 (= (save-excursion (forward-line 0) (point))
671 (match-beginning 0))))
673 (setq found (setq arts (wl-score-get-alike)))
674 ;; Found a match, update scores.
675 (while (setq art (pop arts))
676 (setcdr art (+ score (cdr art)))))
678 ;; Update expiry date
682 (setq entries (cdr entries)))
683 ;; We have a match, so we update the date.
684 ((and found wl-score-update-entry-dates)
685 (wl-score-set 'touched '(t) alist)
686 (setcar (nthcdr 2 kill) now)
687 (setq entries (cdr entries)))
688 ;; This entry has expired, so we remove it.
689 ((and expire (< date expire))
690 (wl-score-set 'touched '(t) alist)
691 (setcdr entries (cddr entries)))
692 ;; No match; go to next entry.
694 (setq entries (cdr entries))))))))))
696 ;; Find fuzzy matches.
698 ;; Simplify the entire buffer for easy matching.
699 (wl-score-simplify-buffer-fuzzy)
700 (while (setq kill (cadaar fuzzies))
701 (let* ((match (nth 0 kill))
703 (score (or (nth 1 kill) wl-score-interactive-default-score))
705 (mt (aref (symbol-name type) 0))
706 (case-fold-search (not (= mt ?F)))
708 (goto-char (point-min))
709 (while (and (not (eobp))
710 (search-forward match nil t))
712 (= (save-excursion (forward-line 0) (point))
713 (match-beginning 0)))
714 (setq found (setq arts (wl-score-get-alike)))
715 (while (setq art (pop arts))
716 (setcdr art (+ score (cdr art)))))
718 ;; Update expiry date
722 ;; Match, update date.
723 ((and found wl-score-update-entry-dates)
724 (wl-score-set 'touched '(t) (cdar fuzzies))
725 (setcar (nthcdr 2 kill) now))
726 ;; Old entry, remove.
727 ((and expire (< date expire))
728 (wl-score-set 'touched '(t) (cdar fuzzies))
729 (setcdr (caar fuzzies) (cddaar fuzzies))))
730 (setq fuzzies (cdr fuzzies)))))
733 (defun wl-score-thread (scores header now expire)
734 (wl-score-followup scores header now expire t))
736 (defun wl-score-followup (scores header now expire &optional thread)
737 "Insert the unique message headers in the buffer."
738 ;; Insert the unique message headers in the buffer.
739 (let ((wl-score-index (nth 2 (assoc header wl-score-header-index)))
741 entries alist messages
743 (when (integerp wl-score-index)
744 (setq wl-scores-messages
745 (wl-score-string-sort wl-scores-messages wl-score-index)))
746 (setq messages wl-scores-messages)
748 (wl-score-insert-header (if thread "references" "from") messages)
752 (setq alist (car scores)
754 entries (assoc header alist))
755 (while (cdr entries) ;First entry is the header index.
756 (let* ((rest (cdr entries))
759 (type (or (nth 3 kill) 's))
760 (score (or (nth 1 kill) wl-score-interactive-default-score))
763 (mt (aref (symbol-name type) 0))
764 (case-fold-search (not (memq mt '(?R ?S ?E ?F))))
767 (cond ((= dmt ?r) 're-search-forward)
768 ((memq dmt '(?e ?s ?f)) 'search-forward)
769 (t (error "Invalid match type: %s" type))))
771 (goto-char (point-min))
772 (while (funcall search-func match nil t)
773 (when (or (not (= dmt ?e))
775 (= (progn (beginning-of-line) (point))
776 (match-beginning 0))))
778 (setq found (setq arts (wl-score-get-alike)))
779 ;; Found a match, update scores.
780 (while (setq art (pop arts))
782 (when (or (not wl-score-make-followup)
783 (and wl-score-update-entry-dates
788 (elmo-msgdb-overview-entity-get-date
790 (when (setq new (wl-score-add-followups
791 (car art) score all-scores alist thread
794 (unless wl-score-stop-add-entry
795 (wl-append rest (list new)))
796 (setcdr art (+ score (cdr art))))
797 (wl-push new news))))
799 ;; Update expire date
800 (cond ((null date)) ;Permanent entry.
801 ((and found wl-score-update-entry-dates) ;Match, update date.
802 (wl-score-set 'touched '(t) alist)
803 (setcar (nthcdr 2 kill) now))
804 ((and expire (< date expire)) ;Old entry, remove.
805 (wl-score-set 'touched '(t) alist)
806 (setcdr entries (cdr rest))
807 (setq rest entries)))
808 (setq entries rest))))
809 (when (and news (not thread))
810 (list (cons "references" news)))))
812 (defun wl-score-add-followups (header score scores alist &optional thread day)
813 (let* ((id (car header))
814 (scores (car scores))
817 ;; Don't enter a score if there already is one.
818 (while (setq entry (pop scores))
819 (and (member (car entry) '("thread" "references"))
820 (memq (nth 3 (cadr entry)) '(s nil))
824 (let ((entry (list id score
825 (or day (wl-day-number (current-time-string))) 's)))
826 (unless (or thread wl-score-stop-add-entry)
827 (wl-score-update-score-entry "references" entry alist))
828 (wl-score-set 'touched '(t) alist)
831 (defun wl-score-flush-cache ()
832 "Flush the cache of score files."
835 (setq wl-score-cache nil
837 (message "The score cache is now flushed"))
839 (defun wl-score-set-mark-below (score)
840 "Automatically mark messages with score below SCORE as read."
842 (list (or (and current-prefix-arg (prefix-numeric-value current-prefix-arg))
843 (string-to-int (read-string "Mark below: ")))))
844 (setq score (or score wl-summary-default-score 0))
845 (wl-score-set 'mark (list score))
846 (wl-score-set 'touched '(t))
847 (setq wl-summary-mark-below score)
848 (wl-summary-score-update-all-lines t))
850 (defun wl-score-set-expunge-below (score)
851 "Automatically expunge messages with score below SCORE."
853 (list (or (and current-prefix-arg (prefix-numeric-value current-prefix-arg))
854 (string-to-int (read-string "Expunge below: ")))))
855 (setq score (or score wl-summary-default-score 0))
856 (wl-score-set 'expunge (list score))
857 (wl-score-set 'touched '(t)))
859 (defun wl-score-change-score-file (file)
860 "Change current score alist."
862 (list (read-file-name "Change to score file: " wl-score-files-dir)))
863 (wl-score-load-file file))
865 (defun wl-score-default (level)
866 (if level (prefix-numeric-value level)
867 wl-score-interactive-default-score))
869 (defun wl-summary-lower-score (&optional score)
871 (wl-summary-increase-score score t))
873 (defun wl-summary-increase-score (&optional score lower)
875 (if (wl-summary-message-number)
876 (let* ((rscore (if lower
877 (- (wl-score-default score))
878 (wl-score-default score)))
879 (increase (> rscore 0))
880 lscore entry list match type)
881 (setq entry (wl-score-get-header-entry nil rscore))
882 (setq list (nth 1 entry))
883 (setq match (car list))
884 (setq type (nth 3 list))
885 (cond ((memq type '(r R s S nil))
886 (when (and match (string= (car entry) "subject"))
887 (setq match (wl-score-simplify-subject match))))
889 (setq match (wl-score-simplify-string-fuzzy match))))
890 (setq match (read-string
891 (format "Match on %s, %s: "
893 (if increase "raise" "lower"))
895 (int-to-string match)
897 ;; transform from string to int.
898 (when (eq (nth 1 (assoc (car entry) wl-score-header-index))
900 (setq match (string-to-int match)))
904 (setq lscore (nth 1 list))
908 wl-score-interactive-default-score)))
909 (setq lscore (if lower (- lscore) lscore)))
911 (if (eq lscore wl-score-interactive-default-score)
916 (unless (eq (nth 2 list) 'now)
917 (let ((alist (if wl-current-score-file
918 (cdr (assoc wl-current-score-file wl-score-cache))
920 (wl-score-update-score-entry (car entry) list alist)
921 (wl-score-set 'touched '(t) alist)))
922 (wl-summary-score-effect (car entry) list (eq (nth 2 list) 'now)))))
924 (defun wl-score-get-latest-msgs ()
925 (let* ((now (wl-day-number (current-time-string)))
926 (expire (and wl-score-expiry-days
927 (- now wl-score-expiry-days)))
928 (roverview (reverse (elmo-msgdb-get-overview
929 (wl-summary-buffer-msgdb))))
932 (mapcar 'car (elmo-msgdb-get-number-alist
933 (wl-summary-buffer-msgdb))) ;; all messages
936 (if (< (wl-day-number
937 (elmo-msgdb-overview-entity-get-date (car roverview)))
940 (wl-push (elmo-msgdb-overview-entity-get-number (car roverview))
942 (setq roverview (cdr roverview))))
945 (defsubst wl-score-get-overview ()
946 (let ((num (wl-summary-message-number)))
948 (assoc (cdr (assq num (elmo-msgdb-get-number-alist
949 (wl-summary-buffer-msgdb))))
950 (elmo-msgdb-get-overview (wl-summary-buffer-msgdb))))))
952 (defun wl-score-get-header (header &optional extra)
953 (let ((index (nth 2 (assoc header wl-score-header-index)))
954 (decode (nth 3 (assoc header wl-score-header-index))))
956 (wl-score-ov-entity-get (wl-score-get-overview) index extra decode))))
958 (defun wl-score-kill-help-buffer ()
959 (when (get-buffer "*Score Help*")
960 (kill-buffer "*Score Help*")
961 (when wl-score-help-winconf
962 (set-window-configuration wl-score-help-winconf))))
964 (defun wl-score-insert-help (string alist idx)
965 (setq wl-score-help-winconf (current-window-configuration))
966 (let ((cur-win (selected-window))
969 (set-buffer (get-buffer-create "*Score Help*"))
970 (buffer-disable-undo (current-buffer))
971 (delete-windows-on (current-buffer))
973 (insert string ":\n\n")
978 ;; find the longest string to display
980 (setq n (length (nth idx (car list))))
983 (setq list (cdr list)))
984 (setq max (+ max 4)) ; %c, `:', SPACE, a SPACE at end
985 (setq n (/ (1- (window-width)) max)) ; items per line
986 (setq width (/ (1- (window-width)) n)) ; width of each item
987 ;; insert `n' items, each in a field of width `width'
991 (delete-char -1) ; the `\n' takes a char
993 (setq pad (- width 3))
994 (setq format (concat "%c: %-" (int-to-string pad) "s"))
995 (insert (format format (caar alist) (nth idx (car alist))))
996 (setq alist (cdr alist))
998 (set-buffer-modified-p nil)))
999 (when (and wl-message-buffer
1000 (get-buffer wl-message-buffer)
1001 (setq mes-win (get-buffer-window
1002 (get-buffer wl-message-buffer))))
1003 (select-window mes-win)
1004 (unless (eq (next-window) cur-win)
1005 (delete-window (next-window))))
1007 (pop-to-buffer "*Score Help*")
1008 (let ((window-min-height 1))
1009 (shrink-window-if-larger-than-buffer))
1010 (select-window cur-win)))
1012 (defun wl-score-get-header-entry (&optional match-func increase)
1013 (let (hchar tchar pchar
1014 header score perm type extra hentry entry)
1017 ;; read the header to score.
1019 (message "%s header (%s?): "
1021 (if (> increase 0) "Increase" "Lower")
1023 (mapconcat (lambda (s) (char-to-string (car s)))
1024 wl-score-edit-header-char ""))
1025 (setq hchar (read-char))
1026 (when (or (= hchar ??) (= hchar ?\C-h))
1028 (wl-score-insert-help "Match on header"
1029 wl-score-edit-header-char 1)))
1030 (wl-score-kill-help-buffer)
1031 (unless (setq hentry (assq (downcase hchar)
1032 wl-score-edit-header-char))
1033 (error "Invalid header type"))
1036 (setq entry (assoc (setq header (nth 1 hentry))
1037 wl-score-header-default-entry))
1038 (setq score (nth 1 entry)
1042 ;; read extra header.
1043 (when (equal header "extra")
1046 "Set extra header: "
1048 elmo-msgdb-extra-fields))))
1055 (if (eq (nth 3 hentry)
1059 wl-score-edit-type-char)))))
1061 (message "Set header '%s' with match type (%s?): "
1063 (mapconcat (lambda (s) (char-to-string (car s)))
1065 (setq tchar (read-char))
1066 (when (or (= tchar ??) (= tchar ?\C-h))
1068 (wl-score-insert-help "Match type" valid-types 2)))
1069 (wl-score-kill-help-buffer)
1070 (unless (setq type (nth 1 (assq (downcase tchar) valid-types)))
1071 (error "Invalid match type"))
1074 ;; read the permanence.
1077 (message "Set permanence (%s?): "
1078 (mapconcat (lambda (s) (char-to-string (car s)))
1079 wl-score-edit-perm-char ""))
1080 (setq pchar (read-char))
1081 (when (or (= pchar ??) (= pchar ?\C-h))
1083 (wl-score-insert-help "Match permanence"
1084 wl-score-edit-perm-char 2)))
1085 (wl-score-kill-help-buffer)
1086 (unless (setq perm (nth 1 (assq (downcase pchar)
1087 wl-score-edit-perm-char)))
1088 (error "Invalid match duration"))
1092 (unless (or score increase)
1093 (setq score (string-to-int (read-string "Set score: ")))))
1095 (wl-score-kill-help-buffer))
1097 (let* ((match-header (or (nth 2 hentry) header))
1098 (match (if match-func
1099 (funcall match-func match-header extra)
1100 (wl-score-get-header match-header extra)))
1101 (match (cond ((memq type '(r R regexp Regexp))
1102 (regexp-quote match))
1103 ((eq (nth 1 (assoc (car entry) wl-score-header-index))
1108 (perm (cond ((eq perm 'perm)
1111 (wl-day-number (current-time-string)))
1114 (new (list match score perm type extra)))
1115 (list header new))))
1117 (defun wl-score-update-score-entries (header entries &optional alist)
1119 (wl-score-update-score-entry header (car entries) alist)
1120 (setq entries (cdr entries)))
1121 (wl-score-set 'touched '(t) alist))
1123 (defun wl-score-update-score-entry (header new &optional alist)
1124 (let ((old (wl-score-get header alist))
1128 (setq elem (assoc match old))
1129 (eq (nth 3 elem) (nth 3 new))
1130 (or (and (numberp (nth 2 elem)) (numberp (nth 2 new)))
1131 (and (not (nth 2 elem)) (not (nth 2 new)))))
1132 (setcar (cdr elem) (+ (or (nth 1 elem)
1133 wl-score-interactive-default-score)
1135 wl-score-interactive-default-score)))
1136 (wl-score-set header (if old (cons new old) (list new)) alist t))))
1138 ;; functions for summary mode
1140 (defun wl-summary-score-effect (header entry &optional now)
1141 (let ((scores (list (list (list header entry)))))
1142 (setq wl-summary-scored nil)
1143 (cond ((string= header "followup")
1144 (if wl-score-auto-make-followup-entry
1145 (let ((wl-score-make-followup t))
1146 (wl-score-headers scores nil (wl-score-get-latest-msgs)))
1147 (wl-score-headers scores nil
1148 (if (eq wl-summary-buffer-view 'thread)
1149 (wl-thread-get-children-msgs
1150 (wl-summary-message-number))
1151 (list (wl-summary-message-number)))))
1153 (wl-score-update-score-entries
1155 (cdr (assoc "references" (car scores))))))
1156 ((string= header "thread")
1157 (wl-score-headers scores nil
1158 (if (eq wl-summary-buffer-view 'thread)
1159 (wl-thread-get-children-msgs
1160 (wl-summary-message-number))
1161 (list (wl-summary-message-number))))
1163 (wl-score-update-score-entries header
1165 (cdr (cdaar scores)))))
1167 (wl-score-headers scores nil
1168 (list (wl-summary-message-number)))))
1169 (wl-summary-score-update-all-lines t)))
1171 (defun wl-summary-rescore-msgs (number-alist)
1175 (max (- (length number-alist)
1176 wl-summary-rescore-partial-threshold)
1180 (defun wl-summary-rescore (&optional arg)
1181 "Redo the entire scoring process in the current summary."
1183 (let (number-alist expunged)
1185 (setq wl-score-cache nil)
1186 (setq wl-summary-scored nil)
1187 (setq number-alist (elmo-msgdb-get-number-alist (wl-summary-buffer-msgdb)))
1188 (wl-summary-score-headers nil (wl-summary-buffer-msgdb)
1190 (wl-summary-rescore-msgs number-alist)))
1191 (setq expunged (wl-summary-score-update-all-lines t))
1193 (message "%d message(s) are expunged by scoring." (length expunged)))
1194 (set-buffer-modified-p nil)))
1196 ;; optional argument force-msgs is added by teranisi.
1197 (defun wl-summary-score-headers (&optional folder msgdb force-msgs not-add)
1198 "Do scoring if scoring is required."
1199 (let ((scores (wl-score-get-score-alist
1200 (or folder (wl-summary-buffer-folder-name)))))
1202 (wl-score-headers scores msgdb force-msgs not-add))))
1204 (defun wl-summary-score-update-all-lines (&optional update)
1205 (let* ((alist wl-summary-scored)
1206 (count (length alist))
1209 num score dels visible score-mark mark-alist)
1211 (message "Updating score...")
1213 (setq num (caar alist)
1215 (when wl-score-debug
1216 (message "Scored %d with %d" score num)
1217 (wl-push (list (elmo-string (wl-summary-buffer-folder-name)) num score)
1219 (setq score-mark (wl-summary-get-score-mark num))
1220 (and (setq visible (wl-summary-jump-to-msg num))
1221 (wl-summary-set-score-mark score-mark))
1222 (cond ((and wl-summary-expunge-below
1223 (< score wl-summary-expunge-below))
1225 ((< score wl-summary-mark-below)
1227 (wl-summary-mark-as-read t); opened
1228 (setq update-unread t)
1229 (wl-summary-mark-as-read t nil nil num))) ; closed
1230 ((and wl-summary-important-above
1231 (> score wl-summary-important-above))
1232 (if (wl-thread-jump-to-msg num);; force open
1233 (wl-summary-mark-as-important num " ")))
1234 ((and wl-summary-target-above
1235 (> score wl-summary-target-above))
1237 (wl-summary-mark-line "*"))
1238 (setq wl-summary-buffer-target-mark-list
1239 (cons num wl-summary-buffer-target-mark-list))))
1240 (setq alist (cdr alist))
1241 (when (> count elmo-display-progress-threshold)
1243 (elmo-display-progress
1244 'wl-summary-score-update-all-lines "Updating score..."
1245 (/ (* i 100) count))))
1248 (elmo-msgdb-get-mark-alist (wl-summary-buffer-msgdb)))
1252 (elmo-msgdb-mark-set mark-alist (pop marks) nil))))
1253 (elmo-folder-mark-as-read wl-summary-buffer-elmo-folder
1255 (elmo-msgdb-set-mark-alist (wl-summary-buffer-msgdb) mark-alist)
1256 (wl-summary-delete-messages-on-buffer dels))
1257 (when (and update update-unread)
1258 (let ((num-db (elmo-msgdb-get-number-alist
1259 (wl-summary-buffer-msgdb)))
1260 (mark-alist (elmo-msgdb-get-mark-alist
1261 (wl-summary-buffer-msgdb))))
1262 ;; Update Folder mode
1263 (wl-folder-set-folder-updated (wl-summary-buffer-folder-name)
1265 (wl-summary-count-unread
1268 (wl-summary-update-modeline)))
1269 (message "Updating score...done")
1272 (defun wl-score-edit-done ()
1273 (let ((bufnam (buffer-file-name (current-buffer)))
1274 (winconf wl-prev-winconf))
1276 (set-window-configuration winconf))
1277 (wl-score-remove-from-cache bufnam)
1278 (wl-score-load-file bufnam)))
1280 (defun wl-score-edit-current-scores (file)
1281 "Edit the current score alist."
1282 (interactive (list wl-current-score-file))
1284 (wl-score-edit-file file)
1285 (call-interactively 'wl-score-edit-file)))
1287 (defun wl-score-edit-file (file)
1288 "Edit a score FILE."
1290 (list (read-file-name "Edit score file: " wl-score-files-dir)))
1291 (when (wl-collect-summary)
1293 (let ((winconf (current-window-configuration))
1294 (edit-buffer (wl-as-mime-charset wl-score-mode-mime-charset
1295 (find-file-noselect file)))
1296 (sum-buf (current-buffer)))
1297 (if (string-match (concat "^" wl-summary-buffer-name) (buffer-name))
1298 (let ((cur-buf (current-buffer)))
1299 (when wl-message-buffer
1300 (wl-message-select-buffer wl-message-buffer)
1302 (select-window (get-buffer-window cur-buf)))
1303 (wl-message-select-buffer edit-buffer))
1304 (switch-to-buffer edit-buffer))
1306 (setq wl-score-edit-exit-function 'wl-score-edit-done)
1307 (setq wl-score-edit-summary-buffer sum-buf)
1308 (make-local-variable 'wl-prev-winconf)
1309 (setq wl-prev-winconf winconf))
1311 (substitute-command-keys
1312 "\\<wl-score-mode-map>\\[wl-score-edit-exit] to save edits")))
1316 (defvar wl-score-edit-summary-buffer nil)
1318 (defvar wl-score-mode-syntax-table
1319 (let ((table (copy-syntax-table lisp-mode-syntax-table)))
1320 (modify-syntax-entry ?| "w" table)
1322 "Syntax table used in score-mode buffers.")
1324 (defvar wl-score-mode-map nil)
1325 (defvar wl-score-mode-menu-spec
1327 ["Exit" wl-score-edit-exit t]
1328 ["Insert date" wl-score-edit-insert-date t]
1329 ["Format" wl-score-pretty-print t]))
1331 (unless wl-score-mode-map
1332 (setq wl-score-mode-map (copy-keymap emacs-lisp-mode-map))
1333 (define-key wl-score-mode-map "\C-c\C-k" 'wl-score-edit-kill)
1334 (define-key wl-score-mode-map "\C-c\C-c" 'wl-score-edit-exit)
1335 (define-key wl-score-mode-map "\C-c\C-p" 'wl-score-pretty-print)
1336 (define-key wl-score-mode-map "\C-c\C-d" 'wl-score-edit-insert-date)
1337 (define-key wl-score-mode-map "\C-c\C-s" 'wl-score-edit-insert-header)
1338 (define-key wl-score-mode-map "\C-c\C-e" 'wl-score-edit-insert-header-entry)
1340 (unless (boundp 'wl-score-menu)
1342 wl-score-menu wl-score-mode-map "Menu used in score mode."
1343 wl-score-mode-menu-spec)))
1345 (defun wl-score-mode ()
1346 "Mode for editing Wanderlust score files.
1347 This mode is an extended emacs-lisp mode.
1350 \\{wl-score-mode-map}
1351 Entering Score mode calls the value of `wl-score-mode-hook'."
1353 (kill-all-local-variables)
1354 (use-local-map wl-score-mode-map)
1355 (set-syntax-table wl-score-mode-syntax-table)
1356 (setq major-mode 'wl-score-mode)
1357 (setq mode-name "Score")
1358 (lisp-mode-variables nil)
1359 (make-local-variable 'wl-score-edit-exit-function)
1360 (make-local-variable 'wl-score-edit-summary-buffer)
1361 (run-hooks 'emacs-lisp-mode-hook 'wl-score-mode-hook))
1363 (defun wl-score-edit-insert-date ()
1364 "Insert date in numerical format."
1366 (princ (wl-day-number (current-time-string)) (current-buffer)))
1368 (defun wl-score-pretty-print ()
1369 "Format the current score file."
1371 (goto-char (point-min))
1372 (let ((form (read (current-buffer))))
1374 (let ((emacs-lisp-mode-syntax-table wl-score-mode-syntax-table))
1375 (pp form (current-buffer))))
1376 (goto-char (point-min)))
1378 (defun wl-score-edit-exit ()
1379 "Stop editing the score file."
1381 (unless (file-exists-p (file-name-directory (buffer-file-name)))
1382 (elmo-make-directory (file-name-directory (buffer-file-name))))
1383 (if (zerop (buffer-size))
1385 (set-buffer-modified-p nil)
1386 (and (file-exists-p (buffer-file-name))
1387 (delete-file (buffer-file-name))))
1388 (wl-as-mime-charset wl-score-mode-mime-charset
1390 (let ((buf (current-buffer)))
1391 (when wl-score-edit-exit-function
1392 (funcall wl-score-edit-exit-function))
1395 (defun wl-score-edit-kill ()
1396 "Cancel editing the score file."
1398 (let ((buf (current-buffer)))
1399 (set-buffer-modified-p nil)
1400 (when wl-score-edit-exit-function
1401 (funcall wl-score-edit-exit-function))
1404 (defun wl-score-edit-get-summary-buf ()
1405 (let ((summary-buf (and wl-score-edit-summary-buffer
1406 (get-buffer wl-score-edit-summary-buffer))))
1407 (if (and summary-buf
1408 (buffer-live-p summary-buf))
1410 (if (and (setq summary-buf (window-buffer (previous-window)))
1411 (string-match (concat "^" wl-summary-buffer-name)
1412 (buffer-name summary-buf)))
1415 (defun wl-score-edit-get-header (header &optional extra)
1416 (let ((sum-buf (wl-score-edit-get-summary-buf))
1417 (index (nth 2 (assoc header wl-score-header-index))))
1418 (when (and sum-buf index)
1420 (set-buffer sum-buf)
1421 (wl-score-get-header header extra)))))
1423 (defun wl-score-edit-insert-number ()
1425 (let ((sum-buf (wl-score-edit-get-summary-buf))
1428 (if (setq num (save-excursion
1429 (set-buffer sum-buf)
1430 (wl-summary-message-number)))
1431 (prin1 num (current-buffer))))))
1433 (defun wl-score-edit-insert-header ()
1439 (message "Insert header (%s?): "
1440 (mapconcat (lambda (s) (char-to-string (car s)))
1441 wl-score-edit-header-char ""))
1442 (setq hchar (read-char))
1443 (when (or (= hchar ??) (= hchar ?\C-h))
1445 (wl-score-insert-help "Match on header"
1446 wl-score-edit-header-char 1)))
1447 (wl-score-kill-help-buffer)
1448 (unless (setq entry (assq (downcase hchar)
1449 wl-score-edit-header-char))
1450 (error "Invalid match type")))
1452 (wl-score-kill-help-buffer)
1453 (let* ((header (nth 1 entry))
1454 (value (wl-score-edit-get-header header)))
1455 (and value (prin1 value (current-buffer)))))))
1457 (defun wl-score-edit-insert-header-entry ()
1460 (goto-char (point-min))
1461 (setq form (and (not (zerop (buffer-size)))
1463 (read (current-buffer))
1464 (error "Invalid syntax"))))
1465 (setq entry (wl-score-get-header-entry 'wl-score-edit-get-header))
1466 (unless (eq (nth 2 (nth 1 entry)) 'now)
1468 (wl-score-update-score-entry (car entry) (nth 1 entry) form)
1469 (setq form (list entry)))
1471 (let ((emacs-lisp-mode-syntax-table wl-score-mode-syntax-table))
1472 (pp form (current-buffer)))
1473 (goto-char (point-min)))))
1476 (product-provide (provide 'wl-score) (require 'wl-version))
1478 ;;; wl-score.el ends here