Synch to No Gnus 200501120840.
[elisp/gnus.git-] / lisp / ChangeLog
index bf27034..6d137f7 100644 (file)
@@ -1,3 +1,459 @@
+2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * nnrss.el (nnrss-request-delete-group): Delete entries in
+       nnrss-group-alist as well.
+       (nnrss-save-server-data): Inser newline.
+
+2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus.el (gnus-user-agent): Use list of symbols instead of
+       symbols.  Display full version number for (S)XEmacs.  Optionally
+       display (S)XEmacs codename.
+
+       * gnus-util.el (gnus-emacs-version): Update for new
+       `gnus-user-agent'.
+
+       * gnus-msg.el (gnus-extended-version): Make it possible to omit
+       Gnus version.
+
+2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
+       which is unreadable in some setups.
+
+2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-spec.el (gnus-update-format-specifications): Flush the
+       group format spec cache if it doesn't support decoded group names.
+
+2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-score.el (gnus-decay-scores, gnus-score-load-file): Allow
+       to apply decay on score files matching a regexp.
+
+2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-group-line-format-alist): Keep the forward
+       compatibility in %g and %c.
+
+2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-group-line-format-alist): Use decoded group
+       name for only %g and %c.
+       (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
+       of gnus-tmp-group to decoded group name.
+       (gnus-group-make-rss-group): Exclude `/'s from group names.
+
+2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * nnrss.el (nnrss-get-encoding): Fix regexp.
+
+2004-12-27  Simon Josefsson  <jas@extundo.com>
+
+       * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used
+       when mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME)
+       and we have trailing white space.  Reported by Werner Koch
+       <wk@gnupg.org>.
+
+2004-12-17  Kim F. Storm  <storm@cua.dk>
+
+       * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
+
+       * gnus-sum.el (gnus-summary-mode-map): Likewise.
+
+2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
+
+       * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
+
+2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * nnrss.el: Require rfc2047 and mml.
+       (nnrss-file-coding-system): New variable.
+       (nnrss-format-string): Redefine it as an inline function.
+       (nnrss-decode-group-name): New function.
+       (nnrss-string-as-multibyte): Remove.
+       (nnrss-retrieve-headers): Decode group name; don't use
+       nnrss-format-string.
+       (nnrss-request-group): Decode group name.
+       (nnrss-request-article): Decode group name; allow a Message-ID as
+       well as an article number; don't use nnrss-format-string; encode a
+       Message-ID string which may contain non-ASCII characters; use
+       mml-to-mime to compose a MIME article.
+       (nnrss-request-expire-articles): Decode group name.
+       (nnrss-request-delete-group): Decode group name.
+       (nnrss-fetch): Clarify error message.
+       (nnrss-read-server-data): Use insert-file-contents instead of load;
+       bind file-name-coding-system; use multibyte buffer.
+       (nnrss-save-server-data): Bind coding-system-for-write to the
+       value of nnrss-file-coding-system; bind file-name-coding-system;
+       add coding cookie.
+       (nnrss-read-group-data): Use insert-file-contents instead of load;
+       bind file-name-coding-system; use multibyte buffer.
+       (nnrss-save-group-data): Bind coding-system-for-write to the
+       value of nnrss-file-coding-system; bind file-name-coding-system.
+       (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
+       make it work with non-ASCII text.
+       (nnrss-find-el): Make it work with old xml.el as well.
+
+2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
+
+       * nnrss.el (nnrss-get-encoding): New function.
+       (nnrss-fetch): Use unibyte buffer initially; bind
+       coding-system-for-read while performing mm-url-insert; remove ^Ms;
+       decode contents according to the encoding attribute.
+       (nnrss-save-group-data): Add coding cookie.
+       (nnrss-mime-encode-string): New function.
+       (nnrss-check-group): Use it to encode subject and author.
+
+2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * spam.el (spam-check-BBDB): don't get the symbol-value of an
+       imaginary variable
+
+2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
+       correctly even if there are wide characters.
+
+2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * spam.el (spam-check-BBDB): fix the BBDB caching code to use
+       downcased symbol names; make a new cache instead of reusing
+       bbdb-hashtable
+
+2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * rfc2231.el (rfc2231-parse-string): Decode encoded value after
+       concatenating segments rather than before concatenating them.
+       Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
+
+       * message.el (message-get-reply-headers): Bind `extra'.
+
+2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * message.el (message-extra-wide-headers): New variable.
+       (message-get-reply-headers): Use it.
+
+2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-agent.el (gnus-agent-group-path): Decode group name.
+       (gnus-agent-group-pathname): Ditto.
+
+       * gnus-cache.el (gnus-cache-file-name): Decode group name.
+
+       * gnus-group.el (gnus-group-make-group): Decode group name.
+       (gnus-group-make-rss-group): Register the group data after opening
+       the nnrss group.
+
+2004-12-17  Paul Jarc  <prj@po.cwru.edu>
+
+       * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
+       by expiry now get marked as read.
+
+2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * mm-util.el (mm-xemacs-find-mime-charset): New macro.
+
+2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
+
+       * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
+       unify Latin characters in XEmacs.
+       (mm-find-mime-charset-region): Use it.
+
+2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-util.el (gnus-delete-directory): New function.
+
+       * gnus-agent.el (gnus-agent-delete-group): Use it.
+
+       * gnus-cache.el (gnus-cache-delete-group): Use it.
+
+2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
+       names.
+
+2004-12-16  Simon Josefsson  <jas@extundo.com>
+
+       * hashcash.el (hashcash-payment-alist): Fix custom :type.
+
+2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
+
+       * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
+       (gnus-group-set-current-level): Decode group name.
+
+2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
+
+       * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
+       failed.
+
+2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-group-delete-group): Decode group name.
+       (gnus-group-make-rss-group): Encode group name.
+       (gnus-group-catchup-current): Decode group name.
+       (gnus-group-kill-group): Decode group name.
+
+2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
+
+2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-group-make-rss-group): Use
+       gnus-group-make-group instead of gnus-group-unsubscribe-group.
+
+       * gnus-start.el (gnus-setup-news): Honor user's setting to
+       gnus-message-archive-method.  Suggested by Lute Kamstra
+       <Lute.Kamstra@xs4all.nl>.
+
+2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
+
+       * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
+       global counterparts of the buffer-local variables.
+
+2004-11-16  Romain Francoise  <romain@orebokech.com>
+
+       * gnus-sum.el (gnus-summary-exit): Don't clear the global
+       counterparts of the buffer-local variables.
+
+2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * message.el (message-forbidden-properties): Fixed typo in doc
+       string.
+
+2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-util.el (gnus-replace-in-string): Added doc string.
+
+       * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
+       to avoid problems when splitting mails with many recipients.
+
+2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
+       pop-to-buffer, covered by the subsequent gnus-configure-windows.
+
+2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
+
+       * spam-stat.el (spam-stat-save): Load the hashtable from disk only
+       if there is no hashtable in memory or file modification time is
+       newer than cached timestamp.
+
+2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
+       not-matching option.
+
+2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
+       Suggested David Mazieres in analogy to rmail-summary-by-recipients.
+       (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
+       (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
+       New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
+       (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
+
+2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-forward-make-body-mml): Remove headers
+       according to message-forward-ignored-headers if a message is decoded.
+
+2004-12-02  Romain Francoise  <romain@orebokech.com>
+
+       * message.el (message-forward-make-body-plain): Always remove
+       headers according to message-forward-ignored-headers.
+
+2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * spam.el (spam-summary-prepare-exit): remove the
+       gnus-summary-limit pop for now, it has problems with ham marks for
+       me
+
+2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * spam.el (spam-summary-prepare-exit): use gnus-summary-limit
+       correctly
+
+2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
+
+       * format-spec.el (format-spec): Message the char.
+
+2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * gnus-art.el (gnus-split-methods): reformat comments
+
+       * spam.el (spam-summary-prepare-exit): remove article limits
+       before exiting the summary buffer
+
+2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * lpath.el: Remove bbdb-create-internal, bbdb-records,
+       spam-BBDB-register-routine and spam-enter-ham-BBDB.
+
+       * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
+       order to silence the byte compiler.
+
+       * spam.el: Fix the way to silence the byte compiler, which
+       complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
+       bbdb-search-simple, spam-BBDB-register-routine,
+       spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
+       spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
+       spam-stat-buffer-is-spam, spam-stat-load,
+       spam-stat-register-ham-routine, spam-stat-register-spam-routine,
+       spam-stat-save and spam-stat-split-fancy.
+
+2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
+       which may confuse users.
+       (canlock-password-for-verify): Ditto.
+
+       * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
+
+       * gnus-art.el (gnus-emphasis-alist): Ditto.
+
+       * gnus-registry.el (gnus-registry-max-entries): Ditto.
+
+       * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
+
+       * gnus-start.el (gnus-save-killed-list): Ditto.
+
+       * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
+       (gnus-sum-thread-tree-root): Ditto.
+       (gnus-sum-thread-tree-false-root): Ditto.
+       (gnus-sum-thread-tree-single-indent): Ditto.
+
+       * message.el (message-courtesy-message): Ditto.
+       (message-archive-note): Ditto.
+       (message-subscribed-address-file): Ditto.
+       (message-user-fqdn): Ditto.
+
+       * spam-report.el (spam-report-gmane-regex): Ditto.
+
+       * spam.el (spam-blackhole-good-server-regex): Ditto.
+
+2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * mml.el (mml-preview): Widen the message buffer before copying
+       the contents to the preview buffer; sort headers before previewing.
+
+       * message.el (message-hidden-headers): Fix the way to avoid a bug
+       in the `repeat' widget in Emacs 21.3 or earlier.
+
+2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-hidden-headers): Default to "^References:".
+       From Reiner Steib <Reiner.Steib@gmx.de>; improve customization type.
+       (message-strip-forbidden-properties): Remove check for obsolete
+       `message-hidden' text property, hidden headers are not accessible
+       in the buffer anymore.  From Romain Francoise on January 11, 2004.
+
+2004-11-22  Romain Francoise  <romain@orebokech.com>
+
+       * message.el (message-header-format-alist): Add `From' in list
+       so that it can be sorted.
+       (message-fix-before-sending): Widen and sort headers before
+       sending.
+       (message-hide-headers): Use narrowing to hide headers by moving
+       them to the top of the buffer and narrowing to the region
+       underneath.
+
+2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * message.el (message-strip-forbidden-properties): Bind
+       buffer-read-only (etc) to nil.
+
+2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
+       address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
+
+2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
+
+       * nnfolder.el (nnfolder-request-create-group): Save current buffer.
+
+2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * dns.el (query-dns): Use sit-for to time instead of
+       accept-process-output, since that doesn't seem to work on udp
+       sockets. 
+
+2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
+
+2004-11-15  Jesper Harder  <harder@ifa.au.dk>
+
+       * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
+       docstrings.
+
+2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * nntp.el (nntp-request-update-info): Return nil if
+       nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
+       may not call gnus-activate-group which uselessly issues the GROUP
+       commands for all nntp groups and wastes time.  Reported by Romain
+       Francoise <romain@orebokech.com>.
+
+       * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
+
+2004-11-15  Simon Josefsson  <jas@extundo.com>
+
+       * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
+       headers separately.
+       (gnus-button-openpgp): New function, inspired by Jochen K\e,A|\e(Bpper
+       <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
+
+2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-start.el (gnus-convert-old-newsrc):
+       Assign legacy-gnus-agent to 5.10.7.
+
+2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
+       start of the lines.
+
+2004-11-14  Magnus Henoch  <mange@freemail.hu>
+
+       * hashcash.el (hashcash-default-payment): Change default to 20
+       (hashcash-default-accept-payment): Change default to 20
+       (hashcash-process-alist): New variable
+       (hashcash-generate-payment-async): Add
+       (hashcash-already-paid-p): Add
+       (hashcash-insert-payment): Don't generate payments twice
+       (hashcash-insert-payment-async): Add
+       (hashcash-insert-payment-async-2): Add
+       (hashcash-cancel-async): Add
+       (hashcash-wait-async): Add
+       (hashcash-processes-running-p): Add
+       (hashcash-wait-or-cancel): Add
+       (mail-add-payment): New optional argument.  Conditionally start
+       asynchronous calculation.
+       (mail-add-payment-async): Add
+
+       * message.el (message-send-mail): Wait for asynchronous hashcash
+       results.  Don't clobber existing X-Hashcash headers.
+       (message-setup-1): Call mail-add-payment-async when
+       message-generate-hashcash is non-nil.
+
+2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
+
+       * message.el (message-use-alternative-email-as-from): Examine the
+       From header as well; use message-make-from in order to include a
+       user's full name.
+
+2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
+       default; improve customization type.
+       (gnus-emphasis-custom-with-format): New macro.
+       (gnus-emphasis-custom-value-to-external): New function.
+       (gnus-emphasis-custom-value-to-internal): New function.
+
 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * dns.el (query-dns): Resolve reverse addresses.
 
        * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
        (starttls-extra-arguments, starttls-process-connection-type)
-       (starttls-connect, starttls-failure, starttls-success): 
+       (starttls-connect, starttls-failure, starttls-success):
 
        * spam-stat.el (spam-stat): Add :version.
 
        * sieve.el (sieve): Add :version.
 
-       * sha1.el (sha1): Added :version.
-       (sha1-use-external): Removed redundant version.
+       * sha1.el (sha1): Add :version.
+       (sha1-use-external): Remove redundant version.
 
        * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
        (nnmail-cache-ignore-groups, nnmail-spool-hook)
        (nnmail-split-fancy-match-partial-words)
-       (nnmail-split-lowercase-expanded): 
+       (nnmail-split-lowercase-expanded):
 
        * nndiary.el (nndiary): Add :version.
 
        * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
 
        * mml-sec.el (mml-default-sign-method)
-       (mml-default-encrypt-method, mml-signencrypt-style-alist): Add
-       :version.
+       (mml-default-encrypt-method, mml-signencrypt-style-alist):
+       Add :version.
 
        * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
 
        * html2text.el: Beautify code.  Improve doc strings.  Some checkdoc
        cleanup.
        (html2text-get-attr, html2text-fix-paragraph): Simplify code.
-       (html2text-format-tag-list): Added "strong" and "em".  From
-       "Alfred M. Szmidt" <ams@kemisten.nu> (tiny change).
+       (html2text-format-tag-list): Add "strong" and "em".
+       From "Alfred M. Szmidt" <ams@kemisten.nu> (tiny change).
 
 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
 
        <srivasta@golden-gryphon.com>.
 
        * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
-       iso-2022-jp even in the Japanese language environment.  Suggested
-       by Jason Rumney <jasonr@gnu.org>.
+       iso-2022-jp even in the Japanese language environment.
+       Suggested by Jason Rumney <jasonr@gnu.org>.
 
 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
 
 >>>>>>> 7.511
 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
 
-       * html2text.el (html2text-buffer-head): Removed.  Use `goto-char'
+       * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
        instead.
 
 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
        * gnus-delay.el (gnus-delay-default-hour): Add :version.
 
        * gnus-cite.el (gnus-cite-blank-line-after-header)
-       (gnus-article-boring-faces): 
+       (gnus-article-boring-faces):
 
        * gnus-art.el (gnus-buttonized-mime-types)
        (gnus-inhibit-mime-unbuttonizing)