+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
;; 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))