Please send Gnus bug reports to bugs@gnus.org.
For older news, see Gnus info node "New Features".
+
\f
* Changes in No Gnus
+./gnus-news.texi:23: Cross reference to nonexistent node `RSS' (perhaps incorrect sectioning?).
+This file contains a list of news features Gnus. It is supposed to be
+included in `gnus.texi'. `GNUS-NEWS' is automatically generated from this
+file (see `gnus-news.el').
+
+** You can import and export your RSS subscriptions from OPML files.
+*Note RSS::.
+
+** The option `mm-fill-flowed' can be used to disable treatment of
+format=flowed messages. Also, flowed text is disabled when sending
+inline PGP signed messages.
+
+** You can now drag and drop attachments to the Message buffer.
+
+** `/ r' limits the summary buffer to replied articles.
+
+** ANSI SGR control sequences can be transformed using `W A'.
+
+ANSI sequences are used in some Chinese hierarchies for highlighting
+articles (`gnus-article-treat-ansi-sequences').
+
** Gnus includes an Emacs Lisp SASL library.
This provide a clean API to SASL mechanisms from within Emacs. The
** IMAP identity (RFC 2971) is supported.
By default, Gnus do not send any information about itself, but you can
-customize it via the variable `nnimap-id'.
+customize it using the variable `nnimap-id'.
-** The "all.SCORE" file can now be edited from the group buffer using `W e'.
+** The `all.SCORE' file can be edited from the group buffer using `W e'.
-** The prompt for creating new groups (`G m') now auto complete known groups.
+** Gnus now MIME decode articles even when they lack "MIME-Version"
+header. This changes the default of `gnus-article-loose-mime'.
\f
* For older news, see Gnus info node "New Features".
+2004-08-06 Teodor Zlatanov <tzz@lifelogs.com>
+
+ * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
+ (gnus-encrypt-write-file-contents): the password key is the file
+ name PLUS the cipher, not just the cipher. Also remove failed
+ passwords from the cache.
+
+2004-08-06 Simon Josefsson <jas@extundo.com>
+
+ * gnus-sum.el (gnus-article-loose-mime): Change default to t. Doc
+ fix.
+
2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org>
* rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
(let* ((model (or model (gnus-encrypt-find-model file)))
(method (nth 0 model))
(cipher (nth 1 model))
- (password-key (format "gnus-encrypt-password-%s-%s"
- (symbol-name method) cipher))
+ (password-key (format "gnus-encrypt-password-%s-%s %s"
+ (symbol-name method) cipher file))
(passphrase
(password-read-and-add
(format "%s password for cipher %s? "
(delete-region (point-min) (point-max))
(goto-char (point-min))
(insert outdata))
+ ;; the decryption failed, alas
+ (password-cache-remove password-key)
(gnus-error 5 "%s was NOT decrypted with %s (cipher %s)"
file (symbol-name method) cipher))))
(let* ((model (or model (gnus-encrypt-find-model file)))
(method (nth 0 model))
(cipher (nth 1 model))
+ (password-key (format "gnus-encrypt-password-%s-%s %s"
+ (symbol-name method) cipher file))
(passphrase
(password-read
(format "%s password for cipher %s? "
(symbol-name method) cipher)
- (format "gnus-encrypt-password-%s-%s"
- (symbol-name method) cipher)))
+ password-key))
outdata)
(cond
(insert outdata)
;; do not confirm overwrites
(write-file file nil))
+ ;; the decryption failed, alas
+ (password-cache-remove password-key)
(gnus-error 5 "%s was NOT encrypted with %s (cipher %s)"
file (symbol-name method) cipher))))
:group 'gnus-summary
:type 'string)
-(defcustom gnus-article-loose-mime nil
+(defcustom gnus-article-loose-mime t
"If non-nil, don't require MIME-Version header.
Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
-supply the MIME-Version header or deliberately strip it From the mail.
-Set it to non-nil, Gnus will treat some articles as MIME even if
-the MIME-Version header is missed."
+supply the MIME-Version header or deliberately strip it from the mail.
+If non-nil (the default), Gnus will treat some articles as MIME
+even if the MIME-Version header is missing."
:version "21.3"
:type 'boolean
:group 'gnus-article-mime)
+2004-08-06 Simon Josefsson <jas@extundo.com>
+
+ * gnus-news.el (gnus-news-header-disclaimer): Fix.
+
+ * gnus-news.texi: Add.
+
2004-07-22 Katsumi Yamaoka <yamaoka@jpl.org>
* emacs-mime.texi (rfc2047): Update.
See the end for copying conditions.
Please send Gnus bug reports to bugs\@gnus.org.
+For older news, see Gnus info node \"New Features\".
+
\f
* Changes in No Gnus
@item @acronym{IMAP} identity (@acronym{RFC} 2971) is supported.
By default, Gnus do not send any information about itself, but you can
-customize it using @code{nnimap-id}.
+customize it using the variable @code{nnimap-id}.
-@item The @file{all.SCORE} file can now be edited from the group buffer
+@item The @file{all.SCORE} file can be edited from the group buffer
using @kbd{W e}.
+@item Gnus now MIME decode articles even when they lack "MIME-Version" header.
+This changes the default of @code{gnus-article-loose-mime}.
+
@end itemize
@c gnus-news.texi ends here.