+2005-11-22 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
+ of current-time-string.
+
+2005-11-20 Stefan Schimanski <schimmi@debian.org> (tiny change)
+
+ * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
+ date header.
+
2005-11-19 Kevin Greiner <kevin.greiner@compsol.cc>
* gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
2005-11-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
- * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
+ * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
2005-11-16 Boris Samorodov <bsam@ipt.ru> (tiny patch)
(case-fold-search nil)
(from (or (message-fetch-field "from") ""))
(to (or (message-fetch-field "to") ""))
- (date (date-to-time
- (or (message-fetch-field "date") (current-time-string))))
+ (date (message-fetch-field "date"))
(target 'delete))
+ (setq date (if date
+ (condition-case err
+ (date-to-time date)
+ (error
+ (message "%s" (error-message-string err))
+ (current-time)))
+ (current-time)))
(dolist (regexp-target-pair (reverse nnmail-fancy-expiry-targets) target)
(setq header (car regexp-target-pair))
(cond