1 -*- mode: text; fill-column: 70; -*-
4 BBDB
\e$B$r;HMQ$5$l$F$$$kJ}$O!"
\e(B bbdb-gnus.elc
\e$B$r
\e(B Semi-gnus 6.8.X
\e$B0JA0$N$b
\e(B
5 \e$B$N$H6&M-$9$k$3$H$O$G$-$^$;$s!#I,$:!"
\e(B byte-compile
\e$B$7D>$7$F$/$@$5$$!#
\e(B
7 ;; gnus
\e$B$r5/F0$7$?$"$H$G!"
\e(B bbdb-gnus.el
\e$B$N$_$r
\e(B byte-compile
\e$B$9$k$H$$$&
\e(B
8 ;;
\e$B$N$,$*<j7Z$G$9!#
\e(B :-)
13 Semi-gnus
\e$B$KFC2=$7$?
\e(B BBDB API
\e$B%b%8%e!<%k$G$9!#$3$N%b%8%e!<%k$r;HMQ$9$k
\e(B
14 \e$B$3$H$K$h$C$F!"
\e(B Semi-gnus
\e$B$G;HMQ$9$k>l9g$K$O
\e(B mime-bbdb
\e$B$,ITMW$K$J$j$^$9!#
\e(B
16 1.11.3
\e$B0J9_$N
\e(B FLIM
\e$B$,I,MW$G$9!#
\e(B
18 bbdb-auto-notes-hook
\e$B$r;HMQ$7$F$$$J$$J}$K$OITMW$G$9$,!";HMQ$7$F$$$kJ}
\e(B
19 \e$B$O
\e(B bbdb.el / bbdb-hooks.el
\e$B$K$3$N%U%!%$%k$N:G8e$K$"$k
\e(B patch
\e$B$r$"$F$kI,
\e(B
20 \e$BMW$,$"$j$^$9!#
\e(B
24 ;; mime-bbdb
\e$B$K4X$9$k@_Dj$OITMW$G$9!#
\e(B
25 ;(setq mime-bbdb/use-mail-extr nil)
26 ;(eval-after-load "mail-extr" '(require 'mime-bbdb))
30 (bbdb-initialize 'sc) ;; 'gnus / 'Gnus
\e$B$O$O$:$7$F$/$@$5$$!#
\e(B
31 (add-hook 'gnus-startup-hook 'gnus-bbdb-insinuate)
32 (add-hook 'message-setup-hook 'gnus-bbdb-insinuate-message)
34 FLIM
\e$B$G$O
\e(B quote
\e$B$5$l$?
\e(B eword encoded word
\e$B$O
\e(B decode
\e$B$5$l$^$;$s$,!"$=$l
\e(B
35 \e$B$r6/@)E*$K
\e(B decode
\e$B$7$?$$>l9g$K$O!"<!$N@_Dj$r2C$($F$/$@$5$$!#
\e(B
37 (setq gnus-bbdb/decode-field-body-function
39 (lambda (field-body field-name)
40 (eword-decode-string field-body))))
43 \e$B0J2<$O
\e(B bbdb-com.el
\e$B!"
\e(Bbbdb-hooks.el
\e$B$*$h$S
\e(B bbdb.el
\e$B$K$"$F$k
\e(B patch
\e$B$G$9!#
\e(B
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
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))
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
62 +(eval-when-compile (require 'cl))
68 field pairs fieldval ; do all bindings here for speed
69 regexp string notes-field-name notes
71 + replace-p extract-field-value-funtion)
72 (set-buffer (marker-buffer 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)
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)
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.
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))
102 (string-match regexp fieldval))
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
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
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)
122 (defvar bbdb-debug t)
123 (defmacro bbdb-debug (&rest body)
124 ------ cut here ------ cut here ------ cut here ------ cut here ------
127 gnus-bbdb/split-mail()
129 nnmail-split-fancy
\e$B$G;HMQ$9$k$?$a$N4X?t$G$9!#<!$N$h$&$K;HMQ$7$F$/$@$5$$!#
\e(B
131 (setq nnmail-split-methods 'nnmail-split-fancy
135 *1 (: gnus-bbdb/split-mail "from\\|to\\|cc"
136 'company "foo" "foo-group")
138 *2 (: gnus-bbdb/split-mail "from\\|to\\|cc" 'company "^bar")
140 *3 (: gnus-bbdb/split-mail "from\\|to\\|cc" 'group)
142 *4 (: gnus-bbdb/split-mail "from\\|to\\|cc" 'note "my friend"
148 *1 : From, To, Cc
\e$B$$$:$l$+$N%X%C%@!<!&%U%#!<%k%I$K4^$^$l$k%a%$%k!&%"%I
\e(B
149 \e$B%l%9$N$&$A
\e(B BBDB
\e$B$N
\e(B `company'
\e$B%U%#!<%k%I$K
\e(B `foo'
\e$B$,4^$^$l$k>l9g!"
\e(B
150 `foo-group'
\e$B$K?6$jJ,$1$^$9!#
\e(B
152 *2 : `company'
\e$B%U%#!<%k%I$,
\e(B `bar'
\e$B$G;O$^$C$F$$$k>l9g!"
\e(B`company'
\e$B%U%#!<
\e(B
153 \e$B%k%I$NFbMF$r$=$N$^$^%0%k!<%WL>$H$7$F;HMQ$7!"?6$jJ,$1$^$9!#
\e(B
155 *3 : `group'
\e$B%U%#!<%k%I$,$"$k>l9g!"
\e(B`group'
\e$B%U%#!<%k%I$NFbMF$r$=$N$^$^
\e(B
156 \e$B%0%k!<%WL>$H$7$F;HMQ$7!"?6$jJ,$1$^$9!#
\e(B
158 *4 : `note'
\e$B%U%#!<%k%I$K
\e(B `my friend'
\e$B$,4^$^$l$k>l9g!"$=$N8e$m$K;XDj$5
\e(B
159 \e$B$l$?5,B'$G?6$jJ,$1$^$9!#$3$N5,B'$N5-=RJ}K!$O!"DL>o$N
\e(B
160 `nnmail-split-fancy'
\e$B$G$N5-=RJ}K!$HF1$8$b$N$G$9!#
\e(B