Don't include RCS magic cookie.
[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-com.el, bbdb-hooks.el and bbdb.el.
44
45 ------ cut here ------ cut here ------ cut here ------ cut here ------
46 --- bbdb-2.34/lisp/bbdb-com.el~ Tue Jan 15 23:00:57 2002
47 +++ bbdb-2.34/lisp/bbdb-com.el  Thu Jan 31 03:55:01 2002
48 @@ -1686,7 +1686,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.34/lisp/bbdb-hooks.el~       Tue Jan 15 09:00:11 2002
58 +++ bbdb-2.34/lisp/bbdb-hooks.el        Thu Jan 31 03:55:01 2002
59 @@ -36,4 +36,6 @@
60  ;;
61  
62 +(eval-when-compile (require 'cl))
63 +
64  (require 'bbdb)
65  (require 'bbdb-com)
66 @@ -405,13 +407,23 @@
67           ignore
68           field pairs fieldval  ; do all bindings here for speed
69           regexp string notes-field-name notes
70 -         replace-p)
71 +         replace-p extract-field-value-funtion)
72      (set-buffer (marker-buffer marker))
73      (save-restriction
74 -      (widen)
75 -      (goto-char marker)
76 -      (if (and (setq fieldval (bbdb-extract-field-value "From"))
77 -               (string-match (bbdb-user-mail-names) fieldval))
78 +      (let ((function-list bbdb-extract-field-value-function-list)
79 +           function)
80 +       (or (progn
81 +             (while (and (not extract-field-value-funtion)
82 +                         (setq function (car function-list)))
83 +               (setq extract-field-value-funtion (funcall function)
84 +                     function-list (cdr function-list)))
85 +             extract-field-value-funtion)
86 +           (progn
87 +             (widen)
88 +             (goto-char marker)
89 +             (setq extract-field-value-funtion 'bbdb-extract-field-value))))
90 +      (if (and (setq fieldval (funcall extract-field-value-funtion "From"))
91 +              (string-match (bbdb-user-mail-names) fieldval))
92            ;; Don't do anything if this message is from us.  Note that we have
93            ;; to look at the message instead of the record, because the record
94            ;; will be of the recipient of the message if it is from us.
95 @@ -421,7 +433,7 @@
96            (goto-char marker)
97            (setq field (car (car ignore-all))
98                  regexp (cdr (car ignore-all))
99 -                fieldval (bbdb-extract-field-value field))
100 +                fieldval (funcall extract-field-value-funtion field))
101            (if (and fieldval
102                     (string-match regexp fieldval))
103                (setq ignore t)
104 @@ -434,7 +446,8 @@
105                  pairs (cdr (car rest))  ; (REGEXP . STRING) or
106                                          ; (REGEXP FIELD-NAME STRING) or
107                                          ; (REGEXP FIELD-NAME STRING REPLACE-P)
108 -                fieldval (bbdb-extract-field-value field)) ; e.g., Subject line
109 +                fieldval (funcall extract-field-value-funtion field))
110 +                                        ; e.g., Subject line
111            (when fieldval
112              ;; we perform the auto notes stuff only for authors of a message
113              ;; or if explicitly requested
114 --- bbdb-2.34/lisp/bbdb.el~     Tue Jan 15 23:00:58 2002
115 +++ bbdb-2.34/lisp/bbdb.el      Thu Jan 31 03:55:01 2002
116 @@ -737,6 +737,7 @@
117  (defvar bbdb-showing-changed-ones nil)
118  (defvar bbdb-modified-p nil)
119  (defvar bbdb-address-print-formatting-alist) ; "bbdb-print"
120 +(defvar bbdb-extract-field-value-function-list nil)
121  
122  (defvar bbdb-debug t)
123  (defmacro bbdb-debug (&rest body)
124 ------ cut here ------ cut here ------ cut here ------ cut here ------
125
126 ---