Feeding back from `t-gnus-6_14' into `pgnus-ichikawa'.
[elisp/gnus.git-] / README-gnus-bbdb.en
1 -*- mode: text; fill-column: 70; -*-
2
3 ---
4  If BBDB is used then, bbdb-gnus.elc can't be shared with them before
5 Semi-gnus 6.8.X. It is necessary to byte-compile it again.
6
7 ;; It is a simple way that only bbdb-gnus.el is byte-compiled after
8 ;; gnus starts.
9
10 ---
11 gnus-bbdb.el
12
13  This is the BBDB API module for Semi-gnus. `mime-bbdb' should not be
14 necessary for Semi-gnus, if that module were used.
15
16  You need FLIM 1.11.3 or later.
17
18  If you are using bbdb-auto-notes-hook, the patch listed at the end
19 of this file should be applied. If not, it might not.
20
21  EXAMPLE:
22
23 ;; You need to set nothing for `mime-bbdb'.
24 ;(setq mime-bbdb/use-mail-extr nil)
25 ;(eval-after-load "mail-extr" '(require 'mime-bbdb))
26
27 (require 'bbdb)
28 (require 'gnus-bbdb)
29 (bbdb-initialize 'sc)  ;; 'Gnus or 'gnus should be deleted.
30 (add-hook 'gnus-startup-hook 'gnus-bbdb-insinuate)
31 (add-hook 'message-setup-hook 'gnus-bbdb-insinuate-message)
32
33  If you would like to decode the quoted encoded words forcibly, even
34 though FLIM does not decode them, put the following lines in your
35 .gnus file.
36
37 (setq gnus-bbdb/decode-field-body-function
38       (function
39        (lambda (field-body field-name)
40          (eword-decode-string field-body))))
41
42 ---
43  This is a patch for bbdb.el / bbdb-hooks.el.
44
45 ------ cut here ------ cut here ------ cut here ------ cut here ------
46 --- bbdb-2.32/lisp/bbdb-com.el~ Sun Feb 18 08:00:39 2001
47 +++ bbdb-2.32/lisp/bbdb-com.el  Sun Feb 18 08:00:39 2001
48 @@ -1620,7 +1620,7 @@
49            ;; to be enclosed in quotes.  Double-quotes and backslashes have
50            ;; already been escaped.  This quotes a few extra characters as
51            ;; well (!,%, and $) just for common sense.
52 -          ((string-match "[][\000-\037\177()<>@,;:.!$%]" name)
53 +         ((string-match "[][\000-\037\177<>@,;.!$%]" name)
54             (format "\"%s\" <%s>" name net))
55            (t
56             (format "%s <%s>" name net)))))
57 --- bbdb-2.32/lisp/bbdb-hooks.el~       Tue Jan 30 08:00:56 2001
58 +++ bbdb-2.32/lisp/bbdb-hooks.el        Tue Jan 30 08:00:56 2001
59 @@ -83,6 +83,8 @@
60  ;;
61  ;;
62  
63 +(eval-when-compile (require 'cl))
64 +
65  (require 'bbdb)
66  
67  (defmacro the-v18-byte-compiler-sucks-wet-farts-from-dead-pigeons ()
68 @@ -415,12 +417,23 @@
69           (marker (bbdb-header-start))
70           field pairs fieldval  ; do all bindings here for speed
71           regexp string notes-field-name notes
72 -         replace-p replace-or-add-msg)
73 +         replace-p replace-or-add-msg
74 +        extract-field-value-funtion)
75      (set-buffer (marker-buffer marker))
76      (save-restriction
77 -      (widen)
78 -      (goto-char marker)
79 -      (if (and (setq fieldval (bbdb-extract-field-value "From"))
80 +      (let ((function-list bbdb-extract-field-value-function-list)
81 +           function)
82 +       (or (progn
83 +             (while (and (not extract-field-value-funtion)
84 +                         (setq function (car function-list)))
85 +               (setq extract-field-value-funtion (funcall function)
86 +                     function-list (cdr function-list)))
87 +             extract-field-value-funtion)
88 +           (progn
89 +             (widen)
90 +             (goto-char marker)
91 +             (setq extract-field-value-funtion 'bbdb-extract-field-value))))
92 +      (if (and (setq fieldval (funcall extract-field-value-funtion "From"))
93                 (string-match (bbdb-user-mail-names) fieldval))
94            ;; Don't do anything if this message is from us.  Note that we have
95            ;; to look at the message instead of the record, because the record
96 @@ -431,7 +444,7 @@
97            (goto-char marker)
98            (setq field (car (car ignore-all))
99                  regexp (cdr (car ignore-all))
100 -                fieldval (bbdb-extract-field-value field))
101 +                fieldval (funcall extract-field-value-funtion field))
102            (if (and fieldval
103                     (string-match regexp fieldval))
104                (setq ignore t)
105 @@ -444,7 +457,8 @@
106                  pairs (cdr (car rest))  ; (REGEXP . STRING) or
107                                          ; (REGEXP FIELD-NAME STRING) or
108                                          ; (REGEXP FIELD-NAME STRING REPLACE-P)
109 -                fieldval (bbdb-extract-field-value field)) ; e.g., Subject line
110 +                fieldval (funcall extract-field-value-funtion field))
111 +                                        ; e.g., Subject line
112            (when fieldval
113              (while pairs
114                (setq regexp (car (car pairs))
115 --- bbdb-2.32/lisp/bbdb.el~     Sun Mar  4 20:30:09 2001
116 +++ bbdb-2.32/lisp/bbdb.el      Sun Mar  4 20:30:09 2001
117 @@ -710,6 +710,7 @@
118  (defvar bbdb-showing-changed-ones nil)
119  (defvar bbdb-modified-p nil)
120  (defvar bbdb-elided-display nil)
121 +(defvar bbdb-extract-field-value-function-list nil)
122  
123  (defvar bbdb-debug t)
124  (defmacro bbdb-debug (&rest body)
125 ------ cut here ------ cut here ------ cut here ------ cut here ------
126
127 ---