X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=elmo%2Felmo-split.el;h=57bf96692581818475b392bad6343ff81b135f9e;hb=5ec9ac1111a819ff902b00ab3299ff0062fd19e1;hp=8d90e499194af84d7e400c2c572f91248bf36b17;hpb=48b3ebddbfa6af100c6bcada723047e111d28ab9;p=elisp%2Fwanderlust.git diff --git a/elmo/elmo-split.el b/elmo/elmo-split.el index 8d90e49..57bf966 100644 --- a/elmo/elmo-split.el +++ b/elmo/elmo-split.el @@ -37,9 +37,14 @@ ;; according to the definition of `elmo-split-rule'. ;; +;;; Code: +(eval-when-compile (require 'cl)) (require 'elmo) -;;; Code: +(eval-when-compile + ;; Avoid compile warnings + (require 'elmo-spam)) + (defcustom elmo-split-rule nil "Split rule for the command `elmo-split'. The format of this variable is a list of RULEs which has form like: @@ -72,7 +77,15 @@ FIELD-NAME is a symbol of the field name. `or' ... True if one of the argument returns true. `and' ... True if all of the arguments return true. -4. A symbol. +`spam-p' ... True if contents of the message is guessed as spam. + Rest arguments are property list which consists + following. + + `:register' ... If this value is non-nil, + Register according to + the classification. + +5. A symbol. When a symbol is specified, it is evaluated. @@ -117,7 +130,8 @@ Example: :group 'elmo) (defcustom elmo-split-default-action 'noop - "Default action for messages which pass all rules." + "Default action for messages which pass all rules. +It can be some ACTION as in `elmo-split-rule'." :type '(choice (const :tag "do not touch" noop) (const :tag "delete" delete) (string :tag "folder name") @@ -210,6 +224,12 @@ Example: (symbol-name field))))) (equal field-value value)))) +(defun elmo-split-spam-p (buffer &rest plist) + (require 'elmo-spam) + (elmo-spam-buffer-spam-p (elmo-spam-processor) + buffer + (plist-get plist :register))) + (defun elmo-split-match (buffer field value) (with-current-buffer buffer (let ((field-value (and elmo-split-message-entity @@ -271,7 +291,8 @@ If prefix argument ARG is specified, do a reharsal (no harm)." (format "%d messages are splitted" count))) (if (eq fcount 0) "." - (format " (%d failure)." fcount)))))) + (format " (%d failure)." fcount)))) + count)) (defun elmo-split-subr (folder &optional reharsal) (let ((elmo-inhibit-display-retrieval-progress t) @@ -279,7 +300,7 @@ If prefix argument ARG is specified, do a reharsal (no harm)." (fcount 0) (default-rule `((t ,elmo-split-default-action))) msgs action target-folder failure delete-substance - record-log log-string) + record-log log-string flags) (message "Splitting...") (elmo-folder-open-internal folder) (setq msgs (elmo-folder-list-messages folder)) @@ -293,7 +314,11 @@ If prefix argument ARG is specified, do a reharsal (no harm)." (elmo-message-fetch folder msg (elmo-make-fetch-strategy 'entire) nil (current-buffer) 'unread)) + (run-hooks 'elmo-split-fetch-hook) (setq elmo-split-message-entity (mime-parse-buffer)) + (setq flags (or (elmo-message-flags folder msg) + (and (elmo-message-entity folder msg) + '(read)))) (catch 'terminate (dolist (rule (append elmo-split-rule default-rule)) (setq elmo-split-match-string-internal nil) @@ -325,7 +350,10 @@ If prefix argument ARG is specified, do a reharsal (no harm)." action))) (elmo-folder-create target-folder))) (elmo-folder-open-internal target-folder) - (elmo-folder-append-buffer target-folder 'unread) + (setq failure (not + (elmo-folder-append-buffer + target-folder + flags))) (elmo-folder-close-internal target-folder)) (error (setq failure t) (incf fcount))) @@ -369,7 +397,7 @@ If prefix argument ARG is specified, do a reharsal (no harm)." " Test: do nothing\n") ((function action) (format " Test: function:%s\n" - (symbol-name action))) + (prin1-to-string action))) (t " ERROR: wrong action specified\n")) (cond