From 5a77e0c3b00f8671d695cce9d73d4e19ed407381 Mon Sep 17 00:00:00 2001 From: keiichi Date: Wed, 28 Apr 1999 05:01:54 +0000 Subject: [PATCH] (gnus-bbdb/split-mail): New function. Modify my mail address. --- lisp/gnus-bbdb.el | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/lisp/gnus-bbdb.el b/lisp/gnus-bbdb.el index e5f5515..a946d96 100644 --- a/lisp/gnus-bbdb.el +++ b/lisp/gnus-bbdb.el @@ -3,9 +3,9 @@ ;; Copyright (c) 1991,1992,1993 Jamie Zawinski . ;; Copyright (C) 1995,1996,1997 Shuhei KOBAYASHI ;; Copyright (C) 1997,1998 MORIOKA Tomohiko -;; Copyright (C) 1998 Keiichi Suzuki +;; Copyright (C) 1998,1999 Keiichi Suzuki -;; Author: Keiichi Suzuki +;; Author: Keiichi Suzuki ;; Author: Shuhei KOBAYASHI ;; Keywords: BBDB, MIME, multimedia, multilingual, mail, news @@ -144,6 +144,39 @@ displaying the record corresponding to the sender of the current message." (set-buffer b) record))) +;;;###autoload +(defun gnus-bbdb/split-mail (header-filed bbdb-field &optional regexp group) + "Mail split method for `nnmail-split-fancy'. +HEADER-FILED is regexp of mail header field name for gathering mail +addresses. BBDB-FIELD is field name of BBDB. +Optional argument REGEXP is regexp of matching BBDB-FIELD value. +If REGEXP is nil or not specified, then all BBDB-FIELD value is match. +If GROUP is nil or not specified, then use BBDB-FIELD value as group +name. Otherwise use GROUP." + (or regexp (setq regexp "")) + (let ((pat (concat "\\(" header-filed "\\)" ":[ \t]")) + rest prop answer) + (goto-char (point-min)) + (catch 'done + (while (< (point) (point-max)) + (when (looking-at pat) + (mapcar + (lambda (lal) + (condition-case nil + (let ((prop (bbdb-record-getprop + (bbdb-search-simple nil + (std11-address-string lal)) + bbdb-field))) + (and (string-match regexp prop) + (throw 'done (or group prop)))) + (error nil) + )) + (std11-parse-addresses-string (buffer-substring (match-end 0) + (std11-field-end))) + )) + (forward-line) + )))) + ;; ;; Announcing BBDB entries in the summary buffer ;; -- 1.7.10.4