+2004-01-27 Simon Josefsson <jas@extundo.com>
+
+ * mm-view.el (mm-fill-flowed): Add.
+ (mm-inline-text): Use it. Tiny patch from Ralf Angeli
+ <dev.null@iwi.uni-sb.de>.
+
+2004-01-27 Teodor Zlatanov <tzz@lifelogs.com>
+
+ * spam.el (spam-spamassassin-register-ham-routine)
+ (spam-spamassassin-register-spam-routine): fixed function names
+
2004-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus.el (gnus-tmp-grouplens): Remove.
;;; mm-view.el --- functions for viewing MIME objects
-;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
;; This file is part of GNU Emacs.
(html2text html2text))
"The attributes of washer types for text/html.")
+(defcustom mm-fill-flowed t
+ "If non-nil an format=flowed article will be displayed flowed."
+ :type 'boolean
+ :group 'mime-display)
+
;;; Internal variables.
;;;
(mm-insert-part handle)
(goto-char (point-max)))
(insert (mm-decode-string (mm-get-part handle) charset)))
- (when (and (equal type "plain")
+ (when (and mm-fill-flowed
+ (equal type "plain")
(equal (cdr (assoc 'format (mm-handle-type handle)))
"flowed"))
(save-restriction
(defun spam-spamassassin-register-ham-routine (articles &optional unregister)
(spam-spamassassin-register-with-sa-learn articles nil unregister))
-(defun spam-assassin-register-spam-routine (articles)
+(defun spam-spamassassin-unregister-spam-routine (articles)
(spam-spamassassin-register-with-sa-learn articles t t))
-(defun spam-assassin-register-ham-routine (articles)
+(defun spam-spamassassin-unregister-ham-routine (articles)
(spam-spamassassin-register-with-sa-learn articles nil t))
\f
;;;; Hooks
+2004-01-27 Simon Josefsson <jas@extundo.com>
+
+ * emacs-mime.texi (Flowed text): Add.
+
2004-01-23 Teodor Zlatanov <tzz@lifelogs.com>
* gnus.texi (Spam ELisp Package Filtering of Incoming Mail):
This file documents the Emacs MIME interface functionality.
-Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
+Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
@code{fill-flowed-display-column}. The default is to wrap after
@code{fill-column}.
-
+@table @code
+@item mm-fill-flowed
+@findex mm-fill-flowed
+If non-nil an format=flowed article will be displayed flowed.
+@end table
@node Interface Functions