(rmail-spam-filter): Only check white list if `message-sender' is non-nil.
This commit is contained in:
parent
63cd573484
commit
7c7d40755a
2 changed files with 13 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-11-12 Diane Murray <dsm@muenster.de> (tiny change)
|
||||
|
||||
* mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
|
||||
list if `message-sender' is non-nil.
|
||||
|
||||
2004-11-12 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
|
||||
|
||||
* desktop.el (desktop-create-buffer, desktop-save): Avoid some
|
||||
|
|
|
@ -302,13 +302,14 @@ it from rmail file. Called for each new message retrieved by
|
|||
|
||||
;; Check white list, and likewise cause while loop
|
||||
;; bypass.
|
||||
(if (let ((white-list rsf-white-list)
|
||||
(found nil))
|
||||
(while (and (not found) white-list)
|
||||
(if (string-match (car white-list) message-sender)
|
||||
(setq found t)
|
||||
(setq white-list (cdr white-list))))
|
||||
found)
|
||||
(if (and message-sender
|
||||
(let ((white-list rsf-white-list)
|
||||
(found nil))
|
||||
(while (and (not found) white-list)
|
||||
(if (string-match (car white-list) message-sender)
|
||||
(setq found t)
|
||||
(setq white-list (cdr white-list))))
|
||||
found))
|
||||
(setq exit-while-loop t
|
||||
maybe-spam nil
|
||||
this-is-a-spam-email nil))
|
||||
|
|
Loading…
Add table
Reference in a new issue