*** empty log message ***
[gnus] / lisp / gnus-kill.el
1 ;;; gnus-kill.el --- kill commands for Gnus
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
3
4 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
5 ;;      Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'gnus)
30 (eval-when-compile (require 'cl))
31
32 (defvar gnus-kill-file-mode-hook nil
33   "*A hook for Gnus kill file mode.")
34
35 (defvar gnus-kill-expiry-days 7
36   "*Number of days before expiring unused kill file entries.")
37
38 (defvar gnus-kill-save-kill-file nil
39   "*If non-nil, will save kill files after processing them.")
40
41 (defvar gnus-winconf-kill-file nil)
42
43 \f
44
45 (defmacro gnus-raise (field expression level)
46   `(gnus-kill ,field ,expression
47               (function (gnus-summary-raise-score ,level)) t))
48
49 (defmacro gnus-lower (field expression level)
50   `(gnus-kill ,field ,expression
51               (function (gnus-summary-raise-score (- ,level))) t))
52
53 ;;;
54 ;;; Gnus Kill File Mode
55 ;;;
56
57 (defvar gnus-kill-file-mode-map nil)
58
59 (unless gnus-kill-file-mode-map
60   (gnus-define-keymap
61    (setq gnus-kill-file-mode-map (copy-keymap emacs-lisp-mode-map))
62    "\C-c\C-k\C-s" gnus-kill-file-kill-by-subject
63    "\C-c\C-k\C-a" gnus-kill-file-kill-by-author
64    "\C-c\C-k\C-t" gnus-kill-file-kill-by-thread
65    "\C-c\C-k\C-x" gnus-kill-file-kill-by-xref
66    "\C-c\C-a" gnus-kill-file-apply-buffer
67    "\C-c\C-e" gnus-kill-file-apply-last-sexp
68    "\C-c\C-c" gnus-kill-file-exit))
69
70 (defun gnus-kill-file-mode ()
71   "Major mode for editing kill files.
72
73 If you are using this mode - you probably shouldn't.  Kill files
74 perform badly and paint with a pretty broad brush.  Score files, on
75 the other hand, are vastly faster (40x speedup) and give you more
76 control over what to do.
77
78 In addition to Emacs-Lisp Mode, the following commands are available:
79
80 \\{gnus-kill-file-mode-map}
81
82   A kill file contains Lisp expressions to be applied to a selected
83 newsgroup.  The purpose is to mark articles as read on the basis of
84 some set of regexps.  A global kill file is applied to every newsgroup,
85 and a local kill file is applied to a specified newsgroup.  Since a
86 global kill file is applied to every newsgroup, for better performance
87 use a local one.
88
89   A kill file can contain any kind of Emacs Lisp expressions expected
90 to be evaluated in the Summary buffer.  Writing Lisp programs for this
91 purpose is not so easy because the internal working of Gnus must be
92 well-known.  For this reason, Gnus provides a general function which
93 does this easily for non-Lisp programmers.
94
95   The `gnus-kill' function executes commands available in Summary Mode
96 by their key sequences. `gnus-kill' should be called with FIELD,
97 REGEXP and optional COMMAND and ALL.  FIELD is a string representing
98 the header field or an empty string.  If FIELD is an empty string, the
99 entire article body is searched for.  REGEXP is a string which is
100 compared with FIELD value. COMMAND is a string representing a valid
101 key sequence in Summary mode or Lisp expression. COMMAND defaults to
102 '(gnus-summary-mark-as-read nil \"X\").  Make sure that COMMAND is
103 executed in the Summary buffer.  If the second optional argument ALL
104 is non-nil, the COMMAND is applied to articles which are already
105 marked as read or unread.  Articles which are marked are skipped over
106 by default.
107
108   For example, if you want to mark articles of which subjects contain
109 the string `AI' as read, a possible kill file may look like:
110
111         (gnus-kill \"Subject\" \"AI\")
112
113   If you want to mark articles with `D' instead of `X', you can use
114 the following expression:
115
116         (gnus-kill \"Subject\" \"AI\" \"d\")
117
118 In this example it is assumed that the command
119 `gnus-summary-mark-as-read-forward' is assigned to `d' in Summary Mode.
120
121   It is possible to delete unnecessary headers which are marked with
122 `X' in a kill file as follows:
123
124         (gnus-expunge \"X\")
125
126   If the Summary buffer is empty after applying kill files, Gnus will
127 exit the selected newsgroup normally.  If headers which are marked
128 with `D' are deleted in a kill file, it is impossible to read articles
129 which are marked as read in the previous Gnus sessions.  Marks other
130 than `D' should be used for articles which should really be deleted.
131
132 Entry to this mode calls emacs-lisp-mode-hook and
133 gnus-kill-file-mode-hook with no arguments, if that value is non-nil."
134   (interactive)
135   (kill-all-local-variables)
136   (use-local-map gnus-kill-file-mode-map)
137   (set-syntax-table emacs-lisp-mode-syntax-table)
138   (setq major-mode 'gnus-kill-file-mode)
139   (setq mode-name "Kill")
140   (lisp-mode-variables nil)
141   (run-hooks 'emacs-lisp-mode-hook 'gnus-kill-file-mode-hook))
142
143 (defun gnus-kill-file-edit-file (newsgroup)
144   "Begin editing a kill file for NEWSGROUP.
145 If NEWSGROUP is nil, the global kill file is selected."
146   (interactive "sNewsgroup: ")
147   (let ((file (gnus-newsgroup-kill-file newsgroup)))
148     (gnus-make-directory (file-name-directory file))
149     ;; Save current window configuration if this is first invocation.
150     (or (and (get-file-buffer file)
151              (get-buffer-window (get-file-buffer file)))
152         (setq gnus-winconf-kill-file (current-window-configuration)))
153     ;; Hack windows.
154     (let ((buffer (find-file-noselect file)))
155       (cond ((get-buffer-window buffer)
156              (pop-to-buffer buffer))
157             ((eq major-mode 'gnus-group-mode)
158              (gnus-configure-windows 'group) ;Take all windows.
159              (pop-to-buffer buffer))
160             ((eq major-mode 'gnus-summary-mode)
161              (gnus-configure-windows 'article)
162              (pop-to-buffer gnus-article-buffer)
163              (bury-buffer gnus-article-buffer)
164              (switch-to-buffer buffer))
165             (t                          ;No good rules.
166              (find-file-other-window file))))
167     (gnus-kill-file-mode)))
168
169 ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>.
170 (defun gnus-kill-set-kill-buffer ()
171   (let* ((file (gnus-newsgroup-kill-file gnus-newsgroup-name))
172          (buffer (find-file-noselect file)))
173     (set-buffer buffer)
174     (gnus-kill-file-mode)
175     (bury-buffer buffer)))
176
177 (defun gnus-kill-file-enter-kill (field regexp)
178   ;; Enter kill file entry.
179   ;; FIELD: String containing the name of the header field to kill.
180   ;; REGEXP: The string to kill.
181   (save-excursion
182     (let (string)
183       (or (eq major-mode 'gnus-kill-file-mode)
184           (gnus-kill-set-kill-buffer))
185       (current-buffer)
186       (goto-char (point-max))
187       (insert (setq string (format "(gnus-kill %S %S)\n" field regexp)))
188       (gnus-kill-file-apply-string string))))
189     
190 (defun gnus-kill-file-kill-by-subject ()
191   "Kill by subject."
192   (interactive)
193   (gnus-kill-file-enter-kill
194    "Subject" 
195    (if (vectorp gnus-current-headers)
196        (regexp-quote 
197         (gnus-simplify-subject (mail-header-subject gnus-current-headers)))
198      "")))
199   
200 (defun gnus-kill-file-kill-by-author ()
201   "Kill by author."
202   (interactive)
203   (gnus-kill-file-enter-kill
204    "From" 
205    (if (vectorp gnus-current-headers)
206        (regexp-quote (mail-header-from gnus-current-headers))
207      "")))
208  
209 (defun gnus-kill-file-kill-by-thread ()
210   "Kill by author."
211   (interactive)
212   (gnus-kill-file-enter-kill
213    "References" 
214    (if (vectorp gnus-current-headers)
215        (regexp-quote (mail-header-id gnus-current-headers))
216      "")))
217  
218 (defun gnus-kill-file-kill-by-xref ()
219   "Kill by Xref."
220   (interactive)
221   (let ((xref (and (vectorp gnus-current-headers) 
222                    (mail-header-xref gnus-current-headers)))
223         (start 0)
224         group)
225     (if xref
226         (while (string-match " \\([^ \t]+\\):" xref start)
227           (setq start (match-end 0))
228           (if (not (string= 
229                     (setq group 
230                           (substring xref (match-beginning 1) (match-end 1)))
231                     gnus-newsgroup-name))
232               (gnus-kill-file-enter-kill 
233                "Xref" (concat " " (regexp-quote group) ":"))))
234       (gnus-kill-file-enter-kill "Xref" ""))))
235
236 (defun gnus-kill-file-raise-followups-to-author (level)
237   "Raise score for all followups to the current author."
238   (interactive "p")
239   (let ((name (mail-header-from gnus-current-headers))
240         string)
241     (save-excursion
242       (gnus-kill-set-kill-buffer)
243       (goto-char (point-min))
244       (setq name (read-string (concat "Add " level
245                                       " to followup articles to: ")
246                               (regexp-quote name)))
247       (setq 
248        string
249        (format
250         "(gnus-kill %S %S '(gnus-summary-temporarily-raise-by-thread %S))\n"
251         "From" name level))
252       (insert string)
253       (gnus-kill-file-apply-string string))
254     (gnus-message 
255      6 "Added temporary score file entry for followups to %s." name)))
256
257 (defun gnus-kill-file-apply-buffer ()
258   "Apply current buffer to current newsgroup."
259   (interactive)
260   (if (and gnus-current-kill-article
261            (get-buffer gnus-summary-buffer))
262       ;; Assume newsgroup is selected.
263       (gnus-kill-file-apply-string (buffer-string))
264     (ding) (gnus-message 2 "No newsgroup is selected.")))
265
266 (defun gnus-kill-file-apply-string (string)
267   "Apply STRING to current newsgroup."
268   (interactive)
269   (let ((string (concat "(progn \n" string "\n)")))
270     (save-excursion
271       (save-window-excursion
272         (pop-to-buffer gnus-summary-buffer)
273         (eval (car (read-from-string string)))))))
274
275 (defun gnus-kill-file-apply-last-sexp ()
276   "Apply sexp before point in current buffer to current newsgroup."
277   (interactive)
278   (if (and gnus-current-kill-article
279            (get-buffer gnus-summary-buffer))
280       ;; Assume newsgroup is selected.
281       (let ((string
282              (buffer-substring
283               (save-excursion (forward-sexp -1) (point)) (point))))
284         (save-excursion
285           (save-window-excursion
286             (pop-to-buffer gnus-summary-buffer)
287             (eval (car (read-from-string string))))))
288     (ding) (gnus-message 2 "No newsgroup is selected.")))
289
290 (defun gnus-kill-file-exit ()
291   "Save a kill file, then return to the previous buffer."
292   (interactive)
293   (save-buffer)
294   (let ((killbuf (current-buffer)))
295     ;; We don't want to return to article buffer.
296     (and (get-buffer gnus-article-buffer)
297          (bury-buffer gnus-article-buffer))
298     ;; Delete the KILL file windows.
299     (delete-windows-on killbuf)
300     ;; Restore last window configuration if available.
301     (and gnus-winconf-kill-file
302          (set-window-configuration gnus-winconf-kill-file))
303     (setq gnus-winconf-kill-file nil)
304     ;; Kill the KILL file buffer.  Suggested by tale@pawl.rpi.edu.
305     (kill-buffer killbuf)))
306
307 ;; For kill files
308
309 (defun gnus-Newsgroup-kill-file (newsgroup)
310   "Return the name of a kill file for NEWSGROUP.
311 If NEWSGROUP is nil, return the global kill file instead."
312   (cond ((or (null newsgroup)
313              (string-equal newsgroup ""))
314          ;; The global kill file is placed at top of the directory.
315          (expand-file-name gnus-kill-file-name
316                            (or gnus-kill-files-directory "~/News")))
317         (gnus-use-long-file-name
318          ;; Append ".KILL" to capitalized newsgroup name.
319          (expand-file-name (concat (gnus-capitalize-newsgroup newsgroup)
320                                    "." gnus-kill-file-name)
321                            (or gnus-kill-files-directory "~/News")))
322         (t
323          ;; Place "KILL" under the hierarchical directory.
324          (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
325                                    "/" gnus-kill-file-name)
326                            (or gnus-kill-files-directory "~/News")))))
327
328 (defun gnus-expunge (marks)
329   "Remove lines marked with MARKS."
330   (save-excursion
331     (set-buffer gnus-summary-buffer)
332     (gnus-summary-limit-to-marks marks 'reverse)))
333
334 (defun gnus-apply-kill-file-internal ()
335   "Apply a kill file to the current newsgroup.
336 Returns the number of articles marked as read."
337   (let* ((kill-files (list (gnus-newsgroup-kill-file nil)
338                            (gnus-newsgroup-kill-file gnus-newsgroup-name)))
339          (unreads (length gnus-newsgroup-unreads))
340          (gnus-summary-inhibit-highlight t)
341          beg)
342     (setq gnus-newsgroup-kill-headers nil)
343     ;; If there are any previously scored articles, we remove these
344     ;; from the `gnus-newsgroup-headers' list that the score functions
345     ;; will see. This is probably pretty wasteful when it comes to
346     ;; conses, but is, I think, faster than having to assq in every
347     ;; single score function.
348     (let ((files kill-files))
349       (while files
350         (if (file-exists-p (car files))
351             (let ((headers gnus-newsgroup-headers))
352               (if gnus-kill-killed
353                   (setq gnus-newsgroup-kill-headers
354                         (mapcar (lambda (header) (mail-header-number header))
355                                 headers))
356                 (while headers
357                   (or (gnus-member-of-range 
358                        (mail-header-number (car headers)) 
359                        gnus-newsgroup-killed)
360                       (setq gnus-newsgroup-kill-headers 
361                             (cons (mail-header-number (car headers))
362                                   gnus-newsgroup-kill-headers)))
363                   (setq headers (cdr headers))))
364               (setq files nil))
365           (setq files (cdr files)))))
366     (if (not gnus-newsgroup-kill-headers)
367         ()
368       (save-window-excursion
369         (save-excursion
370           (while kill-files
371             (if (not (file-exists-p (car kill-files)))
372                 ()
373               (gnus-message 6 "Processing kill file %s..." (car kill-files))
374               (find-file (car kill-files))
375               (gnus-add-current-to-buffer-list)
376               (goto-char (point-min))
377
378               (if (consp (condition-case nil (read (current-buffer)) 
379                            (error nil)))
380                   (gnus-kill-parse-gnus-kill-file)
381                 (gnus-kill-parse-rn-kill-file))
382             
383               (gnus-message 
384                6 "Processing kill file %s...done" (car kill-files)))
385             (setq kill-files (cdr kill-files)))))
386
387       (gnus-set-mode-line 'summary)
388
389       (if beg
390           (let ((nunreads (- unreads (length gnus-newsgroup-unreads))))
391             (or (eq nunreads 0)
392                 (gnus-message 6 "Marked %d articles as read" nunreads))
393             nunreads)
394         0))))
395
396 ;; Parse a Gnus killfile.
397 (defun gnus-score-insert-help (string alist idx)
398   (save-excursion
399     (pop-to-buffer "*Score Help*")
400     (buffer-disable-undo (current-buffer))
401     (erase-buffer)
402     (insert string ":\n\n")
403     (while alist
404       (insert (format " %c: %s\n" (caar alist) (nth idx (car alist))))
405       (setq alist (cdr alist)))))
406
407 (defun gnus-kill-parse-gnus-kill-file ()
408   (goto-char (point-min))
409   (gnus-kill-file-mode)
410   (let (beg form)
411     (while (progn 
412              (setq beg (point))
413              (setq form (condition-case () (read (current-buffer))
414                           (error nil))))
415       (or (listp form)
416           (error "Illegal kill entry (possibly rn kill file?): %s" form))
417       (if (or (eq (car form) 'gnus-kill)
418               (eq (car form) 'gnus-raise)
419               (eq (car form) 'gnus-lower))
420           (progn
421             (delete-region beg (point))
422             (insert (or (eval form) "")))
423         (save-excursion
424           (set-buffer gnus-summary-buffer)
425           (condition-case () (eval form) (error nil)))))
426     (and (buffer-modified-p) 
427          gnus-kill-save-kill-file
428          (save-buffer))
429     (set-buffer-modified-p nil)))
430
431 ;; Parse an rn killfile.
432 (defun gnus-kill-parse-rn-kill-file ()
433   (goto-char (point-min))
434   (gnus-kill-file-mode)
435   (let ((mod-to-header
436          '((?a . "")
437            (?h . "")
438            (?f . "from")
439            (?: . "subject")))
440         (com-to-com
441          '((?m . " ")
442            (?j . "X")))
443         pattern modifier commands)
444     (while (not (eobp))
445       (if (not (looking-at "[ \t]*/\\([^/]*\\)/\\([ahfcH]\\)?:\\([a-z=:]*\\)"))
446           ()
447         (setq pattern (buffer-substring (match-beginning 1) (match-end 1)))
448         (setq modifier (if (match-beginning 2) (char-after (match-beginning 2))
449                          ?s))
450         (setq commands (buffer-substring (match-beginning 3) (match-end 3)))
451
452         ;; The "f:+" command marks everything *but* the matches as read,
453         ;; so we simply first match everything as read, and then unmark
454         ;; PATTERN later. 
455         (and (string-match "\\+" commands)
456              (progn
457                (gnus-kill "from" ".")
458                (setq commands "m")))
459
460         (gnus-kill 
461          (or (cdr (assq modifier mod-to-header)) "subject")
462          pattern 
463          (if (string-match "m" commands) 
464              '(gnus-summary-mark-as-unread nil " ")
465            '(gnus-summary-mark-as-read nil "X")) 
466          nil t))
467       (forward-line 1))))
468
469 ;; Kill changes and new format by suggested by JWZ and Sudish Joseph
470 ;; <joseph@cis.ohio-state.edu>.  
471 (defun gnus-kill (field regexp &optional exe-command all silent)
472   "If FIELD of an article matches REGEXP, execute COMMAND.
473 Optional 1st argument COMMAND is default to
474         (gnus-summary-mark-as-read nil \"X\").
475 If optional 2nd argument ALL is non-nil, articles marked are also applied to.
476 If FIELD is an empty string (or nil), entire article body is searched for.
477 COMMAND must be a lisp expression or a string representing a key sequence."
478   ;; We don't want to change current point nor window configuration.
479   (let ((old-buffer (current-buffer)))
480     (save-excursion
481       (save-window-excursion
482         ;; Selected window must be summary buffer to execute keyboard
483         ;; macros correctly. See command_loop_1.
484         (switch-to-buffer gnus-summary-buffer 'norecord)
485         (goto-char (point-min))         ;From the beginning.
486         (let ((kill-list regexp)
487               (date (current-time-string))
488               (command (or exe-command '(gnus-summary-mark-as-read 
489                                          nil gnus-kill-file-mark)))
490               kill kdate prev)
491           (if (listp kill-list)
492               ;; It is a list.
493               (if (not (consp (cdr kill-list)))
494                   ;; It's on the form (regexp . date).
495                   (if (zerop (gnus-execute field (car kill-list) 
496                                            command nil (not all)))
497                       (if (> (gnus-days-between date (cdr kill-list))
498                              gnus-kill-expiry-days)
499                           (setq regexp nil))
500                     (setcdr kill-list date))
501                 (while (setq kill (car kill-list))
502                   (if (consp kill)
503                       ;; It's a temporary kill.
504                       (progn
505                         (setq kdate (cdr kill))
506                         (if (zerop (gnus-execute 
507                                     field (car kill) command nil (not all)))
508                             (if (> (gnus-days-between date kdate)
509                                    gnus-kill-expiry-days)
510                                 ;; Time limit has been exceeded, so we
511                                 ;; remove the match.
512                                 (if prev
513                                     (setcdr prev (cdr kill-list))
514                                   (setq regexp (cdr regexp))))
515                           ;; Successful kill. Set the date to today.
516                           (setcdr kill date)))
517                     ;; It's a permanent kill.
518                     (gnus-execute field kill command nil (not all)))
519                   (setq prev kill-list)
520                   (setq kill-list (cdr kill-list))))
521             (gnus-execute field kill-list command nil (not all))))))
522     (switch-to-buffer old-buffer)
523     (if (and (eq major-mode 'gnus-kill-file-mode) regexp (not silent))
524         (gnus-pp-gnus-kill
525          (nconc (list 'gnus-kill field 
526                       (if (consp regexp) (list 'quote regexp) regexp))
527                 (if (or exe-command all) (list (list 'quote exe-command)))
528                 (if all (list t) nil))))))
529
530 (defun gnus-pp-gnus-kill (object)
531   (if (or (not (consp (nth 2 object)))
532           (not (consp (cdr (nth 2 object))))
533           (and (eq 'quote (car (nth 2 object)))
534                (not (consp (cdadr (nth 2 object))))))
535       (concat "\n" (prin1-to-string object))
536     (save-excursion
537       (set-buffer (get-buffer-create "*Gnus PP*"))
538       (buffer-disable-undo (current-buffer))
539       (erase-buffer)
540       (insert (format "\n(%S %S\n  '(" (nth 0 object) (nth 1 object)))
541       (let ((klist (cadr (nth 2 object)))
542             (first t))
543         (while klist
544           (insert (if first (progn (setq first nil) "")  "\n    ")
545                   (prin1-to-string (car klist)))
546           (setq klist (cdr klist))))
547       (insert ")")
548       (and (nth 3 object)
549            (insert "\n  " 
550                    (if (and (consp (nth 3 object))
551                             (not (eq 'quote (car (nth 3 object))))) 
552                        "'" "")
553                    (prin1-to-string (nth 3 object))))
554       (and (nth 4 object)
555            (insert "\n  t"))
556       (insert ")")
557       (prog1
558           (buffer-substring (point-min) (point-max))
559         (kill-buffer (current-buffer))))))
560
561 (defun gnus-execute-1 (function regexp form header)
562   (save-excursion
563     (let (did-kill)
564       (if (null header)
565           nil                           ;Nothing to do.
566         (if function
567             ;; Compare with header field.
568             (let (value)
569               (and header
570                    (progn
571                      (setq value (funcall function header))
572                      ;; Number (Lines:) or symbol must be converted to string.
573                      (or (stringp value)
574                          (setq value (prin1-to-string value)))
575                      (setq did-kill (string-match regexp value)))
576                    (cond ((stringp form)        ;Keyboard macro.
577                           (execute-kbd-macro form))
578                          ((gnus-functionp form)
579                           (funcall form))
580                          (t
581                           (eval form)))))
582           ;; Search article body.
583           (let ((gnus-current-article nil) ;Save article pointer.
584                 (gnus-last-article nil)
585                 (gnus-break-pages nil)  ;No need to break pages.
586                 (gnus-mark-article-hook nil)) ;Inhibit marking as read.
587             (gnus-message 
588              6 "Searching for article: %d..." (mail-header-number header))
589             (gnus-article-setup-buffer)
590             (gnus-article-prepare (mail-header-number header) t)
591             (if (save-excursion
592                   (set-buffer gnus-article-buffer)
593                   (goto-char (point-min))
594                   (setq did-kill (re-search-forward regexp nil t)))
595                 (if (stringp form)      ;Keyboard macro.
596                     (execute-kbd-macro form)
597                   (eval form))))))
598       did-kill)))
599
600 (defun gnus-execute (field regexp form &optional backward ignore-marked)
601   "If FIELD of article header matches REGEXP, execute lisp FORM (or a string).
602 If FIELD is an empty string (or nil), entire article body is searched for.
603 If optional 1st argument BACKWARD is non-nil, do backward instead.
604 If optional 2nd argument IGNORE-MARKED is non-nil, articles which are
605 marked as read or ticked are ignored."
606   (save-excursion
607     (let ((killed-no 0)
608           function article header)
609       (cond 
610        ;; Search body.
611        ((or (null field) 
612             (string-equal field ""))
613         (setq function nil))
614        ;; Get access function of header field.
615        ((fboundp
616          (setq function 
617                (intern-soft 
618                 (concat "mail-header-" (downcase field)))))
619         (setq function `(lambda (h) (,function h))))
620        ;; Signal error.
621        (t
622         (error "Unknown header field: \"%s\"" field)))
623       ;; Starting from the current article.
624       (while (or
625               ;; First article.
626               (and (not article)
627                    (setq article (gnus-summary-article-number)))
628               ;; Find later articles.
629               (setq article 
630                     (gnus-summary-search-forward 
631                      (not ignore-marked) nil backward)))
632         (and (or (null gnus-newsgroup-kill-headers)
633                  (memq article gnus-newsgroup-kill-headers))
634              (vectorp (setq header (gnus-summary-article-header article)))
635              (gnus-execute-1 function regexp form header)
636              (setq killed-no (1+ killed-no))))
637       ;; Return the number of killed articles.
638       killed-no)))
639
640 (provide 'gnus-kill)
641
642 ;;; gnus-kill.el ends here