gnus-async.el (gnus-async-article-callback): Always prefetch images for groups that...
[emacs.git] / lisp / gnus / ChangeLog
blob85150a1adbf08ecfd6d8d2657f326a594385bd94
1 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3         * gnus-async.el (gnus-async-article-callback): Always prefetch images
4         for groups that want that.
6         * nntp.el (nntp-wait-for-string): Supply a timeout for
7         accept-process-output to ensure progress.
9         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
10         level to get unread articles from, then use that for foreign groups,
11         too.
13         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
14         confuses the rest of the function.
16         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
17         for the methods that support -retrieve-groups, too.
19         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
21 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23         * pop3.el: Require cl when compiling.
24         (pop3-number-of-responses): Search for "+OK", not "+OK ".
26 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
29         that aren't going to be activated.
30         (gnus-get-unread-articles): Fix up the last commit.
32         * gnus-html.el (gnus-article-html): Allow calling without specifying
33         the handle.  In that case, dissect the buffer first.
35         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
37         * nnimap.el (nnimap-open-connection): Revert the change that would look
38         into authinfo for imaps instead of imap.
40         * gnus-start.el (gnus-activate-group): Take an optional parameter to
41         say that you don't want to call gnus-request-group with don-check, but
42         do check the reponse.  This is for virtual groups only.
43         (gnus-get-unread-articles): Count the archive groups as secondary, so
44         that they're activated the same way as before.
46         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
47         case-insensitively.
48         (nnimap-debug): Removed.
50         * mail-source.el (mail-source-fetch): Don't message if we're fetching
51         mail from a file, and the file doesn't exist.
53         * pop3.el (pop3-streaming-movemail): Return t for success.
55         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
56         .authinfo if we're using ssl connection.
58         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
59         already have if we're in a main Gnus `g' run.
61         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
63 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
65         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
67         * nnmh.el (nnmh-request-list-1): Bind `file'.
69         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
70         alias to set-process-query-on-exit-flag or process-kill-without-query.
71         (pop3-open-server): Use it.
73 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
75         * mail-source.el (mail-source-delete-crash-box): Always move the crash
76         box to the Incoming file.  Fixes mistake in previous checkin.
78         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
79         request loop (for debugging purposes) removed.
81         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
82         culprit is more visible.
83         (nnml-save-incremental-nov, nnml-open-incremental-nov)
84         (nnml-add-incremental-nov): New functions to do "incremental" nov
85         updates, where we just append to the end of the existing nov files
86         without reading/writing them in full.
88         * mail-source.el (mail-source-delete-crash-box): Really only check the
89         incoming files once in a while.
91         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
93         * mail-source.el (mail-source-delete-crash-box): Only check the
94         incoming files for deletion once per day to save a lot of file
95         accesses.
97         * pop3.el (pop3-logon): Fix up unbound variable typo.
99         * mail-source.el (pop3-streaming-movemail): Autoload.
101         * pop3.el (pop3-streaming-movemail): Respect
102         pop3-leave-mail-on-server.
104         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
105         retrieval.
107         * pop3.el (pop3-process-filter): Removed unused function.
108         (pop3-streaming-movemail, pop3-send-streaming-command)
109         (pop3-wait-for-messages, pop3-write-to-file)
110         (pop3-number-of-responses): New functions for streaming pop3
111         retrieval.
113         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
114         come from no known methods.
115         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
116         list.
118         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
119         message sizes.
120         (pop3-movemail): Use erase-buffer instead of looping and deleting
121         regions, which seems rather odd.
123         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
124         file once per `g' run.
126         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
127         directories.  This makes the draft queue directory work.
129         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
130         data from the backends, so that we only request the list of groups from
131         each method once.  This should speed things up considerably.
133         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
134         detect that it's not implemented.
136         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
137         we actually do recurse down into the tree, but don't stat all leaf
138         nodes.
140         * gnus-html.el (gnus-html-show-images): If there are no images to show,
141         then say so instead of bugging out.
143         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
144         files exist before trying to read them.
146         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
147         around <pre_int>.
149         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
151         * nnmh.el (nnmh-request-list-1): Optimize for speed.
153 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
155         * mm-util.el (mm-image-load-path): Just return the image directories,
156         not all directories in the path in addition to the image directories.
157         (mm-image-load-path): Maintain a cache of the image directories so that
158         the `g' command in Gnus doesn't have to stat dozens of directories each
159         time.
161         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
162         (gnus-html-wash-tags): Add a new `i' command to insert images.
163         (gnus-html-insert-image): New command and keystroke.
164         (gnus-html-redisplay-with-images): New command and keystroke.
165         (gnus-html-show-images): Renamed command.
166         (gnus-html-wash-tags): Remove more white space before <pre_int> image
167         spacers.
168         (gnus-html-wash-tags): Decode entities at the end, so that entities
169         inside the tags don't mess up the rest of the "parsing".
171         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
172         so that nnimap methods aren't agentized by default.  There's apparently
173         many problems related to agent/imap behaviour.
175         * gnus-art.el (gnus-article-copy-string): New command and key binding.
177         * gnus-html.el: Doc fix.
179 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
181         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
182         glyph-width and glyph-height instead of display-graphic-p and
183         image-size; make avoidance of displaying small images work for XEmacs.
185         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
186         for XEmacs.
188         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
189         of symbol that holds plist data.
190         (gnus-process-plist): Remove plist of process after getting it.
192 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
194         * message.el (message-generate-hashcash): Change default to
195         'opportunistic if hashcash is installed.
197         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
198         (gnus-html-put-image): Only call image-size once, since it's somewhat
199         time-consuming on remote X servers.
201 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
203         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
204         decoded contents.
205         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
207 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
209         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
210         group line format, since it isn't very interesting.
212         * gnus-agent.el (gnus-agent-short-article),
213         (gnus-agent-long-article): Increase values for these two variables,
214         since most people are likely to have more network connection and
215         storage than before.
217         * gnus.el (gnus-refer-article-method): Change default to 'current.
218         When referring an article, the common behaviour is to refer it from the
219         current select method, not the native select method.  The chances of
220         the native select method having the message in question is rather slim
221         these days.
223         * gnus-sum.el (gnus-auto-select-subject): Change default to
224         `unseen-or-unread'.  I think it's likely that most people want to
225         select an unseen article over a previously seen, but unread one.
227         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
228         means that in the article buffer none of the minor mode elements will
229         be shown, usually, and this is not desirable in most cases.
231         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
232         that commands like `d' (and the like) go to the next line in the
233         buffer, instead of the next unread article.  I think this is the
234         behaviour that is most natural for most users.
235         (gnus-single-article-buffer): Change default to nil, so that people can
236         have as many article buffers open as they have summary buffer.  I think
237         this is the most natural way for the groups to behave.
239         * message.el (message-generate-new-buffers): Change default to
240         `unsent', so that all new message buffers start their names with the
241         string "*unsent", and it's easier to find the buffers if you move from
242         them.
244 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
246         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
247         small. They're probably tracking images.
248         (gnus-html-wash-tags): Remove all <pre_int> place holders.
249         (gnus-html-rescale-image): Yet another try at getting the image sizing
250         right.
252         * nntp.el (nntp-request-set-mark): Refuse to do marks if
253         nntp-marks-file-name is nil.
255 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
257         * gnus-html.el (gnus-html-wash-tags)
258         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
259         Better logging.
261 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
263         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
265         * gnus-html.el (gnus-html-wash-tags): Check the value of
266         gnus-blocked-images in the summary buffer.
268 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
270         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
272 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
274         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
275         like "a", it seems like.
276         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
277         since it needs to be picked from the correct buffer.
279         * nnwfm.el: Removed.
281         * nnlistserv.el: Removed.
283 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
285         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
286         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
288 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
290         * nnkiboze.el: Removed.
292         * nndb.el: Removed.
294         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
295         alt text.
296         (gnus-html-rescale-image): Try to get the rescaling logic right for
297         images that are just wide and not tall.
299         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
300         overshadow variable bindings.
302 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
304         * gnus-html.el (gnus-html-wash-tags)
305         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
306         extra logging.
308 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
310         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
311         (gnus-max-image-proportion): New variable.
312         (gnus-html-rescale-image): New function.
313         (gnus-html-put-image): Rescale images.
315 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
317         Fix up some byte-compiler warnings.
318         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
319         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
320         (gnus-article-fill-cited-article, gnus-article-hide-citation)
321         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
322         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
323         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
324         (gnus-group-update-group): Use save-excursion and with-current-buffer.
326 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
328         * gnus-html.el (gnus-article-html): Decode contents by charset.
330 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
332         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
333         (gnus-html-frame-width, gnus-blocked-images)
334         * message.el (message-prune-recipient-rules): Add custom version.
335         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
337         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
338         functions.
340         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
341         gnus-process-get.
343 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
345         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
346         instead of lsub directly.
348 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
350         * nnwarchive.el: Removed.
352         * gnus-soup.el: Removed.
354         * nnsoup.el: Removed.
356         * nnultimate.el: Removed.
358         * gnus-html.el (gnus-blocked-images): New variable.
360         * message.el (message-prune-recipients): New function.
361         (message-prune-recipient-rules): New variable.
363         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
364         guess whether a long line is natural text or not.
366         * gnus-html.el (gnus-html-schedule-image-fetching): Use
367         gnus-process-plist and friends for compatibility.
369 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
371         * gnus-html.el: Require packages that define macros used in this file.
372         (gnus-article-mouse-face): Declare to silence byte-compiler.
373         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
374         process-get.
375         (gnus-html-put-image): Use plist-get to avoid getf.
376         (gnus-html-prefetch-images): Use with-current-buffer.
378 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
380         * gnus-ems.el: Provide compatibility functions for
381         gnus-set-process-plist.
383         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
384         * gnus.el (gnus-valid-select-methods)
385         * message.el (message-send-mail-partially-limit)
386         * mm-decode.el (mm-text-html-renderer)
387         * mml.el (mml-insert-mime-headers-always)
388         * smiley.el (smiley-regexp-alist): Bump custom version.
390 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
392         * gnus-html.el: require mm-url.
393         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
394         with the url to `url'.
395         (gnus-html-wash-tags): Support cid: URLs/images.
397 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
399         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
400         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
401         bindings, as they aren't useful at all. `w' is moved to `W w'.
403         * gnus-move.el: Removed file, since it doesn't really work.
405         * gnus-html.el (gnus-article-html): Tell w3m that the input is
406         UTF-8. This seems to fix problems with some German web feeds.
408         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
409         at the top so that the proper colours are applied.
411         * gnus-art.el (gnus-article-view-part): Doc fix.
413         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
414         XEmacs-compatible.
415         (gnus-html-put-image): Don't do images on non-graphic displays.
417         * nnslashdot.el: Removed this unused backend.
419         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
420         actions.
421         (gnus-undo-register-1): Revert last change.
423         * gnus-group.el (gnus-group-completing-read): Protect against not
424         having completion-styles bound.
426         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
427         make broken recipients happier.
429         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
431         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
432         point parameter.
434         * gnus-group.el (gnus-group-completing-read): Add 'substring to
435         completion-styles for group selection.
437 2009-02-04  Andreas Schwab  <schwab@suse.de>
439         * gnus-score.el (gnus-score-string): Fix regex for matching extra
440         headers and regexp-quote the match if necessary.
442 2009-03-24  Miles Bader  <miles@gnu.org>
444         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
445         the blinking smiley.
447 2009-03-24  Simon Josefsson  <simon@josefsson.org>
449         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
450         blink smiley.
452 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
454         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
455         where the dribbel file lives exists.
457         * message.el (message-send-mail-partially-limit): Change the default to
458         nil, since most people don't want this.
460         * mm-url.el (mm-url-decode-entities): Also decode entities like
461         &#x3212.
463 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
465         * gnus-sum.el (gnus-summary-idna-message):
466         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
467         Hyperlink urls in docstrings with URL `...'.
469 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
471         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
472         functions.
474 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
476         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
477         say what the mouseover text should be.
479         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
480         version of the mm-w3m-safe-url-regexp variable to only download images
481         in the groups where we want that to happen.
483         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
485         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
486         easier debugging.
487         (gnus-article-beginning-of-window): Add kludge to allow spacing past
488         big pictures in the article buffer.
490         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
491         gnus-article-html.
492         (mm-text-html-renderer): gnus-article-html needs curl in addition to
493         w3m.
495         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
497 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
499         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
500         which doesn't exist.
502         * message.el (message-inhibit-ecomplete): New variable to allow some
503         function to inhibit ecomplete address storage.
504         (message-resend): Disable ecomplete message storage when resending
505         messages.
507         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
509 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
511         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
512         Save excursion while copying, moving, and deleting articles in order to
513         prevent the cursor from jumping to unforeseen place.
515 2010-08-17  Glenn Morris  <rgm@gnu.org>
517         * gnus-sync.el: Require gnus components whose functions are used.
519         * gnus-art.el (bookmark-make-record-function):
520         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
521         Declare for compiler.
523         * mm-url.el (mml-compute-boundary): Autoload.
525 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
527         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
529 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
531         Typo fix "hoo4a" -> "hook".
533         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
535 2010-08-14  Glenn Morris  <rgm@gnu.org>
537         * gnus-sync.el (gnus-sync): Fix defgroup version.
539 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
541         Doc fixes and keep unknown groups (ammended for nunion bug fix).
543         * gnus-sync.el: Fix docs.
544         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
545         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
547 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
549         Optimizations for gnus-sync.el.
551         * gnus-sync.el: Add docs about gnus-sync-backend
552         possibilities.
553         (gnus-sync-save): Remove unnecessary message.
554         (gnus-sync-read): Optimize and show what groups were skipped.
556 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
558         Minor bug fixes for gnus-sync.el.
560         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
561         read the sync on get-new-news.
563         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
564         quiet.
566         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
568 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
570         Make saving and restoring of hidden threads work with overlays.
571         Patch applied by Ted Zlatanov.
573         * gnus-sum.el (gnus-hidden-threads-configuration)
574         (gnus-restore-hidden-threads-configuration): Update to deal with text
575         properties, rather than searching for a magic character.
577 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
579         New gnus-sync.el library for synchronization of marks.
581         * gnus-sync.el: New library for synchronization of marks.
583         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
584         renamed from `gnus-registry-grep-in-list'.
586         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
588         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
590 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
592         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
593         determining charset of text fails.
595 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
597         * nnmail.el (nnmail-get-new-mail-1): Revert.
599         * nnml.el (nnml-active-number): Make sure names of newly created groups
600         in nnml-group-alist are encoded.
602 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
604         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
605         containing non-ASCII characters in active file for nnml back end.
607 2010-07-24  David Engster  <dengste@eml.cc>
609         * mml-smime.el (mml-smime-epg-verify): Also accept the older
610         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
612 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
614         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
615         tag (Bug#6654).
617 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
619         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
620         the article buffer, not the summary buffer.
622 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
624         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
625         Emacs 23 as well.
627 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
629         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
630         Patch applied by Karl Fogel.
632         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
633         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
635 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
637         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
638         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
639         C-w still not working correctly from Article buffers; Thierry's
640         patch to fix that will be applied after this.
642         * gnus-art.el (bookmark-make-record-function): New local variable.
644         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
645         article buffer.
646         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
648 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
650         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
651         on changes in bookmark.el.
653 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
655         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
656         the *other* type of HTML form submission.
658 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
660         * auth-source.el (auth-source-pick): If choice does not contain a
661         questioned keyword, set the check to t.
663 2010-06-12  Romain Francoise  <romain@orebokech.com>
665         * gnus-util.el (gnus-date-get-time): Move up before first use.
667 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
669         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
670         (gnus-article-edit-part): Bind it to make last part that is substituted
671         or deleted visible.
672         (gnus-mime-display-single): Buttonize part of which id equals to
673         gnus-mime-buttonized-part-id.
675 2010-06-10  Dan Christensen  <jdc@uwo.ca>
677         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
678         (gnus-dd-mmm): Use gnus-date-get-time.
679         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
680         simplify logic.
681         (gnus-summary-limit-to-age): Use gnus-date-get-time.
682         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
684 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
686         * auth-source.el (top): Autoload `secrets-list-collections',
687         `secrets-create-item', `secrets-delete-item'.
688         (auth-sources): Fix tag string.
689         (auth-get-source, auth-source-retrieve, auth-source-create)
690         (auth-source-delete): New defuns.
691         (auth-source-pick): Rewrite in order to avoid 2 passes.
692         (auth-source-forget-user-or-password): New parameter USERNAME.
693         (auth-source-user-or-password): New parameters CREATE-MISSING and
694         DELETE-EXISTING.  Retrieve password interactively, if needed.
696 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
698         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
699         deleting unused directories when gnus-expert-user is t.
701 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
703         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
704         for each temp file when gnus-article-browse-delete-temp is ask.
706 2010-05-20  Kevin Ryde  <user42@zip.com.au>
708         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
710 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
712         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
713         article unless decoding article to be saved.
715 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
717         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
718         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
719         generated within the mm-with-unibyte-current-buffer macro.
721 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
723         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
724         to nil when we're in a mml-preview buffer and no group is selected.
726 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
728         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
729         when catching the `C-g'.  Reported by "Leo".
731 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
733         * message.el (message-forward-make-body-plain)
734         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
735         multibyte-string-p.
737 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
739         * message.el (message-forward-make-body-mml): Assume original message
740         is multibyte string; error on unibyte.
741         (message-forward-make-body-plain): Ditto; don't add excessive newline
742         in body end.
744 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
746         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
747         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
749 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
751         * mm-extern.el (mm-extern-url): Don't use
752         mm-with-unibyte-current-buffer.
753         (mm-extern-cache-contents): Use with-current-buffer instead of
754         save-excursion + set-buffer.
756 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
758         * mm-util.el (mm-emacs-mule): Remove.
760 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
762         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
763         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
764         change.
766 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
768         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
769         bind the default value of enable-multibyte-characters to nil.
771 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
773         * message.el (message-forward-make-body-plain)
774         (message-forward-make-body-mml):
775         Don't use mm-with-unibyte-current-buffer.
777 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
779         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
780         (Bug#5592).
782 2010-05-07  Julien Danjou  <julien@danjou.info>
784         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
785         it to mm-pipe-part.
787         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
788         it is given.
790 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
792         * nnweb.el (nnweb-gmane-search)
793         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
794         XEmacs.
796         * gnus-art.el (gnus-article-browse-html-parts)
797         * gnus-group.el (gnus-read-ephemeral-gmane-group)
798         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
799         make-temp-file.
801         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
802         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
803         compiling.
805         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
806         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
807         XEmacs when compiling.
809         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
810         gnus-pick-mode-off-hook for XEmacs when compiling.
811         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
812         gnus-binary-mode-off-hook for XEmacs when compiling.
814         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
815         nil if char-charset is not available.
817         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine it as a
818         macro.
820         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
821         instead of encode-coding-string.
823         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
824         'xemacs) instead of mm-emacs-mule to switch function definitions.
825         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
827 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
829         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
831 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
833         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
834         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
836 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
838         * mm-util.el (mm-decompress-buffer): Use `delete-file';
839         alias `jka-compr-delete-temp-file' no longer exists.
841 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
843         Use define-minor-mode in Gnus where applicable.
844         * mml.el (mml-mode): Use define-minor-mode.
845         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
846         (gnus-undo-mode): Use define-minor-mode.
847         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
848         (gnus-dead-summary-mode): Use define-minor-mode.
849         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
850         Initialize in declaration.
851         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
852         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
853         (gnus-mailing-list-mode): Use define-minor-mode.
854         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
855         (gnus-draft-mode): Use define-minor-mode.
856         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
857         (gnus-dired-mode): Use define-minor-mode.
859 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
861         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
862         handles on recursive mml-to-mime translation and check them for
863         boundary delimiter collisions.  Reported by Greg Troxel.
865 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
867         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
869 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
871         * mm-util.el (mm-find-buffer-file-coding-system):
872         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
874 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
876         * message.el (message-generate-headers): Record insertion of optional
877         headers as well.  Otherwise the check to prevent repeated insertion of
878         optional headers is a no-op.
880 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
882         * smime.el: Don't mention CVS.
884         * nnrss.el (nnrss-fetch): Don't mention CVS.
886         * nnir.el: Don't mention CVS.
888 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
890         * gnus-sum.el (gnus-summary-bookmark-make-record):
891         Add `location' field.
893 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
895         * gnus-sum.el: Add bookmark declarations to silence the compiler.
896         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
897         Use with-current-buffer to silence the byte-compiler.
898         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
899         bother to require `gnus'.
900         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
902 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
904         * gnus-sum.el (gnus-summary-bookmark-make-record)
905         (gnus-summary-bookmark-jump): New functions.
906         (gnus-summary-mode): Setup bookmark support.
908 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
910         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
911         if set.
913 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
915         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
916         gnus-article-browse-html-save-cid-image; make it work recursively for
917         forwarded messages as well.
918         (gnus-article-browse-html-parts): Work when prefix arg is given.
919         (gnus-article-browse-html-article): Doc fix.
921 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
923         * message.el (message-default-mail-headers):
924         (message-default-headers): Carry the value mail-default-headers over
925         into message-default-mail-headers, rather than message-default-headers.
927 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
929         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
930         charset.
932         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
933         charset into the <meta> tag when the article is encoded to utf-8.
935 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
937         * gnus-art.el (gnus-article-browse-delete-temp-files):
938         Delete directories as well.
939         (gnus-article-browse-html-parts): Work for images that do not specify
940         file names; delete temp directory when quitting; insert header at the
941         right place; use file: scheme for image files.
943 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
945         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
946         (gnus-article-browse-html-parts): Use it to make temporary cid image
947         files in addition to html file so that browser may display them.
949 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
951         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
953 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
955         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
957 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
959         * auth-source.el (auth-sources): Change default to be simpler.
960         Explain about Secret Service API sources.  Improve Customize options.
961         (auth-source-pick): Change to accept any number of search parameters.
962         Implement fallbacks iteratively, not recursively.  Add scoring on the
963         second pass and sort by score.  Call Secret Service API when needed.
964         (auth-source-user-or-password): Use it.  Call Secret Service API
965         directly when needed to get the user name and the password.
967 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
969         * message.el (message-interactive): Doc fix.
970         (message-qmail-inject-args): Reflow.
971         (message-kill-to-signature): Fix typo in docstring.
973         * smiley.el (smiley-buffer): Fix typo in docstring.
975 2010-03-24  Glenn Morris  <rgm@gnu.org>
977         * mail-source.el (gnus-message): Declare.
978         (mail-source-delete-old-incoming): Require gnus-util.
980 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
982         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
984         * message.el (ecomplete-setup): Autoload it for Emacs <23.
986         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
987         password-cache's default if it is not bound.
988         (mml-secure-passphrase-cache-expiry): Default to 16 that is
989         password-cache-expiry's default if it is not bound.
991         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
992         available in Emacs 21.
994 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
996         * auth-source.el (auth-sources): Fix up definition so extra parameters
997         are always inline.
999 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1001         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1002         wasn't updated after mismatch.  Clear cached mailbox info correctly
1003         when uidvalidity changes.
1004         (nnimap-group-prefixed-name): New function to avoid some code
1005         duplication.
1006         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1007         (nnimap-request-group): Use it.
1008         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1009         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1010         with many imap folders.  This is done by caching the group status from
1011         the imap server persistently in a group parameter `imap-status'.  (This
1012         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1013         but not persistently, so every Gnus startup was still very slow.)
1015 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1017         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1018         secrets.el dependency.
1019         (auth-sources): Add optional user name.  Add secrets.el configuration
1020         choice (unused right now).
1022 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1024         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1025         `gnus-registry-install-shortcuts' fill in the functions.
1027         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1028         warnings.
1029         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1030         (gnus-registry-install-shortcuts): Populate and use it in a
1031         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1033 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1035         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1036         In-place substitutions for the group name encoding/decoding.
1037         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1038         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1039         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1040         (nnimap-update-unseen, nnimap-request-list)
1041         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1042         (nnimap-request-set-mark, nnimap-split-to-groups)
1043         (nnimap-split-articles, nnimap-request-newgroups)
1044         (nnimap-request-create-group, nnimap-request-accept-article)
1045         (nnimap-request-delete-group, nnimap-request-rename-group)
1046         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1047         `encoded-mbx' for consistency.
1048         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1049         variable `imap-current-mailbox'.
1051         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1052         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1054 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1056         * pop3.el (pop3-display-message-size-flag): Display message size byte
1057         counts during POP3 download.
1058         (pop3-movemail): Use it.
1059         (pop3-list): Implement listing of available messages.
1061 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1063         * nnir.el (nnir-get-article-nov-override-function): New function to
1064         override the normal NOV retrieval.
1065         (nnir-retrieve-headers): Use it.
1067 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1069         * auth-source.el (netrc-machine-user-or-password): Autoload.
1071 2010-03-19  Glenn Morris  <rgm@gnu.org>
1073         Stop message.el from loading about 40 libraries it doesn't always need.
1074         The general approach is to autoload rather than require, and to
1075         require in the specific functions rather than the file.  (Bug#5642)
1077         * gmm-utils.el: Don't require wid-edit.
1078         (widget-create-child-value, widget-convert, widget-default-get):
1079         Autoload.
1081         * gnus-util.el: Don't require time-date, netrc.
1082         (message-fetch-field, gnus-group-name-decode): Declare rather than
1083         autoloading.
1084         (gnus-fetch-field): Require message.
1085         (gnus-decode-newsgroups): Require gnus-group.
1087         * ietf-drums.el: Don't require time-date.
1089         * message.el: Don't require hashcash, canlock, ecomplete.
1090         Do require mail-utils.  Require nnheader only when compiling.
1091         (smtpmail-default-smtp-server): Remove declaration.
1092         (message-send-mail-function): Check smtpmail-default-smtp-server
1093         is bound rather than requiring smtpmail.
1094         (message-auto-save-directory, message-insert-signature): Use
1095         expand-file-name rather than nnheader-concat.
1096         (nnheader-insert-file-contents): Autoload.
1097         (hashcash-wait-async): Declare.
1098         (message-send-mail): Only call gnus-setup-posting-charset if
1099         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1100         (message-send-mail-with-sendmail): Require sendmail.
1101         (canlock-password, canlock-password-for-verify): Declare.
1102         (message-canlock-password): Require canlock.
1103         (nnheader-get-report): Autoload.
1104         (gnus-setup-posting-charset): Declare.
1105         (message-send-news): Require gnus-msg.
1106         (message-make-references, message-make-in-reply-to): Use mail-header-id
1107         rather than the alias mail-header-message-id.
1108         (ecomplete-add-item, ecomplete-save): Declare.
1109         (message-put-addresses-in-ecomplete): Require ecomplete.
1110         (ecomplete-display-matches): Autoload.
1112         * mm-decode.el: Don't require mailcap, gnus-util.
1113         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1114         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1115         Autoload.
1116         (mailcap-mime-extensions): Declare.
1118         * mm-encode.el: Don't require mailcap.
1119         (mailcap-extension-to-mime): Autoload.
1121         * mml-sec.el: Don't require password-cache.
1123         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1124         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1125         (mml-minibuffer-read-type): Require mailcap.
1126         (mml-preview): Require gnus-msg.
1128         * mml1991.el: Require password-cache.
1129         (password-cache-expiry): Remove declaration.
1131         * mml2015.el: Require password-cache.
1132         (password-cache-expiry): Remove declaration.
1134         * nneething.el (mailcap): Require mailcap.
1136         * nnheader.el (declare-function): Add compatibility stub.
1137         (message-remove-header): Declare rather than autoload.
1138         (nnheader-replace-header): Require message.
1140         * nnimap.el (declare-function): Add compatibility stub.
1141         (netrc-parse, netrc-machine-user-or-password): Declare.
1142         (nnimap-open-connection): Require netrc.
1144         * nntp.el (declare-function): Add compatibility stub.
1145         (netrc-parse, netrc-machine, netrc-get): Declare.
1146         (nntp-send-authinfo): Require netrc.
1148         * rfc2047.el: Don't require qp.
1149         (quoted-printable-encode-region, quoted-printable-decode-string):
1150         Autoload.
1152         * sieve-mode.el: Don't require easymenu.
1153         (easy-menu-add-item): Autoload it.
1155         * spam-stat.el (time-to-number-of-days): Autoload it.
1157 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1159         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1160         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1161         value if any backslash escapes).
1163 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1165         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1166         if it is available.  (bug#5647)
1168 2010-02-26  Glenn Morris  <rgm@gnu.org>
1170         * message.el (message-send-mail-function): Change the default, so that
1171         it inherits from a customized send-mail-function.  (Bug#5643)
1173 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1175         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1176         shell-command-to-string signals an error (bug#5299).
1178 2010-02-24  Glenn Morris  <rgm@gnu.org>
1180         * message.el (message-smtpmail-send-it)
1181         (message-send-mail-with-mailclient): Doc fixes.
1183 2010-02-16  Glenn Morris  <rgm@gnu.org>
1185         * message.el (message-default-mail-headers): Change the default value
1186         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1188 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1190         * message.el (message-mail): Just pass yank-action on to message-setup.
1191         (message-setup): Handle (FUN . ARGS) form of yank-action.
1192         (message-with-reply-buffer, message-widen-reply)
1193         (message-yank-original): Handle non-buffer values of
1194         message-reply-buffer (Bug#4080).
1195         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1197 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1199         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1200         Fix typo in docstring.
1202 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1204         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1205         response.
1207 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1209         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1211         * message.el (message-check-news-header-syntax): Protect against a
1212         string that `rfc822-addresses' returns when parsing fails.
1214 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1216         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1217         (gnus-previous-char-property-change): New functions.
1219         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1221 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1223         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1224         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1226 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1228         * message.el (message-exchange-point-and-mark): Rework last change to
1229         avoid using optional arg of exchange-point-and-mark, for backward
1230         compatibility.
1232 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1234         * message.el (message-exchange-point-and-mark): Call
1235         exchange-point-and-mark with an argument rather than setting
1236         mark-active by hand (Bug#5175).
1238 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1240         * nntp.el (nntp-service-to-port): Work for service expressed with
1241         numeric string; replace [:digit:] with [0-9] for XEmacs.
1243 2009-12-17  Glenn Morris  <rgm@gnu.org>
1245         * gnus-group.el (gnus-bug-group-download-format-alist):
1246         Change emacs entry to debbugs.gnu.org.  Bump :version.
1248 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1250         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1252 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1254         * message.el (message-info): Explain why we use `Info-goto-node'.
1256 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1258         * message.el (message-completion-in-region): New compatibility function.
1259         (message-expand-group): Use it.
1261 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1263         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1264         with no unread article should be listed if the 2nd arg `predicate' is
1265         given.
1267 2009-11-29  Juri Linkov  <juri@jurta.org>
1269         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1270         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1271         on `gnus-recenter'.  (Bug#4698, Bug#4981)
1273 2009-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1275         * message.el (message-from-style, message-interactive)
1276         (message-signature): Always set default values from the corresponding
1277         mail-* variables.
1278         (message-cite-prefix-regexp, message-sendmail-envelope-from)
1279         (message-yank-prefix, message-indentation-spaces)
1280         (message-signature-file, message-default-headers): Use boundp rather
1281         than (featurep 'xemacs) to check if the corresponding mail-* variables
1282         exist.
1284 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
1286         * message.el (message-send-mail-with-sendmail): Revert last change.
1288 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
1290         * message.el (message-from-style, message-interactive)
1291         (message-cite-prefix-regexp, message-sendmail-envelope-from)
1292         (message-yank-prefix, message-indentation-spaces, message-signature)
1293         (message-signature-file, message-default-headers): For GNU Emacs, set
1294         default values from the corresponding mail-* variables.
1295         (message-send-mail-with-sendmail): Use envelope-from only if
1296         mail-specify-envelope-from is non-nil.
1298 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1300         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1301         containing tspecial characters if they have been already quoted.
1303 2009-10-24  Glenn Morris  <rgm@gnu.org>
1305         * gnus-art.el (help-xref-stack-item): Define for compiler.
1307 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1309         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1311 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1313         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1314         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1316 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1318         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1319         (gnus-overlays-in): New alias to overlays-in.
1321         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1322         gnus-overlay-get, and gnus-delete-overlay.
1323         (gnus-summary-show-thread): Make it work as well for systems in which
1324         next-single-char-property-change is not available.
1325         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1327 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1329         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1331 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1333         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1334         and XEmacs that don't have `remove-overlays'.
1336 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1338         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1339         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1340         selective display.  Use overlays instead.
1342 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1344         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1346 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1348         * spam-stat.el (spam-stat-load): Fix typo in message.
1350 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1352         * gnus-art.el (gnus-article-encrypt-body):
1353         * message.el (message-check-recipients):
1354         * mm-util.el (mm-codepage-setup):
1355         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1356         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1358 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1360         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1361         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1362         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1363         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1364         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1366 2009-09-18  Glenn Morris  <rgm@gnu.org>
1368         * gnus-diary.el (gnus-diary-check-message):
1369         * message.el (message-insert-formatted-citation-line):
1370         * nnbabyl.el (top-level):
1371         * nndiary.el (nndiary-schedule):
1372         Fix typos in condition-case handlers.
1374 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1376         * gnus-art.el (gnus-article-edit-part): Work for the buffer
1377         configuration that provides the sole article window in a frame;
1378         position point correctly after deleting a part.
1380 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
1382         * spam.el (spam-unregister-on-reregister): Add boolean variable.
1383         (spam-resolve-registrations-routine): Use it to unregister articles
1384         that change status.
1386 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1388         * nnrss.el (nnrss-request-article): Remove binding of
1389         default-enable-multibyte-characters that has gotten needless by
1390         the 2007-07-13 change in rfc2047-encode-message-header.
1392         * mml.el (mml-insert-multipart): Error on the message header.
1393         (mml-insert-part): Error on the message header; position point at
1394         the end of a MIME tag.
1396 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1398         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
1399         (gnus-float-time): Alias to float-time if it exists.
1401         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
1402         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
1403         float-time is available; suppress compile warning for time-to-seconds.
1405 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1407         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
1408         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
1409         Add the optional argument `encoding' that overrides the default.
1411         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
1412         mm-encode-buffer.
1414 2009-09-04  Glenn Morris  <rgm@gnu.org>
1416         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
1417         mm-disable-multibyte, rather than default-enable-multibyte-characters.
1418         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
1419         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
1420         * mm-util.el (mm-with-unibyte-current-buffer)
1421         (mm-find-buffer-file-coding-system):
1422         * yenc.el (yenc-decode-region): Use default-value rather than
1423         default-enable-multibyte-characters.
1425 2009-09-03  Glenn Morris  <rgm@gnu.org>
1427         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
1428         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
1429         than default-enable-multibyte-characters.
1431 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
1433         * gnus-art.el (gnus-article-read-summary-keys):
1434         Fix gnus-buffer-configuration's value temporarily used.
1436 2009-09-02  Glenn Morris  <rgm@gnu.org>
1438         * gnus-util.el (gnus-float-time): New function.
1439         * gnus-delay.el (gnus-delay-article):
1440         * gnus-sum.el (gnus-thread-latest-date):
1441         * gnus-util.el (gnus-user-date): Use gnus-float-time.
1442         * nnspool.el (nnspool-request-newgroups):
1443         Use gnus-float-time rather than time-to-seconds.
1444         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
1446         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
1447         (gnus-header-subject-face, gnus-header-newsgroups-face)
1448         (gnus-header-name-face, gnus-header-content-face):
1449         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
1450         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
1451         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
1452         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
1453         (gnus-cite-face-11):
1454         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
1455         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
1456         (gnus-server-closed-face, gnus-server-denied-face)
1457         (gnus-server-offline-face):
1458         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
1459         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
1460         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
1461         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
1462         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
1463         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
1464         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
1465         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
1466         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
1467         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
1468         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
1469         (gnus-summary-selected-face, gnus-summary-cancelled-face)
1470         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
1471         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
1472         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
1473         (gnus-summary-high-undownloaded-face)
1474         (gnus-summary-low-undownloaded-face)
1475         (gnus-summary-normal-undownloaded-face)
1476         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
1477         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
1478         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
1479         (gnus-splash-face):
1480         * message.el (message-header-to-face, message-header-cc-face)
1481         (message-header-subject-face, message-header-newsgroups-face)
1482         (message-header-other-face, message-header-name-face)
1483         (message-header-xheader-face, message-separator-face)
1484         (message-cited-text-face, message-mml-face):
1485         * sieve-mode.el (sieve-control-commands-face)
1486         (sieve-action-commands-face, sieve-test-commands-face)
1487         (sieve-tagged-arguments-face):
1488         * spam.el (spam-face):
1489         Mark face aliases with "-face" in the name as obsolete.
1491 2009-09-01  Glenn Morris  <rgm@gnu.org>
1493         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
1494         than goto-line.
1496 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1498         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
1499         Don't move point if the command is invoked inside the message header.
1501 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1503         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
1504         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
1505         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
1506         * nnir.el (nnir-swish-e-index-file):
1507         * gnus-sum.el (gnus-summary-delete-marked-as-read)
1508         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
1509         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
1510         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
1511         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
1512         (gnus-treat-display-xface): Add Emacs version of obsolescence.
1514 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1516         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
1517         Don't save excursion.
1519 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1521         * nnheader.el (nnheader-find-file-noselect):
1522         * mm-util.el (mm-insert-file-contents):
1523         Use (default-value 'major-mode) instead of default-major-mode.
1525 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1527         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
1529 2009-08-25  Glenn Morris  <rgm@gnu.org>
1531         * nnir.el (top-level): Don't require cl at run-time.
1532         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
1533         Replace cl-function substitute with gnus-replace-in-string.
1534         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
1535         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
1536         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
1537         simplified expansions.
1539 2009-08-22  Glenn Morris  <rgm@gnu.org>
1541         * gnus-art.el (gnus-button-patch): Use forward-line rather than
1542         goto-line.
1544 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1546         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
1548         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
1549         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
1550         (gnus-mm-display-part, gnus-mime-display-single)
1551         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
1552         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
1554         * gnus-sum.el
1555         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
1556         (gnus-summary-move-article): Add expirable mark to articles copied or
1557         moved to group that has auto-expire turned on if the option is non-nil.
1559 2009-07-24  Glenn Morris  <rgm@gnu.org>
1561         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
1562         Fix typo.  (Bug#3903)
1564 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1566         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
1567         gnus-article-read-summary-keys rather than gnus-summary-edit-article
1568         that should not be used for draft articles.
1569         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
1570         that has no concern in minor mode keys.
1571         (gnus-article-summary-command, gnus-article-summary-command-nosave):
1572         Abolish.
1574 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1576         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
1577         article without making inquiry to a user for unknown encoding.
1579         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
1580         (nnmaildir--scan): Assume i-node and device number that file-attributes
1581         returns might be cons-cell.
1583 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
1585         * auth-source.el: Remove docs now in auth.texi.  Don't use
1586         `gnus-message' for logging.  Add new variables `auth-source-debug' and
1587         `auth-source-hide-passwords' and use them.
1589 2009-07-15  Glenn Morris  <rgm@gnu.org>
1591         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
1593 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1595         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
1596         excessive whitespace from the default values of title and description.
1598 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1600         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
1601         mail-fetch-field to fetch Content-Description header in order to
1602         exclude newlines.
1604 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1606         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
1607         to deleted part.
1609 2009-05-30  David Engster  <dengste@eml.cc>
1611         * nnmairix.el: Remove old documentation in the commentary block.
1612         (nnmairix-request-group): Do not update active file for nnml back ends.
1613         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
1614         end so that overview files are ignored.
1615         (nnmairix-update-groups): Make updating the groups more robust by using
1616         marks.
1617         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
1618         with dollar characters in message-id.
1620 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
1622         * spam.el: Use dns-query instead of query-dns.  Was renamed on
1623         2008-12-25 in dns.el.
1625 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1627         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
1628         could happen if the text is only composed of spaces and/or tabs.
1630 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
1632         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
1633         when sending a queued message to avoid extra mml tags.
1635 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1637         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
1639 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1641         * gnus-dired.el: Remove autoload for gnus-setup-message.
1642         (gnus-dired-attach): Fake this-command value to prevent Gnus from
1643         displaying Gnus logo; always use compose-mail.
1645 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1647         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
1649 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1651         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
1652         (gnus-nocem-issuers): List currently active issuers; fix custom type.
1653         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
1654         available.
1655         (gnus-nocem-epg-verify): New function.
1657 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
1659         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
1661 2009-02-15  Glenn Morris  <rgm@gnu.org>
1663         * gnus-util.el (rmail-insert-rmail-file-header)
1664         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
1665         autoloads.
1666         (rmail-default-rmail-file): Remove unnecessary declaration.
1667         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
1669 2009-02-14  Glenn Morris  <rgm@gnu.org>
1671         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
1672         variable (only used in gnus-util, which declares it anyway).
1673         (rmail-output-to-rmail-file): Remove autoload of deleted function,
1674         which was only needed by gnus-art (changed to not use it any more).
1675         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
1676         only used in gnus-util, which autoloads it itself.
1677         (rmail-update-summary): Fix autoload.
1679         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
1680         rather than rmail-output-to-rmail-file.
1682 2009-02-07  Glenn Morris  <rgm@gnu.org>
1684         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
1685         autoload of function that no longer exists.
1686         (rmail-toggle-header): Declare.
1687         (message-forward-rmail-make-body): Handle mbox Rmail.
1689 2009-01-31  Glenn Morris  <rgm@gnu.org>
1691         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
1692         2009-01-09 change.
1694 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
1696         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
1697         (auth-source-forget-all-cached): New convenience function.
1698         (auth-source-user-or-password): Accept list of modes or a single mode.
1700         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
1701         auth-source modes.
1703         * nnimap.el (nnimap-open-connection): Use list of
1704         auth-source modes.
1706         * nntp.el (nntp-send-authinfo): Use list of
1707         auth-source modes.
1709 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
1711         * auth-source.el: Update docs to reflect epa-file-enable is to be used
1712         now.
1714 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1716         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
1717         coding system in XEmacs; add a workaround for XEmacs.
1719 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1721         * mm-util.el (mm-coding-system-priorities): Protect against nil value
1722         of current-language-environment.
1724 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
1726         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
1727         available at runtime.
1729 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1731         * gnus-art.el (article-date-ut): Fix end point of narrowing.
1733 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
1735         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
1736         the greatest positive fixnum value doesn't work under an XEmacs with
1737         bignum support; use the most-positive-fixnum constant instead,
1738         available since Emacs 21.1 with cl and XEmacs 21.1.
1740 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1742         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
1743         XEmacs gets not to work.
1745 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1747         * mm-util.el (mm-coding-system-priorities): Allow the value like
1748         "Japanese (UTF-8)" of current-language-environment.
1750 2009-01-09  Glenn Morris  <rgm@gnu.org>
1752         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
1753         with last-command-event.
1755 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
1757         * message.el (message-fix-before-sending): Amend comment.
1759 2009-01-07  David Engster  <dengste@eml.cc>
1761         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
1762         simplified server definitions by converting it via
1763         gnus-server-to-method.
1765 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1767         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
1768         parameter's operands.
1770 2009-01-06  David Engster  <dengste@eml.cc>
1772         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
1773         primary select method (for gnus-group-mark-article-as-read).
1775 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
1777         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
1778         `(gnus)Face', not `(gnus)X-Face'.
1780 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1782         * mm-util.el (mm-ucs-to-char): New function.
1784         * mm-url.el (mm-url-decode-entities): Use it.
1786 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
1788         * message.el (message-fix-before-sending): Add `eight-bit' to
1789         illegible-text check.
1791 2009-01-03  Michael Olson  <mwolson@gnu.org>
1793         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
1794         `headers' is nil.  This can occur if the IMAP server does not have
1795         permissions to read messages from a folder, but can write new messages
1796         to the folder.
1797         (nnimap-request-article-part): Do not insert `data' if it is nil.
1799 2009-01-01  Dave Love  <fx@gnu.org>
1801         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
1803         * nnimap.el: Fix author email.
1804         (nnimap-split-rule): Add FIXME comment.
1805         (nnimap-debug): Fix doc string.
1807 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1809         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
1810         overlay-arrow-position and overlay-arrow-string buffer-local; no need
1811         to check if those variables exist (first appeared in Emacs 18.50).
1813 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1815         * mm-util.el (mm-line-number-at-pos): New function.
1817         * spam-report.el (spam-report-process-queue): Use it.
1819 2008-12-24  David Engster  <dengste@eml.cc>
1821         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
1822         parameters that haven't existed as variables as buffer-local variables.
1824 2008-12-23  Dave Love  <fx@gnu.org>
1826         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
1827         cadar.
1829         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
1830         imap-starttls-p.
1831         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
1833 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
1835         * spam-report.el (spam-report-gmane-max-requests): New constant.
1836         (spam-report-gmane-wait): New variable.
1837         (spam-report-gmane-ham, spam-report-gmane-spam)
1838         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
1839         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
1840         the server.
1842         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
1843         Add explanations.
1845         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
1846         nnheader-accept-process-output and nnheader-read-timeout if available.
1847         (pop3-movemail): Use it.
1849         * message.el (message-check-news-body-syntax): Fix signature check if
1850         there's an attachment.
1852 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1854         * mm-util.el: Add comments to the mm- emulating functions.
1856 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
1858         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
1859         by Stephen Berman <stephen.berman@gmx.net>.
1861 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1863         * mm-util.el (mm-substring-no-properties): New function.
1864         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
1865         (mm-special-display-p): Enable those lambda forms to be byte compiled.
1866         (mm-string-to-multibyte): Doc fix.
1868         * mml.el (mml-attach-file): Use mm-substring-no-properties.
1870 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
1872         * mml.el (mml-attach-file): Strip text properties from file name.
1873         (Bug#1574)
1875 2008-12-16  Glenn Morris  <rgm@gnu.org>
1877         * mm-util.el (mm-charset-override-alist): Declare for compiler.
1879 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1881         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
1882         knows since the charset specified might be a bogus alias that
1883         mm-charset-synonym-alist provides.
1885 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
1887         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
1888         "ISO_8859-1".
1890         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
1892 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1894         * mm-util.el (mm-charset-eval-alist):
1895         Define it before mm-charset-to-coding-system.
1896         (mm-charset-to-coding-system): Add optional argument `silent';
1897         define it before mm-charset-override-alist.
1898         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
1899         default value if it can be used in Emacs currently running;
1900         silence mm-charset-to-coding-system.
1902 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1904         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
1905         `allow-override' which says whether to use `mm-charset-override-alist'.
1906         (rfc2047-decode-encoded-words): Use it.
1908         * mm-util.el (mm-charset-override-alist): Fix custom type;
1909         add `(gb2312 . gbk)' to choices.
1911 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1913         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
1914         fast.
1916         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
1918 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
1920         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
1921         on links.
1923         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
1925 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1927         * message.el (message-idna-to-ascii-rhs-1): Protect against local
1928         users' addresses that don't have domain parts.
1929         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
1930         rather than message-narrow-to-head since there will be the message
1931         header separator.
1933 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1935         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
1936         since the result is inserted in a unibyte buffer anyway.
1937         (nnimap-demule-use-string-to-multibyte): Remove.
1938         (nnimap-demule): Alias it to mm-string-to-multibyte.
1940 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
1942         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
1943         variable for debugging bug#464 and bug#1174.
1944         (nnimap-demule): Use it.
1946 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
1948         * gnus-score.el (gnus-score-find-trace): Handle default score in total
1949         score calculation correctly.
1951 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1953         * message.el (message-send-mail): Just set the buffer to unibyte
1954         rather than use mm-with-unibyte-current-buffer which does a lot more.
1955         (message-send-mail-partially): Don't bother with
1956         mm-with-unibyte-current-buffer since it's already been made unibyte by
1957         message-send-mail.
1959 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
1961         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
1963 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
1965         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
1967 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1969         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
1970         require itself and to remove `with-no-warnings'.
1972 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
1974         * starttls.el (starttls-any-program-available): Get the name of the
1975         available TLS layer program.
1976         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
1977         well as the host name in the "opening" message.
1979         * auth-source.el (auth-source-cache, auth-source-do-cache)
1980         (auth-source-user-or-password): Cache passwords and logins by default,
1981         allow override with `auth-source-do-cache'.
1982         (auth-source-forget-user-or-password): Allow users to remove cache
1983         entries if needed.
1985 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
1987         * ietf-drums.el (ietf-drums-remove-comments): Localize second
1988         condition-case to only the forward-sexp call.
1990 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
1992         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
1993         quotes contained.  Make it more robust regardless by an extra
1994         condition-case wrapper.
1996 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1998         * nnml.el (nnml-request-expire-articles): Check if the function set to
1999         `nnmail-expiry-target' returns the symbol `delete'.
2001         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2003         * nnmail.el (nnmail-expiry-target): Fix custom type.
2005 2008-10-02  Glenn Morris  <rgm@gnu.org>
2007         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2008         Silence compiler warning.
2010 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2012         * mml.el (mml-menu): Don't assume mml2015 is bound.
2014 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2016         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2017         exists.
2019 2008-09-27  Glenn Morris  <rgm@gnu.org>
2021         * gnus-util.el (mail-header-remove-comments): Autoload it.
2023 2008-09-27  Andreas Schwab  <schwab@suse.de>
2025         * gnus-util.el (gnus-split-references): Strip comments.
2026         (gnus-parent-id): Likewise.
2028 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2030         * message.el (message-confirm-send): Fix version.
2032 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2034         * message.el (message-idna-to-ascii-rhs-1): Use
2035         mail-extract-address-components rather than mail-header-parse-addresses
2036         that is an alias by default to ietf-drums-parse-addresses that does not
2037         support non-ASCII names in headers' contents.
2039 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2041         * message.el (message-confirm-send): Fixed variable documentation to
2042         avoid the "y/n" wording.
2044 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2046         * message.el (message-set-auto-save-file-name): Save to a different
2047         filename so multiple messages (especially drafts) can be recovered.
2049 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2051         * message.el (message-confirm-send): Add appropriate version.
2053 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2055         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2056         defvar.
2058 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2060         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2061         (mm-pkcs7-enveloped-magic): Ditto.
2063 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2065         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2066         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2068 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2070         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2071         default, it's better.
2073 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2075         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2076         summary line gnus-number property and ignore them (with a warning
2077         message).
2079 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2081         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2082         macro caddr in the interactive form since it won't be expanded.
2084 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2086         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2087         `charset'; fix name of function called recursively.
2088         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2090 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2092         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2093         (gnus-mime-set-charset-parameters): New function.
2094         (gnus-mime-view-part-as-charset): Use it to correctly display part
2095         specifying wrong charset.
2097 2008-09-08  David Engster  <dengste@eml.cc>
2099         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2100         in completing-read for back end server.
2102 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2104         * message.el (message-confirm-send): New variable to confirm sending a
2105         message.
2106         (message-send): Use it.
2108 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2110         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2112 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2114         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2116 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2118         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2119         prevent tracking too many groups.
2120         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2121         Use it.
2123 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2125         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2126         moving point to the bottom of the window in order to avoid recentering.
2128 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2130         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2131         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2132         (gnus-article-beginning-of-window): Fix calculation.
2134 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2136         * gnus-msg.el (gnus-summary-supersede-article)
2137         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2138         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2139         message header.
2141 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2143         * message.el:
2144         * gnus-start.el:
2145         * gnus-registry.el: Remove VMS support.
2147 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2149         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2150         macro.
2151         (rfc2104-hash): Use it.
2153 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2155         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2156         (gnus-summary-sort-by-most-recent-date): New commands.
2157         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2158         and menu entries.
2160 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2162         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2163         don't redisplay article for raw contents; remove plural articles stuff.
2165         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2166         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2167         on gnus-summary-save-article; display results properly.
2169 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2171         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2173 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2175         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2176         gnus-save-all-headers.
2178 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2180         * gnus-util.el (ns-focus-frame): Remove declaration.
2181         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2182         like x.
2184 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2186         * rfc2104.el (rfc2104-zero): Delete defconst.
2187         (rfc2104-hex-alist): Likewise.
2188         (rfc2104-hex-to-int): Delete func.
2189         (rfc2104-hexstring-to-bitstring): Likewise.
2190         (rfc2104-nybbles): New defconst.
2191         (rfc2104-hash): Rewrite for speed.
2193 2008-07-16  Glenn Morris  <rgm@gnu.org>
2195         * gnus-util.el (ns-focus-frame): Declare for compiler.
2197 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2199         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
2200         set as a group parameter.
2201         (gnus-summary-save-in-pipe): Work when it is called independently.
2202         (gnus-summary-pipe-to-muttprint): Don't modify
2203         gnus-summary-pipe-output-default-command.
2205 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2207         * message.el (message-send-mail-with-sendmail):
2208         Display the error message.
2210 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2212         * gnus-art.el (gnus-default-article-saver):
2213         Add gnus-summary-save-in-pipe to choices.
2214         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
2215         gnus-summary-pipe-output-default-command as the default command.
2216         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
2217         instead of gnus-last-shell-command.
2219         * gnus-sum.el (gnus-summary-pipe-output-default-command):
2220         New user option.
2221         (gnus-summary-muttprint-program): Mention the value will be changed.
2222         (gnus-summary-save-article): Force showing of all headers.
2223         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
2225 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
2227         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
2229 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
2231         * nnimap.el (nnimap-id):
2232         * sieve-manage.el (sieve-manage-open): Doc fixes.
2234 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
2236         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
2237         if available.
2239 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2241         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
2243         * nnkiboze.el (nnkiboze-generate-group):
2244         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
2246         * nnmairix.el: Require CL.
2248 2008-06-15  David Engster  <dengste@eml.cc>
2250         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
2252 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
2254         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
2255         New macros that expand to an `aset'/`aref' call under Emacs, and to a
2256         runtime choice under XEmacs.
2258         * gnus-sum.el (gnus-summary-set-display-table):
2259         Use `gnus-put-display-table', `gnus-get-display-table',
2260         `gnus-set-display-table' for the display table, instead of `aset'.
2262 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
2264         * nnmairix.el: Add autoloads.
2266 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
2268         * nnmairix.el (nnmairix-delete-recreate-group)
2269         (nnmairix-update-and-clear-marks): Fix error messages.
2271 2008-06-14  David Engster  <dengste@eml.cc>
2273         * nnmairix.el: Upgrade to version 0.6.
2274         (nnmairix-group-toggle-propmarks-this-group)
2275         (nnmairix-group-toggle-readmarks-this-group)
2276         (nnmairix-group-delete-recreate-this-group)
2277         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
2278         (nnmairix-remove-tick-mark-original-article): New commands.
2279         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
2280         (nnmairix-propagate-marks-to-nnmairix-groups)
2281         (nnmairix-only-use-registry, nnmairix-allowfast-default)
2282         (nnmairix-marks-cache, nnmairix-version-output): New variables.
2283         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
2284         functions needed for marks propagation and manipulation of read marks.
2285         (nnmairix-update-groups): New function.
2286         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
2287         (nnmairix-determine-original-group-from-registry)
2288         (nnmairix-determine-original-group-from-path)
2289         (nnmairix-get-group-from-file-path, nnmairix-map-range)
2290         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
2291         New helper functions.
2292         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
2293         keystrokes for new commands.
2294         (nnmairix-delete-and-create-on-change): Doc string cleanup.
2295         (nnmairix-request-group): Check allow-fast group parameter.
2296         (nnmairix-request-create-group): Set allow-fast group parameter if
2297         nnmairix-allowfast-default is set.
2298         (nnmairix-close-group): Propagate marks upon closing if needed.
2299         (nnmairix-group-toggle-threads-this-group): Use new.
2300         nnmairix-group-toggle-parameter helper function.
2301         (nnmairix-search): Better check for empty search result.
2302         (nnmairix-goto-original-article): Use new helper functions for
2303         determining original article.
2304         (nnmairix-show-original-article): Make sure message-id is in brackets.
2305         (nnmairix-call-mairix-binary): Change variable name.
2306         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
2307         helper function.
2308         (nnmairix-widget-toggle-activate): Fix doc string.
2310 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2312         * nnir.el: Require edmacro when compiling with XEmacs.
2313         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
2314         available in Emacs 21.
2316 2008-06-11  Glenn Morris  <rgm@gnu.org>
2318         * gnus-util.el (x-focus-frame):
2319         * gnus.el (image-size):
2320         * mm-decode.el (image-size): Declare.
2322         * gnus-picon.el (declare-function): Add compat definition.
2323         (image-size): Declare.
2325         * gnus-group.el (tool-bar-map):
2326         * gnus-sum.el (tool-bar-map): Define for compiler.
2328         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
2330         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
2332         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
2333         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
2334         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
2335         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
2336         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
2337         * sieve-manage.el, spam-report.el, spam.el:
2338         Remove unnecessary eval-and-compile of autoloads.
2340 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
2342         * auth-source.el: Precise Tramp doc.
2344 2008-06-07  Glenn Morris  <rgm@gnu.org>
2346         * nnmairix.el: Remove unnecessary eval-when-compile.
2348 2008-06-06  Kai Großjohann  <grossjohann@ls6.cs.uni-dortmund.de>
2350         * nnir.el: New file.
2352 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2354         * gnus-util.el (gnus-read-shell-command): New function.
2355         * mm-decode.el (mm-pipe-part):
2356         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
2358 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2360         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
2362 2008-06-03  Glenn Morris  <rgm@gnu.org>
2364         * pop3.el (nnheader-accept-process-output): Autoload it.
2366 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2368         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
2369         are not 2-digit hexadecimal characters that follow `%'s.
2371 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
2373         * message.el (message-bogus-recipient-p): Fix type in doc string.
2374         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
2375         (message-bogus-addresses): Rename from message-bogus-address-regexp.
2376         Improve custom options.
2377         (message-bogus-recipient-p): Adjust accordingly.
2379 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2381         * nnmairix.el: Require edmacro when compiling with XEmacs.
2383 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
2385         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
2386         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
2388 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
2390         * auth-source.el: Add more docs.
2392 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2394         * nnheader.el (nnheader-read-timeout): Change the default timeout from
2395         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
2396         retrieval faster in some cases, but might make CPU usage larger.  If
2397         this has any bad side effects, we might revert this change.
2399         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
2400         seems to make mail retrieval much, much faster.
2401         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
2402         unconditionally.
2404         * gnus-draft.el (gnus-group-send-queue): Bind
2405         message-send-mail-partially-limit to nil to avoid being prompted.
2407 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
2409         * mml.el (mml-attach-buffer): Prompt for `disposition'.
2411         * message.el (message-bogus-address-regexp): Fix and improve custom
2412         type.
2413         (message-setup-hook): Add message-check-recipients as custom option.
2415 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
2417         * message.el (message-cite-function): Remove bogus autoload which crept
2418         in during merge from v5-10.
2420 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
2422         * nnimap.el (nnimap-open-connection): Fix login/password bug.
2424         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
2426         * auth-source.el: Preliminary Tramp docs.
2427         (auth-sources): Change the default auth-sources to use
2428         EPA .gpg files.
2430 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
2432         * nntp.el: Autoload `auth-source-user-or-password'.
2433         (nntp-send-authinfo): Use it.
2435         * nnimap.el: Autoload `auth-source-user-or-password'.
2436         (nnimap-open-connection): Use it.
2438         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
2439         for the gnus-message function.
2440         (auth-source-user-or-password): Use it.
2442 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2444         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
2445         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
2446         (rfc2104-hash): Use it.
2448 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
2450         * gnus-art.el (gnus-article-toggle-truncate-lines):
2451         Don't use `iff' in docstring.
2453 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
2455         * gnus-registry.el: Adjusted copyright dates and added a keyword.
2457         * gnus-util.el (gnus-extract-address-component-name)
2458         (gnus-extract-address-component-email): Convenience functions around
2459         `gnus-extract-address-components'.
2461         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
2462         Use `gnus-extract-address-component-email' to fix bug of comparing full
2463         sender name to `user-mail-address'.
2465 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
2467         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
2468         catch/throw to optimize.
2469         (gnus-registry-find-keywords): Just use member to find a keyword.
2471 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2473         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
2474         is current before calling gnus-server-prepare.
2475         (gnus-server-setup-buffer, gnus-server-update-server)
2476         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
2478 2008-05-04  Juri Linkov  <juri@jurta.org>
2480         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
2481         (mailcap-file-default-commands): Use mailcap-replace-in-string
2482         instead of replace-regexp-in-string, and mailcap-delete-duplicates
2483         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
2485 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
2487         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
2489 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2491         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
2492         hooks.
2493         (gnus-update-read-articles): Speed up non-marks-using users.
2494         (gnus-use-marks): Define gnus-use-marks.
2495         (gnus-propagate-marks): Rename variable to something more sensible.
2497 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
2499         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
2500         (gmm-image-load-path-for-library): Fix typos in docstrings.
2501         (gmm-message): Reflow docstring.
2503 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
2505         * mail-source.el (mail-source-set-1, mail-source-bind):
2506         Move auth-source code out of the macro to clean it up and fix bugs.
2508 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
2510         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
2511         by sender if it's equal to user-mail-address, it's likely to be
2512         useless.
2514         * mail-source.el (mail-source-bind): Don't use user or password if they
2515         are not bound.  Unintern them if they are nil.  Don't use server unless
2516         it's bound, and default it to empty string otherwise.
2518 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
2520         * mail-source.el: Load auth-source.el.
2521         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
2522         get user name or password, if auth-sources is set up.
2524         * gnus-registry.el (gnus-registry-split-strategy): New variable for
2525         strategy of splitting with parent.
2526         (gnus-registry-split-fancy-with-parent)
2527         (gnus-registry-post-process-groups): Use it and fix prior
2528         bug (returning a list as the split result).
2530         * auth-source.el (auth-sources): Remove server parameter.
2531         (auth-source-pick, auth-source-user-or-password)
2532         (auth-source-user-or-password-imap)
2533         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
2534         (auth-source-user-or-password-sftp)
2535         (auth-source-user-or-password-smtp): Remove server parameter.
2537 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
2539         * smime.el (smime-sign-region, smime-encrypt-region)
2540         (smime-decrypt-region):
2541         Remove redundant calls to `generate-new-buffer-name'.
2543 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
2545         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
2546         Don't use QP for message/rfc822.
2547         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
2549 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2551         * sieve-manage.el (sieve-string-bytes): Remove.
2552         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
2553         correct byte-length only if the process's coding-system is the same as
2554         the one used internally by Emacs to represent strings.
2556 2008-04-22  Juri Linkov  <juri@jurta.org>
2558         * mailcap.el (mailcap-file-default-commands): New function.
2560 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
2562         * message.el (message-signature-separator, message-cite-function):
2563         Change custom version.
2565 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
2567         * mm-decode.el (mm-display-external): Make temp file read-only.
2569 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
2571         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
2572         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
2573         `C-c C-f d'.
2575 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
2577         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
2579 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
2581         * auth-source.el: Added docs.
2582         (auth-sources): Modify format to support server.
2583         (auth-source-pick, auth-source-user-or-password)
2584         (auth-source-user-or-password-imap)
2585         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
2586         (auth-source-user-or-password-sftp)
2587         (auth-source-user-or-password-smtp): Add server parameter.
2589 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
2591         * gnus-registry.el: Initialize the registry when gnus-registry-install
2592         is t.
2594 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2596         * compface.el (uncompface): Make buffer unibyte.
2598 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2600         * mail-source.el (mail-source-value):
2601         Prefer fboundp to functionp so it works with macros as well.
2603 2008-04-05  Glenn Morris  <rgm@gnu.org>
2605         * gnus-ems.el (mm-disable-multibyte): Autoload it.
2607 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2609         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
2610         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
2612         * nnheader.el (nnheader-init-server-buffer): Change buffer's
2613         multibyteness after rather than before erasing it.
2615         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
2616         mm-with-multibyte.
2617         (gnus-request-article-this-buffer): Make sure the proper decoding is
2618         used if gnus-original-article-buffer happens to be unibyte.
2620         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
2621         default-enable-multibyte-characters.
2623         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
2624         default-enable-multibyte-characters.
2626         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
2628         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
2630 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2632         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2633         Fix last change in case the element is not even a symbol.
2635 2008-04-02  Simon Josefsson  <simon@josefsson.org>
2637         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
2638         imap-enable-exchange-bug-workaround.
2639         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
2641 2008-04-01  Simon Josefsson  <simon@josefsson.org>
2643         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
2644         a 100 byte status-checks into a 2-3MB transfer for each group.
2645         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
2646         to enable bug workaround or not.
2647         (nnimap-find-minmax-uid): Only enable workaround conditionally.
2649 2008-03-31  Glenn Morris  <rgm@gnu.org>
2651         * message.el (mml2015-use): Declare for compiler.
2652         (message-info): Require mml2015 when appropriate.
2654 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2656         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
2657         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
2658         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
2659         (nntp-service-to-port): New function.
2660         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
2661         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
2662         (nntp-open-netcat-stream): New function.
2663         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
2665 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
2667         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
2669 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2671         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
2673 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
2675         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
2677 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
2679         * message.el (message-signature-separator): Change default.
2680         Improve custom type.
2681         (message-cite-function): Change default to
2682         message-cite-original-without-signature.
2684         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
2685         toggle.
2687         * message.el (message-check-news-body-syntax): Fix signature check.
2688         (message-setup-1): Mark buffer as unmodified _after_ running
2689         message-setup-hook and handling message-alternative-emails.
2690         (message-shorten-references): Be more strict when building list of
2691         valid references to comply with GNKSA.
2693         * gnus-group.el (gnus-read-ephemeral-bug-group)
2694         (gnus-read-ephemeral-debian-bug-group)
2695         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
2697         * message.el (message-info): Don't use booleanp which isn't supported
2698         in Emacs 21 and XEmacs.
2700 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
2702         * gnus-group.el (gnus-gmane-group-download-format): Rename from
2703         gnus-group-gmane-group-download-format.
2704         (gnus-group-read-ephemeral-gmane-group): Rename from
2705         gnus-group-read-ephemeral-gmane-group.
2706         (gnus-read-ephemeral-gmane-group-url): Rename from
2707         gnus-group-read-ephemeral-gmane-group-url.
2708         (gnus-bug-group-download-format-alist): New variable.
2709         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
2710         (gnus-read-ephemeral-emacs-bug-group): New commands.
2712 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
2714         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
2715         (gnus-visible-headers): Improve custom type.
2717 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
2719         * mml.el (mml-menu): Add workarounds for XEmacs.
2721         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
2722         X-Boundary header.
2724         * message.el (message-simplify-recipients): Fix previous commit.
2726 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2728         * mm-util.el (mm-set-buffer-multibyte): New function.
2729         * mm-decode.el (mm-copy-to-buffer): Use it.
2731         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2732         Prefer fboundp to functionp so it works with macros as well.
2734 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
2736         * message.el (message-alter-recipients-discard-bogus-full-name):
2737         New function.
2738         (message-alter-recipients-function): New variable.
2739         (message-get-reply-headers): Use it.
2740         (message-replace-header): New helper function.
2741         (message-recipients-without-full-name): New variable.
2742         (message-simplify-recipients): New command.
2744         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
2746         * message.el (message-info): Handle EasyPG manual.
2748         * mml.el (mml-menu): Add entry for EasyPG.
2750 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
2752         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
2753         parameter.
2755         * message.el (message-disassociate-draft): Specify drafts group name
2756         fully.
2758 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
2760         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
2761         unnecessary duplicates from the match list.
2763 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
2765         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
2766         args of `how-many' of which the XEmacs version doesn't take; declare
2767         Info-index-next as function.
2769 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
2771         * gnus-score.el (gnus-score-headers): Fix handling of
2772         gnus-inhibit-slow-scoring.
2774         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
2775         string.
2776         (gnus-button-url-regexp): Improve handling of parenthesis.
2777         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
2778         (gnus-button-handle-info-keystrokes): Handle index entries.
2780 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2782         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
2783         Incoming* files.
2785 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
2787         * auth-source.el (auth-sources): Renamed from auth-source-choices.
2788         (auth-source-pick): Use it.
2790 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
2792         * auth-source.el (auth-source-protocols)
2793         (auth-source-protocols-customize, auth-source-choices): Added and
2794         modified variable customizations and defaults.
2795         (auth-source-pick, auth-source-user-or-password)
2796         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
2797         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
2798         (auth-source-user-or-password-sftp)
2799         (auth-source-user-or-password-smtp): Use new variables and provide an
2800         interface to netrc.el.
2802 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2804         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
2805         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
2806         Make sure the nntp port to specify is a string.
2808 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2810         * nntp.el: Use with-current-buffer.
2811         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
2812         dubious mm-with-unibyte-current-buffer.
2813         (nntp-with-open-group-function): New function extracted from
2814         nntp-with-open-group macro.
2815         (nntp-with-open-group): Use the function, so it's easier to debug.
2816         Add indentation and debugging info.
2817         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
2818         the use of the netcat alternatives.
2820         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
2821         Avoid mm-string-as-multibyte as well.
2823         * nnweb.el (nnweb-insert-html):
2824         Remove use of nnheader-string-as-multibyte.
2826         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
2827         (nnheader-string-as-multibyte): Remove.
2829         * mm-view.el: Use inhibit-read-only.
2830         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
2831         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
2832         or unibyte-string.
2834         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
2835         (mm-uu-yenc-extract): Use with-current-buffer.
2837         * gnus-soup.el (gnus-soup-send-packet): Don't use
2838         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
2840         * nnmh.el: Use with-current-buffer.
2841         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
2842         mm-string-as-multibyte on the output of mm-encode-coding-string.
2844         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
2845         (nnimap-request-move-article): Use with-current-buffer.
2847         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
2848         inserting the handle-buffer's text, so the implicit multibyte->unibyte
2849         conversion uses string-make-unibyte rather than string-as-unibyte.
2851         * gnus-msg.el: Use with-current-buffer.
2853         * message.el (message-ignored-resent-headers): Add "Delivered-To".
2855 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
2857         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
2858         string for caching if it is 'PIN.
2860 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
2862         * mail-source.el (mail-source-delete-old-incoming-confirm):
2863         Change default to nil.
2864         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
2866 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2868         * gnus-art.el (gnus-narrow-to-page): Position point properly.
2869         (gnus-article-goto-prev-page): Work for articles having ^L's.
2871         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
2873         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
2875 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
2877         * gnus-bookmark.el: Adjust for renames in bookmark.el.
2878         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
2879         (gnus-bookmark-jump): Adjust some variable names.
2881 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
2883         * auth-source.el: New package.
2884         (auth-source-choices): Add customization entry point variable.
2886         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
2887         bug.
2889 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
2891         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
2892         (gnus-registry-initialize, gnus-registry-install-p): Use it.
2893         (gnus-registry-install-shortcuts): Rename from
2894         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
2895         the `gnus-registry-mark-map' keymap dynamically from
2896         `gnus-registry-marks'.  The generated functions update the summary line
2897         when a registry mark is added or deleted, and will call
2898         `gnus-registry-install-p' (see the comments in the code).
2899         (gnus-registry-user-format-function-M): Use concat intelligently.
2901         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
2902         the registry mark functions.
2904 2008-03-05  Glenn Morris  <rgm@gnu.org>
2906         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
2907         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
2908         gnus-art.
2909         (top-level): No need to load own source when compiling.
2911 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
2913         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
2914         Suggested by <chris.anderton@zetnet.co.uk>.
2916 2008-03-04  Glenn Morris  <rgm@gnu.org>
2918         * gnus-sum.el (top-level): No need to require gnus when compiling,
2919         since unconditionally required near start of file.
2920         (gnus-summary-display-while-building): Move definition before use.
2922 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
2924         * gnus-registry.el (gnus-registry-user-format-function-M): Add
2925         formatting function.
2927 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
2929         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
2930         with plists.
2931         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
2932         Use new format.
2934 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2936         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
2937         `where-is-internal' that returns a range of key sequences.
2939 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2941         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
2943         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
2944         (gnus-summary-jump-to-group): Consider windows on other displayed
2945         frames as well.  Similar changes might be needed elsewhere, but that's
2946         the one I've bumped into during my use.
2948         * nndoc.el (nndoc-oe-dbx-type-p):
2949         * gnus-msg.el (gnus-debug):
2950         * gnus-group.el (gnus-update-group-mark-positions):
2951         Use mm-string-to-multibyte.
2953 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
2955         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
2956         doesn't handle NotDashEscaped.
2958         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
2959         (mml-dnd-attach-options): Fix typo in custom choice.
2961         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
2962         nndoc-article-type to mbox.
2963         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
2965         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
2966         to nil, instead of html2text.
2968         * imap.el (imap-debug): Add `imap-ping-server'.
2970         * gnus-bookmark.el: Add FIXMEs.
2972         * message.el (message-form-letter-separator)
2973         (message-send-form-letter-delay): New variables.
2974         (message-send-form-letter): Use them.  New command to send form
2975         letters.  Requested by Uwe Siart.
2976         (message-send-mail-function): Doc fix.  Add "Other" custom option.
2978 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
2980         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
2981         empty author.
2983 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
2985         * gnus-registry.el (gnus-registry-marks): Add variable for
2986         customization of marks and their appearance.
2987         (gnus-registry-read-mark): Use it.
2988         (gnus-registry-do-marks): Add utility function to loop through
2989         `gnus-registry-marks'.
2990         (gnus-registry-install-shortcuts-and-menus): Add function to install
2991         shortcuts and menus.
2992         (gnus-registry-initialize): Use it.
2993         (gnus-registry-default-mark): Clarify documentation.
2995 2008-02-29  Glenn Morris  <rgm@gnu.org>
2997         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
2998         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
2999         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3000         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3001         Change defcustom :version from 23.0 to 23.1.
3003 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3005         * gnus-registry.el (gnus-registry-follow-group-p)
3006         (gnus-registry-post-process-groups): Add functions to aid registry
3007         splitting and improve logging.  Clarify behavior in function
3008         documentation.
3009         (gnus-registry-split-fancy-with-parent): Use them.
3011 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3013         * gnus-art.el: Use with-current-buffer.
3015 2008-02-27  David Engster  <dengste@eml.cc>
3017         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3018         Express real group name in the response.
3020 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3022         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3023         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3024         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3025         autoload gnus-registry-fetch-group when compiling.
3026         (nnmairix-request-group-with-article-number-correction): Remove
3027         unreferenced argument passed to nnmairix-call-backend.
3029 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3031         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3032         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3033         Wilde.
3035 2008-02-27  Glenn Morris  <rgm@gnu.org>
3037         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3038         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3039         variables to defconsts.  Convert comments to doc-strings.
3040         (nnmairix-last-server, nnmairix-current-server): Convert from free
3041         variables to defvars.  Convert comments to doc-strings.
3042         (gnus-registry-fetch-group): Autoload.
3043         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3044         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3045         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3046         caddr.
3047         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3048         nnmairix-request-group-with-article-number-correction call.
3049         (nnmairix-fast, nnmairix-group): New, less general names, for free
3050         variables passed from nnmairix-request-group to
3051         nnmairix-request-group-with-article-number-correction.  Declare.
3052         (nnmairix-request-group-with-article-number-correction):
3053         Use nnmairix-fast, nnmairix-group rather than fast, group.
3055 2008-02-26  David Engster  <dengste@eml.cc>
3057         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3058         version 0.5.
3060 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3062         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3063         instead of making an extra function call.  Don't add the current group
3064         to articles only when they have the group.  Use
3065         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3066         Reported by David <de_bb@arcor.de>.
3068 2008-02-24  Miles Bader  <miles@gnu.org>
3070         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
3071         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
3072         (mm-find-mime-charset-region):
3073         * mm-bodies.el (mm-encode-body):
3074         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
3076 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
3078         * mail-source.el (mail-source-delete-incoming): Change default.
3079         Supplement doc string.
3081         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
3083 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
3085         * nnmail.el (nnmail-message-id-cache-file): Derive from
3086         `gnus-home-directory'.
3088 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
3090         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
3091         Document negative prefix.
3093         * gnus-group.el (gnus-group-read-group): Document negative prefix.
3095 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3097         * message.el (message-unsent-separator): Add the Exim bounce
3098         separator.
3100 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
3102         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
3103         list.
3104         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
3105         recipient/signer list.
3107 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
3109         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
3110         fbound (Emacs 23 unicode), signal an error.
3112 2008-02-08  Glenn Morris  <rgm@gnu.org>
3114         * gnus-art.el (pgg-display-output-buffer): Declare as function.
3116 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
3118         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
3119         ports to the calls to `netrc-machine-user-or-password' in addition to
3120         "imap" and "imaps".
3122 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
3124         * gnus.el (gnus-group-startup-message): Add `find-image' call before
3125         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
3126         <hanche@math.ntnu.no>.
3128 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3130         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
3132 2008-02-01  Zhang Wei  <id.brep@gmail.com>
3134         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
3136         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
3138 2008-02-01  Miles Bader  <miles@gnu.org>
3140         * mml.el (mml-parse-1): Remove apparently vestigial use of
3141         `mm-hack-charsets'.
3142         * mm-bodies.el (mm-encode-body): Likewise.
3144 2008-02-01  Kenichi Handa  <handa@m17n.org>
3146         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
3147         rfc2104-hexstring-to-bitstring and changed to return a byte list.
3148         (rfc2104-hash): Convert the result of concat to unibyte string.
3150 2008-02-01  Dave Love  <fx@gnu.org>
3152         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
3153         coding-system-for-read.
3154         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
3156         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
3157         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region): Delete.
3158         (mm-find-mime-charset-region): Remove hack-charsets stuff.
3160 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
3162         * mail-source.el (mail-sources): Add `group' choice.
3164         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
3165         parameter `in-group' to control into which group the articles go.
3166         Add treatment of `group' mail-source.
3168 2008-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
3170         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
3171         * message.el (message-beginning-of-line): Use featurep instead of bound
3172         tests in order to resolve conditionals at compile time.
3174 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
3176         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
3178         * mm-decode.el (mm-dissect-buffer): Decode description.
3180         * mml.el (mml-to-mime): Encode message header first.
3182 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3184         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
3185         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
3187 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
3189         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
3191 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3193         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
3194         prefix keys.
3195         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
3196         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
3197         gnus-xmas.el.
3199 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
3201         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
3202         Add new variables for article mark management.
3203         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
3204         list of extra data entries which, when present, will indicate that the
3205         article ID should not be trimmed from the registry.
3206         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
3207         functions.
3208         (gnus-registry-read-mark): New function to read a mark name from the
3209         user.
3210         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
3211         (gnus-registry-set-article-mark-internal): New functions to add and
3212         remove marks.
3213         (gnus-registry-get-article-marks): New function to show the marks for
3214         an article, or retrieve them for further use.
3216 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3218         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
3219         keys when no argument is given.
3221 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
3223         * gnus-sum.el (gnus-article-sort-by-random)
3224         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
3225         jidanni@jidanni.org.
3227 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3229         * gnus-art.el (gnus-article-describe-bindings): New function.
3230         (gnus-article-read-summary-keys): Use it.
3231         (gnus-article-mode-map): Bind `C-h b' to it.
3233 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3235         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
3236         XEmacs.
3237         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
3238         against non-character events.
3240 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
3242         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
3243         command.
3244         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
3245         instead of END.  Change name of the temp file.
3246         (gnus-group-gmane-group-download-format): Add doc string.  Make it
3247         customizable.
3249 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3251         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
3252         bind `S W' to gnus-article-wide-reply-with-original; set default
3253         binding to gnus-article-read-summary-send-keys.
3254         (gnus-article-read-summary-keys): Fix the order of keys; display
3255         continuation keys correctly in the echo area; describe bindings
3256         correctly when keys end with `C-h'.
3257         (gnus-article-read-summary-send-keys): New function.
3258         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
3259         for gnus-article-read-summary-send-keys; display continuation keys
3260         correctly in the echo area.
3261         (gnus-article-reply-with-original): Ignore prefix argument.
3262         (gnus-article-wide-reply-with-original): New function.
3264 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3266         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
3267         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
3269 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
3271         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
3272         (gnus-group-read-ephemeral-gmane-group): New command.
3274 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
3276         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
3278 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
3280         * message.el (message-send-mail-function): Increase custom version.
3282         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
3283         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
3285 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3287         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
3288         html parts correctly; support forwarded messages.
3289         (gnus-article-browse-html-article): Remove work buffers.
3291         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
3292         compiling.
3293         (netrc-bound-and-true-p): New macro.
3294         (netrc-parse): Use it instead of bound-and-true-p that is not available
3295         in XEmacs 21.4.
3297 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
3299         * gnus-registry.el (gnus-registry-mark-article)
3300         (gnus-registry-article-marks): Add functionality to mark articles
3301         through the Gnus registry.
3303         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
3304         (netrc-parse): Use encrypt-file-alist to determine if
3305         encrypt-find-model or encrypt-insert-file-contents should be used.
3307 2007-12-19  Glenn Morris  <rgm@gnu.org>
3309         * mml.el (message-options-set, message-narrow-to-head)
3310         (message-in-body-p, message-mail-p, message-encode-message-body):
3311         Autoload.
3312         (message-remove-header, message-narrow-to-headers-or-head)
3313         (message-subscribed-p, message-make-mail-followup-to)
3314         (message-position-on-field, message-news-p)
3315         (message-options-set-recipient, message-generate-headers)
3316         (message-sort-headers): Declare as functions.
3318 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
3320         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
3321         convention in doc string.
3323 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3325         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
3326         title to html parts.
3327         (gnus-article-browse-html-article): Pass message header to it.
3329         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
3331 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
3333         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
3334         or password compatible with XEmacs.
3336 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
3338         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
3339         format document.
3340         (gnus-mime-delete-part): Don't write description line if empty.
3341         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
3343 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
3345         * gnus-sum.el (gnus-summary-mark-unread-as-read)
3346         (gnus-summary-mark-read-and-unread-as-read)
3347         (gnus-summary-mark-current-read-and-unread-as-read)
3348         (gnus-summary-mark-unread-as-ticked): Doc fix.
3349         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
3351 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
3353         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
3354         Christoph Conrad <christoph.conrad@gmx.de>.
3356 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
3358         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
3359         yes-or-no-p.
3361 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3363         * mm-decode.el (mm-add-meta-html-tag): New function.
3364         (mm-save-part-to-file, mm-pipe-part): Use it.
3366         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
3367         gnus-y-or-n-p instead of y-or-n-p.
3368         (gnus-article-browse-html-parts): Work with message/external-body; use
3369         mm-add-meta-html-tag.
3371 2007-12-11  Glenn Morris  <rgm@gnu.org>
3373         * gnus-cache.el: Require gnus-sum not just when compiling.
3375         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
3377         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
3378         definitions before use.
3380         * mm-decode.el: Require gnus-util.
3381         (mm-remove-part): Only call delete-annotation on XEmacs.
3383         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
3385         * nnmail.el: Require gnus-int.
3387         * spam.el: Move `require's before `eval-when-compile's.
3389         * gnus-ems.el (gnus-alive-p):
3390         * gnus-fun.el (message-goto-eoh):
3391         * gnus-util.el (gnus-group-name-decode):
3392         * mail-source.el (gnus-compress-sequence):
3393         * message.el (Info-goto-node, format-spec):
3394         * mm-bodies.el (message-options-get):
3395         * mm-decode.el (mm-view-pkcs7):
3396         * mm-util.el (gmm-write-region):
3397         * mml-smime.el (mml-compute-boundary)
3398         (gnus-completing-read-with-default):
3399         * mml.el (widget-button-press, gnus-make-hashtable):
3400         * mml1991.el (mm-decode-content-transfer-encoding)
3401         (mm-encode-content-transfer-encoding)
3402         (message-options-get, message-options-set):
3403         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
3404         * nnfolder.el (gnus-request-group):
3405         * nnheader.el (ietf-drums-unfold-fws):
3406         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
3407         * smime.el (gnus-run-mode-hooks):
3408         * spam-stat.el (gnus-message): Autoload.
3410         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
3411         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
3412         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
3413         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
3414         Add declare-function compatibility definition.
3416         * gnus-cache.el (nnvirtual-find-group-art):
3417         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
3418         (gnus-add-image, gnus-add-wash-type):
3419         * gnus-group.el (nnkiboze-score-file):
3420         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
3421         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
3422         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
3423         (message-tokenize-header, gnus-get-buffer-create)
3424         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
3425         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
3426         * gnus.el (gnus-group-decoded-name):
3427         * mail-source.el (imap-capability):
3428         * mm-bodies.el (message-options-set):
3429         * mm-decode.el (gnus-configure-windows):
3430         * mm-extern.el (message-goto-body):
3431         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
3432         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
3433         (epg-sub-key-validity, message-options-set):
3434         * mml.el (widget-event-point, gnus-configure-windows):
3435         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
3436         * mml2015.el (epg-check-configuration, epg-configuration)
3437         (message-options-set):
3438         * nndb.el (nndb-request-article):
3439         * nnfolder.el (gnus-request-create-group):
3440         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
3441         * nnmaildir.el (gnus-group-mark-article-read):
3442         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
3443         * rfc1843.el (message-fetch-field):
3444         * spam.el (gnus-extract-address-components):
3445         Declare as functions.
3447 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3449         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
3451 2007-12-09  Glenn Morris  <rgm@gnu.org>
3453         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
3455         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
3456         * message.el, mm-view.el, sieve-manage.el, smime.el:
3457         Add declare-function compatibility definition.
3459         * gnus-art.el (w3-region, w3m-region, Info-menu):
3460         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
3461         * gnus-sum.el (gnus-get-predicate):
3462         * gnus-util.el (mm-append-to-file, w32-focus-frame):
3463         * message.el (mail-abbrev-in-expansion-header-p):
3464         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
3465         (w3m-detect-meta-charset, w3m-region):
3466         * sieve-manage.el (password-read, password-cache-add)
3467         (password-cache-remove):
3468         * smime.el (password-read-and-add): Declare as functions.
3470 2007-12-08  David Kastrup  <dak@gnu.org>
3472         * gnus-sum.el (gnus-summary-simplify-subject-query):
3473         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
3474         `message'.
3476 2007-12-07  Glenn Morris  <rgm@gnu.org>
3478         * gnus-art.el (article-make-date-line): Revert previous change.
3480 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
3482         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
3484 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
3486         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
3487         Call gnus-add-to-range ranges only once with a prepared article-list.
3489 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
3491         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
3492         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
3493         group names with backslashes.  Reported by Tassilo Horn
3494         <tassilo@member.fsf.org>.
3496 2007-12-06  Deepak Goel  <deego3@gmail.com>
3498         * gnus-art.el (article-make-date-line):
3499         * gnus-start.el (gnus-load):
3500         * pop3.el (pop3-read-response): Fix buggy call to `error'.
3502 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3504         * gnus-art.el (gnus-use-idna)
3505         * gnus-start.el (gnus-site-init-file)
3506         * message.el (message-use-idna)
3507         * mm-uu.el (mm-uu-hide-markers)
3508         * smiley.el (smiley-style): Revert changes that suppress warnings.
3510 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3512         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
3513         specify charset to html source.  Reported by Christoph Conrad
3514         <christoph.conrad@gmx.de>.
3516 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3518         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
3519         idna-program in order to suppress byte compile warning issued by XEmacs
3520         that came to byte compile the default value section of defcustom forms
3521         recently.
3523         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
3524         value of installation-directory.
3526         * message.el (message-use-idna): Don't directly refer to the value of
3527         idna-program.
3529         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
3531         * smiley.el (smiley-style): Don't directly call face-attribute.
3533 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
3535         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
3537         * gnus-dired.el: Reduce Gnus dependencies.
3538         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
3539         require.  Use autoloads instead.
3540         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
3541         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
3542         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
3543         (gnus-dired-mode): Adjust doc string.
3544         (gnus-dired-mail-mode): New variable.
3545         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
3546         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
3547         (gnus-dired-mail-buffers): New function.  Return mail or message
3548         composition buffers.
3549         (gnus-dired-attach): Use it.
3550         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
3551         NO-DECODE.
3552         (gnus-dired-print): Use `gnus-print-buffer' depending on
3553         `gnus-dired-mail-mode'.
3555 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3557         * rfc2047.el (rfc2047-encoded-word-regexp)
3558         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
3559         explaining what regexp patterns are for.
3561 2007-12-04  Glenn Morris  <rgm@gnu.org>
3563         * password.el: Move to ../password-cache.el.
3565         * mml1991.el (password-read, password-cache-add, password-cache-remove):
3566         * mml2015.el (password-read, password-cache-add, password-cache-remove):
3567         * mml-smime.el (password-read, password-cache-add)
3568         (password-cache-remove):
3569         No need to autoload, since mml-sec requires password.
3571         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
3572         * message.el (gnus-extract-address-components):
3573         * mml-smime.el (gnus-extract-address-components): Define for compiler.
3575         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
3576         password.
3578 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
3580         * mailcap.el: Reduce dependencies.
3581         (mail-header-parse-content-type): Autoload.
3582         (mailcap-delete-duplicates): New alias.
3583         (mailcap-mime-info): Add optional argument NO-DECODE.
3584         (mailcap-mime-types): Use mailcap-delete-duplicates.
3586         * message.el (message-ignored-supersedes-headers): Add "X-ID".
3588 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3590         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
3591         function.
3593         * gnus-uu.el (gnus-uu-decode-yenc): New command.
3594         (gnus-uu-yenc-article): New function.
3596         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
3598         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
3599         buffer.
3601 2007-12-02  Glenn Morris  <rgm@gnu.org>
3603         * sasl-cram.el, sasl-digest.el, sasl-ntlm.el, sasl.el:
3604         Move to ../net.
3606         * binhex.el, uudecode.el: Move to ../mail.
3608         * encrypt.el: Remove file.
3610 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
3612         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
3613         matches on patches.
3615         * gnus-art.el (gnus-article-browse-html-article): Mention
3616         `mm-text-html-renderer' in the doc string.
3618         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
3619         string.  Add comments.
3621         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
3622         if rhs is ASCII.
3624 2007-12-01  Glenn Morris  <rgm@gnu.org>
3626         * dig.el, dns.el: Move to ../net.
3627         * format-spec.el, hex-util.el, sha1.el: Move to ../.
3629         * mail-source.el (top-level): Require format-spec before
3630         eval-when-compile.
3632 2007-11-30  Glenn Morris  <rgm@gnu.org>
3634         * encrypt.el: Require password, rather than autoloading password-read.
3636 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
3638         * gnus.el (gnus-method-to-server): Add an optional parameter so the
3639         caller can indicate whether the cache should be disregarded for this
3640         call.  This way the result of the call is reproducible at all times and
3641         can be considered a canonical server name for the supplied method.
3642         (gnus-agent-method-p): Canonicalize server names by pushing their
3643         method through `gnus-method-to-server' using the no-cache argument.
3645         * gnus-srvr.el (gnus-server-insert-server-line): Call
3646         `gnus-method-to-server' with `no-cache' argument.
3648         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
3649         gnus-agent-possibly-synchronize-flags as this should be called when the
3650         server is actually being opened.
3651         (gnus-agent-possibly-synchronize-flags)
3652         (gnus-agent-possibly-synchronize-flags-server): Move check for the
3653         flags file of an agentized server to the latter function.
3655         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
3656         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
3657         after a connection has been established successfully.
3659 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3661         * gnus-art.el (article-display-face): Force to display face if called
3662         interactively; check if gnus-article-x-face-too-ugly matches author.
3663         (article-display-x-face): Display face even if From header is missing
3664         as article-display-face does.
3666 2007-11-28  Richard Stallman  <rms@gnu.org>
3668         * md4.el: Move to ../.
3669         * hmac-def.el, hmac-md5.el, ntlm.el: Move to ../net.
3671 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
3673         * mail-source.el (mail-sources): Default to fetch from file for
3674         compatibility with default of nnmail-spool-file.
3676 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3678         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
3679         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
3680         to look for encoded word that should be encoded again.
3681         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
3682         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
3683         encoding pattern.
3684         (rfc2047-decode-region): Switch strict regexp and loose one according
3685         to rfc2047-allow-irregular-q-encoded-words.
3687 2007-11-26  Simon Josefsson  <simon@josefsson.org>
3689         * imap.el: Move to ../net directory.
3691 2007-11-25  Romain Francoise  <romain@orebokech.com>
3693         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
3695 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
3697         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
3698         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
3700         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
3701         `nnmail-spool-file'.
3703         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
3704         `nnmail-spool-file'.
3706         * gnus-move.el (gnus-change-server): Ditto.
3708         * gnus-kill.el (gnus-batch-score): Ditto.
3710         * gnus-cache.el (gnus-jog-cache): Ditto.
3712         * gnus-msg.el (gnus-summary-reply):
3713         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
3715 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
3717         * gnus-cache.el (gnus-cache-generate-nov-databases):
3718         Use nnml-generate-nov-databases-directory instead of
3719         nnml-generate-nov-databases-1.
3721 2007-11-24  Glenn Morris  <rgm@gnu.org>
3723         * message.el (message-tool-bar-retro): Update for rename
3724         mail_send.xpm->mail-send.xpm.
3726 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
3728         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
3729         `smime-ldap-search' for Emacs 22 and up.
3731 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
3733         * hashcash.el: Move to ../mail directory.
3735         * smime-ldap.el: Remove.  Not used in Emacs 22 and up.
3737         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
3738         `smime-ldap-search' for Emacs 22 and up.
3740 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3742         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
3744         * message.el (message-send-mail-function): Fix error convention.
3745         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
3746         (message-widen-reply, message-send-mail, message-talkative-question)
3747         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
3748         (message-clone-locals, message-send-news): Use with-current-buffer.
3749         (message-insert-or-toggle-importance): Remove unused var `valid'.
3750         (message-make-references): Remove unused var `new-references'.
3751         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
3753 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
3755         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
3756         (spam-split-symbolic-return-positive): Reflow docstring.
3757         (spam-backends, spam-summary-exit-behavior)
3758         (spam-mark-ham-unread-before-move-from-spam-group)
3759         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
3760         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
3761         (spam-clear-cache, spam-backend-check, spam-install-backend)
3762         (spam-install-statistical-backend, spam-list-of-processors)
3763         (spam-group-processor-p, spam-split, spam-bogofilter-score)
3764         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
3765         (spam-check-crm114, spam-initialize, spam-unload-hook):
3766         Fix typos in docstrings.
3768 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3770         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
3771         been checked if they have never been read and those group levels are
3772         higher than the one that a user specified.
3774 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3776         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
3777         foreign groups unless a group level is specified by a user.
3778         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
3780 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
3782         * message.el (message-send-mail-function): Require sendmail.
3784 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
3786         * message.el (message-send-mail-function): Check for smtpmail too.
3788         * utf7.el (utf7-encode, utf7-decode): Use coding system
3789         `utf-7'/`utf-7-imap' from utf-7.el' if available.
3791         * message.el (message-send-mail-function): New function.
3792         (message-send-mail-function): Set default using
3793         message-send-mail-function.  Adjust doc string.
3794         (message-send-mail-with-mailclient): New function.
3796 2007-11-17  Richard Stallman  <rms@gnu.org>
3798         * assistant.el: Remove file.
3800 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
3802         * smime.el (from):
3803         * rfc2047.el (message-posting-charset):
3804         * qp.el (mm-use-ultra-safe-encoding):
3805         * pop3.el (parse-time-months):
3806         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
3807         * nnml.el (files):
3808         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
3809         (jka-compr-compression-info-list, ange-ftp-path-format)
3810         (efs-path-regexp):
3811         * nndiary.el (files):
3812         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
3813         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
3814         (epg-digest-algorithm-alist, inhibit-redisplay)
3815         (password-cache-expiry):
3816         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
3817         (pgg-output-buffer, password-cache-expiry):
3818         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
3819         (efs-path-regexp):
3820         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
3821         (inhibit-redisplay):
3822         * mm-uu.el (file-name, start-point, end-point, entry)
3823         (gnus-newsgroup-name, gnus-newsgroup-charset):
3824         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
3825         (latin-unity-ucs-list):
3826         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
3827         (mm-uu-binhex-decode-function):
3828         * message.el (gnus-message-group-art, gnus-list-identifiers)
3829         (rmail-enable-mime-composing, gnus-local-organization)
3830         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
3831         (gnus-read-active-file, facemenu-add-face-function)
3832         (facemenu-remove-face-function, gnus-article-decoded-p)
3833         (tool-bar-mode):
3834         * mail-source.el (display-time-mail-function):
3835         * gnus-util.el (nnmail-pathname-coding-system)
3836         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
3837         (gnus-original-article-buffer, gnus-user-agent)
3838         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
3839         (xemacs-codename, sxemacs-codename, emacs-program-version):
3840         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
3841         * gnus-start.el (gnus-agent-covered-methods)
3842         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
3843         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
3844         (gnus-newsgroup-headers, gnus-group-list-mode)
3845         (gnus-group-mark-positions, gnus-newsgroup-data)
3846         (gnus-newsgroup-unreads, nnoo-state-alist)
3847         (gnus-current-select-method, mail-sources)
3848         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
3849         (nnmail-spool-file, gnus-cache-active-hashtb):
3850         * gnus-mh.el (mh-lib-progs):
3851         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
3852         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
3853         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
3854         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
3855         (gnus-group-buffer):
3856         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
3857         (font-lock-set-defaults):
3858         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
3859         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
3860         (gnus-summary-post-menu, total-parts, type, condition, length):
3861         * gnus-agent.el (gnus-agent-read-agentview):
3862         * flow-fill.el (show-trailing-whitespace):
3863         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
3864         eval-and-compile wrappers for byte compiler pacifiers.
3866         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
3867         (mm-display-inline-fontify): Check for featurep 'xemacs not
3868         extent-list.
3870         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
3871         itimer-list.
3872         (mm-create-image-xemacs): Only do something for XEmacs.
3873         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
3875         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
3877         * gnus-registry.el (gnus-adaptive-word-syntax-table):
3878         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
3880 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
3882         * nnimap.el (nnimap-split-download-body):
3883         * gnus-demon.el (gnus-demon):
3884         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
3886 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3888         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
3889         macros.
3890         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
3891         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
3892         copy data from unibyte buffer to multibyte current buffer.
3893         (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
3894         to copy data from unibyte current buffer to multibyte buffer.
3895         (nntp-make-process-buffer): Make process buffer unibyte.
3897         * pop3.el (pop3-open-server): Fix typo in Lisp code.
3899 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
3901         * pop3.el (pop3-open-server): Accept and process data more robustly at
3902         connexion start to avoid spurious "POP SSL connexion failed" errors.
3904 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3906         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
3907         read group names.
3909 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
3911         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
3913 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3915         * nnmail.el (nnmail-parse-active): Make group names unibyte.
3916         (nnmail-save-active): Use a unibyte buffer when saving active file,
3917         which may contain non-ASCII group names.
3919         * nnml.el (nnml-request-group): Decode group names in messages.
3921 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
3923         * message.el (message-citation-line-function)
3924         (message-insert-formatted-citation-line): Fix spelling of
3925         `message-insert-formated-citation-line'.
3927 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
3929         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
3931 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3933         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
3934         nnmail-pathname-coding-system.
3936         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
3937         that a user enters; decode group names in messages.
3939         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
3941 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
3943         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
3945         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
3947         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
3948         risky local variable.
3950         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
3952 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
3954         * encrypt.el: Improve documentation to fix function name typo.
3955         Reported by Daiki Ueno <ueno@unixuser.org>.
3957 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3959         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
3960         even if the point is not in the last page of an article.
3961         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
3962         back to the previous page.
3964 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
3966         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
3968 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3970         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
3972 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3974         * message.el (message-check-news-body-syntax): Avoid
3975         mm-string-as-multibyte.
3976         (message-hide-headers): Don't assume (point-min)==1.
3978 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
3980         * message.el (message-remove-blank-cited-lines): Fix if remove is
3981         given.
3982         (message-bogus-address-regexp): New variable.
3983         (message-bogus-recipient-p): New function.
3984         (message-check-recipients): New command.
3985         (message-syntax-checks): Add `bogus-recipient'.
3986         (message-fix-before-sending): Add `bogus-recipient'.
3988         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
3989         (gnus-treat-body-boundary): Don't test window-system.
3991 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
3993         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
3995 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
3997         * gnus.el: Bump version to Gnus v5.13.
3999 2007-10-28  Miles Bader  <miles@gnu.org>
4001         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
4002         at compile-time too.
4004 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
4006         * gnus-msg.el (gnus-message-setup-hook): Add
4007         `message-remove-blank-cited-lines' to options.
4009 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
4011         * message.el (message-remove-blank-cited-lines): New function.
4012         Suggested by Karl Plästerer.
4014 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4016         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
4017         mapc.
4019         * imap.el (imap-open): Replace mapcar called for effect with mapc.
4020         (top-level): Use mapc to set functions to be traced for debugging.
4022         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
4023         called for effect with while loop.
4025         * message.el (message-talkative-question): Replace mapcar called for
4026         effect with mapc.
4028         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
4029         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
4030         called for effect with dolist.
4032         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
4034         * nndiary.el: Use dolist instead of mapcar to add diary headers to
4035         gnus-extra-headers and nnmail-extra-headers.
4037         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
4038         called for effect with dolist.
4039         (top-level): Use mapc to set functions to be traced for debugging.
4041         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
4042         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
4043         dolist.
4045         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
4046         Replace mapcar called for effect with mapc.
4047         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
4048         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
4049         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
4050         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
4052         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
4053         remove-if that's a cl function.
4055         * webmail.el (webmail-debug): Replace mapcar called for effect with
4056         dolist.
4058 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4060         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
4061         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
4062         with while loop.
4064         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
4065         functions from article-* functions.
4066         (gnus-multi-decode-header): Replace mapcar called for effect with
4067         dolist.
4069         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
4070         (gnus-bookmark-show-details): Replace mapcar called for effect with
4071         while loop.
4073         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
4074         called for effect with while loop.
4076         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
4077         with dolist.
4079         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
4080         mapcar called for effect with dolist.
4082         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
4084         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
4085         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
4086         Replace mapcar called for effect with dolist.
4087         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
4088         mapc.
4090         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
4091         Replace mapcar called for effect with dolist.
4092         (gnus-topic-list): Replace mapcar called for effect with mapc.
4094         * gnus.el: Use mapc instead of mapcar to add autoloads.
4096 2007-10-23  Richard Stallman  <rms@gnu.org>
4098         * gnus-group.el (gnus-group-highlight): Mark as risky.
4100 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4102         * gnus.el (gnus-server-to-method): Return method found first in
4103         gnus-newsrc-alist.
4105         * gnus-art.el (gnus-article-highlight-signature)
4106         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
4107         button overlay without the front stickiness.
4109 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
4111         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
4112         overview buffer needed a catch to receive its throw.
4113         (gnus-agent-flush-cache): Declared as interactive to make this function
4114         easier to use.
4116 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
4118         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
4119         `next-line'.
4121 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4123         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
4124         exclude address matching message-dont-reply-to-names.
4126 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4128         * gnus-util.el (gnus-string<): New function.
4130         * gnus-sum.el (gnus-article-sort-by-author)
4131         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
4133 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4135         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
4136         the frame-focus tag is set in gnus-buffer-configuration.
4138 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4140         * gnus-art.el (gnus-article-add-button): Make a button overlay without
4141         the front stickiness.
4143 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4145         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
4146         url pattern; remove duplicate one.
4147         (gnus-article-extend-url-button): New function.
4148         (gnus-article-add-buttons): Use it.
4149         (gnus-button-push): Use concatenated url that it makes.
4151 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
4153         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
4154         (sieve-manage-open): Use `mapc' instead of `mapcar'.
4156 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4158         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
4159         Don't hardcode point-min==1.
4161 2007-09-30  David Kastrup  <dak@gnu.org>
4163         * gnus-art.el (gnus-article-reply-with-original)
4164         (gnus-article-followup-with-original): When `transient-mark-mode' is
4165         off, refrain from active-region behavior for followups.
4167 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
4169         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
4170         Fix comment about "iso8859-1".
4172 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
4174         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
4175         ones returned from the verify-function.
4177         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
4178         mml2015-extract-cleartext-signature if extraction failed.
4180 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
4182         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
4183         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
4184         failed.
4186 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
4188         * Relicense "GPLv2 or later" files to "GPLv3 or later".
4190 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
4192         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
4193         to mark a thread as expirable.  Add variable `hide' to handle hiding of
4194         thread for both the null and zero (kill/expire thread) universal prefix
4195         cases.
4196         (gnus-summary-expire-thread): Add new function to expire a thread,
4197         using gnus-summary-kill-thread.
4198         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
4199         shortcuts for gnus-summary-expire-thread.
4200         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
4201         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
4203 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
4205         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
4206         extras value, so an extras entry can be deleted.
4207         (gnus-registry-delete-extra-entry): Use it.
4208         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
4209         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
4210         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
4211         storage through the gnus-registry, and provide an appropriate API for
4212         it.
4214 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4216         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
4217         Suggested by Leo <sdl.web@gmail.com>.
4219         * gnus.el: Do.
4221 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4223         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
4224         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
4226         * gnus-agent.el (gnus-agent-fetch-headers): Do.
4228         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
4229         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
4231 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4233         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
4234         newline.
4235         (nnmbox-request-accept-article): Don't change article in source buffer;
4236         narrow to header to use message-fetch-field rather than
4237         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
4238         (nnmbox-request-replace-article): Quote lines that'll be misidentified
4239         as delimiters; make sure article ends with newline.
4240         (nnmbox-delete-mail): Correct last position of article to be deleted;
4241         ignore X-Gnus-Newsgroup header in article body.
4242         (nnmbox-save-mail): Quote lines looking like delimiters at the right
4243         positions; make sure article ends with newline.
4245         * message.el (message-display-abbrev): Don't infloop when a user
4246         inserts SPC in the beginning of header.
4248 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
4250         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
4251         list of groups not followed by default.  Fix type to be regexp.
4252         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
4254 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
4256         * hmac-def.el (define-hmac-function): Switch from old-style to
4257         new-style backquotes.
4259         * md4.el (md4-make-step): Likewise.
4261 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4263         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
4264         raw-text coding system when saving .newsrc file, which may contain
4265         non-ASCII group names.
4267 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4269         * gnus-cus.el (gnus-score-extra): New widget.
4270         (gnus-score-extra-convert): New function.
4271         (gnus-score-customize): Use it for Extra.
4273 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
4275         * mml2015.el (mml2015-extract-cleartext-signature): New function.
4276         (mml2015-mailcrypt-clear-verify): Use it.
4277         (mml2015-gpg-clear-verify): Use it.
4278         (mml2015-pgg-clear-verify): Use it.
4279         (mml2015-epg-clear-verify): Replace the current part with the output
4280         from GnuPG; don't extract the plaintext by itself.
4282         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
4283         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
4284         mml2015-clear-verify-function; don't touch the armor headers or
4285         dash-escaped text here.
4287 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4289         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
4290         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
4291         parts, or application/octet-stream as a last resort.
4292         (gnus-mime-view-part-as-type): Don't toggle display.
4293         (gnus-mime-view-part-as-charset): Don't turn off display before
4294         querying charset.
4296         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
4297         stuff to undisplayer function in Emacs.
4298         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
4300         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
4301         text/calendar parts.
4303 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4305         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
4306         decoding text/calendar parts.
4308         * message.el (message-forward-make-body-mime): Always mark body as
4309         having no illegible text; remove signed-or-encrypted argument.
4310         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
4312         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
4313         (mml-generate-mime-1): Don't encode body if it is specified to be in
4314         raw form; don't make buffer be unibyte when inserting multibyte string.
4316 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4318         * sha1.el: Fix up comment style.
4319         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
4320         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
4322         * hex-util.el: Fix up comment style.
4323         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
4325         * gnus-salt.el: Use with-current-buffer.
4326         (gnus-pick-setup-message): Fix long-standing typo.
4328 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4330         * imap.el (imap-logout-timeout): New variable.
4331         (imap-logout, imap-logout-wait): New functions.
4332         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
4334         * nnimap.el (nnimap-logout-timeout): New server variable.
4335         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
4336         nnimap-logout-timeout.
4338         * gnus-art.el (gnus-article-summary-command-nosave)
4339         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
4341 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4343         * gnus.el (gnus-maximum-newsgroup): New variable.
4345         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
4346         according to gnus-maximum-newsgroup.
4348         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
4349         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
4350         Limit the range of articles according to gnus-maximum-newsgroup.
4352 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
4354         * gnus-art.el (gnus-sticky-article): Fixed problems described in
4355         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
4356         Don't perform gnus-configure-windows here; reuse existing sticky
4357         article buffer.
4359         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
4360         it doesn't exist in gnus-article-mode.
4362 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4364         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
4365         (gnus-agent-decoded-group-name): New function.
4366         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
4367         (gnus-agent-expire-group-1): Use it; decode group name in messages.
4369 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
4371         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
4372         Add binding for gnus-sticky-article.
4373         (gnus-summary-exit): Don't kill sticky article buffers.
4375         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
4376         article buffer.
4377         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
4378         (gnus-kill-sticky-article-buffers): New commands.
4380 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4382         * nntp.el (nntp-xref-number-is-evil): New server variable.
4383         (nntp-find-group-and-number): If it is non-nil, don't trust article
4384         numbers in the Xref header.
4386 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4388         * gnus-agent.el (gnus-agent-read-group): New function.
4389         (gnus-agent-flush-group, gnus-agent-expire-group)
4390         (gnus-agent-regenerate-group): Use it.
4391         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
4392         nnmail-pathname-coding-system.
4394 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4396         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
4398         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
4399         that are unread as unread, and also as selected so that information of
4400         marks having been changed by a user may be updated when exiting group.
4402 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
4404         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
4406 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
4408         * gnus-art.el (gnus-mime-display-single): Pass part number that is
4409         calculated ignoring signature parts to gnus-treat-article.
4411 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4413         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
4414         a point here in order to keep the window start.
4415         (gnus-insert-mime-security-button): Make a button overlay without the
4416         front stickiness.
4417         (gnus-mime-display-security): Goto the end of a button.
4419         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
4421 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4423         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
4424         group-name-at-point.
4425         (gnus-group-completing-read): New function that offers decoded
4426         non-ASCII group names for completion.
4427         (gnus-fetch-group, gnus-group-read-ephemeral-group)
4428         (gnus-group-jump-to-group, gnus-group-make-group-simple)
4429         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
4430         (gnus-group-fetch-control): Use it.
4431         (gnus-fetch-group): Use group-name-at-point for the initial value
4432         rather than the default value; use gnus-alive-p.
4434         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
4435         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
4436         (gnus-summary-post-news): Use gnus-group-completing-read.
4438         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
4439         (gnus-read-move-group-name): Decode group name for completion.
4441 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
4443         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
4444         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
4445         Yamaoka slightly modified the code).
4447 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4449         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
4450         (nnmail-split-incoming): Bind it.
4452         * nnml.el (nnml-group-name-charset): New function.
4453         (nnml-decoded-group-name): Use it; don't decode group name if
4454         nnmail-group-names-not-encoded-p is non-nil.
4455         (nnml-encoded-group-name): New function.
4456         (nnml-group-pathname): Inline nnml-decoded-group-name.
4457         (nnml-request-expire-articles): Decode group name in message.
4458         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
4459         nnmail-pathname-coding-system.
4460         (nnml-save-mail, nnml-active-number): Work with decoded group names and
4461         not decoded ones according to nnmail-group-names-not-encoded-p.
4462         (nnml-generate-active-info): Use nnml-encoded-group-name.
4464 2007-08-08  Glenn Morris  <rgm@gnu.org>
4466         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
4467         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
4468         doc-strings and comments.
4470 2007-07-25  Glenn Morris  <rgm@gnu.org>
4472         * Relicense all FSF files to GPLv3 or later.
4474 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4476         * gnus-sum.el (gnus-summary-move-article): Make
4477         gnus-summary-respool-article work.
4479 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
4481         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
4482         string.
4484 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
4486         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
4487         that should be ignored when comparing distant RSS articles with local
4488         ones.
4489         (nnrss-make-hash-index): New function.  Create a hash index according
4490         to the ignored fields.
4491         (nnrss-check-group): Use it.
4493 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4495         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
4497         * gnus-art.el (article-decode-group-name): Decode Xref header too.
4499         * gnus-group.el (gnus-group-make-group): Encode group name here unless
4500         the new optional argument ENCODED is non-nil.
4501         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
4502         coding system for encoding group name.
4503         (gnus-group-make-rss-group): Pass un-encoded group name to
4504         gnus-group-make-group.
4505         (gnus-group-set-info): Tell gnus-group-make-group that group name is
4506         encoded.
4508         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
4509         Encode group name to which articles are moved or copied.
4510         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
4511         coding system for encoding Newsgroup, Followup-To and Xref headers.
4513         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
4514         marks; use nnheader-file-coding-system to write a file.
4515         (nnagent-retrieve-headers): Bind file-name-coding-system to
4516         nnmail-pathname-coding-system.
4518         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
4520         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
4521         (nnml-request-article, nnml-request-create-group)
4522         (nnml-request-rename-group, nnml-find-id)
4523         (nnml-possibly-change-directory, nnml-possibly-create-directory)
4524         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
4525         (nnml-save-marks): Use nnml-group-pathname instead of
4526         nnmail-group-pathname.
4528         (nnml-request-create-group, nnml-request-expire-articles)
4529         (nnml-request-move-article, nnml-request-delete-group)
4530         (nnml-deletable-article-p, nnml-possibly-create-directory)
4531         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
4532         (nnml-open-marks): Bind file-name-coding-system to
4533         nnmail-pathname-coding-system.
4535         (nnml-request-article): Pass server argument to nnml-find-group-number.
4536         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
4537         server argument to nnml-possibly-create-directory.
4538         (nnml-request-accept-article): Pass server argument to
4539         nnml-active-number and nnml-save-mail.
4540         (nnml-find-group-number): Pass server argument to nnml-find-id.
4541         (nnml-request-update-info): Pass server argument to
4542         nnml-marks-changed-p.
4544         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
4545         (nnml-save-mail, nnml-active-number): Add server argument.
4547         (nnml-request-delete-group): Warn if group is missing.
4548         (nnml-get-nov-buffer): Decode group name.
4549         (nnml-generate-active-info): Encode group name.
4550         (nnml-open-marks): Decode group name in messages.
4552 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4554         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
4555         if it is not specified.
4556         (gnus-article-pipe-part, gnus-article-save-part)
4557         (gnus-article-interactively-view-part, gnus-article-copy-part)
4558         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
4559         (gnus-article-inline-part, gnus-article-save-part-and-strip)
4560         (gnus-article-replace-part, gnus-article-delete-part)
4561         (gnus-article-view-part-as-type): Pass raw prefix argument to
4562         gnus-article-part-wrapper.
4564 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4566         * gnus-agent.el (gnus-agent-save-active): Bind
4567         nnheader-file-coding-system to gnus-agent-file-coding-system.
4569         * gnus-cache.el (gnus-cache-save-buffers)
4570         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
4571         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
4572         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
4573         (gnus-cache-braid-nov, gnus-cache-braid-heads)
4574         (gnus-cache-generate-active, gnus-cache-rename-group)
4575         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
4576         (gnus-cache-update-overview-total-fetched-for): Bind
4577         file-name-coding-system to nnmail-pathname-coding-system.
4578         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
4579         variables.
4580         (gnus-cache-decoded-group-name): New function.
4581         (gnus-cache-file-name): Use it.
4582         (gnus-cache-generate-active): Use non-decoded group name for active.
4584         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
4585         right place.
4586         (gnus-write-active-file): Don't break non-ASCII group names.
4588         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
4589         nnmail-pathname-coding-system.
4591         * gnus-uu.el (gnus-uu-decode-save): Typo.
4593 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4595         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
4597 2007-07-14  David Kastrup  <dak@gnu.org>
4599         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
4600         finishing actions if we did not edit the article.
4602 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4604         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
4605         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
4606         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
4607         (gnus-agent-flush-group, gnus-agent-flush-cache)
4608         (gnus-agent-fetch-headers, gnus-agent-load-alist)
4609         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
4610         (gnus-agent-retrieve-headers, gnus-agent-request-article)
4611         (gnus-agent-regenerate-group)
4612         (gnus-agent-update-files-total-fetched-for)
4613         (gnus-agent-update-view-total-fetched-for): Bind
4614         file-name-coding-system to nnmail-pathname-coding-system.
4615         (gnus-agent-group-pathname): Don't encode file names by
4616         nnmail-pathname-coding-system.
4617         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
4618         coding-system-for-write instead of buffer-file-coding-system to
4619         gnus-agent-file-coding-system.
4621         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
4622         Decode group name.
4624         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
4626         * gnus-start.el (gnus-update-active-hashtb-from-killed)
4627         (gnus-read-newsrc-el-file): Make group names unibyte.
4629         * nnmail.el (nnmail-group-pathname): Don't encode file names by
4630         nnmail-pathname-coding-system.
4632         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
4633         (nnrss-request-delete-group): Bind file-name-coding-system to
4634         nnmail-pathname-coding-system.
4635         (nnrss-read-server-data, nnrss-read-group-data): Bind
4636         file-name-coding-system correctly.
4637         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
4639         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
4640         (nntp-server-to-method-cache): New variable.
4641         (nntp-group-pathname): New function that decodes non-ASCII group names.
4642         (nntp-possibly-create-directory, nntp-marks-changed-p)
4643         (nntp-save-marks, nntp-open-marks): Use it.
4644         (nntp-possibly-create-directory, nntp-open-marks):
4645         Bind file-name-coding-system to nnmail-pathname-coding-system.
4646         (nntp-open-marks): Decode group names when bootstrapping marks.
4648         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
4649         Newsgroups and Folowup-To headers.
4651 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4653         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
4654         (gnus-server-closed-face, gnus-server-denied-face)
4655         (gnus-server-offline-face): Remove variable.
4656         (gnus-server-font-lock-keywords): Use faces that are not aliases.
4658         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
4659         of modifying message-stack directly for XEmacs.
4661         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
4662         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
4663         if the coding-system argument is nil for XEmacs.
4665         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
4666         mm-charset-override-alist.
4668         * rfc2047.el: Don't require base64; require rfc2045 for the function
4669         rfc2045-encode-string.
4670         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
4671         to quote the parameter value.
4673 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4675         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
4676         form in gnus-group-name-charset-method-alist.
4678         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
4679         overrides the default layout edit-form.
4681         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
4683         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
4685 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4687         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
4688         as unfetched articles.
4690 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
4692         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
4694 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4696         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
4697         original back end that keeps marks in the local system.
4699 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4701         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
4702         arg of pop-to-buffer for XEmacs.
4703         (gnus-article-read-summary-keys): Ditto; don't restore window
4704         configuration if summary command ends up with neither article buffer
4705         nor summary buffer; describe bindings if summary keys end with C-h.
4707 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4709         * message.el (message-fix-before-sending): Skip raw message part to be
4710         forwarded while checking illegible text.
4711         (message-forward-make-body-mime, message-forward-make-body): Mark
4712         signed or encrypted raw message as having no illegible text.
4714 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4716         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
4717         (gnus-message-with-timestamp-1): New macro.
4718         (gnus-message-with-timestamp): New function.
4719         (gnus-message): Use them.
4721         * nnheader.el (nnheader-message): Use them.
4723 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
4725         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
4726         .newsrc.eld file.
4728 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4730         * gnus-agent.el (gnus-agent-fetch-headers)
4731         (gnus-agent-retrieve-headers): Bind
4732         gnus-decode-encoded-address-function to identity.
4734         * nntp.el (nntp-send-xover-command): Recognize an xover command is
4735         available also when the server returns simply a dot.
4737         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
4739 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4741         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
4743 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4745         * gnus-ems.el (gnus-x-splash): Make it work.
4747         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
4748         from being used.
4750 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4752         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
4753         the front stickiness.
4754         (gnus-article-summary-command-nosave): Correct the order of the
4755         arguments passed to pop-to-buffer.
4756         (gnus-article-read-summary-keys): Ditto; make it work properly when the
4757         summary command ends up with the article buffer.
4759         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
4760         the same faces.
4762 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
4764         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
4766 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
4768         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
4769         * gnus-sum.el (gnus-summary-highlight):
4770         * mail-source.el (mail-source-delete-old-incoming-confirm):
4771         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
4773 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4775         * gnus-art.el (gnus-mime-view-part-externally)
4776         (gnus-mime-view-part-internally): Fix predicate function passed to
4777         completing-read.
4779         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
4781         * gnus.el (gnus-update-message-archive-method): Add :version.
4783 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4785         * gnus.el (gnus-update-message-archive-method): New variable.
4787         * gnus-start.el (gnus-setup-news): Update saved "archive" method
4788         according to gnus-message-archive-method if
4789         gnus-update-message-archive-method is non-nil.
4791 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
4793         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
4794         by Loic Dachary <loic@dachary.org>.
4795         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
4797 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4799         * message.el (message-pop-to-buffer): Add switch-function argument.
4800         (message-mail): Pass switch-function argument to it.
4802 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
4804         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
4805         Improve doc string.
4807 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4809         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
4810         (gnus-header-content)
4811         * gnus-cite.el (gnus-cite-10)
4812         * gnus-srvr.el (gnus-server-closed)
4813         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
4814         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
4815         (gnus-group-mail-3-empty, gnus-group-mail-low)
4816         (gnus-group-mail-low-empty, gnus-splash)
4817         * message.el (message-header-to, message-header-cc)
4818         (message-header-subject, message-header-other, message-header-name)
4819         (message-header-xheader, message-separator, message-cited-text)
4820         (message-mml): Lighten colors of faces used for dark background.
4822 2007-05-24  Simon Josefsson  <simon@josefsson.org>
4824         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
4825         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
4827 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4829         * message.el (message-narrow-to-headers-or-head):
4830         Ignore mail-header-separator in the body.
4832 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4834         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
4835         same as window size.
4837 2007-05-22  Kevin Ryde  <user42@zip.com.au>
4839         * message.el (message-font-lock-keywords): Use message-header-xheader
4840         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
4841         ahead of the anything pattern, to get it recognised.
4843 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
4845         * gnus-sum.el (gnus-articles-to-read)
4846         (gnus-summary-insert-old-articles): Don't truncate group name for
4847         `read-string'.
4849         * gnus-util.el (gnus-limit-string): Delete this function.
4851         * gnus-sum.el (gnus-simplify-subject-fully): Use
4852         `truncate-string-to-width' instead.
4854 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
4856         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
4857         if, on summary exit, the next group has to be selected.
4858         (gnus-summary-exit): Use it.
4860 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
4862         * gnus-art.el (gnus-article-mode): Fix comment about displaying
4863         non-break space.
4865 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4867         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
4868         Check if group is not a directory.
4869         (nnfolder-request-expire-articles): Don't delete articles if the target
4870         group is not available.
4872         * nnml.el (nnml-request-create-group): Properly check if group is not a
4873         file.
4874         (nnml-request-expire-articles): Don't delete articles if the target
4875         group is not available.
4877         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
4878         Don't quote characters that are within parentheses.
4880 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4882         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
4883         (gnus-handle-ephemeral-exit): Select article according to it.
4885 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
4887         * message.el (message-insert-formated-citation-line): Remove newline.
4888         (message-citation-line-format): Add final \n here so that the user can
4889         avoid a blank line.
4891 2007-05-03  Dan Christensen  <jdc@uwo.ca>
4893         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
4894         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
4895         Update lanl/arXiv support.
4897 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
4899         * gnus.el: Bump version number.
4901 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4903         * gnus.el (gnus-version-number): Bump version.
4905 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4907         * gnus.el: No Gnus v0.6 is released.
4909 2007-04-27  Didier Verna  <didier@xemacs.org>
4911         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
4912         * gmm-utils.el (gmm-regexp-concat): here.
4913         * message.el: Don't require 'gnus-util.
4914         (message-dont-reply-to-names): Handle name change above.
4915         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
4917 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4919         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
4920         since the initial value varies according to the system.
4922 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4924         * mm-util.el (mm-charset-synonym-alist): Defcustom.
4926 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
4928         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
4930 2007-04-24  Didier Verna  <didier@xemacs.org>
4932         Improve the type of gnus-ignored-from-addresses.
4933         * gnus-util.el (gnus-orify-regexp): New function.
4934         * message.el (gnus-util): Require it.
4935         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
4936         * gnus-sum.el (gnus-ignored-from-addresses): New function.
4937         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
4939 2007-04-24  Didier Verna  <didier@xemacs.org>
4941         * gnus-sum.el:
4942         * gnus-utils.el: Fix some trailing whitespaces.
4944 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4946         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
4947         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
4948         article's Message-ID; refer parent article in summary buffer.
4950         * message.el (message-bounce): Call mime-to-mml.
4952 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4954         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
4956 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4958         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
4959         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
4960         displayed of multipart/alternative part if it is invoked from summary
4961         buffer.
4963         * mm-view.el (mm-inline-text-html-render-with-w3m)
4964         (mm-inline-text-html-render-with-w3m-standalone)
4965         (mm-inline-render-with-function): Use mail-parse-charset by default.
4967 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
4969         * parse-time.el (parse-time-string-chars): Check if CHAR
4970         is less than the length of parse-time-syntax.
4972 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4974         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
4975         from gnus-newsgroup-processable.
4977 2007-04-16  Didier Verna  <didier@xemacs.org>
4979         * gnus-msg.el (gnus-configure-posting-styles): Handle
4980         message-signature-directory properly with :file syntax.  Reported by
4981         "Leo".
4983 2007-04-11  Didier Verna  <didier@xemacs.org>
4985         New user option: message-signature-directory.
4986         * gnus-msg.el (gnus-configure-posting-styles): Support it.
4987         * message.el (message-insert-signature): Ditto.
4988         * message.el (message-signature-file): Doc update.
4989         * message.el (message-signature-directory): New.
4991 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4993         * gnus-msg.el (gnus-inews-yank-articles): Use
4994         message-exchange-point-and-mark instead of exchange-point-and-mark.
4996 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4998         * message.el (message-yank-original): Make sure cited text ends with
4999         newline; don't exchange point and mark.
5001 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
5003         * tls.el (open-tls-stream): Properly handle case where there
5004         is no associated buffer.
5006 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
5008         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
5009         message-yank-original, make sure (< mark TEXT point).
5011 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
5013         * message.el (message-fill-column): New variable.
5014         (message-mode): Use it.  Add comment on a possible new hook.
5016         * nnmail.el (nnmail-spool-file): Mark as obsolete.
5017         (nnmail-get-new-mail): Reformat.
5019         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
5021         * gmm-utils.el: Fix Commentary.
5022         (gmm-tool-bar-from-list): Fix typo in doc string.
5024 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
5026         * message.el (message-yank-original): Don't switch point and mark
5027         unnecessarily to put point and mark as documented.
5029 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5031         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
5032         from the message heads.
5034 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
5036         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
5037         article buffer does not have a window.  This may not be the best
5038         solution but is certainly better than setting the start of the null,
5039         that is the current, window.
5041 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
5043         * gnus-draft.el (gnus-draft-setup-hook): New hook.
5044         (gnus-draft-setup): Run it.
5046         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
5047         gnus-score-fast-scoring.  Allow regexp.
5048         (gnus-score-headers): Use it.
5050         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
5051         XEmacs.
5053         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
5054         string.
5055         (gnus-button-alist): Also catch `<f1> k ...'.
5056         (gnus-treat-display-x-face): Fix doc string.
5058 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5060         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
5061         evaluation of gnus-extended-version to ensure correct generation of the
5062         User-Agent header when message-generate-headers-first is used.
5064 2007-03-24  Simon Josefsson  <simon@josefsson.org>
5066         * hashcash.el (hashcash-generate-payment-async): Don't crash if
5067         hashcash-path is nil.  Don't call callback with incorrect number of
5068         parameters if val is 0.
5070 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5072         * message.el (message-required-news-headers):
5073         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
5075 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5077         * message.el (message-generate-new-buffers): Change the meaning of the
5078         nil value; add `standard' to the choices; treat t as `unique'; improve
5079         doc string.
5080         (gnus-select-frame-set-input-focus): Autoload.
5081         (message-buffer-name): Search for the existing message buffer if
5082         message-generate-new-buffers is nil or `standard'; treat the value t of
5083         message-generate-new-buffers as `unique'.
5084         (message-pop-to-buffer): Raise the frame already displaying the message
5085         buffer; clear the echo area after querying.
5086         (message-setup): Pass the `continue' argument to compose-mail.
5087         (message-mail): Prefer `switch-function' if it is given; search for the
5088         existing message buffer if the `continue' argument is non-nil; pass
5089         continue and switch-function arguments to compose-mail by way of
5090         message-setup.
5091         (message-mail-other-window): Adjust argument of message-setup.
5092         (message-mail-other-frame): Ditto.
5094 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5096         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
5097         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
5098         to turn font-lock on when turning gnus-message-citation-mode on.
5100 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
5102         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
5103         (mml-smime-function-alist): New variable; add epg as the backend.
5104         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
5105         mml-smime- functions instead.
5106         * mm-view.el: Require smime.
5108 2007-03-05  Didier Verna  <didier@xemacs.org>
5110         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
5111         instead of just inheritance for posting styles.
5112         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
5114 2007-02-24  John Paul Wallington  <jpw@pobox.com>
5116         * tls.el (tls-certtool-program): Fix custom type.
5118 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5120         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
5121         and point-at-eol instead of line-(beginning|end)-position.
5123         * assistant.el (assistant-parse-buffer): Ditto.
5125 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
5127         * mml2015.el (mml2015-epg-find-usable-key): New function.
5128         (mml2015-epg-sign): Use it.
5129         (mml2015-epg-encrypt): Use it.
5131 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5133         * message.el (message-make-in-reply-to): Quote name containing
5134         non-ASCII characters.  It will make the RFC2047 encoder cause an error
5135         if there are special characters.  Reported by NAKAJI Hiroyuki
5136         <nakaji@jp.freebsd.org>.
5138 2007-02-27  Didier Verna  <didier@xemacs.org>
5140         Include the group parameters as well as the topic ones in the
5141         inheritance filter process.
5142         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
5143         argument GROUP-PARAMS-LIST.
5144         * gnus-topic.el (gnus-group-topic-parameters): Use it.
5146 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5148         * nntp.el (nntp-never-echoes-commands)
5149         (nntp-open-connection-functions-never-echo-commands): New variables.
5150         (nntp-send-command): Use them.
5152 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
5154         * mml2015.el (mml2015-epg-verify): Simplified.
5156 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5158         * mml.el (mml-content-disposition-alist): New user option.
5159         (mml-content-disposition): New function.
5160         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
5161         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
5163 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
5165         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
5166         verification.
5168 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5170         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
5171         articles posted in the last 24 hours.
5173 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
5175         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
5177 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
5179         * nntp.el (nntp-send-command): Don't wait for echoes when
5180         nntp-open-ssl-stream is used.
5182 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5184         * gnus-cite.el (gnus-test-font-lock-add-keywords)
5185         (gnus-message-add-citation-keywords)
5186         (gnus-message-remove-citation-keywords): Remove.
5187         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
5188         directly, make the variables in font-lock-defaults buffer-local, add
5189         gnus-message-citation-keywords to them and then update the value of
5190         font-lock-keywords.
5192 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5194         * message.el (message-cite-original-1): Don't call
5195         gnus-article-highlight-citation.
5197         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
5198         citations; fix line count.
5200 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5202         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
5203         (gnus-message-add-citation-keywords)
5204         (gnus-message-remove-citation-keywords): Use it; fix the emulating
5205         versions of font-lock-add-keywords and font-lock-remove-keywords to
5206         work with XEmacs correctly.
5208 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5210         * gnus-cite.el (gnus-cite-face-list): Set the values of
5211         gnus-message-max-citation-depth and gnus-message-citation-keywords.
5212         (gnus-message-max-citation-depth): Use defvar rather than defconst.
5213         (gnus-message-cite-prefix-regexp): New variable.
5214         (gnus-message-search-citation-line): Use it; protect against long
5215         citation prefix; fill match data with nil rather than 0 for XEmacs; set
5216         the 0th match data for Emacs.
5217         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
5218         (gnus-message-add-citation-keywords): Append keywords rather than
5219         prepending; emulate font-lock-add-keywords if it is not available.
5220         (gnus-message-remove-citation-keywords): Emulate
5221         font-lock-remove-keywords if it is not available.
5223         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
5225         * message.el (message-cite-prefix-regexp): Set the value of
5226         gnus-message-cite-prefix-regexp.
5228 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5230         * nnweb.el (nnweb-google-parse-1): Update parser.
5232 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
5234         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
5236 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5238         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
5239         regexp.
5241 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5243         * uudecode.el (uudecode-string-to-multibyte): New function emulating
5244         string-to-multibyte.
5245         (uudecode-decode-region-internal): Use it.
5247 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
5249         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
5250         custom choice.
5252         * gnus-art.el (gnus-signature-limit): Fix custom choice.
5254 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
5256         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
5258         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
5259         `write-region' to respect `mm-inhibit-file-name-handlers'.
5261 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
5263         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
5264         Use gnus-home-directory instead of "~/" or "$HOME".
5266 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
5268         * encrypt.el (encrypt-insert-file-contents): Add better prompt
5269         to mention filename.
5270         Add comments at beginning regarding usage.
5271         (encrypt-write-file-contents): Change interactive so a string is
5272         acceptable.  If the file has no associated model, show an error instead
5273         of a nonsense prompt.
5275 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
5277         * spam.el (spam-bsfilter-ham-switch): Fix typo.
5278         Thanks to Yoshihiko Yamada for kind notification of this typo.
5280 2007-01-12  Kenichi Handa  <handa@m17n.org>
5282         * uudecode.el (uudecode-decode-region-internal): Make it work in a
5283         multibyte buffer.
5285 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
5287         * gnus-score.el (gnus-score-fast-scoring): New variable.
5288         (gnus-score-headers): Use it.
5290         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
5292         * message.el (message-cite-original-1): Call
5293         gnus-article-highlight-citation if requested.
5294         (message-make-from): Allow name and address as optional arguments.
5296         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
5298         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
5299         bugs to doc string.
5300         (gnus-button-alist): Add mid\\|message-id.
5301         (gnus-button-fetch-group): Extend for use in
5302         `browse-url-browser-function'.
5303         (gnus-button-url-regexp): Try to catch paired parentheses like in
5304         Wikipedia URLs.
5306         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
5307         Suggested by Simon Krahnke <overlord@gmx.li>.
5309 2007-01-13  Romain Francoise  <romain@orebokech.com>
5311         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
5312         Update copyright.
5314 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
5316         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
5318 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
5320         * gnus-registry.el (gnus-registry-unfollowed-groups)
5321         (gnus-registry-split-fancy-with-parent): Fix documentation.
5323 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5325         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
5326         from nnweb groups.
5328 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5330         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
5331         Xref urls.  Erase buffer before requesting head.
5333         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
5335 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
5337         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
5338         customizable.
5340 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
5342         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
5343         no signing key is found.
5344         (mml2015-epg-encrypt): Ask user whether to skip or abort if
5345         no encrypting and/or signing key is found.
5347 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
5349         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
5351 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5353         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
5354         headers read from disk with the ones newly found in the current search.
5355         This should no longer cause problems, because the article numbers in
5356         Gmane's `nov.php' output are ignored since the previous change.
5358 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5360         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
5362 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5364         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
5366 2007-01-01  Romain Francoise  <romain@orebokech.com>
5368         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
5370 2006-12-31  Steve Youngs  <steve@sxemacs.org>
5372         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
5373         `define-minor-mode' macro definition expanded properly.
5374         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
5375         exclude it there.
5377         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
5378         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
5379         `fboundp' test.
5380         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
5381         This is OK to autoload in (S)XEmacs now.
5383 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5385         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
5386         keystroke.
5387         (gnus-summary-limit-to-singletons): Fix typo.
5389         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
5390         else fails.
5392 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5394         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
5395         docstring.
5397         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
5398         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
5399         (gnus-summary-insert-dormant-articles): Fix typo in message.
5401 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
5403         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
5404         nil for XEmacs.
5405         (gnus-message-citation-mode): Don't autoload in XEmacs.
5407         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
5409 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
5411         * nnimap.el (nnimap-expunge-search-string): Mention
5412         nnimap-search-uids-not-since-is-evil in docstring.
5414 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
5416         * spam.el: Revert to make-obsolete-variable because
5417         define-obsolete-variable-alias is not supported in Emacs 21.
5419         * spam.el (spam-ifile-path, spam-ifile-database-path)
5420         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
5421         make-obsolete-variable.
5422         (spam-bsfilter-path, spam-bsfilter-program)
5423         (spam-spamassassin-path, spam-spamassassin-program)
5424         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
5425         use "path" inappropriately.
5426         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
5427         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
5428         variable names.
5430 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
5432         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
5433         summary buffer.
5435         * password.el (password-cache-remove): Use clear-string to burn
5436         password, if available.
5438 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5440         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
5442         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
5444         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
5445         (gnus-message-highlight-citation): Move defcustom here from
5446         gnus-cite.el.
5447         (gnus-message-citation-mode): Autoload.
5449         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
5450         checks to make it compile with XEmacs.
5451         (gnus-message-citation-mode): New minor mode.
5452         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
5453         (gnus-message-highlight-citation): New variables.
5454         (gnus-message-search-citation-line)
5455         (gnus-message-add-citation-keywords)
5456         (gnus-message-remove-citation-keywords)
5457         (turn-on-gnus-message-citation-mode)
5458         (turn-off-gnus-message-citation-mode): New functions.
5460 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
5462         * gnus-cite.el: Enable highlighting of different citation levels in
5463         message-mode.
5465 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5467         * message.el (message-make-fqdn): Fix comment.
5468         (message-bogus-system-names): Add ".local".
5470         * spam.el (spam-ifile-path, spam-ifile-program)
5471         (spam-ifile-database-path, spam-ifile-database)
5472         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
5473         Don't use "path" inappropriately.
5474         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
5475         strings.
5476         (spam-check-ifile, spam-ifile-register-with-ifile)
5477         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
5478         new variable names.
5480         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
5481         (gnus-treat-display-smileys): Simplify using
5482         gnus-image-type-available-p.
5484         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
5485         available.
5487 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5489         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
5490         one after turning on the buffer's multibyteness instead of decoding
5491         them directly in the unibyte buffer that causes unexpected conversion
5492         in Emacs 23 (unicode).
5494 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5496         * message.el (message-generate-hashcash): Fix custom type.
5498 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
5500         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
5502 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
5504         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
5505         disconnect icons.  Add help text.
5507 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
5509         * spam.el (spam-extra-header-to-number): CRM114 spam score is
5510         negated to be consistent with the others we handle.
5512 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5514         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
5515         version of gnus-summary-buffer to something, so that we can use two
5516         article buffers at the same time.
5518 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
5520         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
5521         trigger all the extra headers.
5522         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
5523         sorting.
5525 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5527         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
5528         solid groups.
5530 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
5532         * legacy-gnus-agent.el: Add Copyright notice.
5534 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
5536         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
5538 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5540         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
5542         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
5543         to make it work reliably in CVS Emacs.
5544         (gnus-summary-limit-strange-charsets-predicate)
5545         (gnus-summary-limit-to-predicate): New functions.
5547 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
5549         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
5550         specifying array size.
5551         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
5552         array if it is too small.
5553         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
5554         (gnus-sort-threads-loop): New function.
5556 2006-12-06  Chris Moore  <dooglus@gmail.com>
5558         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
5559         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
5561 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
5563         * mm-url.el (mm-url-predefined-programs): Call curl with correct
5564         options.
5566 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5568         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
5569         DOS-ing the recipient.
5571         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
5572         the headers when creating the mapping to avoid mismappings.
5573         (nnweb-gmane-create-mapping): Always nix out old mapping.
5575 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5577         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
5578         and mm-verify-option to never.
5580 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5582         * message.el (message-signed-or-encrypted-p): New function.
5583         (message-forward-make-body): Use it.
5585         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
5586         Replace encode-coding-string with mm-encode-coding-string.
5588 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5590         * nneething.el (nneething-decode-file-name): Replace
5591         decode-coding-string with mm-decode-coding-string.
5593         * gnus-int.el (gnus-open-server): Say failed server's name.
5595 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
5597         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
5598         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
5600         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
5601         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
5602         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
5603         (gnus-group-make-directory-group, gnus-group-transpose-groups):
5604         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
5605         (gnus-subscribe-newsgroup, gnus-1):
5606         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
5607         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
5608         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
5609         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
5611 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5613         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
5614         keystroke.
5615         (gnus-summary-limit-to-bodies): Implement headersp.
5617 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5619         * dns.el (query-dns): Protect against "Process dns deleted" strings.
5621 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
5623         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
5625 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5627         * message.el (message-generate-hashcash): Expand range of values to
5628         include `opportunistic'.
5629         (message-send-mail): Use it.
5631 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5633         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
5634         and comment it.
5636         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
5638 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
5640         * gnus-util.el (gnus-extract-address-components): Improve comment.
5642 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5644         * gnus-util.el (gnus-extract-address-components): Work with address in
5645         which the name portion contains @.
5647 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
5649         * gnus.el (gnus-start): Move custom group up.
5650         (gnus-select-method): Don't autoload, but make it available for
5651         `customize-variable'.
5652         (gnus-getenv-nntpserver): Don't autoload.
5654 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
5656         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
5658 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
5660         * message.el (message-sendmail-extra-arguments): New variable.
5661         (message-send-mail-with-sendmail): Use it.
5663 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5665         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
5666         mm-with-unibyte-current-buffer to make string unibyte.
5668         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
5669         mm-string-as-multibyte.
5671 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
5673         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
5674         Reported by Werner Koch <wk@gnupg.org>.
5676 2006-11-14  Daiki Ueno  <ueno@p360>
5678         * mml2015.el: Autoload epa-select-keys when compiling.
5680 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
5682         * mml2015.el (mml2015-epg-sign): Save the signing keys in
5683         message-options.
5684         (mml2015-epg-encrypt): Save the recipient keys in message-options.
5686 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
5688         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
5689         EasyPG (< 0.0.6).
5690         (mml2015-always-trust): New user option.
5691         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
5692         prompt.
5694 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5696         * nntp.el (nntp-authinfo-force): New variable.
5697         (nntp-send-authinfo): Use it.
5699 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
5701         * message.el (message-strip-subject-encoded-words): Allow _not_ to
5702         decode encoded words.  Improve prompt.  Add comment about forwarding.
5703         (message-replacement-char): Move up.
5705 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5707         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
5708         instead of gnus-intersection because arguments of gnus-sorted-nunion
5709         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
5711 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
5713         * message.el (message-strip-subject-encoded-words): Reformat prompt.
5714         (message-simplify-subject-functions): Enable
5715         message-strip-subject-encoded-words by default.
5717 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
5719         * message.el (message-strip-subject-encoded-words): New function.
5720         (message-simplify-subject-functions): New variable.
5721         (message-simplify-subject): Use it.  Fix typo in doc string.
5722         Support message-strip-subject-encoded-words.
5724 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
5726         * gnus-diary.el (gnus-diary-delay-format-function):
5727         * nndiary.el (nndiary-reminders):
5728         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
5730 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
5732         * gnus-art.el (article-hide-boring-headers): Fetch date from
5733         gnus-original-article-buffer to avoid problems with localized date
5734         strings.
5736 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5738         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
5740 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
5742         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
5743         New variables.
5744         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
5745         (mm-charset-synonym-alist): Move some entries to
5746         mm-codepage-iso-8859-list.
5747         (mm-charset-synonym-alist, mm-charset-override-alist): Add
5748         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
5750 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5752         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
5754 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
5756         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
5757         with Emacs 21 and XEmacs.
5759 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
5761         * spam.el (spam-parse-address): New function for better parsing,
5762         catching errors, etc.
5763         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
5765 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
5767         * mm-view.el: Add interactive arg to html2text autoload.
5769 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5771         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
5773 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
5775         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
5776         variables.
5777         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
5778         (mm-charset-synonym-alist): Move some entries to
5779         mm-codepage-iso-8859-list.
5781         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
5783 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
5785         * message.el (message-citation-line-format)
5786         (message-insert-formated-citation-line): Fix implementation of %E, %N
5787         and %n according to the doc string.
5789 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
5791         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
5792         car-safe to avoid bad parses.
5794 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5796         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
5797         names.
5799         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
5801 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5803         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
5804         header.
5806         * message.el (message-draft-headers): Add Date.
5807         (message-headers-to-generate): Fix typo in docstring.
5809         * nndraft.el (nndraft-required-headers): New variable.
5810         (nndraft-generate-headers): Use it.
5812         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
5814 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
5816         * gnus-registry.el (gnus-registry-wash-for-keywords)
5817         (gnus-registry-find-keywords): New functions to allow easy searching of
5818         articles that are in the registry.
5820 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
5822         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
5823         ietf-drums-parse-address instead of gnus-extract-address-components.
5824         Reported by Damien Elmes <damien@repose.cx>.
5826 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
5828         * gnus.el (gnus-mime): Remove unused custom group.
5830 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5832         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
5833         "blank line" when searching for end of armor headers.
5835 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5837         * gmm-utils.el (gmm-write-region): Fix variable name.
5839 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
5841         * gmm-utils.el (gmm-write-region): New function based on compatibility
5842         code from `mm-make-temp-file'.
5844         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
5846         * nnmaildir.el (nnmaildir--update-nov)
5847         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
5848         Use `gmm-write-region'.
5850 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5852         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
5853         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
5855         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
5857         * message.el (message-replacement-char): New variable.
5858         (message-fix-before-sending): Use it.
5859         (message-simplify-subject): New function to remove duplicate code.
5860         (message-reply, message-followup): Use it.
5862         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
5863         gnus-summary-limit-to-articles.
5865 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5867         * gnus-util.el (gnus-with-local-quit): New macro.
5869         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
5871 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
5873         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
5874         ignore non-string data.
5876 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
5878         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
5879         non-string data (needs to be done in the registry too).
5881 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
5883         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
5884         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
5885         (gnus-registry-split-fancy-with-parent)
5886         (gnus-registry-fetch-simplified-message-subject-fast)
5887         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
5888         Remove text properties on ingress into the registry and when it's saved.
5889         (gnus-registry-clean-empty-function): Fix bug with cleaning the
5890         registry from entries with no groups.
5892 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
5894         * gnus-util.el (gnus-string-remove-all-properties): Add utility
5895         function to remove string properties.
5897 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
5899         * gmm-utils.el (gmm): Adjust custom version.
5901         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
5902         custom version.
5904         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
5906 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
5908         * gnus-art.el (gnus-insert-prev-page-button)
5909         (gnus-insert-next-page-button): Simplify.  Reformat.
5911 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
5913         * gnus-art.el (gnus-insert-prev-page-button)
5914         (gnus-insert-next-page-button): Apply gnus-article-button-face.
5916 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
5918         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
5920 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
5922         * gnus-art.el (gnus-insert-mime-button)
5923         (gnus-insert-mime-security-button):
5924         Apply gnus-article-button-face to MIME and security buttons.
5926 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
5928         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
5929         readable.
5931 2006-09-20  Steve Youngs  <steve@sxemacs.org>
5933         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
5934         `browse-url-of-file' instead of `browse-url'.
5936 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5938         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
5939         regexp.  Articles containing quotation were cut prematurely.
5941 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5943         * message.el (message-cite-original-1): Use nobody by default for the
5944         value of From header.
5945         (message-reply): Ditto.
5947 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
5949         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
5950         to the gnus-info.  This fixes a bug of inline-PGP message verification.
5951         Reported by Michael Piotrowski <mxp@dynalabs.de>.
5953 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
5955         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
5956         mails in the doc string.  Add some URLs in comment.
5957         (pop3-movemail): Warn about pop3-leave-mail-on-server.
5959 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5961         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
5962         backslashes handling and the way to find boundaries of quoted strings.
5964 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
5966         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
5967         mml1991-encrypt-to-self is set and mml1991-signers is not set.
5968         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
5969         mml2015-encrypt-to-self is set and mml2015-signers is not set.
5971 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
5973         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
5974         doc string.
5975         (gnus-button-regexp, gnus-button-last): Remove unused variables.
5977 2006-09-06  Simon Josefsson  <jas@extundo.com>
5979         * mml2015.el (mml2015-use): Doc fix, mention epg.
5981 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
5983         * mml2015.el (mml2015-use): Default to epg, if available.
5985 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
5987         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
5988         message-sender.
5989         (mml1991-epg-encrypt): Ditto.
5990         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
5991         message-sender.
5992         (mml2015-epg-encrypt): Ditto.
5994 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
5996         * message.el (message-send-mail-with-sendmail): Look for sendmail in
5997         several common directories.
5999 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
6001         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
6002         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
6004 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6006         * gnus-art.el (article-decode-encoded-words): Make it fast.
6008 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6010         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
6012         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
6013         in quoted string into `\'.
6015 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6017         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6018         Use standard-syntax-table.
6020 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6022         * gnus-art.el (gnus-decode-address-function): New variable.
6023         (article-decode-encoded-words): Use it to decode headers which are
6024         assumed to contain addresses.
6025         (gnus-mime-delete-part): Remove useless `or'.
6027         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
6028         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
6029         (gnus-nov-parse-line): Use it to decode From header.
6030         (gnus-get-newsgroup-headers): Ditto.
6031         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
6033         * mail-parse.el (mail-decode-encoded-address-region): New alias.
6034         (mail-decode-encoded-address-string): New alias.
6036         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6037         New function.
6038         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
6039         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
6040         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
6041         (rfc2047-decode-string): Ditto.
6042         (rfc2047-decode-address-region): New function.
6043         (rfc2047-decode-address-string): New function.
6045 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
6047         * message.el (message-caesar-buffer-body): Allow rotating headers.
6049         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
6051         * message.el (message-insert-formated-citation-line): Fix %f.
6052         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
6054 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6056         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
6057         (gnus-bookmark-mouse-available-p): New macro.
6058         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
6059         (gnus-bookmark-bmenu-show-infos): Use it.
6060         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
6061         (gnus-bookmark-bmenu-hide-infos): Ditto.
6062         (gnus-bookmark-remove-properties): New function.
6063         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
6064         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
6065         (gnus-bookmark-write-file): Bind coding-system-for-write.
6066         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
6067         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
6068         group before selecting it.
6069         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
6070         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
6071         quit-window if it is not available; use gnus-mouse-2 and bind it to
6072         gnus-bookmark-bmenu-select-by-mouse.
6073         (gnus-bookmark-show-details): Remove unused variable `details-list'.
6074         (gnus-bookmark-bmenu-select-by-mouse): New function.
6076 2006-08-13  Romain Francoise  <romain@orebokech.com>
6078         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
6079         space.
6081 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6083         * compface.el (uncompface): Use binary rather than raw-text-unix.
6085 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6087         * compface.el (uncompface): Make sure the eol conversion doesn't take
6088         place when communicating with the external programs.  Reported by
6089         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
6091 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6093         * nnheader.el (nnheader-insert-head): Fix typo in comment.
6095 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6097         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
6098         Make it more robust by parsing author and date independently.
6100 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6102         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
6104 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
6106         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
6107         first matching secret key.
6108         (mml2015-epg-encrypt): Ditto.
6110         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
6111         first matching secret key.
6112         (mml1991-epg-encrypt): Ditto.
6114         * mml2015.el (mml2015-encrypt-to-self): New user option.
6115         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
6116         mml2015-epg-encrypt-to-self is set.
6118         * mml1991.el (mml1991-encrypt-to-self): New variable.
6119         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
6120         mml1991-epg-encrypt-to-self is set.
6122         * mml2015.el (mml2015-signers): New user option.
6123         (mml2015-epg-sign): Reflect the value of mml2015-signers.
6124         (mml2015-epg-encrypt): Allow to select signing keys.
6126         * mml1991.el (mml1991-signers): New variable.
6127         (mml1991-epg-sign): Reflect the value of mml1991-signers.
6128         (mml1991-epg-encrypt): Allow to select signing keys.
6130 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6132         * nnheader.el (nnheader-insert-head): Make it work even if the file
6133         uses CRLF for the line-break code.
6135 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
6137         * mml2015.el: Require mml-sec instead of password.
6138         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
6139         (mml2015-cache-passphrase): Inherit the default value from
6140         mml-secure-cache-passphrase.
6141         (mml2015-passphrase-cache-expiry): Inherit the default value from
6142         mml-secure-passphrase-cache-expiry.
6144         * mml1991.el: Require mml-sec instead of password.
6145         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
6146         (mml1991-cache-passphrase): Inherit the default value from
6147         mml-secure-cache-passphrase.
6148         (mml1991-passphrase-cache-expiry): Inherit the default value from
6149         mml-secure-passphrase-cache-expiry.
6151         * mml-sec.el: Require password.
6152         (mml-secure-verbose): New user option.
6153         (mml-secure-cache-passphrase): New user option.
6154         (mml-secure-passphrase-cache-expiry): New user option.
6156 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
6158         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
6159         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
6160         andreas@altroot.de (Andreas Vögele).
6162         FIXME: Use `tiny change'?
6164 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6166         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
6167         workaround for the url package included with Emacs.
6169         * nnweb.el (nnweb-google-create-mapping): Update regexp.
6171 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6173         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
6174         correctly.  This fixes a bug caused by the 2006-05-12 change.
6176 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
6178         * nnmail.el (nnmail-article-group): If splitting raises an error, give
6179         some information about the error when saying that the `bogus' mail
6180         group will be used.
6182 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
6184         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
6185         string.
6187 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
6189         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
6191 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6193         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
6195 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
6197         * mml1991.el (mml1991-function-alist): Add epg.
6198         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
6199         (mml1991-epg-encrypt): New functions.
6201 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
6203         * mml2015.el (mml2015-verbose): New variable.
6204         (mml2015-cache-passphrase): Ditto.
6205         (mml2015-passphrase-cache-expiry): Ditto.
6206         (mml2015-function-alist): Add epg.
6207         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
6208         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
6209         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
6210         functions.
6212 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6214         * message.el (message-cite-original-1): Preserve region when removing
6215         quoted text due to X-No-Archive in order to avoid bogus attribution
6216         when citing multiple messages.
6218 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6220         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
6221         Kenneth Jacker <khj@be.cs.appstate.edu>.
6223 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
6225         * gnus-diary.el (gnus-user-format-function-d)
6226         (gnus-user-format-function-D): Autoload.
6228         * imap.el (Commentary): Fix typo.
6230         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
6231         2006-04-22 contribution.
6233 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6235         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
6236         It didn't really fix the bogosity I'm seeing with solid web groups.
6238 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6240         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
6241         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
6242         created using server names.  If we use the feature without declaring
6243         it, Gnus does not properly manage server and group state.
6245         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
6246         bound.
6248 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6250         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
6251         looking up the method using GROUP's prefix before inventing a new one.
6252         It is used on killed/unknown groups in various places where returning
6253         an all-new method isn't expected by the caller.
6255         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
6256         and match semantics of gnus-group-real-prefix.
6258 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
6260         * nnmail.el (nnmail-broken-references-mailers): New variable.
6261         (nnmail-ignore-broken-references): New function generalizing
6262         nnmail-fix-eudora-headers.
6263         (nnmail-fix-eudora-headers): Now obsolete.
6265         * gnus-art.el (gnus-button-handle-custom): Support
6266         `customize-apropos*'.
6268 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6270         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
6272         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
6273         articles.
6275 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
6277         * message.el (message-cite-reply-above): New variable.
6278         (message-yank-original): Use it.
6280 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6282         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
6284 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
6286         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
6287         as read.
6289         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
6291 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
6293         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
6294         (gnus-bookmark-default-file): Use gnus-directory.
6295         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
6296         Remove "*" in doc string.
6297         (gnus-bookmark-write-file): Simplify.
6298         (gnus-bookmark-maybe-sort-alist): Use `when'.
6299         (gnus-bookmark-get-bookmark): Fix typo in doc string.
6300         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
6301         FIXME about Emacs 21 and XEmacs compatibility.
6302         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
6303         compatibility.
6304         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
6305         compatibility.
6306         (gnus-bookmark-menu-heading): Fix version.
6308 2006-06-19  Bastien Guerry  <bzg@altern.org>
6310         * gnus-bookmark.el: New file.
6312 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6314         * message.el (message-syntax-checks): Doc fix.
6316 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6318         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
6319         unsubscribed groups as if they were killed ones.  It causes duplicate
6320         entries in gnus-newsrc-alist.
6322 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6324         * message.el (message-syntax-checks): Doc fix.
6325         (message-send-mail): Add check for continuation headers.
6326         (message-check-news-header-syntax): Fix regexp used to check for
6327         continuation headers.
6329 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6331         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
6333 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
6335         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
6337 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6339         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
6340         default-truncate-lines.
6342 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6344         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
6345         to fill the utf-8 entry.
6347 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6349         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
6351 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
6353         * gnus-agent.el (directory-files-and-attributes): Move all the way
6354         forward (the third and final move).
6355         (gnus-agent-read-agentview): Trap reconstruction errors due to
6356         nonexistent directory.  Handle by returning nil.
6358 2006-05-30  Didier Verna  <didier@xemacs.org>
6360         * message.el (message-dont-reply-to-names): Update the custom type.
6361         * message.el (message-dont-reply-to-names): New defsubst: potentially
6362         convert a list of regexps into a single one.
6363         * message.el (message-get-reply-headers): Use it.
6364         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
6366 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6368         * gnus-agent.el (directory-files-and-attributes): Move forward.
6370 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6372         * gnus-ml.el (gnus-mailing-list-subscribe)
6373         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
6374         (gnus-mailing-list-message): Fix doc strings.
6376 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6378         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
6379         of doing it manually.
6381 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6383         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
6384         comment.
6386 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
6388         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
6389         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
6390         (gnus-agent-read-local): All symbols allocated in my-obarray.
6391         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
6392         (gnus-agent-regenerate-group): Check numeric names to see if they are
6393         messages or groups.
6394         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
6395         better way of do this...)
6397         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
6398         'dummy.group' (there should be a better way of do this...)
6400 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6402         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
6403         (gnus-saved-headers): Ditto.
6404         (gnus-default-article-saver): Mention functions may have properties.
6405         (gnus-article-save): Override gnus-save-all-headers and
6406         gnus-saved-headers by :headers property which saver function may have.
6407         (gnus-summary-save-in-file): Add :headers property.
6408         (gnus-summary-write-to-file): Ditto.
6410         * gnus-sum.el (gnus-summary-save-article): Bind
6411         gnus-prompt-before-saving to t when saving many articles in a file;
6412         always show all headers.
6414 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
6416         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
6417         marks.
6419         * message.el (message-indent-citation): Add optional arguments to allow
6420         using it outside of message buffers.
6422         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
6423         (gnus-article-treat-unfold-headers): Use it.
6424         (gnus-article-truncate-lines): New variable.
6425         (gnus-article-mode): Use it.
6426         (gnus-article-toggle-truncate-lines): New function.
6428         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
6429         gnus-article-toggle-truncate-lines.
6431         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
6432         coding system in XEmacs, use binary.
6434 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6436         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
6437         after-load-alist.
6439         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
6440         this function should save decoded articles.
6441         (gnus-summary-write-to-file): Use property to specify this function
6442         should save decoded articles and specify gnus-summary-save-in-file
6443         should be used to save articles other than the first one when saving
6444         many articles.
6445         (gnus-summary-save-body-in-file): Use property to specify this
6446         function should save decoded articles.
6447         (gnus-summary-write-body-to-file): Use property to specify this
6448         function should save decoded articles and specify
6449         gnus-summary-save-body-in-file should be used to save articles other
6450         than the first one when saving many articles.
6452         * gnus-sum.el (gnus-summary-save-article): Simplify.
6454 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6456         * gnus-art.el (gnus-default-article-saver): Add
6457         gnus-summary-write-body-to-file.
6458         (gnus-article-save-coding-system): Don't use coding system object
6459         in XEmacs.
6460         (gnus-read-save-file-name): Add optional `dir-var' argument which
6461         specifies directory in which files are saved; work even if optional
6462         `variable' argument is not specified.
6463         (gnus-summary-write-to-file): Read file name.
6464         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
6465         (gnus-summary-write-body-to-file): New function.
6467         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
6468         (gnus-summary-local-variables): Add it.
6469         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
6470         (gnus-summary-save-article): Remove optional `decode' argument;
6471         determine whether to decode articles by the value of
6472         gnus-default-article-saver; when saving many files using
6473         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
6474         it first and use gnus-summary-save-in-file or
6475         gnus-summary-save-body-in-file thereafter unless
6476         gnus-prompt-before-saving is always; move point to article which
6477         will be saved.
6478         (gnus-summary-save-article-file): Revert.
6479         (gnus-summary-write-article-file): Revert.
6480         (gnus-summary-save-article-body-file): Revert.
6481         (gnus-summary-write-article-body-file): New function.
6483 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
6485         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
6487 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6489         * gnus-art.el (gnus-default-article-saver): Doc fix.
6490         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
6491         from gnus-summary-save-article-coding-system, and default to a
6492         certain coding system.
6493         (gnus-output-to-file): Add coding cookie and encode text according
6494         to gnus-article-save-coding-system; don't use mm-append-to-file.
6496         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
6497         gnus-art.el and rename to gnus-article-save-coding-system.
6498         (gnus-summary-save-article): Require gnus-art; don't show all
6499         headers if it decodes articles; don't add coding cookie here;
6500         don't bind mm-text-coding-system-for-write.
6501         (gnus-summary-save-article-file): Save decoded articles.
6502         (gnus-summary-write-article-file): When saving many files, use
6503         gnus-summary-write-to-file first and gnus-summary-save-in-file
6504         thereafter unless gnus-prompt-before-saving is always.
6505         (gnus-summary-save-article-body-file): Save decoded articles.
6507 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
6509         * nnrss.el (nnrss-check-group): Bind hash-index.
6511 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
6513         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
6514         its hash index.  Store this hash in `nnrss-group-data'.
6515         (nnrss-read-group-data): Update accordingly.
6517 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
6519         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
6520         entry.
6522         * gnus-sum.el (gnus-summary-make-menu-bar): Add
6523         gnus-article-browse-html-article.
6525 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
6527         * gnus-sum.el (gnus-summary-mime-map): Add
6528         gnus-article-browse-html-article.
6529 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
6531         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
6532         suitable coding systems in customize.
6534 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
6536         * mail-source.el (mail-sources): Fix custom type.
6538 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
6540         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
6541         (gnus-summary-expire-articles-now): Shorten prompt.
6543         * gmm-utils.el (wid-edit): Require.
6544         (defun-gmm): Renamed from `gmm-defun-compat'.
6545         (gmm-image-search-load-path): Use it.
6546         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
6548 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6550         * gnus-sum.el (gnus-summary-save-article-coding-system): New
6551         variable.
6552         (gnus-summary-save-article): Add optional `decode' argument.  If
6553         it is set and gnus-summary-save-article-coding-system is non-nil,
6554         save decoded article.
6555         (gnus-summary-write-article-file): Save decoded article if
6556         gnus-summary-save-article-coding-system is non-nil.
6558         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
6559         type.
6561 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6563         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
6565 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6567         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
6568         first to test gnus-single-article-buffer which may be buffer-local.
6570         * gnus-sum.el (gnus-summary-setup-buffer): Make
6571         gnus-single-article-buffer buffer-local and nil in ephemeral
6572         group; make gnus-article-buffer, gnus-article-current, and
6573         gnus-original-article-buffer always buffer-local.
6574         (gnus-summary-exit): Kill article buffer belonging to ephemeral
6575         group.
6576         (gnus-handle-ephemeral-exit): Don't move to next summary line.
6578 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
6580         * nnml.el (nnml-request-compact-group): Compressed files might not
6581         have .gz extension.
6583 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6585         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
6586         (mm-copy-to-buffer): Use with-current-buffer.
6587         (mm-display-part): Simplify.
6588         (mm-inlinable-p): Add optional arg `type'.
6590 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6592         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
6593         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
6594         Try harder to show the attachment internally or externally using
6595         gnus-mime-view-part-as-type.
6597 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
6599         * message.el (message-from-style, message-signature-separator)
6600         (message-user-organization-file, message-send-mail-function)
6601         (message-citation-line-function, message-yank-prefix)
6602         (message-indent-citation-function, message-signature)
6603         (message-signature-file, message-signature-insert-empty-line):
6604         Remove autoloads.
6606         * gnus-art.el (gnus-buttonized-mime-types): Remove
6607         "multipart/signed".  Revert 2006-04-26 change.
6609 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6611         * gnus.el (gnus-version-number): Bump version.
6613 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6615         * gnus.el: No Gnus v0.5 is released.
6617 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6619         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
6620         fetching articles by message-id.
6622 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6624         * message.el (hashcash): Require hashcash as normal.
6626         * ecomplete.el (ecomplete-highlight-match-line): Use
6627         point-at-eol.
6628         (ecomplete-highlight-match-line): Use `highlight', because that
6629         face exists in both Emacs and XEmacs.
6631         * message.el (message-display-abbrev): Use point-at-bol.
6633         * mail-source.el: Don't require timer/timer-funcs.
6635         * gnus-async.el: Ditto.
6637         * password.el: Ditto.
6639         * mm-url.el: Ditto.
6641         * mm-util.el: Require timer/timer-funcs.
6643 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6645         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
6646         Close.
6648 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6650         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
6651         unibyte after clear-decrypt function runs.
6653         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
6654         returns as a unibyte string.
6656 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6658         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
6659         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
6660         (mml1991-pgg-encrypt): Ditto.
6662 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
6664         * message.el (message-user-organization-file): Check several
6665         locations of the organization file.
6667         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
6668         Add gnus-article-view-part-as-type.
6670         * gnus-art.el (gnus-article-view-part-as-type): New function.
6672         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
6673         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
6675         * mml.el: Simplify autoload.
6676         (mml-mode): defvar dnd-protocol-alist instead of using
6677         symbol-value.
6678         (mml-default-directory): New variable.
6679         (mml-minibuffer-read-file): Use it.
6680         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
6682         * message.el (message-citation-line-format): New variable.
6683         (message-insert-formated-citation-line): New function.
6684         (message-citation-line-function): Add
6685         `message-insert-formated-citation-line' to custom type.
6687         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
6688         to doc string.
6690         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
6691         depending on mm-verify-option.
6693 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6695         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
6696         binding pgg-* variables; reimplement the section which prevents
6697         MIME header from being signed.
6698         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
6699         pgg-text-mode; remove a blank line at the top of body.
6701         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
6702         lines at the top of body; use gnus-newsgroup-charset if there's no
6703         Charset header.
6705 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6707         * message.el (message-self-insert-commands): Doc fix.
6709         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
6710         (mm-uu-pgp-encrypted-test): Ditto.
6711         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
6712         between header and body; return application/pgp-encrypted handle
6713         if decryption failed; decode decrypted body by charset.
6715         * mm-decode.el (mm-automatic-display): Don't make application/pgp
6716         element match to application/pgp-*.
6718 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6720         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
6721         HTML.
6723 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6725         * mail-source.el (mail-source-call-script): Message the error
6726         string.
6728 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6730         * gnus-util.el (gnus-byte-compile): Use it.
6732 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
6734         * gnus-util.el (kill-empty-logs): New function.
6736 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6738         * message.el (message-mail-alias-type): Doc fix.
6739         (message-mail-alias-type-p): New function.
6740         (message-send): Use it.
6741         (message-mode): Ditto.
6742         (message-strip-forbidden-properties): Ditto.
6744         * ecomplete.el (ecomplete-database-file-coding-system): New
6745         variable.
6746         (ecomplete-save): Use it.
6747         (ecomplete-setup): Use it.
6749 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6751         * message.el (message-self-insert-commands): New variable.
6752         (message-strip-forbidden-properties): Use it.
6754 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6756         * message.el (message-put-addresses-in-ecomplete): Use a regexp
6757         that doesn't make XEmacs choke.
6759 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
6761         * gnus-util.el (gnus-replace-in-string):
6762         Prefer replace-regexp-in-string over of replace-in-string.
6764 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6766         * gnus-util.el (gnus-select-frame-set-input-focus):
6767         Use select-frame-set-input-focus if it is available in XEmacs; use
6768         definition defined in Emacs 22 for old Emacsen.
6770 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6772         * mm-view.el (mm-inline-text): Use equal instead of equalp.
6774 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
6776         * gnus-registry.el (gnus-registry-cache-save): Remove text
6777         properties when saving via the temp buffer.
6779 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
6781         * message.el (message-generate-hashcash): Honor custom type.
6783 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6785         * message.el (message-generate-hashcash): Default to non-nil when
6786         hashcash is found.
6788         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
6789         (gnus-refer-thread-limit): Increase default to 500.
6791         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
6793         * flow-fill.el (fill-flowed): Allow delete-space.
6795 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
6797         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
6798         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
6799         Remove autoloads.
6801 2006-04-18  Simon Josefsson  <jas@extundo.com>
6803         * message.el (message-generate-hashcash): Default to.
6805 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6807         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
6808         concatenating segments rather than before concatenating them.
6810 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
6812         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
6814         * imap.el (imap-quote-specials): New function.
6815         (imap-login-auth): Quote specials.
6817 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6819         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
6821         * message.el (message-forward-make-body-plain): Allow
6822         message-forward-ignored-headers to be a list.
6823         (message-remove-ignored-headers): Factor out into function.
6824         (message-forward-make-body-mml): Use it.
6825         * rfc2231.el (rfc2231-parse-string): Remove dead code.
6826         (rfc2231-parse-string): Allow concatanation of parameters that
6827         aren't contiguous.  The test case is
6828           (mail-header-parse-content-type "message/external-body;
6829             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
6830             access-type=LOCAL-FILE;
6831             name*1*=plugh%2fhello-sailor%2fbing.pdf")
6833 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6835         * nntp.el (nntp-accept-process-output): Return the value of
6836         `nnheader-accept-process-output'.
6838 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6840         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
6841         (gnus-button-alist): Recognize more diff formats.
6842         (gnus-button-patch): Strip directory.
6844 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
6846         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
6847         Emacs 22 when setting focus.
6849 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6851         * gnus-art.el (gnus-article-treat-types): Do treatment of
6852         text/x-verbatim parts.
6853         (gnus-button-patch): New command.
6855         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
6856         addresses that contain invalid characters.
6858 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6860         * message.el (message-put-addresses-in-ecomplete): Use
6861         gnus-replace-in-string.
6862         (message-is-yours-p): Use the more correct
6863         mail-header-parse-address instead of
6864         mail-extract-address-components.
6865         (message-put-addresses-in-ecomplete): Fix typo.
6867         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
6868         keystroke.
6870         * gnus-art.el (gnus-treatment-function-alist): Change order of
6871         newsgroups/generic header folding to avoid double-folding.
6873         * message.el (message-hidden-headers): Add X-Draft-From.
6875         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
6876         command.
6877         (gnus-summary-repeat-search-article-backward): New command.
6879         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
6880         groups in the parent topic.
6882 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
6884         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
6885         (spam-extra-header-to-number): Return the CRM114 number as a
6886         number instead of a string.
6888 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6890         * gnus-art.el (gnus-face-properties-alist): Moved here from
6891         gnus-fun.
6893         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
6895 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6897         * message.el (message-strip-forbidden-properties): Only display on
6898         self-insert-command.
6900         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
6901         reindent.
6902         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
6904 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
6906         * smiley.el (smiley-style): Fix typo.
6908 2006-03-23  Kenichi Handa  <handa@m17n.org>
6910         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
6911         instead of set-buffer-multibyte.
6913 2006-03-23  Kenichi Handa  <handa@m17n.org>
6915         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
6916         buffer and then decode the buffer text if necessary.
6917         (rfc2231-encode-string): Be sure to work on multibyte buffer at
6918         first, and after mm-encode-body, change the buffer to unibyte.
6920 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6922         * hashcash.el (hashcash-insert-payment-async-2): Use
6923         message-goto-eoh instead of doing it manually.
6924         (mail-add-payment): Use message-narrow-to-header instead of trying
6925         to do the same itself.
6927         * message.el (message-hidden-headers): Add Face.
6929         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
6930         reparenting code.
6931         (gnus-summary-reparent-children): Refactored out code.
6932         (gnus-summary-thread-map): New keystroke.
6933         (gnus-summary-reparent-children): Make into command.
6935         * smiley.el (smiley-style): Default to `medium' if using a large
6936         font.
6938         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
6939         does it itself.
6941         * message.el (message-point-in-header-p): Simplify definition.
6943 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6945         * nnagent.el (nnagent-request-set-mark): Silence log file
6946         writing.
6947         (nnagent-request-set-mark): Use write-region instead of
6948         append-to-file.
6950         * gnus-sum.el (gnus-read-header): Fudge article number if using a
6951         strange select method.
6953         * ecomplete.el (ecomplete-display-matches): Get highlightling
6954         right.
6955         (ecomplete-display-matches): Use literals.
6956         (ecomplete-display-matches): Disable message logging.
6958         * message.el (message-display-abbrev): Small optimization.
6960         * ecomplete.el (ecomplete-display-matches): Allow automatic
6961         display.
6963         * message.el (message-strip-forbidden-properties): Display
6964         abbrevs.
6965         (message-display-abbrev): Get automatic display right.
6967         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
6968         keystrokes.
6970 2006-04-13  Romain Francoise  <romain@orebokech.com>
6972         TODO: Backport to v5-10!
6974         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
6975         Moved here (and renamed) from gnus-registry.el.
6977         * gnus-registry.el: Require gnus-util.
6978         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
6980 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6982         * gnus-group.el (gnus-group-catchup-current): Change
6983         if-then-else-if-then-else into cond.
6984         (gnus-group-catchup): Indent.
6985         (group-name-at-point): New function.
6986         (gnus-fetch-group): Provide default from thing at point.
6988 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6990         * message.el (message-display-abbrev): Fix regexp.
6992         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
6993         choosing.
6994         (ecomplete-highlight-match-line): Fix up code rewrite, remove
6995         dead variables.
6997         * message.el (message-newline-and-indent): Remove debugging.
6998         (message-display-abbrev): Use new implementation.
7000 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
7002         * gnus-art.el (gnus-article-mode): Set
7003         cursor-in-non-selected-windows to nil.
7005         * smiley.el: Revert previous change.
7006         (smiley-data-directory): defvar it before using it in the
7007         defcustom of `smiley-style'.
7009 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7011         * message.el (message-newline-and-indent): New function.
7013         * ecomplete.el: Implement more bits.
7015         * message.el (message-put-addresses-in-ecomplete): Clean up the
7016         string.
7018         * ecomplete.el (ecomplete-add-item): Chop off decimals.
7020         * gnus-sum.el (gnus-summary-save-parts): Bind
7021         gnus-summary-save-parts-counter and use it to make unique file
7022         names.
7024         * gnus-art.el (gnus-ignored-headers): Add some more headers.
7026         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
7027         parameter to say whether to actually parse the individual
7028         addresses.
7030         * message.el (message-put-addresses-in-ecomplete): New function.
7031         (ecomplete): Require.
7032         (message-mail-alias-type): Add ecomplete as an option.
7034 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
7036         * flow-fill.el (fill-flowed): Remove trailing space from blank
7037         quoted lines.
7039 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7041         * smiley.el (smiley-style): Move definition later to avoid a
7042         compilation warning.
7044 2006-04-12  Kenichi Handa  <handa@m17n.org>
7046         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
7047         buffer and then decode the buffer text if necessary.
7048         (rfc2231-encode-string): Be sure to work on multibyte buffer at
7049         first, and after mm-encode-body, change the buffer to unibyte.
7050         Use mm-disable-multibyte instead of set-buffer-multibyte.
7052 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7054         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
7055         Content-Type header instead of Content-Disposition header.
7056         (gnus-mime-inline-part): Ditto.
7057         (gnus-mime-view-part-as-charset): Ignore charset that the part
7058         specifies.
7060         * mm-decode.el (mm-display-part): Work with external parts and
7061         usual parts similarly.
7063         * mm-extern.el (mm-inline-external-body): Use mm-display-part
7064         instead of gnus-display-mime.
7066         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
7067         instead of with-temp-buffer.
7069         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
7070         tag to summarized topics part in order to encode non-ASCII text.
7072 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7074         * smiley.el (smiley-style): New variable.
7075         (smiley-directory): New function.
7076         (smiley-data-directory): Derive from `smiley-style' using
7077         `smiley-directory'.
7078         (smiley-regexp-alist): Add new entries.
7080         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
7081         (gnus-article-browse-delete-temp): Add :version.
7083 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
7085         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
7086         the sieve region.
7088 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7090         * gnus.el (gnus-version-number): Bump version.
7092 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7094         * gnus.el: No Gnus v0.4 is released.
7096 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7098         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
7099         layout.
7101         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
7102         unknown charset.
7104         * message.el (message-header-synonyms): Add Original-To to the
7105         default.
7107         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
7108         optional parameter.
7110 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
7112         * gnus-fun.el (gnus): Require it for gnus-directory.
7114 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7116         * gnus-fun.el (gnus-face-properties-alist): Add :version.
7118 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
7120         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
7122 2006-04-05  Simon Josefsson  <jas@extundo.com>
7124         * password.el (password-reset): New function.
7126 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
7128         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
7129         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
7131 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7133         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7134         Some whitespace was matched into the url, which broke browsing hits
7135         > 100 when mm-url-use-external was nil.
7137 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
7139         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
7140         gnus-extra-headers for 'Newsgroups.
7142         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
7143         bound.
7145 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
7147         * pgg-gpg.el: Clean up process buffers every time gpg processes
7148         complete.
7150 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
7152         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
7153         doc string.
7155 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
7157         * pgg-gpg.el (pgg-gpg-process-filter)
7158         (pgg-gpg-wait-for-completion): Check if buffer is alive.
7160         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
7161         lines, temporary fix.
7163 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
7165         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
7167 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
7169         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
7170         default-enable-multibyte-characters.  This reverts the change from
7171         revision 6.17 which is no longer necessary because the passphrase
7172         is sent separately now.  GnuPG messages are unreadable under
7173         multibyte locales with default-enable-multibyte-characters set to
7174         nil.
7176 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
7178         * message.el (message-tool-bar-gnome): Move "spell".
7180 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
7182         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
7183         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
7184         instead.
7186 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
7188         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
7189         newsgroups handling for NNTP overviews which don't include
7190         Newsgroups.
7192 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7194         * message.el (message-resend): Bind message-generate-hashcash to nil.
7196 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7198         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
7199         when searching for already-paid recipients.
7201 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
7203         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
7204         passphrases when it is not needed.
7205         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
7206         passphrase stuff from gpg, should only be necessary when you use
7207         gpg with a smartcard.
7209 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7211         * mml.el (mml-insert-mime): Ignore cached contents of
7212         message/external-body part.
7214         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
7215         (mm-insert-part): Ditto.
7217 2006-03-23  Simon Josefsson  <jas@extundo.com>
7219         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
7220         Reiner.
7221         (pgg-gpg-use-agent-p): Use it again.
7223 2006-03-23  Simon Josefsson  <jas@extundo.com>
7225         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
7226         older emacsen.
7227         (pgg-gpg-use-agent-p): Don't use it.
7229 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
7231         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
7232         if we can.
7234 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
7236         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
7237         (pgg-gpg-update-agent): New function.
7238         (pgg-gpg-use-agent-p): New function.
7239         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
7240         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
7241         (pgg-gpg-sign-region): Use it.
7243 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7245         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
7246         Reported by Ralf Wachinger <rwachinger@gmx.de>.
7248 2006-03-21  Simon Josefsson  <jas@extundo.com>
7250         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
7251         <wilde@sha-bang.de>.
7252         (pgg-gpg-use-agent): New variable.
7253         (pgg-gpg-process-region): Use it.
7254         (pgg-gpg-encrypt-region): Likewise.
7255         (pgg-gpg-encrypt-symmetric-region): Likewise.
7256         (pgg-gpg-decrypt-region): Likewise.
7257         (pgg-gpg-sign-region): Likewise.
7258         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
7260 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
7262         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
7264         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
7265         Add comment on version.
7267 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
7269         * smiley.el: Add missing test smiley.
7271 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7273         * mm-decode.el (mm-with-part): New macro.
7274         (mm-get-part): Use it; work with message/external-body as well.
7275         (mm-save-part): Treat name and filename equally.
7277         * mm-extern.el (mm-extern-cache-contents): New function.
7278         (mm-inline-external-body): Use it; force the part to be displayed;
7279         move undisplayer added to the cached handle to the parent.
7281         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
7282         (gnus-mime-view-part-as-type): Work with message/external-body.
7284         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
7286 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
7288         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
7289         images in image-load-path.  [Sync with image.el at 2006-03-16T16:55:26Z!wohler@newt.com, in
7290         Emacs.]
7292 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
7294         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
7295         path rather than symbol.  Always return list of directories.
7296         Guarantee that image directory comes first.  [Sync with image.el,
7297         , in Emacs2006-03-15T17:06:16Z!wohler@newt.com.]
7299         * message.el (message-make-tool-bar): Adjust to new API of
7300         `gmm-image-load-path-for-library'.
7302         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
7304         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
7306 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7308         * gnus-art.el (gnus-article-only-boring-p):
7309         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
7310         intangible text.
7311         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
7313 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
7315         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
7316         `defun' instead of `gmm-defun-compat'.
7318 2006-03-14  Simon Josefsson  <jas@extundo.com>
7320         * message.el (message-unique-id): Don't use message-number-base36
7321         if (user-uid) is a float.
7322         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
7324 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
7326         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
7328         * gnus-art.el (gnus-mime-display-single): Make sure there is an
7329         empty line between a part and a message part.
7331 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
7333         * smiley.el: Add more test smileys.
7334         (smiley-data-directory, smiley-regexp-alist)
7335         (gnus-smiley-file-types): Fix doc strings.
7336         (smiley-update-cache): Clear smiley-cached-regexp-alist before
7337         adding new elements.
7338         (smiley-mouse-map): Unused code.  Make it a comment.
7340 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7342         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
7343         scan latest NoCeM messages instead of old ones.
7344         (gnus-nocem-check-article): Fix regexps so as to match to PGP
7345         delimiters that are recently used.
7346         (gnus-nocem-load-cache): Add autoload cookie.
7348         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
7350         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
7351         level which is larger than gnus-use-nocem is specified.
7353         * gnus-group.el (gnus-group-get-new-news): Ditto.
7355 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
7357         * gnus-util.el (gnus-tool-bar-update): New function.
7359         * gnus-group.el (gnus-group-update-tool-bar): New variable.
7360         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
7362         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
7364         * gnus-group.el (gnus-group-redraw-when-idle)
7365         (gnus-group-redraw-check): Remove.
7366         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
7368 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7370         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
7371         if optional last element is specified in splits (FIELD VALUE...).
7373 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
7375         * message.el (message-make-tool-bar): Rename gmm-image-load-path
7376         to gmm-image-load-path-for-library.  Call with no-error argument.
7377         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
7379         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
7381         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
7383         * gmm-utils.el (gmm-image-load-path): Remove alias.
7385 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
7387         * gmm-utils.el (gmm-image-load-path): Add alias.
7389         * nnml.el (nnml-generate-nov-databases-directory): Rename from
7390         nnml-generate-nov-databases-1.
7391         (nnml-generate-nov-databases): Use it.
7392         (nnml-generate-nov-databases-directory): Document no-active
7393         argument.
7395         * gmm-utils.el (gmm-image-load-path-for-library): Return single
7396         directory if path is t.  Add no-error.
7398         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
7399         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
7401         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
7402         resetting gnus-article-browse-html-temp-list.
7404         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
7405         mh-compat.el at 2006-03-04T21:23:21Z!wohler@newt.com in Emacs.  Rename `gmm-image-load-path'.
7406         Add example to docstring.  Rename local variables.  Move error
7407         checks to default case in cond and simplify.
7409 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7411         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
7412         handle is multipart when calling it recursively.
7413         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
7415 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
7417         * nnimap.el (nnimap-request-update-info-internal): Optimize.
7418         Don't `gnus-uncompress-range' to avoid excessive memory usage.
7420 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7422         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
7423         is loaded.
7425         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
7426         loaded.
7428 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
7430         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
7431         to "Emacs 23 (unicode)" in doc string.
7433         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
7434         "Emacs 23 (unicode)" in comment.
7436 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7438         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
7440         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
7441         characters 160 through 255 in Emacs 23.
7443 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
7445         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
7446         gnus-article-browse-html-temp.
7447         (gnus-article-browse-delete-temp): Make it customizable.  Add
7448         `file'.  Adjust doc string.
7449         (gnus-article-browse-delete-temp-files): Add argument.  Allow
7450         query for each file.  Adjust doc string.
7451         (gnus-article-browse-html-parts): Add
7452         `gnus-article-browse-delete-temp-files' to
7453         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
7455 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
7457         * gnus-art.el (gnus-article-browse-html-temp)
7458         (gnus-article-browse-delete-temp): New variables.
7459         (gnus-article-browse-delete-temp-files): New function.
7460         (gnus-article-browse-html-parts): Use it.
7462 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
7464         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
7466         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
7467         string.
7469         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
7470         gnus-summary-insert-new-articles when unplugged.  Remove
7471         gnus-summary-search-article-forward.
7473         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
7474         display-visual-class instead of display-color-cells.
7476 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7478         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
7479         message/* containing non-ASCII text properly.
7481 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
7483         * message.el: Require gmm-utils, remove autoloads.
7484         (message-tool-bar): Set default based on
7485         gmm-tool-bar-style.
7486         (message-tool-bar-gnome): Add gmm-customize-mode.
7488         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
7489         gmm-tool-bar-style.
7490         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
7492         * gnus-group.el (gnus-group-tool-bar): Set default based on
7493         gmm-tool-bar-style.
7494         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
7496         * gmm-utils.el (gmm-image-directory): Rename variable from
7497         gmm-image-load-path.
7498         (gmm-image-load-path): Use gmm-image-directory.
7499         (gmm-customize-mode): New function.
7500         (gmm-tool-bar-style): New variable.
7502         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
7503         gnus-group-redraw-line-number.
7504         (gnus-group-redraw-check): Simplify.
7505         (gnus-group-tool-bar-update): Remove redraw check.
7506         (gnus-group-make-tool-bar): Add redraw check.
7508 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
7510         * gnus-art.el (gnus-button): Add missing parentheses.
7512 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7514         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
7516 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
7518         * gnus-art.el (gnus-button): New face.
7519         (gnus-article-button-face): Use it.
7521         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
7522         gnus-summary-next-page.  Re-order.
7524         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
7525         next-node are now included.
7526         (gnus-group-redraw-line-number): New internal variable.
7527         (gnus-group-redraw-check): Helper function for updating the tool
7528         bar.
7529         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
7531         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
7533         * spam.el (spam-spamassassin-score-regexp): New internal variable.
7534         (spam-extra-header-to-number, spam-check-spamassassin-headers):
7535         Use it to match format of Spamassassin 3.0 and later.  Reported by
7536         IRIE Tetsuya <irie@t.email.ne.jp>.
7537         (spam-check-bogofilter)
7538         (spam-bogofilter-register-with-bogofilter): Fix args of
7539         `gnus-error' calls.
7541 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
7543         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
7544         unnecessary interaction when sending queued mails.  Reported by
7545         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
7547 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
7549         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
7550         first or last are nil.
7552 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7554         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
7556 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7558         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
7560 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7562         * dns.el (query-dns): Protect more against buggy tcp output.
7564 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
7566         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
7567         nov.php.
7569 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
7571         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
7572         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
7573         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
7574         output on the server side.
7575         (nnweb-google-create-mapping): Update regexps and add some
7576         progress indication.
7578 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
7580         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
7581         gnus-agent-toggle-plugged.  Re-order icons.
7582         (gnus-group-tool-bar-gnome): Add
7583         gnus-group-{prev,next}-unread-group.
7584         (gnus-group-tool-bar-gnome): Re-order icons.
7586         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
7587         gnus-summary-insert-new-articles.
7589         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
7590         comments.
7592         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
7593         also available in Emacs 21.3.
7595         * message.el (message-fix-before-sending): Change "Emacs 22" to
7596         "Emacs 23 (unicode)" in comment.
7598         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
7599         "Emacs 23 (unicode)" in comment.
7601         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
7602         comment.
7603         (mm-coding-system-p): Add comment about no-MULE XEmacs.
7605         * mm-view.el (mm-fill-flowed): Add :version.
7607 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7609         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
7610         and load-path.
7612 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
7614         * message.el: Autoload gmm-image-load-path.
7615         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
7616         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
7617         consitency.
7619         * gmm-utils.el (gmm-image-load-path): Also search in
7620         "../etc/images".  Don't set gmm-image-load-path if we don't find
7621         the image.
7623 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7625         * gmm-utils.el (gmm-image-load-path): Don't make
7626         `gmm-image-load-path' include subdirectories which the second arg
7627         `image' might specify.
7629         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
7630         subdirectory to icon file names.
7632         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
7634 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
7636         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
7637         gmm-image-load-path calls.
7639         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
7641         * message.el (message-make-tool-bar): Ditto.
7643         * mml.el (mml-preview): Added comment concerning tool bar icons.
7645         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
7646         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
7648         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
7649         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
7651         * message.el (message-tool-bar-gnome): Use new icon names.
7652         (message-make-tool-bar): Use `gmm-image-load-path'.
7654         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
7655         functions from MH-E.
7656         (gmm-image-load-path): New variable from MH-E.
7657         (gmm-image-load-path): New function from MH-E.  Added arguments
7658         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
7659         *-image-load-path-called-flag.
7661 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
7663         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
7665 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
7667         * nnimap.el (nnimap-request-move-article): Change folder back to
7668         source group before deleting.
7670 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
7672         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
7674         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
7675         mm-url.
7677         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
7679 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7681         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
7682         coding system which mm-charset-to-coding-system returns for a
7683         given charset is valid.
7685 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
7687         * html2text.el (html2text-remove-tag-list):
7688         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
7690 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
7692         * gnus-cus.el: Revert 2005-10-17 change.
7694 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7696         * gnus-art.el (article-strip-banner): Call
7697         article-really-strip-banner only when the regexp match is made.
7699 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7701         * gnus-art.el (article-strip-banner): Use
7702         gnus-extract-address-components instead of
7703         mail-header-parse-addresses to make it work with non-ASCII text;
7704         remove mail-encode-encoded-word-string.
7706         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
7707         values which are surrounded with \"...\"; make it never cause a
7708         Lisp error; give up parsing of parameters if it failed in
7709         extracting type.
7711 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
7713         * smime.el (smime-cert-by-ldap-1): Fix bug where
7714         `smime-ldap-search' returns results without userCertificates.
7716 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7718         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
7720 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
7722         * spam.el (spam-check-spamassassin-headers): Adapt format for
7723         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
7724         <ari@mbf.ocn.ne.jp>.
7725         (spam-list-of-processors): Add spam-use-gmane.
7727 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7729         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
7730         make-temp-file; make it work with XEmacs as well.
7732         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
7733         mm-make-temp-file.
7735         * mm-decode.el (mm-display-external): Use the 3rd arg of
7736         mm-make-temp-file.
7737         (mm-create-image-xemacs): Ditto.
7739 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7741         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
7742         with message-narrow-to-headers.
7743         (gnus-draft-setup): Narrow to header to run message-fetch-field.
7744         (gnus-draft-check-draft-articles): New function.
7745         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
7747 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
7749         * gnus-art.el (gnus-article-browse-html-parts):
7750         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
7751         Don't use suffix argument for mm-make-temp-file for Emacs 21
7752         compatibility.  Remove useless `format'.
7754 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
7756         * nnweb.el (nnweb-google-wash-article): Update regexps.
7757         (nnweb-group-alist): Use defvoo instead of defvar.
7759 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
7761         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
7762         re-loading nn* modules.
7764 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
7766         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
7767         for `tool-bar-mode' and don't check it's default-value.
7769         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
7771         * message.el (message-make-tool-bar): Ditto.
7773         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
7774         `substring'.  Shorten tmp-file name.
7776         * gnus.el: Remove bogus comment.
7778 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
7780         * gnus-art.el (gnus-article-browse-html-parts): New function.
7781         (gnus-article-browse-html-article): New function for viewing html
7782         articles with a browser.
7784 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
7786         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
7787         (mml2015-pgg-encrypt): Ditto.
7789         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
7790         (mml1991-pgg-encrypt): Ditto.
7792 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7794         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
7795         message-make-date instead of current-time-string.
7797         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
7798         to gnus-decoded which mm-uu might set.
7800 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7802         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
7803         don't decode quoted parameters; remove misimported Emacs code.
7804         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7805         (rfc2231-decode-encoded-string): Don't use split-string which
7806         behaves differently according to Emacs version; use
7807         mm-decode-coding-region to convert charset to coding-system.
7808         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7809         (rfc2231-encode-string): Remove misimported Emacs code.
7811 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7813         * gnus-art.el (article-decode-charset): Don't use ignore-errors
7814         when calling mail-header-parse-content-type.
7815         (article-de-quoted-unreadable): Ditto.
7816         (article-de-base64-unreadable): Ditto.
7817         (article-wash-html): Ditto.
7819         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
7820         calling mail-header-parse-content-type and
7821         mail-header-parse-content-disposition.
7822         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
7823         mail-header-parse-content-type.
7825         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
7826         insert charset and format parameters; encode description after
7827         inserting it to buffer.
7828         (mml-insert-parameter): Fold lines properly even if a parameter is
7829         segmented into two or more lines; change the max column to 76.
7831         * rfc1843.el (rfc1843-decode-article-body): Don't use
7832         ignore-errors when calling mail-header-parse-content-type.
7834         * rfc2231.el (rfc2231-parse-string): Return at least type if
7835         possible; don't cause an error even if it fails in parsing of
7836         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7837         (rfc2231-encode-string): Don't break lines at the beginning, leave
7838         it to mml-insert-parameter.
7840         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
7841         calling mail-header-parse-content-type.
7843 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
7845         * spam-report.el (spam-report-gmane-use-article-number):
7846         Improve doc string.
7847         (spam-report-gmane-internal): Check if a suitable header was found
7848         in the article.
7850 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7852         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
7853         (rfc2231-encode-string): Make param*=value always begin with LWSP.
7855 2006-02-05  Romain Francoise  <romain@orebokech.com>
7857         Update copyright notices of all files in the gnus directory.
7859 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
7861         * nnweb.el (nnweb-request-group): Avoid growing overview files.
7863 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7865         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
7866         segmented lines of parameter value to cope with Thunderbird 1.5
7867         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
7868         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7869         (rfc2231-encode-string): Don't make lines exceeding 76 column.
7871 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
7873         * mml.el (mml-generate-mime-1): Correct the order of inline signed
7874         parts.
7876 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
7878         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
7879         there's only one active file for all servers.
7880         (nnweb-request-scan): Make sure nnweb-articles is initialized on
7881         solid groups.  Gnus might have used a FAST request to select the group.
7882         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
7883         and nnweb-search redundantly in the active file.
7884         (nnweb-request-list): Don't list bogus groups.  There can only be one.
7885         (nnweb-request-create-group): Don't use ARGS.
7886         (nnweb-possibly-change-server, nnweb-request-group): Remove some
7887         initialisations.  Let nnoo do the work.
7889 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7891         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
7892         Say the part has been decoded.
7894         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
7896 2006-01-31  Kevin Ryde  <user42@zip.com.au>
7898         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
7899         mailcap-viewer-test-cache when there's no 'test clause, since that
7900         will invert the meaning of a "nil" test previously determined by
7901         mailcap-mailcap-entry-passes-test.
7903 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7905         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
7906         compiling.
7908         * gnus-sum.el: Ditto.
7910         * message.el: Don't bind tool-bar-map when compiling.
7912 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
7914         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
7916 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
7918         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
7919         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
7920         current Google Groups.
7922 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
7924         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
7925         and tool-bar-mode.
7927         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
7928         and tool-bar-mode.
7930         * message.el (message-tool-bar-update): Simplify.
7931         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
7933         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
7934         gnus-summary-buffer.
7935         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
7936         gnus-summary-reply.
7938         * gmm-utils.el (gmm): Add :version.
7940 2006-01-26  Steve Youngs  <steve@sxemacs.org>
7942         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
7943         autoload.
7945 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7947         * gmm-utils.el (gmm-verbose): Add :group.
7949 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
7951         * message.el: Change some comments WRT tool-bars.
7953         * gnus-sum.el (gnus-summary-tool-bar)
7954         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
7955         (gnus-summary-tool-bar-zap-list): New variables.
7956         (gnus-summary-make-tool-bar): Complete rewrite using
7957         `gmm-tool-bar-from-list'.
7959         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
7960         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
7961         variables.
7962         (gnus-group-make-tool-bar): Complete rewrite using
7963         `gmm-tool-bar-from-list'.
7964         (gnus-group-tool-bar-update): New function.
7966         * message.el (message-mode-field-menu): Add "Show hidden Headers".
7968 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7970         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
7971         is dissected into a single part of which the type is the same as
7972         the given one; decode charset.
7974 2006-01-21  Kevin Ryde  <user42@zip.com.au>
7976         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
7977         into alists as symbol not string, since that's what
7978         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
7979         look for.
7981 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
7983         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
7984         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
7986         * message.el (message-tool-bar-gnome): Use gmm-ignore.
7988 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7990         * gnus-art.el (gnus-mime-security-button-commands): New variable.
7991         (gnus-mime-security-button-menu): New definition.
7992         (gnus-mime-security-button-map): Use them.
7993         (gnus-mime-security-button-menu): New function.
7994         (gnus-insert-mime-security-button): Addition to help echo.
7995         (gnus-mime-security-run-function, gnus-mime-security-save-part)
7996         (gnus-mime-security-pipe-part): New functions.
7998         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
7999         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
8001         * mm-decode.el (mm-handle-set-disposition): Remove.
8002         (mm-handle-set-description): Remove.
8004 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8006         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
8007         (mm-w3m-standalone-supports-m17n-p): New function.
8008         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
8009         w3m usage.
8011         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
8012         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
8014 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
8016         * message.el (message-tool-bar-zap-list): Use
8017         gmm-tool-bar-zap-list as custom type.
8018         (message-tool-bar-update): New function.
8019         (message-tool-bar, message-tool-bar-gnome)
8020         (message-tool-bar-retro): Add message-tool-bar-update.
8021         (message-tool-bar-gnome): Add flyspell-buffer.
8023         * gnus-util.el (gnus-error): Describe `args'.
8025         * gmm-utils.el (gmm-error): Describe `args'.
8026         (gmm-tool-bar-zap-list): New widget.
8027         (gmm-tool-bar-from-list): Improve description of `zap-list'.
8029 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8031         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
8032         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
8033         the number of recursive calls.
8035         * mm-decode.el (mm-handle-set-disposition): New macro.
8036         (mm-handle-set-description): New macro.
8038 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8040         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
8041         encoding.
8043 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
8045         * message.el (message-tool-bar-zap-list, message-tool-bar)
8046         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
8047         (message-tool-bar-local-item-from-menu): Remove.
8048         (message-tool-bar-map): Replace by `message-make-tool-bar'.
8049         (message-make-tool-bar): New function.
8050         (message-mode): Use `message-make-tool-bar'.
8052         * gmm-utils.el: New file.
8053         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
8054         (gmm-lazy): New widget copied from `nnmail.el'.
8055         (gmm-tool-bar-from-list): New function for creating customizable
8056         tool bars.
8057         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
8058         output.
8059         (gmm): Add :prefix to defgroup.
8061 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
8063         * gmm-utils.el (gmm-widget-p): New function.
8065 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
8067         * mml.el (mml-attach-file): Describe `description' in doc string.
8068         (mml-menu): Add Emacs MIME manual and PGG manual.
8070 2006-01-20  Richard M. Stallman  <rms@gnu.org>
8072         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
8074 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
8076         * nntp.el (nntp-end-of-line): Doc fix.
8078 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
8080         * imap.el (imap-open): Handle case where buffer is a buffer
8081         object.
8083 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8085         * gnus-delay.el (gnus-delay): Don't autoload.
8086         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
8087         to be re-loaded when customizing the `gnus-delay' group.
8089 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
8091         * message.el (message-insert-citation-line): Use newlines.
8093 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8095         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
8097         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
8099 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
8101         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
8103 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8105         * mm-decode.el (mm-inlined-types): Add application/pgp.
8106         (mm-automatic-display): Ditto.
8108         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
8109         part as text.
8111 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8113         * nnrss.el: Update copyright.
8114         (nnrss-opml-import): Query whether to subscribe to each entry.
8116         * gnus-art.el:
8117         * gnus-sum.el:
8118         * mm-uu.el:
8119         * mm-view.el: Update copyright.
8121 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
8123         * message.el (message-info): New function.
8124         (message-mode-menu): Add it.
8125         Update copyright.
8127         * ChangeLog: Fix and update copyright.
8129 2006-01-13  Romain Francoise  <romain@orebokech.com>
8131         * message.el (message-forward-subject-name-subject): Prefer the
8132         address to 'nowhere' if the sender has no name.
8133         Fix typo.  Update copyright year.
8135 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8137         * gnus-art.el (article-wash-html): Use
8138         gnus-summary-show-article-charset-alist if a numeric arg is given.
8139         (gnus-article-wash-html-with-w3m-standalone): New function.
8141         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
8142         mm-inline-text-html-render-with-w3m-standalone.
8143         (mm-text-html-washer-alist): Map w3m-standalone to
8144         gnus-article-wash-html-with-w3m-standalone.
8145         (mm-inline-text-html-render-with-w3m-standalone): New function.
8147 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
8149         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
8150         Improve LaTeX.
8152 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8154         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
8155         (nnrss-request-article): Render text/plain parts as HTML.
8157         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
8158         the buffer.
8160 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
8162         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
8163         custom definition of `gnus-posting-styles'.
8165         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
8166         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
8168 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
8170         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
8171         Use nntp for bug archive.
8173 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8175         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
8176         parts.
8177         (nnrss-normalize-date): New function converts ISO 8601 date into
8178         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
8179         (nnrss-check-group): Use it.
8181 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8183         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
8185         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
8186         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
8187         (nnrss-insert-w3): Ditto.
8189 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8191         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
8192         the articles to be forwarded including the case where neither a
8193         number of articles nor a region is specified.
8195 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8197         * nnrss.el (nnrss-request-article): Fix last change; fill
8198         text/plain parts.
8200 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8202         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
8203         in text/plain part.
8204         (nnrss-check-group): Don't add excessive newline to dc:subject.
8206 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
8208         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
8209         article.
8211 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
8213         * nnml.el: Don't require gnus-bcklg.  Autoload it.
8214         (nnml-use-compressed-files, nnml-save-mail): Support other
8215         comression programs such as bzip2.
8217 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8219         * dns.el (query-dns): Make sure we check the buffer size before
8220         removing tcp headers.
8222 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8224         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
8225         remove MIME buttons associated with multipart/alternative parts.
8226         (gnus-mime-display-alternative): Tag buttons using `article-type'
8227         text property.
8229         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
8230         associated with multipart/alternative parts.
8232         * gnus-art.el (gnus-signature-separator): Fix custom type.
8234         * mm-decode.el (mm-inlined-types): Fix custom type.
8235         (mm-keep-viewer-alive-types): Ditto.
8236         (mm-automatic-display): Ditto.
8237         (mm-attachment-override-types): Ditto.
8238         (mm-inline-override-types): Ditto.
8239         (mm-automatic-external-display): Ditto.
8241 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
8243         * spam-report.el (spam-report-user-mail-address)
8244         (spam-report-user-agent): New variables.
8245         (spam-report-url-ping-plain): Use spam-report-user-agent.
8247 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
8249         * gnus-art.el (gnus-button-handle-custom): Do not just use
8250         `customize-apropos' for any "M-x customize-*" button but the
8251         function called for.  Accept both the function name and its
8252         argument in order to achieve this.
8253         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
8254         function name to `gnus-button-handle-custom' in case of "M-x
8255         customize-*" buttons.
8257 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8259         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
8260         multipart/alternative and add xref to mm-discouraged-alternatives
8261         in doc string.
8263         * mm-decode.el (mm-discouraged-alternatives): Add xref to
8264         gnus-buttonized-mime-types in doc string.
8266 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
8268         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
8269         Suggest image/.* in the doc string.
8271 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
8273         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
8274         message-marks (Debian bug #342521).
8276 2005-12-12  Simon Josefsson  <jas@extundo.com>
8278         * password.el (password-read-from-cache): Add.
8279         (password-read): Use it.
8281 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8283         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
8284         us-ascii as a MIME charset.
8286         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
8287         against the case where the 2nd arg TYPE is nil.
8289 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
8291         * pop3.el (pop3-stream-type): Fix custom version.
8293         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
8295 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8297         * mm-decode.el (mm-display-external): Add missing cdr.
8299 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8301         * mm-decode.el (mm-display-external): Use nametemplate (defined in
8302         RFC1524) if it is in mailcap or add a suffix according to
8303         mailcap-mime-extensions when generating a temp filename; postpone
8304         deleting a temp file for 2 seconds for some wrappers, shell
8305         scripts, and so on, which might exit right after having started a
8306         viewer command as a background job.
8308 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
8310         * nntp.el (nntp-marks-directory): Fix custom group.
8312         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
8313         steps when < 10.
8315         * gnus-start.el (gnus-no-server-1): Mention
8316         `gnus-level-default-subscribed' in doc string.
8318 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8320         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
8321         parens.
8323 2005-11-26  Dave Love  <fx@gnu.org>
8325         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
8326         (tls-program, tls-success): Provide openssl alternative.
8328         * starttls.el: Doc fixes.
8329         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
8330         SERVICE to PORT.
8332         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
8333         port null or service name.
8334         (starttls-negotiate): Autoload.
8336 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8338         * message.el (message-kill-to-signature): Fix interactive spec.
8340 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8342         * pop3.el (pop3-open-server): Recognize a string as a service name.
8344 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
8346         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
8348 2005-11-23  Dave Love  <fx@gnu.org>
8350         Add pop3s, pop3/starttls.
8352         * pop3.el (pop3-authentication-scheme): Clarify doc.
8353         (open-tls-stream, starttls-open-stream): Autoload.
8354         (pop3-stream-type): New.
8355         (pop3-open-server): Use it.
8357         * mail-source.el (mail-sources): Fix some :types.  Add stream type
8358         for POP.
8359         (mail-source-keyword-map): Add :stream for POP.
8360         (mail-source-fetch-pop): Use pop3-stream-type.
8362 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8364         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
8365         of current-time-string.
8367 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
8369         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
8370         date header.
8372 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
8374         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
8375         it can seriously impact performance as it bypasses the agent's
8376         local caches.
8378 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
8380         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
8381         must be explicitly online rather than "not explicitly offline" for
8382         its flags to be synchronized.
8384         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
8385         that gnus-uu-unmark-thread will function correctly.
8387         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
8388         1024K is instead displayed as 1M.
8390 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8392         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
8394 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
8396         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
8398 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
8400         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
8401         error message to display actual error condition.
8402         (gnus-agent-save-local): Avoid saving symbols that are bound to
8403         nil as they simply result in a warning message in
8404         gnus-agent-read-local.
8406 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8408         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
8409         rather than make-variable-buffer-local for file-precious-flag.
8411 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
8413         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
8414         for duplicates which are removed.  The invalid sort check then
8415         triggers a rescan after the sort as sorting may have moved
8416         duplicate entries such that they can be cheaply detected.
8418 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8420         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
8422 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
8424         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
8425         internal variable to a custom variable.  Changed default value
8426         from compressed(2) to uncompressed(1).
8427         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
8428         support for uncompressed agentview files.  Taken together, reading
8429         the agentview file should now be 6-7 times faster.
8431 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
8433         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
8434         as a buffer-local variable.  This avoids creating truncated
8435         dribble files as a result of a hang up, eg.
8437 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
8439         * gnus-start.el (gnus-start-draft-setup): Enforce
8440         `gnus-draft-mode' for nndraft:drafts at startup.
8442         * gnus.el (gnus-splash): Change custom group.
8443         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
8444         allow-list argument.
8446         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
8447         string.
8449 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
8451         * gnus-art.el (gnus-default-article-saver): Add user-defined
8452         `function' to custom type.
8454 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
8456         * imap.el (imap-open): Handle case where buffer is a buffer
8457         object.
8459 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
8461         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
8462         long lines.
8463         (gnus-cache-delete-group): Wrap doc strings.
8465         * gnus-agent.el (gnus-agent-rename-group)
8466         (gnus-agent-delete-group): Wrap doc strings.
8468 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8470         * gnus-start.el (gnus-1): Add "native" to
8471         gnus-predefined-server-alist.
8473         * gnus.el (gnus-method-to-server): Don't add "native" to the
8474         lists here, because that leads to problems when
8475         gnus-select-method is bound.
8477 2005-11-09  Simon Josefsson  <jas@extundo.com>
8479         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
8480         use (not sort-by-date) instead.
8482 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8484         * gnus-delay.el (gnus-delay-group): Don't autoload.
8485         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
8486         to be re-loaded when customizing the `gnus-delay' group.
8488 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
8490         * message.el: Revert last changes.
8491         (message-insert-citation-line): Use newlines.
8493 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
8495         * message.el (message-courtesy-message)
8496         (message-mark-insert-begin, message-mark-insert-end)
8497         (message-elide-ellipsis, message-cancel-message)
8498         (message-add-header, message-change-subject)
8499         (message-cross-post-followup-to-header)
8500         (message-cross-post-insert-note, message-reduce-to-to-cc)
8501         (message-widen-reply, message-delete-not-region)
8502         (message-kill-to-signature, message-insert-signature)
8503         (message-insert-importance-high, message-insert-importance-low)
8504         (message-insert-or-toggle-importance)
8505         (message-insert-disposition-notification-to)
8506         (message-indent-citation, message-yank-original)
8507         (message-cite-original-without-signature, message-cite-original)
8508         (message-insert-citation-line, message-position-on-field)
8509         (message-fix-before-sending, message-send-mail-partially)
8510         (message-send-mail, message-send-mail-with-sendmail)
8511         (message-send-mail-with-qmail, message-send-news)
8512         (message-check-news-header-syntax, message-generate-headers)
8513         (message-insert-courtesy-copy, message-fill-address)
8514         (message-fill-header, message-shorten-references)
8515         (message-setup-1, message-cancel-news)
8516         (message-forward-make-body-plain, message-forward-make-body-mime)
8517         (message-forward-make-body-mml, message-encode-message-body)
8518         (message-forward-make-body-digest-plain)
8519         (message-forward-make-body-digest-mime)
8520         (message-use-alternative-email-as-from): Insert `hard-newline'
8521         instead of ordinary newlines.
8523 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8525         * message.el (message-generate-headers): Downcase the argument
8526         given to message-check-element.
8528 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
8530         * nntp.el (nntp-authinfo-rejected): New error condition.
8531         (nntp-wait-for): Use new error condition to signal authentication
8532         error.
8533         (nntp-retrieve-data): Rethrow new error condition to break out of
8534         recursive call to nntp-send-authinfo.
8536 2005-11-08  Romain Francoise  <romain@orebokech.com>
8538         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
8539         (gnus-summary-exit-map): Bind to `Z p'.
8540         (gnus-summary-make-menu-bar): Add menu item.
8542 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
8544         * gnus-art.el (gnus-article-treat-custom): Add `first'.
8545         (gnus-treat-*): Add `first' in all doc strings.
8547         * gnus-group.el (gnus-group-compact-group): Fix typo.
8549 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8551         * gnus.el (gnus-parameters-case-fold-search): New variable.
8552         (gnus-parameters-get-parameter): Use it.
8554         * gnus-score.el (gnus-home-score-file): Doc fix.
8556 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
8558         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
8560 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8562         * mm-util.el (mm-special-display-p): New function.
8564         * mml.el (mml-preview): Use it; doc fix.
8566 2005-10-29  Romain Francoise  <romain@orebokech.com>
8568         * message.el (message-fix-before-sending): Fix comment.
8570 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
8572         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
8574 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
8576         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
8577         Used in gnus-score.el.
8579 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
8581         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
8583 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
8585         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
8586         whitespace removed in revision 7.8.  Use concatenated string to
8587         protect trailing whitespace.
8589 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
8591         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
8592         (nnimap-request-expire-articles): Use it to avoid sending 'UID
8593         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
8594         Courier IMAP ("some version from 2004").  Mostly based on similar
8595         code in the same function.
8597 2005-10-26  Didier Verna  <didier@xemacs.org>
8599         * gnus-group.el (gnus-group-compact-group): Invalidate original
8600         article buffer.
8601         * gnus-srvr.el (gnus-server-compact-server): Ditto.
8602         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
8603         NOV database and in article itself.
8604         Invalidate article backlog.
8606 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
8608         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
8610 2005-10-26  Simon Josefsson  <jas@extundo.com>
8612         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
8613         part of 2004-07-25 change.
8615 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8617         * message.el (message-display-completion-list): New function.
8618         (message-expand-group): Use it; make sure the Completions buffer
8619         is modifiable.
8621 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
8623         * imap.el (imap-open): Handle case where buffer is a buffer object.
8625 2005-10-24  Eli Zaretskii  <eliz@gnu.org>
8627         * pgg-def.el:
8628         * pgg-gpg.el:
8629         * pgg-parse.el:
8630         * pgg-pgp.el:
8631         * pgg-pgp5.el:
8632         * pgg.el: Move to the parent lisp directory.
8634 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
8636         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
8637         user-mail-name is an empty string.
8639 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
8641         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
8642         depending on gnus-score-decay-constant.
8644         * encrypt.el (encrypt-insert-file-contents)
8645         (encrypt-write-file-contents): Don't use `gnus-message'.
8647         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
8648         arguments.
8649         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
8650         arguments to mm-uu-verbatim-marks-extract.
8651         (mm-uu-hide-markers): New variable.
8652         (mm-uu-extract): Use face similar to `gnus-cite-3'.
8654         * gnus-fun.el (gnus-convert-image-to-x-face-command)
8655         (gnus-convert-image-to-face-command): Use "convert" by default to
8656         allow other input image formats.
8657         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
8658         accordingly.
8660 2005-10-23  Simon Josefsson  <jas@extundo.com>
8662         * imap.el (imap-gssapi-program): Align command line parameters
8663         with latest GNU SASL.
8664         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
8666 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8668         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
8669         HTML.
8670         (nnslashdot-request-article): Ditto.
8672 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
8674         * mail-source.el (mail-source-fetch-pop): Require pop3.
8675         (mail-source-check-pop): Ditto.
8677 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8679         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
8680         errors.
8682 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
8684         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
8685         (gnus-treat-strip-leading-blank-lines): Improve doc string.
8687         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
8689         * mm-bodies.el (mm-decode-string): Call
8690         `mm-charset-to-coding-system' with allow-override argument.
8692 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8694         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
8695         (rfc2047-charset-to-coding-system): New function.
8696         (rfc2047-decode-encoded-words): New function.
8697         (rfc2047-decode-region): Use them.
8698         (rfc2047-decode-cte): Remove.
8699         (rfc2047-parse-and-decode): Remove.
8700         (rfc2047-decode): Remove.
8702 2005-10-15  Kenichi Handa  <handa@m17n.org>
8704         * rfc2047.el (rfc2047-decode-cte): New function.
8705         (rfc2047-decode-region): Change the way to decode successive
8706         encoded-words: decode B- or Q-encoding in each encoded-word,
8707         concatenate them, and decode it as charset.
8709 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
8711         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
8712         widget-move-and-invoke.
8713         (gnus-custom-mode): Use gnus-custom-map.
8715 2005-10-15  Bill Wohler  <wohler@newt.com>
8717         * message.el (message-tool-bar-map): Renamed image file from
8718         mail_send to mail/send.
8720 2005-10-16  Masatake YAMATO  <jet@gyve.org>
8722         * message.el (message-expand-group): Pass the common
8723         prefix substring of completion to `display-completion-list'.
8725 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
8727         * mml-sec.el (mml-secure-method): New internal variable.
8728         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
8729         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
8730         functions using mml-secure-method.
8732         * mml.el (mml-mode-map): Add key bindings for those functions.
8733         (mml-menu): Simplify security menu entries.  Suggested by Jesper
8734         Harder <harder@myrealbox.com>.
8735         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
8736         end of message if point is the headers of the message.
8738         * message.el (message-in-body-p): New function.
8740         * assistant.el: Autoload gnus-util and netrc.
8742         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
8743         Use `mm-charset-override-alist' only when decoding.
8745         * mm-bodies.el (mm-decode-body): Call
8746         `mm-charset-to-coding-system' with allow-override argument.
8748         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
8749         `filename' from Content-Disposition if Content-Type doesn't
8750         provide `name'.
8751         (gnus-mime-view-part-as-type): Set default instead of
8752         initial-input.
8754 2005-10-09  Daniel Brockman  <daniel@brockman.se>
8756         * format-spec.el (format-spec): Propagate text properties of % spec.
8758 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
8760         * gnus-art.el (gnus-treat-predicate): Add `first'.
8762 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
8764         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
8765         (mm-charset-override-alist): New variable.
8766         (mm-charset-to-coding-system): Use it.
8767         (mm-codepage-setup): New helper function.
8768         (mm-charset-eval-alist): New variable.
8769         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
8770         about unknown charsets.
8772 2005-10-04  David Hansen  <david.hansen@gmx.net>
8774         * nnrss.el (nnrss-request-article): Add support for the comments tag.
8775         (nnrss-check-group): Ditto.
8777 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
8779         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
8780         Rename x-gnus-verbatim to x-verbatim.
8781         (mm-uu-type-alist): Fix regexp for verbatim-marks.
8783         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
8784         x-verbatim.
8786         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
8788         * gnus-util.el (gnus-remove-duplicates): Remove.
8790         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
8791         instead of gnus-remove-duplicates.
8793         * message.el (message-remove-duplicates): Remove.
8794         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
8795         message-remove-duplicates.
8797         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
8798         available, else use implementation from `delete-dups'.
8800         * message.el (message-insert-expires): New function.
8801         (message-mode-map): Add key binding.
8802         (message-mode-field-menu): Add menu entry.
8803         (message-mode): Document it.
8804         (message-make-expires-date): Use `message-make-date'.
8806 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
8808         * message.el (message-make-expires-date): New function.
8810 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8812         * time-date.el: Autoload parse-time-string, XEmacs needs it.
8814 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8816         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
8817         function rather than the diff-mode.el package.
8818         (mm-display-external): Use with-current-buffer.
8819         (mm-viewer-completion-map, mm-viewer-completion-map):
8820         Move initialization inside declaration.
8822 2005-09-29  Simon Josefsson  <jas@extundo.com>
8824         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
8825         autoload mail-check-payment.
8826         (spam-check-hashcash): Define unconditionally, since hashcash.el
8827         is part of Gnus now.  Ignore errors from payment checking.
8829 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
8831         * message.el (message-bold-region, message-unbold-region): Rename
8832         from `bold-region' and `unbold-region'.
8834         * message.el: Remove useless autoloads.
8836 2005-09-28  Simon Josefsson  <jas@extundo.com>
8838         * message.el (message-use-idna): Default to t.
8839         (message-use-idna): Test whether encoding works too.  Doc fix.
8841 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8843         * nntp.el (nntp-warn-about-losing-connection): Remove.
8845 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
8847         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
8848         customizable.  Change default value.
8849         (mm-uu-diff-groups-regexp): Change default value.
8850         (mm-uu-type-alist): Add doc string.
8851         (mm-uu-configure): Add doc string.  Make it interactive.
8852         (mm-uu-tex-groups-regexp): New variable.
8853         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
8854         (mm-uu-type-alist): Add LaTeX documents.
8855         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
8856         of "text/verbatim".
8857         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
8859         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
8860         instead of "text/verbatim".
8862         * message.el (message-mark-inserted-region)
8863         (message-mark-insert-file): Use slrn style marks when called with
8864         prefix argument.
8866 2005-09-27  Simon Josefsson  <jas@extundo.com>
8868         * message.el (message-idna-to-ascii-rhs-1): Reformat.
8870 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
8872         * message.el (message-remove-duplicates): New function.
8873         Implementation borrowed from `gnus-remove-duplicates'.
8874         (message-idna-to-ascii-rhs): Also encode idna addresses in
8875         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
8876         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
8877         only ask about the same idna domain once per header and also tell
8878         in what header to replace the idna domain.
8880         * gnus-art.el (article-decode-idna-rhs): Also decode idna
8881         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
8882         (article-decode-idna-rhs): Fix regexp so that all idna-address in
8883         a header is decoded and not just the last one.
8885 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8887         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
8888         has been decoded.
8890         * mm-decode.el (mm-automatic-display): Add text/verbatim.
8891         (mm-insert-part): Don't modify text if it has been decoded.
8893         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
8894         decoded.
8896         * mm-view.el (mm-inline-text): Don't strip text props unless
8897         decoding enriched or richtext parts.
8899 2005-09-25  Romain Francoise  <romain@orebokech.com>
8901         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
8902         * gnus-start.el (gnus-subscribe-interactively):
8903         * gnus-uu.el (gnus-uu-grab-articles):
8904         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
8905         space.
8907 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
8909         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
8910         * mm-view.el (mm-view-pkcs7-decrypt):
8911         * gnus-sum.el (gnus-summary-limit-to-extra)
8912         (gnus-summary-respool-article, gnus-read-move-group-name):
8913         * gnus-score.el (gnus-summary-increase-score):
8914         * gnus-util.el (gnus-completing-read-with-default):
8915         * gnus-art.el (gnus-read-save-file-name)
8916         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
8917         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
8918         * message.el (message-check-news-header-syntax):
8919         Follow convention for reading with the minibuffer.
8921 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
8923         * spam-report.el (spam-report-url-ping-plain):
8924         Use gnus-extended-version as User-Agent.
8926         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
8927         default value is nil.
8929         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
8930         (mm-uu-verbatim-marks-extract): New function.
8931         (mm-uu-extract): New face.
8932         (mm-uu-copy-to-buffer): Use it.
8934         * spam-report.el (spam-report-gmane-ham): Renamed from
8935         `spam-report-gmane-unspam'.
8936         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
8937         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
8939         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
8940         Autoload.
8941         (spam-report-gmane-unregister-routine): Renamed
8942         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
8944 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
8946         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
8947         (spam-report-gmane-unregister-routine): Add support for gmane
8948         unregistration.
8950         * spam-report.el (spam-report-gmane-unspam)
8951         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
8952         (spam-report-gmane): Change to take a single article and do unspam
8953         registration.
8955 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
8957         * mm-url.el (mm-url-decode-entities): Fix regexp.
8959 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8961         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
8962         default to nil, to be able to use Gnus at all.  If the default
8963         switches to something else, then the function should be fixed not
8964         be exceedingly slow.
8966 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
8968         * gnus-start.el (gnus-activate-group): If the server is nil, don't
8969         fail hard.
8971         * spam-report.el: Add better Keywords line.
8973         * spam.el: Add Maintainer and better Keywords line.
8975 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
8977         * gnus-art.el (gnus-article-replace-part)
8978         (gnus-mime-replace-part): New functions.
8979         (gnus-mime-action-alist, gnus-mime-button-commands)
8980         (gnus-mime-save-part-and-strip): Added file argument.
8981         (gnus-article-part-wrapper): Added interactive argument.
8983         * gnus-sum.el (gnus-summary-mime-map): Add
8984         `gnus-article-replace-part'.
8986 2005-09-19  Didier Verna  <didier@xemacs.org>
8988         The nnml compaction feature:
8989         * nnml.el (nnml-request-compact-group): New function.
8990         * nnml.el (nnml-request-compact): New function.
8991         * gnus-int.el (gnus-request-compact-group): New function.
8992         * gnus-int.el (gnus-request-compact): New function.
8993         * gnus-group.el (gnus-group-compact-group): New function.
8994         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
8995         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
8996         * gnus-srvr.el (gnus-server-compact-server): New function.
8997         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
8998         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
9000 2005-09-18  Deepak Goel  <deego@gnufans.org>
9002         * sieve.el (sieve-help): Fix `message' call: first arg should be a
9003         format spec.
9005 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9007         * gnus.el (gnus-group-startup-message): Bind image-load-path.
9009 2005-09-15  Romain Francoise  <romain@orebokech.com>
9011         * message.el (message-fill-paragraph): Clarify docstring.
9013 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9015         * gnus-art.el (gnus-mime-display-part): Protect against broken
9016         MIME messages.
9018 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9020         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
9021         before parsing header.
9023 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
9025         * html2text.el (html2text-replace-list): Add new entities.
9027 2005-09-11  Romain Francoise  <romain@orebokech.com>
9029         * message.el (message-alternative-emails): Improve docstring.
9030         (message-setup-1): Call `message-use-alternative-email-as-from'
9031         after `message-setup-hook' to give it precedence over posting
9032         styles, etc.
9033         (message-use-alternative-email-as-from): Add docstring.  Remove
9034         the original From header if present.
9036         * nnml.el (nnml-compressed-files-size-threshold): New variable.
9037         (nnml-save-mail): Use it.
9039         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
9040         articles.  Add new argument `silent'.
9041         (gnus-uu-mark-all): Report the total number of marked articles.
9043 2005-09-10  Romain Francoise  <romain@orebokech.com>
9045         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
9046         (gnus-uu-mark-series): Likewise.
9048 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
9050         * spam-report.el (spam-report-gmane): Fix generation of spam
9051         report URL.
9053 2005-09-10  Simon Josefsson  <jas@extundo.com>
9055         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
9056         t, based on discussion on the ding list with Robert Epprecht
9057         <epprecht@solnet.ch>.
9059 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
9061         * spam-report.el (spam-report-gmane): Make it work without
9062         X-Report-Spam header.  Gmane now only provides Archived-At.
9063         This is only used if `spam-report-gmane-use-article-number' is nil.
9064         (spam-report-gmane-spam-header): Remove.  Not used anymore.
9066         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
9067         make `gnus-summary-sort-by-recipient' work with threading.
9069         * nnweb.el (nnweb-google-wash-article): Print a message if article
9070         is not available.
9072 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
9074         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
9075         change.  Decode text/* parts content before displaying.
9077 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
9079         * mml-smime.el: Remove defvar of gnus-extract-address-components.
9081 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9083         * mm-view.el (mm-display-inline-fontify): Disable support modes.
9085 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
9087         * message.el (message-tab-body-function): Fix mismatched custom type.
9089         * gnus.el (gnus-group-change-level-function): Ditto.
9091         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
9093         * gnus-art.el (gnus-signature-limit)
9094         (gnus-article-mime-part-function): Ditto.
9096 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9098         * mml.el (mml-mode): Silence the byte compiler.
9100         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
9101         using `(sit-for 0)' before moving the point to the specified part;
9102         skip unbuttonized parts.
9103         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
9104         return to the summary window if gnus-auto-select-part is non-nil.
9106 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
9108         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
9109         variables.
9110         (mml-dnd-attach-file, mml-mode): Use them.
9112         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
9113         Make fetching article by MID work again for Google Groups.  Added
9114         FIXME concerning gnus-group-make-web-group.
9116         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
9117         Don't depend on Gnus by using mail-extract-address-components if
9118         gnus-extract-address-components is not bound.
9120 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9122         * gnus-art.el (gnus-mime-display-security): Don't display the
9123         signature, but only the signed part.
9125 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9127         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
9129         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
9130         list, not listp.
9132 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
9134         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
9135         when encoding.
9137         * mm-bodies.el (mm-decode-content-transfer-encoding):
9138         De-canonicalize CRLF for all text content types, not just
9139         text/plain.
9141 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9143         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
9144         valid article; point arrow and cursor at the MIME button.
9146 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9148         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
9149         Suggested by Dan Christensen <jdc@uwo.ca>.
9151         * mm-decode.el (mm-save-part): Enable change of prompt.
9153 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
9155         * gnus-msg.el (gnus-inews-add-send-actions): Made
9156         `message-post-method' lambda parameter ARG `&optional'.
9158 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
9160         * gnus-sum.el (gnus-summary-mime-map): Added
9161         gnus-article-save-part-and-strip, gnus-article-delete-part and
9162         gnus-article-jump-to-part.
9164         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
9165         (gnus-article-edit-part): Use it.
9166         (gnus-article-part-wrapper): Added no-handle argument.
9167         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
9168         functions.
9170 2005-08-29  Romain Francoise  <romain@orebokech.com>
9172         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
9173         docstring.
9174         (gnus-face-from-file): Likewise.
9176 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
9178         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
9179         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
9180         non-nil.
9181         (gnus-auto-select-part): New variable.
9182         (gnus-article-jump-to-part): New function.
9183         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
9184         (gnus-mime-delete-part): Allow selecting specified part after
9185         deleting or stripping parts.
9186         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
9187         part if argument is bogus.
9189 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
9191         * gnus-art.el (w3m-minor-mode-map):
9192         * gnus-spec.el (gnus-newsrc-file-version):
9193         * gnus-util.el (nnmail-active-file-coding-system)
9194         (gnus-original-article-buffer, gnus-user-agent):
9195         * gnus.el (gnus-ham-process-destinations)
9196         (gnus-parameter-ham-marks-alist)
9197         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
9198         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
9199         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
9200         * mm-decode.el (gnus-current-window-configuration):
9201         * mm-extern.el (gnus-article-mime-handles):
9202         * mm-url.el (url-current-object, url-package-name)
9203         (url-package-version):
9204         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
9205         (smime-keys, w3m-cid-retrieve-function-alist)
9206         (w3m-current-buffer, w3m-display-inline-images)
9207         (w3m-minor-mode-map):
9208         * mml-smime.el (gnus-extract-address-components):
9209         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
9210         (gnus-newsrc-hashtb, message-default-charset)
9211         (message-deletable-headers, message-options)
9212         (message-posting-charset, message-required-mail-headers)
9213         (message-required-news-headers):
9214         * mml1991.el (mc-pgp-always-sign):
9215         * mml2015.el (mc-pgp-always-sign):
9216         * nnheader.el (nnmail-extra-headers):
9217         * rfc1843.el (gnus-decode-encoded-word-function)
9218         (gnus-decode-header-function, gnus-newsgroup-name):
9219         * spam-stat.el (gnus-original-article-buffer): Add defvars.
9221 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
9223         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
9224         the end of the date treatments.
9226 2005-08-15  Simon Josefsson  <jas@extundo.com>
9228         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
9229         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
9230         Capello and Romain Francoise.
9231         (pgg-fetch-key-function): Removed, not used?
9232         (pgg-insert-url-with-w3): Require url, to get
9233         url-insert-file-contents regardless of where it is defined.
9235 2005-08-13  Romain Francoise  <romain@orebokech.com>
9237         * message.el (message-cite-original-1): New function.
9238         (message-cite-original): Use it.
9239         (message-cite-original-without-signature): Ditto.
9241 2005-08-08  Romain Francoise  <romain@orebokech.com>
9243         * message.el (message-yank-empty-prefix): New variable.
9244         (message-indent-citation): Use it.
9245         (message-cite-original-without-signature): Respect X-No-Archive.
9247 2005-08-08  Simon Josefsson  <jas@extundo.com>
9249         * pgg.el: Autoload url-insert-file-contents instead of loading
9250         w3/url.
9251         (pgg-insert-url-with-w3): Don't load url here.
9253 2005-08-07  Jesper Harder  <harder@phys.au.dk>
9255         * message.el (message-kill-to-signature): Don't insert newline at
9256         bol.
9257         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
9259 2005-08-06  Romain Francoise  <romain@orebokech.com>
9261         * message.el (message-user-fqdn): Fix typo in docstring.
9263 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
9265         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
9267         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
9269 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9271         * mm-bodies.el (mm-encode-body): Use coding system rather than
9272         charset to encode text.
9274         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
9275         number of charsets if utf-8 is available (XEmacs).
9277 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
9279         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
9280         taken from `gnus-button-mid-or-mail-regexp'.
9281         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
9282         (gnus-button-alist): Improve regexp for domain part of the MIDs
9283         for news:localpart@domain buttons.
9284         (gnus-button-ctan-directory-regexp): Update.
9286 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9288         * sieve-manage.el (sieve-manage-interactive-login): Use
9289         make-local-variable rather than make-variable-buffer-local.
9290         (sieve-manage-open): Ditto.
9291         (sieve-manage-authenticate): Ditto.
9293         * mml.el (mml-generate-mime-1): Make the content type default to
9294         text/plain if the filename is not specified.
9296 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9298         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
9299         instead of insert-buffer.
9301         * message.el (message-yank-original): Ditto; set the mark at the
9302         end of the yanked message.
9304 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9306         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
9307         lines to scroll rather than to stop it.
9309         * mml.el (mml-generate-default-type): Add doc string.
9310         (mml-generate-mime-1): Use mm-default-file-encoding or make it
9311         default to application/octet-stream when determining the content
9312         type if it is not specified for the part or the mml contents; add
9313         a comment about mml-generate-default-type.
9315 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
9317         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
9318         make it default to application/octet-stream when determining the
9319         content type if it is not specified for the external contents.
9321 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9323         * rfc2231.el (rfc2231-parse-string): Take care that not only a
9324         segmented parameter but also other parameters might be there.
9326 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9328         * mm-decode.el (mm-display-external): Delete temp file, directory
9329         and buffer immediately if the external process is exited.
9331 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9333         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
9334         fewer lines than that of scroll-margin.
9335         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
9337 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9339         * gnus-art.el (gnus-article-next-page): Revert.
9340         (gnus-article-beginning-of-window): New macro.
9341         (gnus-article-next-page-1): Use it.
9342         (gnus-article-prev-page): Ditto.
9343         (gnus-article-edit-part): Use insert-buffer-substring instead of
9344         insert-buffer.
9345         (gnus-article-edit-exit): Ditto.
9347         * gnus-util.el (gnus-beginning-of-window): Remove.
9348         (gnus-end-of-window): Remove.
9350 2005-07-25  Simon Josefsson  <jas@extundo.com>
9352         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
9353         to have the url package without w3.  Reported by Daiki Ueno
9354         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
9356 2005-07-20  Didier Verna  <didier@xemacs.org>
9358         * gnus-diary.el: Remove the description comment (nndiary is now
9359         properly documented in the Gnus manual).
9360         Fix the spelling of "Back End".
9361         * nndiary.el: Ditto.
9362         Fix the copyright notice.
9364 2005-07-18  Romain Francoise  <romain@orebokech.com>
9366         * gnus-sum.el (gnus-summary-to-prefix)
9367         (gnus-summary-newsgroup-prefix): New variables.
9368         (gnus-summary-from-or-to-or-newsgroups): Use them.
9370 2005-07-17  Romain Francoise  <romain@orebokech.com>
9372         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
9373         space as it's generally not especially interesting to the user.
9375 2005-07-16  Romain Francoise  <romain@orebokech.com>
9377         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
9378         nil to avoid prompting and file modification if one of the
9379         messages at the top of the nnfolder file contains a copyright
9380         notice.
9381         Update copyright notice.
9383         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
9384         instead of `current-time-string' as the latter creates a time
9385         string that is not RFC 2822 compliant (it lacks the zone).
9386         Update copyright notice.
9388 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9390         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
9391         for text/rtf.  Display default in prompt.  Pass default for M-n.
9393         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
9395 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9397         * gnus-msg.el (gnus-button-mailto): Remove
9398         save-selected-window-window hackery because it relies on
9399         save-selected-window internals.
9401 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9403         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
9404         (gnus-article-next-page-1): Use gnus-beginning-of-window.
9405         (gnus-article-prev-page): Ditto.
9407         * gnus-util.el (gnus-beginning-of-window): New function.
9408         (gnus-end-of-window): New function.
9410 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9412         * gnus-score.el (gnus-score-edit-all-score): Set
9413         gnus-score-edit-exit-function to gnus-score-edit-done and call
9414         gnus-message.
9416 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9418         * gnus-msg.el (gnus-button-mailto): Remove
9419         save-selected-window-window hackery because it relies on
9420         save-selected-window internals.
9422 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9424         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
9425         add-minor-mode.
9426         (gnus-binary-mode): Ditto.
9428         * gnus-topic.el (gnus-topic-mode): Ditto.
9430 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
9432         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
9433         (gnus-article-prev-page): Take scroll-margin into consideration.
9435 2005-07-04  Lute Kamstra  <lute@gnu.org>
9437         Update FSF's address in GPL notices.
9439 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
9441         * gnus.el (gnus-exit):
9442         * gnus-group.el (gnus-group-icons):
9443         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
9445         * gnus-nocem.el (gnus-nocem):
9446         * message.el (message-various, message-buffers, message-sending)
9447         (message-interface, message-forwarding, message-insertion)
9448         (message-headers, message-news, message-mail):
9449         * pgg-gpg.el (pgg-gpg):
9450         * pgg-parse.el (pgg-parse):
9451         * pgg-pgp.el (pgg-pgp):
9452         * pgg-pgp5.el (pgg-pgp5):
9453         * pop3.el (pop3): Finish `defgroup' description with period.
9455 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9457         * gnus-art.el (article-display-face): Improve the efficiency.
9458         (article-display-x-face): Ditto; remove grey x-face stuff.
9460 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9462         * gnus-art.el (article-display-face): Correct the position in
9463         which Faces are inserted.
9465 2005-06-29  Didier Verna  <didier@xemacs.org>
9467         * gnus-art.el (article-display-face): Display faces in correct
9468         order.
9470 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9472         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
9473         (gnus-fill-real-hashtb): Use hash table instead of obarray.
9474         (gnus-nocem-check-article): Fetch the Type header.
9475         (gnus-nocem-message-wanted-p): Fix the way to examine types.
9476         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
9477         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
9478         make sure gnus-nocem-hashtb is initialized.
9479         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
9480         (gnus-nocem-unwanted-article-p): Ditto.
9482         * pgg.el (pgg-verify): Return the verification result.
9484 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9486         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
9487         is ascii.
9489 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
9491         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
9492         `show-nonbreak-escape'.
9494 2005-06-23  Lute Kamstra  <lute@gnu.org>
9496         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
9498         * dig.el (dig-mode):
9499         * smime.el (smime-mode): Use gnus-run-mode-hooks.
9501 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
9503         * nnimap.el (nnimap-split-download-body): Fix spellings.
9505 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
9507         * gnus-art.el (gnus-article-encrypt-body):
9508         * gnus-cus.el (gnus-score-customize):
9509         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
9510         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
9512 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
9514         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
9515         header by looking for magic "MII" at the beginnig.
9517 2005-06-16  Miles Bader  <miles@gnu.org>
9519         * assistant.el (assistant-field): Remove "-face" suffix from face name.
9520         (assistant-field-face): New backward-compatibility alias for renamed
9521         face.
9522         (assistant-render-text): Use renamed assistant-field face.
9524         * spam.el (spam): Remove "-face" suffix from face name.
9525         (spam-face): New backward-compatibility alias for renamed face.
9526         (spam-face, spam-initialize): Use renamed spam face.
9528         * message.el (message-header-to, message-header-cc)
9529         (message-header-subject, message-header-newsgroups)
9530         (message-header-other, message-header-name)
9531         (message-header-xheader, message-separator, message-cited-text)
9532         (message-mml): Remove "-face" suffix from face names.
9533         (message-header-to-face, message-header-cc-face)
9534         (message-header-subject-face, message-header-newsgroups-face)
9535         (message-header-other-face, message-header-name-face)
9536         (message-header-xheader-face, message-separator-face)
9537         (message-cited-text-face, message-mml-face):
9538         New backward-compatibility aliases for renamed faces.
9539         (message-font-lock-keywords): Use renamed message faces.
9541         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
9542         (sieve-test-commands, sieve-tagged-arguments):
9543         Remove "-face" suffix from face names.
9544         (sieve-control-commands-face, sieve-action-commands-face)
9545         (sieve-test-commands-face, sieve-tagged-arguments-face):
9546         New backward-compatibility aliases for renamed faces.
9547         (sieve-control-commands-face, sieve-action-commands-face)
9548         (sieve-test-commands-face, sieve-tagged-arguments-face):
9549         Use renamed sieve faces.
9551         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
9552         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
9553         (gnus-group-news-3-empty, gnus-group-news-4)
9554         (gnus-group-news-4-empty, gnus-group-news-5)
9555         (gnus-group-news-5-empty, gnus-group-news-6)
9556         (gnus-group-news-6-empty, gnus-group-news-low)
9557         (gnus-group-news-low-empty, gnus-group-mail-1)
9558         (gnus-group-mail-1-empty, gnus-group-mail-2)
9559         (gnus-group-mail-2-empty, gnus-group-mail-3)
9560         (gnus-group-mail-3-empty, gnus-group-mail-low)
9561         (gnus-group-mail-low-empty, gnus-summary-selected)
9562         (gnus-summary-cancelled, gnus-summary-high-ticked)
9563         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
9564         (gnus-summary-high-ancient, gnus-summary-low-ancient)
9565         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
9566         (gnus-summary-low-undownloaded)
9567         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
9568         (gnus-summary-low-unread, gnus-summary-normal-unread)
9569         (gnus-summary-high-read, gnus-summary-low-read)
9570         (gnus-summary-normal-read, gnus-splash):
9571         Remove "-face" suffix from face names.
9572         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
9573         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
9574         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
9575         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
9576         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
9577         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
9578         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
9579         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
9580         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
9581         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
9582         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
9583         (gnus-summary-selected-face, gnus-summary-cancelled-face)
9584         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
9585         (gnus-summary-normal-ticked-face)
9586         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
9587         (gnus-summary-normal-ancient-face)
9588         (gnus-summary-high-undownloaded-face)
9589         (gnus-summary-low-undownloaded-face)
9590         (gnus-summary-normal-undownloaded-face)
9591         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
9592         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
9593         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
9594         (gnus-splash-face):
9595         New backward-compatibility aliases for renamed faces.
9596         (gnus-group-startup-message): Use renamed gnus faces.
9598         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
9599         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
9600         (gnus-server-agent): Remove "-face" suffix from face names.
9601         (gnus-server-agent-face, gnus-server-opened-face)
9602         (gnus-server-closed-face, gnus-server-denied-face)
9603         (gnus-server-offline-face):
9604         New backward-compatibility aliases for renamed faces.
9605         (gnus-server-agent-face, gnus-server-opened-face)
9606         (gnus-server-closed-face, gnus-server-denied-face)
9607         (gnus-server-offline-face): Use renamed gnus faces.
9609         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
9610         Remove "-face" suffix from face names.
9611         (gnus-picon-xbm-face, gnus-picon-face):
9612         New backward-compatibility aliases for renamed faces.
9614         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
9615         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
9616         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
9617         (gnus-cite-11): Remove "-face" suffix from face names.
9618         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
9619         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
9620         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
9621         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
9622         New backward-compatibility aliases for renamed faces.
9623         (gnus-cite-attribution-face, gnus-cite-face-list)
9624         (gnus-article-boring-faces): Use renamed gnus faces.
9626         * gnus-art.el (gnus-signature, gnus-header-from)
9627         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
9628         (gnus-header-content): Remove "-face" suffix from face names.
9629         (gnus-signature-face, gnus-header-from-face)
9630         (gnus-header-subject-face, gnus-header-newsgroups-face)
9631         (gnus-header-name-face, gnus-header-content-face):
9632         New backward-compatibility aliases for renamed faces.
9633         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
9635         * gnus-sum.el (gnus-summary-selected-face)
9636         (gnus-summary-highlight): Use renamed gnus faces.
9637         * gnus-group.el (gnus-group-highlight): Likewise.
9639 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
9641         * gnus-sieve.el (gnus-sieve-article-add-rule):
9642         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
9643         * spam-stat.el (spam-stat-buffer-change-to-spam)
9644         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
9646         * message.el (message-is-yours-p):
9647         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
9649 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9651         * mm-view.el (mm-inline-text): Withdraw the last change.
9653 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9655         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
9656         executing enriched-decode.
9658 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9660         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
9661         charset of tar files.
9663 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
9665         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
9667 2005-06-04  Lute Kamstra  <lute@gnu.org>
9669         * nnfolder.el (nnfolder-read-folder): Make sure that undo
9670         information is never recorded.
9672 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9674         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
9676 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9678         * pop3.el (pop3-apop): Run md5 in the binary mode.
9680         * starttls.el (starttls-set-process-query-on-exit-flag):
9681         Use eval-and-compile.
9683 2005-05-31  Simon Josefsson  <jas@extundo.com>
9685         * smime.el (smime-replace-in-string): Define.
9686         (smime-cert-by-ldap-1): Use it.
9688 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9690         * gnus-art.el (article-display-x-face): Replace
9691         process-kill-without-query by gnus-set-process-query-on-exit-flag.
9693         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
9694         set-process-query-on-exit-flag or process-kill-without-query.
9696         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
9697         loop instead of replace-regexp.
9699         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
9700         instead of process-kill-without-query if it is available.
9702         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
9703         instead of find-file-hooks if it is available.
9705         * mml1991.el: Bind pgg-default-user-id when compiling.
9707         * mml2015.el: Bind pgg-default-user-id when compiling.
9709         * nndraft.el (nndraft-request-associate-buffer):
9710         Use write-contents-functions instead of write-contents-hooks if it is
9711         available.
9713         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
9714         instead of find-file-hooks if it is available.
9716         * nntp.el (nntp-open-connection): Replace
9717         process-kill-without-query by gnus-set-process-query-on-exit-flag.
9718         (nntp-open-ssl-stream): Ditto.
9719         (nntp-open-tls-stream): Ditto.
9721         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
9722         set-process-query-on-exit-flag or process-kill-without-query.
9723         (starttls-open-stream-gnutls): Use it instead of
9724         process-kill-without-query.
9725         (starttls-open-stream): Ditto.
9727 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
9729         * smime.el (smime-cert-by-ldap-1): Don't use
9730         replace-regexp-in-string.
9732 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
9734         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
9736         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
9737         in PEM format.  Adjust to the XEmacs compability.
9739 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
9741         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
9742         by `string-to-number'.
9743         * gnus-agent.el (gnus-agent-regenerate-group)
9744         (gnus-agent-fetch-articles): Ditto.
9745         * gnus-art.el (gnus-button-fetch-group): Ditto.
9746         * gnus-cache.el (gnus-cache-generate-active)
9747         (gnus-cache-articles-in-group): Ditto.
9748         * gnus-group.el (gnus-group-set-current-level)
9749         (gnus-group-insert-group-line): Ditto.
9750         * gnus-score.el (gnus-score-set-expunge-below)
9751         (gnus-score-set-mark-below, gnus-summary-score-effect)
9752         (gnus-summary-score-entry): Ditto.
9753         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
9754         (gnus-soup-pack): Ditto.
9755         * gnus-spec.el (gnus-xmas-format): Ditto.
9756         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
9757         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
9758         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
9759         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
9760         * nndb.el (nndb-get-remote-expire-response): Ditto.
9761         * nndiary.el (nndiary-parse-schedule-value)
9762         (nndiary-string-to-number, nndiary-request-replace-article)
9763         (nndiary-request-article): Ditto.
9764         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
9765         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
9766         * nneething.el (nneething-make-head): Ditto.
9767         * nnfolder.el (nnfolder-request-article)
9768         (nnfolder-retrieve-headers): Ditto.
9769         * nnheader.el (nnheader-file-to-number): Ditto.
9770         * nnkiboze.el (nnkiboze-request-article): Ditto.
9771         * nnmail.el (nnmail-process-unix-mail-format)
9772         (nnmail-process-babyl-mail-format): Ditto.
9773         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
9774         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
9775         (nnmh-request-create-group, nnmh-request-list-1)
9776         (nnmh-request-group, nnmh-request-article): Ditto.
9777         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
9778         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
9779         * nnsoup.el (nnsoup-make-active): Ditto.
9780         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
9781         * nntp.el (nntp-find-group-and-number)
9782         (nntp-retrieve-headers-with-xover): Ditto.
9783         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
9784         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
9785         (pgg-format-key-identifier): Ditto.
9786         * pop3.el (pop3-last, pop3-stat): Ditto.
9787         * qp.el (quoted-printable-decode-region): Ditto.
9789         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
9790         of concat.
9792 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9794         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
9796         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
9798         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
9800         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
9802         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
9804         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
9806         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
9807         (gnus-carpal-mode): Ditto.
9809         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
9810         (gnus-browse-mode): Ditto.
9812         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
9814         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
9816 2005-05-29  Richard M. Stallman  <rms@gnu.org>
9818         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
9820 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9822         * gnus-util.el (gnus-run-mode-hooks): New function.
9824         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
9826 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
9828         * gnus-agent.el (gnus-agent-make-mode-line-string):
9829         Use mode-line-highlight as mouse-face.
9831 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9833         * canlock.el (canlock): Change the parent group to news.
9835         * deuglify.el (gnus-outlook-deuglify): Add :group.
9837         * dig.el (dig): Add :group.
9839         * dns-mode.el (dns-mode): Add :group.
9841         * encrypt.el (encrypt): Add :group.
9843         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
9844         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
9845         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
9846         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
9847         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
9849         * gnus-diary.el (gnus-diary): Add :group.
9851         * gnus.el (gnus-group-news-1-face): Add :group.
9852         (gnus-group-news-1-empty-face): Ditto.
9853         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
9854         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
9855         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
9856         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
9857         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
9858         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
9859         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
9860         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
9861         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
9862         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
9863         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
9864         (gnus-summary-high-ticked-face): Ditto.
9865         (gnus-summary-low-ticked-face): Ditto.
9866         (gnus-summary-normal-ticked-face): Ditto.
9867         (gnus-summary-high-ancient-face): Ditto.
9868         (gnus-summary-low-ancient-face): Ditto.
9869         (gnus-summary-normal-ancient-face): Ditto.
9870         (gnus-summary-high-undownloaded-face): Ditto.
9871         (gnus-summary-low-undownloaded-face): Ditto.
9872         (gnus-summary-normal-undownloaded-face): Ditto.
9873         (gnus-summary-high-unread-face): Ditto.
9874         (gnus-summary-low-unread-face): Ditto.
9875         (gnus-summary-normal-unread-face): Ditto.
9876         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
9877         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
9879         * hashcash.el (hashcash): New custom group.
9880         (hashcash-default-payment): Add :group.
9881         (hashcash-payment-alist): Ditto.
9882         (hashcash-default-accept-payment): Ditto.
9883         (hashcash-accept-resources): Ditto.
9884         (hashcash-path): Ditto.
9885         (hashcash-extra-generate-parameters): Ditto.
9886         (hashcash-double-spend-database): Ditto.
9887         (hashcash-in-news): Ditto.
9889         * message.el (message-minibuffer-local-map): Add :group.
9891         * netrc.el (netrc): Add :group.
9893         * sieve-manage.el (sieve-manage-log): Add :group.
9894         (sieve-manage-default-user): Diito.
9895         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
9896         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
9897         (sieve-manage-authenticators): Ditto.
9898         (sieve-manage-authenticator-alist): Ditto.
9899         (sieve-manage-default-port): Ditto.
9901         * sieve-mode.el (sieve-control-commands-face): Add :group.
9902         (sieve-action-commands-face): Ditto.
9903         (sieve-test-commands-face): Ditto.
9904         (sieve-tagged-arguments-face): Ditto.
9906         * smime.el (smime): Add :group.
9908         * spam-report.el (spam-report): Add :group.
9910         * spam.el (spam, spam-face): Add :group.
9912 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9914         * nntp.el (nntp-next-result-arrived-p): Some news servers may
9915         return \n.\n.\n at the end of articles.  Protect against that.
9916         (nntp-with-open-group): Allow debugging.
9918         * nnheader.el (mail-header-set-extra): Make into a function
9919         because I just could't understand how to quote the list properly.
9921         * dns.el (query-dns-cached): New function.
9923 2005-05-26  Lute Kamstra  <lute@gnu.org>
9925         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
9927 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9929         * gnus-art.el: Don't autoload mail-extract-address-components.
9931         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
9932         eval-and-compile to evaluate it.
9934         * hashcash.el: Don't autoload executable-find.
9936         * nndb.el: Don't declare the nndb back end two or more times; don't
9937         autoload news-reply-mode, news-setup, cancel-timer and telnet.
9939         * nntp.el: Autoload format-spec instead of format; use
9940         eval-and-compile to evaluate autoload forms.
9942 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
9944         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
9946 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9948         * gnus.el (gnus-version-number): Bump version.
9950 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
9952         * gnus.el: No Gnus v0.3 is released.
9954 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9956         * gnus-art.el (gnus-article-edit-part): Disable undo.
9958 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9960         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
9961         gnus-article-date-lapsed-new-header is t if date timer is active;
9962         skip headers in which the original date value is empty.
9963         (gnus-article-save-original-date): Redefine it as a macro.
9964         (gnus-display-mime): Use it.
9966 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9968         * gnus-art.el (article-date-ut): Support converting date in
9969         forwarded parts as well.
9970         (gnus-article-save-original-date): New function.
9971         (gnus-display-mime): Use it.
9973 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
9975         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
9976         enclosure element of <item>.
9978 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
9980         * message.el (message-kill-buffer-query): Renamed from
9981         `message-kill-buffer-query-if-modified'.  Added :version.
9983 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9985         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
9986         window layout.
9988 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9990         * mml.el: Autoload dnd when compiling.
9992 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
9994         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
9995         x-dnd-*.
9997 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9999         * qp.el (quoted-printable-encode-region): Save excursion.
10001 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
10003         * message.el (message-kill-buffer-query-if-modified): Add new variable
10004         so the user can kill a modified message buffer quickly.
10005         (message-kill-buffer): Use it.
10007 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10009         * gnus-art.el (gnus-mime-inline-part): Use mm-string-to-multibyte.
10010         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
10012 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10014         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
10015         contained in text because xml.el decodes entities) with LFs.
10017 2005-04-11  Lute Kamstra  <lute@gnu.org>
10019         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
10020         differently.
10022 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10024         * mm-util.el (mm-detect-coding-region): Typo.
10026 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10028         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
10030 2005-04-06  Deepak Goel  <deego@gnufans.org>
10032         * spam-stat.el (spam-stat-score-buffer): Add a call to a
10033         user-function allow user modifications of the scores.
10034         (spam-stat-score-buffer-user): New function, to allow
10035         user-computed modifications to the score.
10036         (spam-stat-score-buffer-user-functions): List of additional
10037         scoring functions.
10038         (spam-stat-error-holder): Global temporary error holder.
10039         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
10040         variable.
10042 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
10044         * gnus-registry.el (gnus-registry-clean-empty-function)
10045         (gnus-registry-trim, gnus-registry-fetch-groups)
10046         (gnus-registry-delete-group): Groups that match
10047         `gnus-registry-ignored-groups' are removed from the registry
10048         entries, not just ignored for splitting.  This helps clean up the
10049         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
10050         to get all the groups a message ID is in.
10052         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
10053         (spam-stat-split-fancy): Change "threshhold" to "threshold".
10054         (spam-stat-score-buffer-user-functions): Add :number custom type.
10056 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10058         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
10059         argument in XEmacs.
10061         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
10062         (nnrss-request-group): Decode group name first.
10063         (nnrss-request-article): Make a text/plain article if mml-to-mime
10064         failed.
10065         (nnrss-get-encoding): Return a compatible encoding according to
10066         nnrss-compatible-encoding-alist.
10067         (nnrss-find-el): Use consp instead of listp.
10068         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
10070 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10072         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
10073         which Emacs 20 doesn't support.
10074         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
10076 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
10078         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
10079         silence the byte compiler inside the defun.
10081         * gnus-demon.el (parse-time-string): Add autoload.
10083         * gnus-delay.el (parse-time-string): Add autoload.
10085         * gnus-art.el (parse-time-string): Add autoload.
10087         * nnultimate.el (parse-time): Require for `parse-time-string'.
10089 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
10091         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
10093         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
10095         * smime.el (smime-ldap-host-list): Add :version.
10097 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
10099         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
10100         pass it to `gnus-browse-read-group'.
10101         (gnus-browse-read-group): Add NUMBER argument and pass it to
10102         `gnus-group-read-ephemeral-group'.
10104         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
10105         argument and pass it to `gnus-group-read-group'.
10107 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
10109         * mm-util.el (mm-xemacs-find-mime-charset): Only call
10110         mm-xemacs-find-mime-charset-1 if we have the mule feature
10111         available at runtime.
10113 2005-03-25  Werner Lemberg  <wl@gnu.org>
10115         * nnmaildir.el: Replace `illegal' with `invalid'.
10117 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10119         * gnus-start.el (gnus-display-time-event-handler):
10120         Check display-time-timer at runtime rather than only at load time
10121         in case display-time-mode is turned off in the mean time.
10123 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
10125         * nnimap.el (nnimap-open-connection): Print which authinfo file is
10126         used.
10128         * nneething.el (nneething-map-file-directory): Derive from
10129         `gnus-directory'.
10131         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
10132         the To/Cc button.
10134 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
10136         * nnmaildir.el (nnmaildir-request-accept-article):
10137         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
10139 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
10141         * gnus-async.el: Require timer-funcs at compile time when in
10142         XEmacs for `run-with-idle-timer'.
10144 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
10146         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
10147         autoloaded function.
10149 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10151         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
10153 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
10155         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
10157 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10159         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
10160         gnus-expert-user to default.
10162 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
10164         * nnimap.el (nnimap-open-server): Ditto.
10166         * imap.el (imap-authenticate): Fix typo.
10168 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
10170         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
10171         buffer (since IMAP server might return FETCH response out of
10172         order, and the nntp buffer must be sorted).
10174 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
10176         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
10177         comparison on string.
10179         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
10180         (gnus-agent-score): Renamed category keywords to match gnus-cus.
10181         (gnus-agent-summary-fetch-series): Modified to protect against
10182         gnus-agent-summary-fetch-group clearing processable flags.
10183         (gnus-agent-synchronize-group-flags): Update live group buffer as
10184         synchronization may occur due to the user toggle the plugged
10185         status.
10186         (gnus-agent-fetch-group-1): Clear downloadable flag when article
10187         successfully downloaded.
10188         (gnus-agent-expire-group-1): Avoid using markers when the overview
10189         is in ascending order; greatly improves performance.
10190         (gnus-agent-regenerate-group): Use
10191         gnus-agent-synchronize-group-flags to reset read status in both
10192         gnus and server.
10193         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
10195 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
10197         * message.el: Don't autoload former message-utils variables.
10198         (message-strip-subject-trailing-was): Change doc string.
10200         * nnweb.el: Fixes for `gnus-group-make-web-group'.
10201         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
10202         (nnweb-google-search): Add "hl=en" here.
10203         (nnweb-google-parse-1, nnweb-google-create-mapping):
10204         Don't hardcode URL.
10206 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
10208         * message.el (message-get-reply-headers, message-followup):
10209         Mention related variables `message-use-followup-to' and
10210         `message-use-mail-followup-to', in the information buffer.
10212         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
10213         of broken groups(-beta).google.com.
10215 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
10217         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
10218         parameter to invoked gnus-request-move-article; remove the
10219         redundant gnus-sum-hint-move-is-internal variable; apply the marks
10220         all at once instead of once per article.
10221         (gnus-summary-remove-process-mark): Accept a list of articles as
10222         well as a single article for processing.
10224         * gnus-int.el (gnus-request-move-article): Add move-is-internal
10225         parameter.
10227         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
10229         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
10231         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
10232         parameter.
10234         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
10235         parameter.
10237         * nnimap.el (nnimap-request-move-article): Add move-is-internal
10238         parameter and remove the gnus-sum-hint-move-is-internal variable.
10240         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
10241         parameter.
10243         * nndraft.el (nndraft-request-move-article): Add move-is-internal
10244         parameter.
10246         * nndiary.el (nndiary-request-move-article): Add move-is-internal
10247         parameter.
10249         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
10251         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
10252         parameter.
10254         * nnagent.el (nnagent-request-move-article): Add move-is-internal
10255         parameter.
10257 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10259         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
10260         a more conservative way.
10262 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10264         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
10265         buffer, so it moves the window's cursor.
10267 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
10269         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
10270         `mm-dissect-multipart' and receive the from field as an (optional)
10271         argument from `mm-dissect-multipart'.
10272         (mm-dissect-multipart): Receive the from field as an argument and
10273         pass it on when we call `mm-dissect-buffer' on MIME parts.
10274         Fixes verification/decryption of signed/encrypted MIME parts.
10276 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
10278         * gnus-sum.el (gnus-summary-move-article): Set
10279         gnus-sum-hint-move-is-internal for gnus-request-move-article and
10280         whatever it calls (right now, only nnimap-request-move article
10281         respects it).
10283         * nnimap.el (nnimap-request-move-article): When
10284         gnus-sum-hint-move-is-internal is set, don't do the extra
10285         nnimap-request-article.
10287 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
10289         * nnheader.el (nnheader-find-file-noselect): Add doc string.
10291         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
10292         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
10294         * gnus-sum.el (gnus-summary-caesar-message):
10295         Apply `gnus-treat-article' after rotation.
10297         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
10298         doc string.
10300 2005-02-22  Simon Josefsson  <jas@extundo.com>
10302         * encrypt.el (encrypt-password-cache-expiry): Remove (use
10303         `password-cache-expiry' instead).  Reported by Arne Jørgensen
10304         <arne@arnested.dk>.
10305         (encrypt): Add password-cache and password-cache-expiry as group
10306         members.
10308 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
10310         * smime.el (smime-ldap-host-list): Doc fix.
10311         (smime-ask-passphrase): Use `password-read-and-add' to read (and
10312         cache) password.
10313         (smime-sign-region): Use it.
10314         (smime-decrypt-region): Use it.
10315         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
10316         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
10317         fails.
10318         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
10319         certificate from DER to PEM format rather than calling openssl.
10321         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
10323         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
10324         for signing/encryption.
10326         * mml.el (mml-parse-1): Use them.
10328 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
10330         * nnrss.el (nnrss-verbose): Removed.
10331         (nnrss-request-group): Use `nnheader-message' instead.
10333 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
10335         * nnrss.el (nnrss-verbose): New variable.
10336         (nnrss-request-group): Make it say nnrss is requesting a group.
10338 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
10340         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
10341         Handle news URL with given port correctly.
10343 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10345         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
10346         containing special characters.
10348         * gnus-sum.el (gnus-summary-edit-article): Ditto.
10350         * mml.el (mime-to-mml): Ditto.
10352         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
10353         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
10354         (rfc2047-decode-region): Quote decoded words containing special
10355         characters when rfc2047-quote-decoded-words-containing-tspecials
10356         is non-nil.
10358 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
10360         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
10362         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
10364 2005-02-15  Simon Josefsson  <jas@extundo.com>
10366         * nnimap.el (nnimap-debug): Doc fix.
10368         * imap.el (imap-debug): Doc fix.
10370 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10372         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
10374 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
10376         * gnus.el (spam-contents): Improve docs for spam-contents
10377         parameter in its variable incarnation.
10379 2005-02-14  Simon Josefsson  <jas@extundo.com>
10381         * smime-ldap.el: Use require instead of load-library for ldap.
10382         (smime-ldap-search): Indent.
10383         (smime-ldap-search-internal): Shorten line.
10385         * smime.el (smime-cert-by-dns): Add doc-string.
10386         (smime-cert-by-ldap-1): Indent.
10388         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
10389         mml-smime-get-dns-ldap.
10390         (mml-smime-encrypt-query): Use new function.  Default to ldap.
10392 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
10394         * smime.el: Require smime-ldap.
10395         (smime-ldap-host-list): New variable.
10396         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
10398         * mml-smime.el (mml-smime-encrypt-query): New function.
10399         (mml-smime-encrypt-query): Use it.
10401         * smime-ldap.el: New file.
10403 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10405         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
10407 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
10409         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
10410         argument in doc string.  Make query for type more clear.
10412 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
10414         * gnus.el (gnus-group-startup-message): Search for gnus images in
10415         etc/images/gnus.
10416         * mm-util.el (mm-image-load-path): Likewise.
10417         * smiley.el (smiley-data-directory): Search for smilies in
10418         etc/images/smilies.
10420 2005-02-09  Kim F. Storm  <storm@cua.dk>
10422         Change Emacs release version from 21.4 to 22.1 throughout.
10423         Change Emacs development version from 21.3.50 to 22.0.50.
10425 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10427         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
10429         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
10430         non-Mule XEmacs as well.
10431         (mm-decompress-buffer): Signal an error intentionally if it does
10432         not decompress compressed data because auto-compression-mode is
10433         disabled.
10435 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
10437         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
10438         an ID in the registry even if it has no groups.
10440 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10442         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
10443         merge it into mm-decompress-buffer.
10444         (gnus-mime-copy-part): Use the MIME part charset, the value which
10445         a user specified or gnus-newsgroup-charset for decoding, like
10446         gnus-mime-inline-part does; set buffer-file-coding-system to tell
10447         save-buffer what was used.  Suggested by Kevin Ryde
10448         <user42@zip.com.au>.
10449         (gnus-mime-inline-part): Allow the name parameter as well as the
10450         filename parameter; force decompressing of compressed data; always
10451         display contents being not decoded as unibyte.
10453         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
10454         as well as the filename parameter.
10456         * mm-util.el (mm-decompress-buffer): Merge
10457         gnus-mime-jka-compr-maybe-uncompress.
10458         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
10459         of compressed data.
10461 2005-02-08  Simon Josefsson  <jas@extundo.com>
10463         * imap.el (imap-log): Doc fix.
10465 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10467         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
10468         the coding cookies; decompress compressed parts.
10470         * mml.el (mml-generate-mime-1): Add the charset parameter according
10471         to the value which a user specified manually or the coding cookie.
10473         * mm-util.el (mm-string-to-multibyte): New function.
10474         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
10475         (mm-coding-system-to-mime-charset): New function.
10476         (mm-decompress-buffer): New function.
10477         (mm-find-buffer-file-coding-system): New function.
10479         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
10480         (mm-display-inline-fontify): Rewrite for decoding and decompressing
10481         parts.
10483 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10485         * mm-view.el (mm-display-inline-fontify): Decode a part according
10486         to the charset parameter.
10488 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10490         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
10491         prefix arg is neither nil nor a number, as info specifies.
10493 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10495         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
10496         timestamps.
10498 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
10500         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
10501         groups error checking and notify user.
10503 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
10505         * message.el (message-send-mail-function): Check existence of
10506         sendmail-program first before using default value
10507         `message-send-mail-with-sendmail'.  Otherwise use more generic
10508         `smtpmail-send-it'.
10510 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10512         * nntp.el (nntp-request-update-info): Always return nil.
10514 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10516         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
10518 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10520         * message.el (message-beginning-of-line): Change the behavior when
10521         invoked between BOL and : so that it first moves backward.
10523 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10525         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
10526         article buffer when editing of the article is discarded.
10527         (gnus-article-prepare): Revert.
10529 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10531         * gnus-art.el (gnus-article-prepare):
10532         Remove message-strip-forbidden-properties from the local hook.
10534 2005-01-27  Simon Josefsson  <jas@extundo.com>
10536         * password.el (password-cache-add): Only start one timer per key.
10537         Reported by Derek Atkins <warlord@MIT.EDU>.
10539 2005-01-26  Steve Youngs  <steve@sxemacs.org>
10541         * run-at-time.el: Removed.  It is no longer needed as
10542         timer-funcs.el in the xemacs-base package has a working version of
10543         `run-at-time'.
10545         * password.el: Require timer-funcs instead of run-at-time in
10546         XEmacs.
10547         Remove `password-run-at-time' macro.
10548         (password-cache-add): Use `run-at-time' instead of
10549         `password-run-at-time'.
10551         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
10552         for `run-with-idle-timer'.
10554         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
10555         for `run-at-time'.
10557         * mm-url.el: Require timer-funcs at compile time when in XEmacs
10558         for `with-timeout'.
10560 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10562         * mml.el (mml-generate-mime-1): Convert string into unibyte when
10563         inserting " *mml*" buffer's contents into a unibyte temp buffer.
10565 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
10567         * mail-source.el (mail-source-fetch-imap): Search for ^From case
10568         sensitively.
10570 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
10572         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
10574 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10576         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
10577         which will be inserted according to the multibyteness of a buffer
10578         rather than the type of contents.  Suggested by ARISAWA Akihiro
10579         <ari@mbf.ocn.ne.jp>.
10581         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
10582         of string which old xml.el may return rather than a string.
10584 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10586         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
10588 2005-01-16  Simon Josefsson  <jas@extundo.com>
10590         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
10591         idn/idna.el isn't available.
10592         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
10593         <michael@waxrat.com>.
10595         * hashcash.el: Remove non-FSF copyright header.
10597         * hashcash.el (hashcash-extra-generate-parameters): New variable.
10598         (hashcash-generate-payment): Use it.
10599         (hashcash-generate-payment-async): Use it.
10601 2005-01-15  Simon Josefsson  <jas@extundo.com>
10603         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
10604         Suggested by Raymond Scholz <ray-2005@zonix.de>.
10606         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
10607         gnus-summary-idna-message.
10608         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
10609         (gnus-summary-idna-message): New function.
10611 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
10613         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
10614         gnus-novice-user.
10616 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10618         * nnrss.el (nnrss-request-delete-group): Delete entries in
10619         nnrss-group-alist as well.
10620         (nnrss-save-server-data): Insert newline.
10622 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
10624         * gnus.el (gnus-user-agent): Use list of symbols instead of
10625         symbols.  Display full version number for (S)XEmacs.  Optionally
10626         display (S)XEmacs codename.
10628         * gnus-util.el (gnus-emacs-version): Update for new
10629         `gnus-user-agent'.
10631         * gnus-msg.el (gnus-extended-version): Make it possible to omit
10632         Gnus version.
10634 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
10636         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
10637         which is unreadable in some setups.
10639 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10641         * gnus-spec.el (gnus-update-format-specifications): Flush the
10642         group format spec cache if it doesn't support decoded group names.
10644 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
10646         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
10647         Allow to apply decay on score files matching a regexp.
10649 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10651         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
10652         compatibility in %g and %c.
10654 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10656         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
10657         name for only %g and %c.
10658         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
10659         of gnus-tmp-group to decoded group name.
10660         (gnus-group-make-rss-group): Exclude `/'s from group names.
10662 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10664         * nnrss.el (nnrss-get-encoding): Fix regexp.
10666 2004-12-27  Simon Josefsson  <jas@extundo.com>
10668         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
10669         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
10670         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
10672 2004-12-17  Kim F. Storm  <storm@cua.dk>
10674         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
10676         * gnus-sum.el (gnus-summary-mode-map): Likewise.
10678 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
10680         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
10682 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10684         * nnrss.el: Require rfc2047 and mml.
10685         (nnrss-file-coding-system): New variable.
10686         (nnrss-format-string): Redefine it as an inline function.
10687         (nnrss-decode-group-name): New function.
10688         (nnrss-string-as-multibyte): Remove.
10689         (nnrss-retrieve-headers): Decode group name; don't use
10690         nnrss-format-string.
10691         (nnrss-request-group): Decode group name.
10692         (nnrss-request-article): Decode group name; allow a Message-ID as
10693         well as an article number; don't use nnrss-format-string; encode a
10694         Message-ID string which may contain non-ASCII characters; use
10695         mml-to-mime to compose a MIME article.
10696         (nnrss-request-expire-articles): Decode group name.
10697         (nnrss-request-delete-group): Decode group name.
10698         (nnrss-fetch): Clarify error message.
10699         (nnrss-read-server-data): Use insert-file-contents instead of load;
10700         bind file-name-coding-system; use multibyte buffer.
10701         (nnrss-save-server-data): Bind coding-system-for-write to the
10702         value of nnrss-file-coding-system; bind file-name-coding-system;
10703         add coding cookie.
10704         (nnrss-read-group-data): Use insert-file-contents instead of load;
10705         bind file-name-coding-system; use multibyte buffer.
10706         (nnrss-save-group-data): Bind coding-system-for-write to the
10707         value of nnrss-file-coding-system; bind file-name-coding-system.
10708         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
10709         make it work with non-ASCII text.
10710         (nnrss-find-el): Make it work with old xml.el as well.
10712 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
10714         * nnrss.el (nnrss-get-encoding): New function.
10715         (nnrss-fetch): Use unibyte buffer initially; bind
10716         coding-system-for-read while performing mm-url-insert; remove ^Ms;
10717         decode contents according to the encoding attribute.
10718         (nnrss-save-group-data): Add coding cookie.
10719         (nnrss-mime-encode-string): New function.
10720         (nnrss-check-group): Use it to encode subject and author.
10722 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
10724         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
10725         imaginary variable.
10727 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10729         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
10730         correctly even if there are wide characters.
10732 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
10734         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
10735         downcased symbol names; make a new cache instead of reusing
10736         bbdb-hashtable.
10738 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10740         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
10741         concatenating segments rather than before concatenating them.
10742         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
10744         * message.el (message-get-reply-headers): Bind `extra'.
10746 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10748         * message.el (message-extra-wide-headers): New variable.
10749         (message-get-reply-headers): Use it.
10751 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10753         * gnus-agent.el (gnus-agent-group-path): Decode group name.
10754         (gnus-agent-group-pathname): Ditto.
10756         * gnus-cache.el (gnus-cache-file-name): Decode group name.
10758         * gnus-group.el (gnus-group-make-group): Decode group name.
10759         (gnus-group-make-rss-group): Register the group data after opening
10760         the nnrss group.
10762 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
10764         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
10765         by expiry now get marked as read.
10767 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10769         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
10771 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
10773         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
10774         unify Latin characters in XEmacs.
10775         (mm-find-mime-charset-region): Use it.
10777 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10779         * gnus-util.el (gnus-delete-directory): New function.
10781         * gnus-agent.el (gnus-agent-delete-group): Use it.
10783         * gnus-cache.el (gnus-cache-delete-group): Use it.
10785 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10787         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
10788         names.
10790 2004-12-16  Simon Josefsson  <jas@extundo.com>
10792         * hashcash.el (hashcash-payment-alist): Fix custom :type.
10794 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10796         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
10798         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
10799         (gnus-group-set-current-level): Decode group name.
10801 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
10803         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
10804         failed.
10806 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10808         * gnus-group.el (gnus-group-delete-group): Decode group name.
10809         (gnus-group-make-rss-group): Encode group name.
10810         (gnus-group-catchup-current): Decode group name.
10811         (gnus-group-kill-group): Decode group name.
10813 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
10815         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
10817 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10819         * gnus-group.el (gnus-group-make-rss-group):
10820         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
10822         * gnus-start.el (gnus-setup-news): Honor user's setting to
10823         gnus-message-archive-method.  Suggested by Lute Kamstra
10824         <lute@gnu.org>.
10826 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
10828         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
10829         global counterparts of the buffer-local variables.
10831 2004-11-16  Romain Francoise  <romain@orebokech.com>
10833         * gnus-sum.el (gnus-summary-exit): Don't clear the global
10834         counterparts of the buffer-local variables.
10836 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
10838         * message.el (message-forbidden-properties): Fixed typo in doc
10839         string.
10841 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
10843         * gnus-util.el (gnus-replace-in-string): Added doc string.
10845         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
10846         to avoid problems when splitting mails with many recipients.
10848 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10850         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
10851         pop-to-buffer, covered by the subsequent gnus-configure-windows.
10853 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
10855         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
10856         if there is no hashtable in memory or file modification time is
10857         newer than cached timestamp.
10859 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
10861         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
10862         not-matching option.
10864 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
10866         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
10867         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
10868         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
10869         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
10870         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
10871         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
10873 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10875         * message.el (message-forward-make-body-mml): Remove headers
10876         according to message-forward-ignored-headers if a message is decoded.
10878 2004-12-02  Romain Francoise  <romain@orebokech.com>
10880         * message.el (message-forward-make-body-plain): Always remove
10881         headers according to message-forward-ignored-headers.
10883 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
10885         * spam.el (spam-summary-prepare-exit): Remove the
10886         gnus-summary-limit pop for now, it has problems with ham marks for
10887         me.
10889 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
10891         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
10892         correctly.
10894 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
10896         * format-spec.el (format-spec): Message the char.
10898 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
10900         * gnus-art.el (gnus-split-methods): Reformat comments.
10902         * spam.el (spam-summary-prepare-exit): Remove article limits
10903         before exiting the summary buffer.
10905 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10907         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
10908         order to silence the byte compiler.
10910         * spam.el: Fix the way to silence the byte compiler, which
10911         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
10912         bbdb-search-simple, spam-BBDB-register-routine,
10913         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
10914         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
10915         spam-stat-buffer-is-spam, spam-stat-load,
10916         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
10917         spam-stat-save and spam-stat-split-fancy.
10919 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10921         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
10922         which may confuse users.
10923         (canlock-password-for-verify): Ditto.
10925         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
10927         * gnus-art.el (gnus-emphasis-alist): Ditto.
10929         * gnus-registry.el (gnus-registry-max-entries): Ditto.
10931         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
10933         * gnus-start.el (gnus-save-killed-list): Ditto.
10935         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
10936         (gnus-sum-thread-tree-root): Ditto.
10937         (gnus-sum-thread-tree-false-root): Ditto.
10938         (gnus-sum-thread-tree-single-indent): Ditto.
10940         * message.el (message-courtesy-message): Ditto.
10941         (message-archive-note): Ditto.
10942         (message-subscribed-address-file): Ditto.
10943         (message-user-fqdn): Ditto.
10945         * spam-report.el (spam-report-gmane-regex): Ditto.
10947         * spam.el (spam-blackhole-good-server-regex): Ditto.
10949 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10951         * mml.el (mml-preview): Widen the message buffer before copying
10952         the contents to the preview buffer; sort headers before previewing.
10954         * message.el (message-hidden-headers): Fix the way to avoid a bug
10955         in the `repeat' widget in Emacs 21.3 or earlier.
10957 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10959         * message.el (message-hidden-headers): Default to "^References:".
10960         Improve customization type.  Suggested by Reiner Steib
10961         <Reiner.Steib@gmx.de>.
10963 2004-11-25  Romain Francoise  <romain@orebokech.com>
10965         * message.el (message-strip-forbidden-properties): Remove check for
10966         obsolete `message-hidden' text property, hidden headers are not
10967         accessible in the buffer anymore.
10969 2004-11-22  Romain Francoise  <romain@orebokech.com>
10971         * message.el (message-header-format-alist): Add `From' in list
10972         so that it can be sorted.
10973         (message-fix-before-sending): Widen and sort headers before
10974         sending.
10975         (message-hide-headers): Use narrowing to hide headers by moving
10976         them to the top of the buffer and narrowing to the region
10977         underneath.
10979 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10981         * message.el (message-strip-forbidden-properties): Bind
10982         buffer-read-only (etc) to nil.
10984 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10986         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
10987         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
10989 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
10991         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
10993 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10995         * dns.el (query-dns): Use sit-for to time instead of
10996         accept-process-output, since that doesn't seem to work on udp
10997         sockets.
10999 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11001         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
11003 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
11005         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
11006         doc string.  Improve doc string.
11008 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11010         * nntp.el (nntp-request-update-info): Return nil if
11011         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
11012         may not call gnus-activate-group which uselessly issues the GROUP
11013         commands for all nntp groups and wastes time.  Reported by Romain
11014         Francoise <romain@orebokech.com>.
11016         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
11018 2004-11-15  Simon Josefsson  <jas@extundo.com>
11020         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
11021         headers separately.
11022         (gnus-button-openpgp): New function, inspired by Jochen Küpper
11023         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
11025 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
11027         * gnus-start.el (gnus-convert-old-newsrc):
11028         Assign legacy-gnus-agent to 5.10.7.
11030 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11032         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
11033         start of the lines.
11035 2004-11-14  Magnus Henoch  <mange@freemail.hu>
11037         * hashcash.el (hashcash-default-payment): Change default to 20.
11038         (hashcash-default-accept-payment): Change default to 20.
11039         (hashcash-process-alist): New variable.
11040         (hashcash-generate-payment-async): Add.
11041         (hashcash-already-paid-p): Add.
11042         (hashcash-insert-payment): Don't generate payments twice.
11043         (hashcash-insert-payment-async): Add.
11044         (hashcash-insert-payment-async-2): Add.
11045         (hashcash-cancel-async): Add.
11046         (hashcash-wait-async): Add.
11047         (hashcash-processes-running-p): Add.
11048         (hashcash-wait-or-cancel): Add.
11049         (mail-add-payment): New optional argument.  Conditionally start
11050         asynchronous calculation.
11051         (mail-add-payment-async): Add.
11053         * message.el (message-send-mail): Wait for asynchronous hashcash
11054         results.  Don't clobber existing X-Hashcash headers.
11055         (message-setup-1): Call mail-add-payment-async when
11056         message-generate-hashcash is non-nil.
11058 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
11060         * message.el (message-use-alternative-email-as-from): Examine the
11061         From header as well; use message-make-from in order to include a
11062         user's full name.
11064 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11066         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
11067         default; improve customization type.
11068         (gnus-emphasis-custom-with-format): New macro.
11069         (gnus-emphasis-custom-value-to-external): New function.
11070         (gnus-emphasis-custom-value-to-internal): New function.
11072 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11074         * dns.el (query-dns): Resolve reverse addresses.
11076 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11078         * gnus-group.el (gnus-group-get-new-news): Use it.
11080         * gnus-start.el (gnus-check-reasonable-setup): New function.
11082 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11084         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
11085         "Args out of range" error.  Reported by Arnaud Giersch
11086         <arnaud.giersch@free.fr>.
11088 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
11090         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
11092 2004-11-04  Richard M. Stallman  <rms@gnu.org>
11094         * spam.el (spam group): Add :version.
11096         * pgg-def.el (pgg group): Add :version.
11098 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11100         * gnus-art.el (gnus-article-edit-article): Don't associate the
11101         article buffer with a draft file.  This is a temporary measure
11102         against the 2004-08-22 change to gnus-article-edit-mode.
11104 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11106         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
11107         (html2text-format-tags): Remove unused variable `attr'.
11109 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
11111         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
11113         * spam-stat.el (spam-stat): Add :version.
11115         * sieve.el (sieve): Add :version.
11117         * sha1.el (sha1): Add :version.
11118         (sha1-use-external): Remove redundant version.
11120         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
11121         (nnmail-cache-ignore-groups, nnmail-spool-hook)
11122         (nnmail-split-fancy-match-partial-words)
11123         (nnmail-split-lowercase-expanded): Add :version.
11125         * nndiary.el (nndiary): Add :version.
11127         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
11129         * mml-sec.el (mml-default-sign-method)
11130         (mml-default-encrypt-method, mml-signencrypt-style-alist):
11131         Add :version.
11133         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
11135         * mm-url.el (mm-url-use-external, mm-url-program)
11136         (mm-url-arguments): Add :version.
11138         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
11139         (mm-attachment-file-modes, mm-decrypt-option)
11140         (mm-w3m-safe-url-regexp): Add :version.
11142         * message.el (message-cite-prefix-regexp)
11143         (message-sendmail-envelope-from, message-minibuffer-local-map)
11144         (message-user-fqdn, message-completion-alist): Add :version.
11146         * gnus-win.el (gnus-configure-windows-hook)
11147         (gnus-use-frames-on-any-display): Add :version.
11149         * gnus-art.el (gnus-article-address-banner-alist)
11150         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
11151         (gnus-treat-from-picon, gnus-treat-mail-picon)
11152         (gnus-treat-x-pgp-sig): Add :version.
11154         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
11155         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
11156         (gnus-summary-article-delete-hook)
11157         (gnus-summary-display-while-building): Add :version.
11159         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
11160         (gnus-get-top-new-news-hook): Add :version.
11162         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
11163         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
11165         * gnus-registry.el (gnus-registry): Add :version.
11167         * gnus-spec.el (gnus-use-correct-string-widths)
11168         (gnus-make-format-preserve-properties): Add :version.
11170         * gnus.el (gnus-group-charter-alist)
11171         (gnus-group-fetch-control-use-browse-url)
11172         (gnus-install-group-spam-parameters): Add :version.
11174         * gnus-diary.el (gnus-diary): Add :version.
11176         * gnus-delay.el (gnus-delay): Add :version.
11178         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
11179         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
11180         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
11181         Add :version.
11183         * gnus-agent.el (gnus-agent-max-fetch-size)
11184         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
11185         (gnus-agent-prompt-send-queue): Add :version.
11187         * deuglify.el (gnus-outlook-deuglify): Add :version.
11189         * html2text.el: Beautify code.  Improve doc strings.  Some
11190         checkdoc cleanup.
11191         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
11193 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
11195         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
11197 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
11199         * gnus-registry.el (gnus-registry-hashtb): Create the registry
11200         when package is loaded.
11202         * spam.el (spam-summary-score-preferred-header): Add global preference
11203         for people who want to override the default SpamAssassin over
11204         Bogofilter preference (when both are set).
11205         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
11206         (spam-user-format-function-S): Check
11207         spam-summary-score-preferred-header.
11208         (spam-extra-header-to-number): Add X-Bogosity header parsing.
11209         (spam-user-format-function-S): Format the score correctly.
11211 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11213         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
11214         signature file.  Suggested by Manoj Srivastava
11215         <srivasta@golden-gryphon.com>.
11217         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
11218         iso-2022-jp even in the Japanese language environment.
11219         Suggested by Jason Rumney <jasonr@gnu.org>.
11221 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11223         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
11224         use the same characters as the dummy marks; make it free from
11225         getting affected by the language environment.
11226         (gnus-summary-read-group-1): Update mark positions only when the
11227         format spec is updated.
11229         * gnus-spec.el (gnus-update-format-specifications): Return a list
11230         of updated types.
11232 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11234         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
11235         of boundp to check if display-warning is available.
11237 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
11239         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
11241 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11243         * nnspool.el (nnspool-spool-directory): Use news-path if the
11244         news-directory variable is not bound.
11246         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
11247         function instead of display-warning if it is not available.
11249 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
11251         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
11252         v5-10: Use `point-at-bol'.
11254 2004-10-26  Simon Josefsson  <jas@extundo.com>
11256         * hashcash.el: Fix URL in comment, reported by Cheng Gao
11257         <chenggao@gmail.com>.
11259 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
11261         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
11262         instead.
11264 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
11266         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
11267         to remove a server from the nnimap-server-buffer-alist.
11268         (nnimap-open-connection, nnimap-close-server): Use it.
11270         * gnus-encrypt.el: Remove file in favor of encrypt.el.
11272 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11274         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
11275         running the major-mode function.
11277 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11279         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
11280         dummy marks in the right way.
11282 2004-10-18  David Edmondson  <dme@dme.org>
11284         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
11285         excessively.
11287 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
11289         * gnus-util.el (gnus-split-references): Accept a nil references
11290         string and go on blissfully.
11292         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
11293         cases where the references string is non-nil but has no references.
11295         * encrypt.el: Add autoload tags.
11297         * spam.el (spam-resolve-registrations-routine): Remove article
11298         from unregistration list too.  Reported by David Hanak
11299         <dhanak@isis.vanderbilt.edu>
11301 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
11303         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
11304         nil.  Changed custom type.
11306 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
11308         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
11310         * gnus-sum.el (gnus-summary-move-article): Use it.
11312 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
11314         * encrypt.el: Add autoload cookies.
11316         * spam.el (spam-backend-article-list-property)
11317         (spam-backend-get-article-todo-list)
11318         (spam-backend-put-article-todo-list)
11319         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
11320         Resolve registrations separately.
11321         (spam-register-routine): Format comments.
11322         (spam-unregister-routine, spam-register-routine): Always call with
11323         specific-articles, no default list.
11324         (spam-summary-prepare-exit): Use the spam-classifications function.
11326         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
11327         gnus-encrypt.el.
11329         * encrypt.el: Copied from gnus-encrypt.el.
11331         * gnus-encrypt.el: Commented that it's obsolete.
11333 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
11335         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
11336         (gnus-score-save): Use it.
11338         * message.el (message-bury): Use `window-dedicated-p'.
11340 2004-10-15  Simon Josefsson  <jas@extundo.com>
11342         * pop3.el (top-level): Don't require nnheader.
11343         (pop3-read-timeout): Add.
11344         (pop3-accept-process-output): Add.
11345         (pop3-read-response, pop3-retr): Use it.
11347 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
11349         * spam.el (spam-register-routine): Move comment.
11350         (spam-verify-bogofilter): Use 'unknown for the initial
11351         spam-bogofilter-valid state, not 'never.
11353         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
11354         for netrc-machine.
11356         * nnimap.el (nnimap-open-connection): Use
11357         netrc-machine-user-or-password.
11359 2004-10-17  Richard M. Stallman  <rms@gnu.org>
11361         * gnus-registry.el (gnus-registry-unload-hook):
11362         Set as a variable with add-hook.
11364         * nnspool.el (nnspool-spool-directory): Use news-directory instead
11365         of news-path.
11367         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
11369         * spam.el: Delete duplicate `provide'.
11370         (spam-unload-hook): Set as a variable with add-hook.
11372 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
11374         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
11375         in the doc string.
11377         * message.el (message-ignored-news-headers)
11378         (message-ignored-supersedes-headers)
11379         (message-ignored-resent-headers)
11380         (message-forward-ignored-headers): Improve custom type.
11382 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11384         * message.el (message-tokenize-header): Fix 2004-09-06 change
11385         which used point-min in the wrong place.
11387 2004-10-12  Simon Josefsson  <jas@extundo.com>
11389         * tls.el (tls-certtool-program): New variable.
11390         (tls-certificate-information): New function, based on
11391         ssl-certificate-information.
11393 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11395         * compface.el: Move the version of ELisp-based uncompface program
11396         to the contrib directory because of the copyright problem.
11398 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
11400         * message.el (message-kill-buffer): Raise the current frame.
11402 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
11404         * gnus-sum.el: Mention that multibyte characters don't work as marks.
11406         * gnus.el (message-y-or-n-p): Autoload.
11408         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
11409         (pop3-password-required, pop3-authentication-scheme)
11410         (pop3-leave-mail-on-server): Made customizable.
11411         (pop3): New custom group.
11412         (pop3-retr): Remove `sleep-for' statements.
11413         Suggested by Dave Love <fx@gnu.org>.
11415         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
11416         Windows/DOS.
11418         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
11419         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
11420         Dave Love <fx@gnu.org>.
11422         * mml.el (mml-minibuffer-read-disposition): Require match.
11423         Suggested by Dave Love <fx@gnu.org>.
11425 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
11427         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
11428         doc string.
11430 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11432         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
11434 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11436         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
11437         instead of calling `mm-insert-inline', to decode text/* parts
11438         before displaying them.
11440 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11442         * mm-uu.el (mm-uu-text-plain-type): New variable.
11443         (mm-uu-pgp-signed-extract-1): Use it.
11444         (mm-uu-pgp-encrypted-extract-1): Use it.
11445         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
11446         bind mm-uu-text-plain-type with that value.
11447         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
11448         mm-uu-dissect.
11450 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11452         * gnus-group.el (gnus-update-group-mark-positions):
11453         * gnus-sum.el (gnus-update-summary-mark-positions):
11454         * message.el (message-check-news-body-syntax):
11455         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
11456         of string-as-multibyte.
11458 2004-10-05  Juri Linkov  <juri@jurta.org>
11460         * gnus-group.el (gnus-update-group-mark-positions):
11461         * gnus-sum.el (gnus-update-summary-mark-positions):
11462         * message.el (message-check-news-body-syntax):
11463         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
11464         8-bit unibyte values to a multibyte string for search functions.
11466 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11468         * mm-uu.el (mm-uu-dissect): Allow optional arg.
11469         (mm-uu-dissect-text-parts): New function.
11471         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
11472         dissect text parts.
11474         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
11475         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
11477         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
11479         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
11480         gnus-current-topics instead of gnus-current-topic.
11482 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
11484         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
11486 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
11488         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
11489         where approriate.
11491         * nnml.el (nnml-generate-active-info): do.
11493         * nndiary.el (nndiary-generate-active-info): do.
11495         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
11496         (gnus-topic-move): do.
11498         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
11499         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
11501         * gnus-srvr.el (gnus-server-prepare)
11502         (gnus-server-open-all-servers): do.
11504         * gnus-msg.el (gnus-summary-cancel-article)
11505         (gnus-summary-resend-message)
11506         (gnus-summary-mail-crosspost-complaint): do.
11508         * gnus-move.el (gnus-change-server): do.
11510         * gnus-group.el (gnus-group-unmark-all-groups)
11511         (gnus-group-set-current-level): do.
11513 2004-10-04  Simon Josefsson  <jas@extundo.com>
11515         * message.el (message-generate-hashcash): Doc fix.
11517 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
11519         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
11520         avoid infinite recursion via gnus-get-function.
11522 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
11524         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
11526         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
11528         * nnmail.el (nnmail-split-history): do.
11530         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
11531         (nnml-request-delete-group): do.
11533         * nnslashdot.el (nnslashdot-read-groups): do.
11535         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
11536         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
11538         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
11539         (nnspool-sift-nov-with-sed): Use last.
11540         (nnspool-retrieve-headers-with-nov): Use mapc.
11541         (nnspool-request-newgroups): Use dolist.
11542         (nnspool-request-group): Use last.
11544         * nntp.el (nntp-read-server-type): Use dolist.
11546         * nnvirtual.el (nnvirtual-create-mapping)
11547         (nnvirtual-update-read-and-marked): Use dolist.
11548         (nnvirtual-convert-headers): Simplify.
11550 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
11552         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
11553         support for sync'ing tick marks.
11555 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11557         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
11558         there's no visible header.
11560 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
11562         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
11563         necessary, pass full group name to gnus-request-set-marks.
11565 2004-10-01  Simon Josefsson  <jas@extundo.com>
11567         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
11568         acroread.
11570 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11572         * spam-report.el (spam-report-gmane): Fix interactive.
11574         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
11576         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
11577         when writing file.
11578         (gnus-agent-synchronize-flags): Don't default to being
11579         interactive.
11581 2004-09-30  Simon Josefsson  <jas@extundo.com>
11583         * message.el (message-generate-hashcash): Add.
11584         (message-send-mail): Use it, call mail-add-payment.
11586 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
11588         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
11590 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
11592         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
11593         gnus-requst-update-info with explicit code to sync the in-memory
11594         info read flags with the marks being sync'd to the backend.
11596         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
11598 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11600         * spam.el (spam-verify-bogofilter): Add new function.
11601         (spam-check-bogofilter)
11602         (spam-bogofilter-register-with-bogofilter): Use it.
11603         (spam-verify-bogofilter): Add small fixes.
11605 2004-09-28  Simon Josefsson  <jas@extundo.com>
11607         * hashcash.el (hashcash-generate-payment): Revert.
11609 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11611         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
11612         gnus-extract-references instead of gnus-split-references.
11614         * gnus-util.el (gnus-extract-references): Add new function, analogous
11615         to gnus-split-references but extracts only the message-ID without
11616         anything extra.
11618         * hashcash.el (hashcash-generate-payment)
11619         (hashcash-check-payment): Do the right thing if hashcash-path is
11620         nil (because the hashcash program could not be found).
11622         * spam.el (spam-use-hashcash): Remove comment.
11624 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
11626         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
11627         (gnus-cache-enter-article, gnus-cache-remove-article)
11628         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
11630         * gnus-async.el (gnus-async-prefetch-remove-group): do.
11632         * gnus-art.el (article-hide-boring-headers)
11633         (article-translate-strings, article-display-face)
11634         (gnus-article-mime-match-handle-first)
11635         (gnus-article-highlight-headers)
11636         (gnus-article-add-buttons-to-head): do.
11638 2004-09-27  Simon Josefsson  <jas@extundo.com>
11640         * hashcash.el: New version, from
11641         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
11642         ../contrib/.
11644 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11646         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
11648 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
11650         * gnus-dup.el (gnus-dup-open): Use mapc.
11651         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
11653         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
11654         Reported by Stefan Wiens <s.wi@gmx.net>.
11656         * gnus.el (gnus-shutdown): Use dolist.
11658         * gnus-undo.el (gnus-undo): Use mapc.
11660         * nnrss.el (nnrss-generate-active): do.
11662         * message.el (message-cite-original-without-signature)
11663         (message-cite-original): Use mapc.
11664         (message-do-actions, message-make-forward-subject): Use dolist.
11666 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
11668         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
11669         deletion to remove entire duplicate line.  Fixes merged article
11670         number bug.
11672 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
11674         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
11675         servers that are offline.  Avoids having gnus-agent-toggle-plugged
11676         first ask if you want to open a server and then, even when you
11677         responded with no, asking if you want to synchronize the server's
11678         flags.
11679         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
11680         multi-line expressions.
11681         (gnus-agent-synchronize-group-flags): New internal function.
11682         Updates marks in memory (in the info structure) AND in the
11683         backend.
11685         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
11687         * nnagent.el (nnagent-request-set-mark): Use
11688         gnus-agent-synchronize-group-flags, not backend's request-set-mark
11689         method, to ensure that synchronization updates marks in the
11690         backend and in the info (in memory) structure.
11692 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11694         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
11695         convention fully; don't miss the root article of a thread; make
11696         the X-Draft-From header with correct article numbers.
11698 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
11700         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
11701         unless plugged.  Disable the agent so that an open failure causes
11702         an error.
11704         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
11705         Reverted 2004-09-21 change.  The backend must be opened while
11706         synchronizing flags even when the backend stores the flags
11707         locally.
11709 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
11711         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
11712         in `header' match.  Reported by Svend Tollak Munkejord.
11714         * message.el (message-cite-original): Fix use of
11715         `message-cite-articles-with-x-no-archive'.
11717 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11719         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
11720         (gnus-window-to-buffer): Ditto.
11722         * mml.el (mml-preview-buffer): New variable.
11723         (mml-preview): Manage window layout with gnus-buffer-configuration.
11725         * gnus-msg.el (gnus-setup-message): Put article numbers into the
11726         X-Draft-From header even if those articles aren't quoted.
11728 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
11730         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
11731         (gnus-request-set-mark, gnus-request-update-mark): Use new
11732         g-s-t-u-l-m to decide to use backend even when unplugged.
11734 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11736         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
11737         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
11739 2004-09-20  Simon Josefsson  <jas@extundo.com>
11741         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
11742         "utf-16-le".
11744 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11746         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
11748 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
11750         * uudecode.el (uudecode-use-external): Add :version.
11752         * smime.el (smime-CA-file, smime-encrypt-cipher)
11753         (smime-dns-server): Add :version.
11755         * smiley.el (gnus-smiley-file-types): Add :version.
11757         * sha1.el (sha1-use-external): Add :version.
11759         * pgg-def.el (pgg-query-keyserver): Add :version.
11761         * nnmail.el (nnmail-fancy-expiry-targets)
11762         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
11763         Add :version.
11765         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
11766         (nnimap-retrieve-groups-asynchronous): Add :version.
11767         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
11769         * mml.el (mml-content-disposition-parameters)
11770         (mml-insert-mime-headers-always): Add :version.
11772         * mm-util.el (mm-coding-system-priorities): Add :version.
11774         * mm-decode.el (mm-inline-text-html-with-images)
11775         (mm-keep-viewer-alive-types, mm-external-terminal-program)
11776         (mm-verify-option): Add :version.
11777         (mm-text-html-renderer): Change :version.
11779         * message.el (message-fcc-externalize-attachments)
11780         (message-required-headers, message-draft-headers)
11781         (message-subject-trailing-was-query)
11782         (message-subject-trailing-was-ask-regexp)
11783         (message-subject-trailing-was-regexp, message-mark-insert-begin)
11784         (message-mark-insert-end, message-archive-header)
11785         (message-archive-note, message-cross-post-default)
11786         (message-cross-post-note, message-followup-to-note)
11787         (message-cross-post-note-function, message-use-mail-followup-to)
11788         (message-subscribed-address-functions)
11789         (message-subscribed-address-file, message-subscribed-addresses)
11790         (message-subscribed-regexps, message-allow-no-recipients)
11791         (message-yank-cited-prefix, message-signature-insert-empty-line)
11792         (message-hidden-headers, message-hierarchical-addresses)
11793         (message-mail-user-agent, message-use-idna)
11794         (message-valid-fqdn-regexp)
11795         (message-strip-special-text-properties, message-header-synonyms)
11796         (message-beginning-of-line, message-tab-body-function): Add :version.
11797         (message-insert-canlock, message-wide-reply-confirm-recipients):
11798         Change :version.
11800         * mail-source.el (mail-source-ignore-errors): Add :group, :type
11801         and :version.
11802         (mail-source-delete-old-incoming-confirm)
11803         (mail-source-movemail-program): Add :version.
11805         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
11806         (gnus-agent-cache, gnus-agent): Change :version.
11808         * gnus-util.el (gnus-use-byte-compile): Change :version.
11810         * gnus-sum.el (gnus-summary-make-false-root-always)
11811         (gnus-summary-default-high-score)
11812         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
11813         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
11814         (gnus-read-all-available-headers, gnus-article-emulate-mime)
11815         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
11816         (gnus-sum-thread-tree-single-indent)
11817         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
11818         (gnus-sum-thread-tree-leaf-with-other)
11819         (gnus-sum-thread-tree-single-leaf): Add :version.
11820         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
11821         (gnus-article-loose-mime): Change :version.
11823         * gnus-start.el (gnus-backup-startup-file)
11824         (gnus-save-startup-file-via-temp-buffer): Add :version.
11826         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
11827         (gnus-server-offline-face): Add :version.
11829         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
11831         * gnus-msg.el (gnus-gcc-externalize-attachments)
11832         (gnus-debug-files, gnus-debug-exclude-variables)
11833         (gnus-discouraged-post-methods): Change :version.
11834         (gnus-confirm-mail-reply-to-news)
11835         (gnus-confirm-treat-mail-like-news): Add :version.
11837         * gnus-int.el (gnus-server-unopen-status): Add :version.
11839         * gnus-group.el (gnus-group-jump-to-group-prompt)
11840         (gnus-large-ephemeral-newsgroup)
11841         (gnus-fetch-old-ephemeral-headers): Add :version.
11843         * gnus-fun.el (gnus-x-face-directory)
11844         (gnus-convert-pbm-to-x-face-command)
11845         (gnus-convert-image-to-x-face-command)
11846         (gnus-convert-image-to-face-command): Add :version.
11848         * gnus-delay.el (gnus-delay-default-hour): Add :version.
11850         * gnus-cite.el (gnus-cite-blank-line-after-header)
11851         (gnus-article-boring-faces): Add :version.
11853         * gnus-art.el (gnus-buttonized-mime-types)
11854         (gnus-inhibit-mime-unbuttonizing)
11855         (gnus-treat-display-face)
11856         (gnus-treat-body-boundary): Change :version.
11857         (gnus-body-boundary-delimiter, gnus-picon-databases)
11858         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
11859         (gnus-treat-date-english, gnus-treat-fold-headers)
11860         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
11861         (gnus-treat-mail-picon, gnus-treat-wash-html)
11862         (gnus-article-encrypt-protocol)
11863         (gnus-use-idna, gnus-article-over-scroll)
11864         (gnus-mime-display-multipart-alternative-as-mixed)
11865         (gnus-mime-display-multipart-related-as-mixed)
11866         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
11867         (gnus-ctan-url, gnus-button-ctan-handler)
11868         (gnus-button-handle-ctan-bogus-regexp)
11869         (gnus-button-ctan-directory-regexp)
11870         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
11871         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
11872         (gnus-button-man-level, gnus-button-emacs-level)
11873         (gnus-button-message-level, gnus-button-browse-level): Add :version.
11875         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
11876         (gnus-agent-go-online): Change :version.
11877         (gnus-agent-expire-unagentized-dirs)
11878         (gnus-agent-auto-agentize-methods): Add :version.
11880         * flow-fill.el (fill-flowed-display-column)
11881         (fill-flowed-encode-column): Add :version.
11883         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
11884         (gnus-outlook-deuglify-unwrap-max)
11885         (gnus-outlook-deuglify-cite-marks)
11886         (gnus-outlook-deuglify-unwrap-stop-chars)
11887         (gnus-outlook-deuglify-no-wrap-chars)
11888         (gnus-outlook-deuglify-attrib-cut-regexp)
11889         (gnus-outlook-deuglify-attrib-verb-regexp)
11890         (gnus-outlook-deuglify-attrib-end-regexp)
11891         (gnus-outlook-display-hook): Add :version.
11893         * binhex.el (binhex-use-external): Add :version.
11895 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
11897         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
11898         and `invisible'.
11900 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
11902         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
11903         in gnus-registry-trim.
11905 2004-09-13  Simon Josefsson  <jas@extundo.com>
11907         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
11909         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
11911         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
11912         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
11913         <yamaoka@jpl.org>.
11914         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
11915         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
11916         <yamaoka@jpl.org>.
11918         * sieve.el (sieve-manage-mode): Ditto.
11920 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
11922         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
11924 2004-09-11  Simon Josefsson  <jas@extundo.com>
11926         * dns-mode.el: Add.
11928         * mm-view.el (mm-display-dns-inline): Add.
11930         * mm-decode.el (mm-inline-media-tests): Add text/dns.
11931         (mm-automatic-display): Ditto.
11933         * mailcap.el (mailcap-mime-data): Add text/dns.
11934         (mailcap-mime-extensions): Map .soa to text/dns.
11936 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
11938         * gnus-art.el (article-decode-mime-words, article-babel)
11939         (gnus-article-highlight-signature, gnus-article-add-buttons)
11940         (gnus-signature-toggle): Remove unnecessary bindings of
11941         `inhibit-read-only' inherited from v5.10 merge.
11943 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
11945         * nntp.el (nntp): New customization group.
11946         (nntp-authinfo-file): Add customization group.
11948         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
11950         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
11952         * gnus.el (to-address, to-list, subscribed)
11953         (large-newsgroup-initial): Ditto.
11955         * flow-fill.el (fill-flowed-display-column)
11956         (fill-flowed-encode-column): Ditto.
11958 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11960         * message.el (message-tokenize-header, message-send-mail-with-qmail):
11961         Use point-min rather than 1.
11962         (message-send-mail): Use buffer-size rather than point-max.
11964         * gnus-sum.el (gnus-summary-search-article-forward):
11965         Signal a specific `search-failed' rather than a generic `error'.
11967         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
11968         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
11969         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
11971 2004-09-10  Simon Josefsson  <jas@extundo.com>
11973         * nndb.el (require): Remove tcp and duplicate cl.
11975 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11977         * gnus-agent.el (directory-files-and-attributes): Move forward.
11979 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
11981         * gnus-agent.el (directory-files-and-attributes): Optionally
11982         defined to support XEmacs.
11984 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
11986         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
11987         to avoid run-time CL dependencies.
11988         (gnus-agent-unfetch-articles): New function.
11989         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
11990         article numbers even when local .overview file is missing.
11991         (gnus-agent-read-article-number): New function.  Only accepts
11992         27-bit article numbers.
11993         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
11994         gnus-agent-read-article-number.
11995         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
11996         from backend while recognizing that article numbers in .overview
11997         must be valid.
11998         (gnus-agent-update-files-total-fetched-for): Use
11999         directory-files-and-attributes to improve performance.
12000         * gnus-int.el (gnus-request-move-article): Use
12001         gnus-agent-unfetch-articles in place of gnus-agent-expire to
12002         improve performance.
12004         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
12005         some users confused by references to .newsrc when they only have a
12006         .newsrc.eld file.
12007         (gnus-convert-mark-converter-prompt)
12008         (gnus-convert-converter-needs-prompt): Fixed use of property list.
12009         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
12010         New function.  Used internally to only display 'gnus converting
12011         files' message when actually necessary.
12013         * gnus-sum.el (): Removed (require 'gnus-agent) as required
12014         methods now autoloaded.
12016 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12018         * gnus-sum.el (gnus-summary-insert-subject): Remove list
12019         identifiers.
12021 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
12023         * gnus-picon.el: Fix indentation and closing parenthesis.
12025 2004-09-01  Simon Josefsson  <jas@extundo.com>
12027         * message.el (message-canlock-generate): Require sha1, not
12028         sha1-el.  (Can we get rid of this require altogether?  It is ugly
12029         to require within a function.  Sadly, if sha1.el isn't loaded, the
12030         let binding in m-c-g will hide the defcustom definition, which is
12031         bad.)
12033         * canlock.el: Require sha1, not sha1-el.
12035         * message.el: Don't autoload sha1 (there is a autoload cookie in
12036         sha1.el).
12038         * sha1-el.el: Renamed to sha1.el.
12040 2004-08-30  Juanma Barranquero  <lektu@terra.es>
12042         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
12044 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12046         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
12048 2004-08-30  Kim F. Storm  <storm@cua.dk>
12050         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
12052         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
12053         Add :group 'nnimap.
12055 2004-08-30  Andreas Schwab  <schwab@suse.de>
12057         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
12058         ?* and ?\;.
12060         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
12061         and ?\' to symbol instead of whitespace.
12063 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12065         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
12067         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
12068         instead of re-search-forward.
12070         * gnus-uu.el (gnus-uu-save-article): Ditto.
12071         (gnus-uu-post-encode-uuencode): Ditto.
12073         * html2text.el (html2text-clean-list-items): Ditto.
12074         (html2text-clean-dtdd): Ditto.
12075         (html2text-format-tags): Ditto.
12077         * message.el (message-send-mail-with-sendmail): Fix regexp.
12078         (message-fill-field-general): Use search-forward instead of
12079         re-search-forward.
12080         (unbold-region): Ditto.
12082         * nnrss.el (nnrss-request-article): Ditto.
12084         * nnslashdot.el (nnslashdot-request-article): Ditto.
12086         * nnweb.el (nnweb-gmane-wash-article): Ditto.
12088         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
12089         "Unrecognized menu descriptor" error in XEmacs.
12091 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12093         * gnus-sum.el (gnus-read-header): Don't remove a header for the
12094         parent article of a sparse article in the thread hashtb.
12096 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
12098         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
12099         (nnmail-expand-newtext): Lowercase expanded entries if
12100         nnmail-split-lowercase-expanded is non-nil.
12102 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12104         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
12106         * gnus-group.el (gnus-group-line-format-alist): Convert the value
12107         of gnus-tmp-news-method into string under XEmacs.  It will be
12108         passed to gnus-correct-length which takes only a string argument.
12110 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12112         * gnus-util.el (gnus-bind-print-variables): New macro.
12113         (gnus-prin1): Use it.
12114         (gnus-prin1-to-string): Use it.
12115         (gnus-pp): New function.
12116         (gnus-pp-to-string): New function.
12118         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
12119         Replace pp-to-string with gnus-pp-to-string.
12120         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
12121         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
12122         * gnus-msg.el (gnus-debug): Ditto.
12123         * gnus-score.el (gnus-score-save): Ditto.
12124         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
12125         gnus-pp-to-string.
12126         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
12127         with gnus-pp.
12128         * score-mode.el (gnus-score-pretty-print): Ditto.
12129         * webmail.el (webmail-debug): Ditto.
12131 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12133         * gnus-art.el (article-display-face, article-display-x-face):
12134         Use buffer-read-only.
12136 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12138         * gnus-art.el (article-hide-list-identifiers):
12139         Bind inhibit-read-only as t.
12141 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
12143         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
12145 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12147         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
12148         (gnus-narrow-to-page): Don't assume point-min == 1.
12149         (gnus-article-edit-mode): Derive from message-mode.
12151         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
12152         point-min == 1.
12154         * imap.el (imap-parse-address-list, imap-parse-body-ext):
12155         Disable incorrect use of `assert'.
12157         * message.el (message-mode): Set comment-start-skip.
12159 2004-08-22  Sam Steingold  <sds@gnu.org>
12161         * pop3.el (pop3-leave-mail-on-server): New user variable.
12162         (pop3-movemail): Delete mail only when it is nil.
12164 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
12166         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
12168         * mml.el (mml-preview): Use `pop-to-buffer'.
12170         * message.el (message-goto-mail-followup-to): Insert after "To".
12171         (message-carefully-insert-headers): Add comment.
12173         * gnus.el: Remove unused variable `gnus-article-check-size'.
12175         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
12177         * gnus-art.el (gnus-button-alist): Improve
12178         `gnus-button-handle-library' entry.
12180 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
12182         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
12183         downcase, since XEmacs capitalizes error messages differently.
12185 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
12187         * nntp.el: Add (require 'gnus) due to reference to
12188         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
12190 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
12192         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
12193         `mm-fill-flowed'.
12195         * mm-decode.el (mm-dissect-singlepart): Check it.
12197 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
12199         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
12200         'imap' for netrc parsing.
12202 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
12204         * mailcap.el (mailcap-mime-data): Mark as risky.
12206 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12208         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
12209         may be included in the encoded word.
12210         (rfc2047-encode): Don't append a space if the encoded word
12211         includes close parenthesis.
12213 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12215         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
12216         of text within parentheses.
12218 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
12220         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
12221         (gnus-encrypt-write-file-contents): Make the password key the file
12222         name PLUS the cipher, not just the cipher.  Also remove failed
12223         passwords from the cache.
12225 2004-08-06  Simon Josefsson  <jas@extundo.com>
12227         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
12228         fix.
12230 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12232         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
12233         LWSP.
12235 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
12237         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
12238         to append in-reply-to: data to the references: header.
12240         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
12241         (netrc-parse): Use gnus-encrypt.el functions.
12243         * gnus-encrypt.el: Add new file for encryption support; currently
12244         does only a few GPG ciphers and an internal XOR cipher.
12246         * password.el: Add comments on using password-read-and-add.
12247         (password-read-and-add): Add function to read and add the
12248         password to the cache at once.
12250 2004-07-28  Simon Josefsson  <jas@extundo.com>
12252         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
12253         parameter (but don't use it, for now).
12255         * imap.el (imap-ssl-open): Use imap-process-connection-type,
12256         instead of hard coding to nil.
12258 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12260         * mm-view.el (mm-inline-image-emacs): Open lines under an image
12261         as mm-inline-image-xemacs does.
12263 2004-07-26  Simon Josefsson  <jas@extundo.com>
12265         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
12266         Revert part of 2004-07-17 change below.
12268 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12270         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
12271         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
12273 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12275         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
12276         quotes that actually start with ">" at the beginning of the
12277         lines.
12279 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12281         * rfc2047.el (rfc2047-encode-region): Fix last change.
12282         (rfc2047-encode-parameter): Remove useless concat.
12284 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12286         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
12287         encode special characters; fix some kind of misconfigured headers;
12288         signal a real error if debug-on-quit or debug-on-error is non-nil.
12289         (rfc2047-encode-max-chars): New variable.
12290         (rfc2047-encode-1): Use it.
12291         (rfc2047-encode-parameter): New function.
12293         * mml.el (mml-insert-parameter): Remove an excessive space.
12295 2004-07-17  Simon Josefsson  <jas@extundo.com>
12297         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
12298         Kai Grossjohann <kai@emptydomain.de>.
12299         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
12300         (gnus-group-make-menu-bar): Ditto.
12302         * gnus-util.el (gnus-group-server): Add.
12304 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
12306         * message.el (message-clone-locals): Clone sendmail and smtp
12307         variables.
12309 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12311         * rfc2047.el (rfc2047-encode-region): Fix last change.
12313 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12315         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
12316         characters as non-special.
12318 2004-07-09  Simon Josefsson  <jas@extundo.com>
12320         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
12321         Users will lose all flag changes made while unplugged with
12322         e.g. nntp unless flag synchronization happens, thus `nil' is not a
12323         good default.  See numerous reports on ding mailing list.
12325 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12327         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
12328         add generate-head-function and generate-article-function to the
12329         rfc822-forward entry.
12330         (nndoc-rfc822-forward-generate-article): New function.
12331         (nndoc-rfc822-forward-generate-head): New function.
12333         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
12335 2004-07-06  Dan Christensen  <jdc@uwo.ca>
12337         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
12338         respect display group parameter and gnus-summary-expunge-below.
12339         (gnus-articles-to-read): Remove unused reference to display group
12340         parameter.
12342 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12344         * nnheader.el (nnheader-uniquify-message-id): New experimental
12345         variable.
12346         (nnheader-nov-read-message-id): Use it.
12348         * spam-report.el (spam-report-gmane): Add interactive.
12350 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12352         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
12353         qp-or-base64 for the application/* types.
12355 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
12357         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
12359 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
12361         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
12362         trim value.
12364 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
12366         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
12367         New macro and function.
12368         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
12370 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12372         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
12373         after-load-alist.
12375 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12377         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
12378         update info that isn't there.
12380 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>.
12382         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
12383         entry.
12385 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12387         * mm-view.el (mm-inline-render-with-function): Use multibyte
12388         buffer; decode html source by charset.
12390         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
12392         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
12393         Mule-UCS is loaded under XEmacs.
12394         (mm-mime-mule-charset-alist): Avoid duplicated entries.
12396 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
12398         * nnheader.el (nnheader-max-head-length): Increase to 8192.
12400 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12402         * mm-util.el (mm-coding-system-p): Return a coding-system.
12403         (mm-mime-mule-charset-alist): Use shift_jis instead of
12404         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
12405         entries for the mime charsets iso-2022-jp-3 and shift_jis.
12406         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
12407         instead of japanese-shift-jis and iso-latin-1 respectively in
12408         order to share the default value with both Emacs and XEmacs-mule.
12409         (mm-mule-charset-to-mime-charset): Make
12410         mm-coding-system-priorities effective.
12411         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
12412         while predicating of candidates upon the priorities.
12414 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
12416         * gnus-sum.el (gnus-summary-make-menu-bar): Add
12417         gnus-uu-invert-processable.
12419         * gnus.el: Autoload gnus-uu-invert-processable.
12421 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12423         * mm-util.el (mm-with-multibyte-buffer): New macro.
12425         * rfc2047.el (rfc2047-encode-string): Use it.
12426         (rfc2047-encode-region): Move point to the end of the region after
12427         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
12429 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12431         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
12432         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
12434 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12436         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
12437         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
12438         Karl Chen <quarl@nospam.quarl.org>.
12440 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
12442         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
12443         invalid addresses.
12445 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
12447         * spam.el: Change section markers, revise TODO list.
12448         (spam-backends): Make new master list of all installed backends.
12449         (spam-summary-exit-behavior): Add new variable to determine how
12450         messages moves are done at summary exit.
12451         (spam-move-spam-nonspam-groups-only)
12452         (spam-process-ham-in-nonham-groups)
12453         (spam-process-ham-in-spam-groups): Remove variables, the
12454         spam-summary-exit-behavior variable should be used to manage this
12455         behavior.
12456         (spam-old-ham-articles, spam-old-spam-articles): Remove.
12457         (spam-old-articles): Add variable, replacing spam-old-ham-articles
12458         and spam-old-spam-articles.
12459         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
12460         Add empty variables, placeholders for the backends they represent.
12461         (spam-set-difference): Move, unchanged.
12462         (spam-list-of-processors): Declare OBSOLETE, not used anymore
12463         unless the user has a processor variable.
12464         (spam-classifications, spam-classification-valid-p)
12465         (spam-backend-properties, spam-backend-property-valid-p)
12466         (spam-backend-function-type-valid-p)
12467         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
12468         (spam-report-articles-gmane, spam-report-articles-resend):
12469         Remove functions, they are not needed.
12470         (spam-install-backend-super, spam-backend-list)
12471         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
12472         (spam-backend-function, spam-backend-ham-registration-function)
12473         (spam-backend-spam-registration-function)
12474         (spam-backend-ham-unregistration-function)
12475         (spam-backend-spam-unregistration-function)
12476         (spam-backend-statistical-p, spam-backend-mover-p)
12477         (spam-install-backend-alias, spam-install-checkonly-backend)
12478         (spam-install-mover-backend, spam-install-nocheck-backend)
12479         (spam-install-backend, spam-install-statistical-backend)
12480         (spam-install-statistical-checkonly-backend): Add backend installation
12481         support.
12482         (spam-summary-prepare-exit): Rewrite to use the new backend code.
12483         (spam-group-processor-p): Use the new backend code and respect the
12484         summary exit behavior.
12485         (spam-mark-spam-as-expired-and-move-routine): Remove.
12486         (spam-summary-prepare): Change to use the new spam-old-articles
12487         variable.
12488         (spam-copy-or-move-routine, spam-copy-spam-routine)
12489         (spam-move-spam-routine, spam-copy-ham-routine)
12490         (spam-move-ham-routine): Add code to copy/move ham or spam.
12491         (spam-fetch-field-fast): Improve doc and code, plus allow the
12492         'number request.
12493         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
12494         variables.
12495         (spam-split, spam-find-spam): Use the new backend code.
12496         (spam-registration-functions): Remove variable.
12497         (spam-unregister-routine): Add convenience wrapper.
12498         (spam-log-undo-registration, spam-register-routine)
12499         (spam-log-processing-to-registry)
12500         (spam-log-unregistration-needed-p): Rename "check" to "backend"
12501         where possible.
12502         (spam-check-gmane-xref, spam-check-regex-headers)
12503         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
12504         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
12505         (spam-check-bogofilter-headers, spam-check-spamoracle)
12506         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
12507         (spam-check-crm114-headers): Use the spam-split-group that
12508         spam-split prepares, no need to determine it every time.
12510         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
12511         to the nnheader-parse-naked-head call.
12513         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
12515         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
12516         the nnheader-nov-read-message-id call.
12518 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12520         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
12521         gnus-activate-group twice.  Suggested by Markus Peter
12522         <warp@spin.de>.
12524 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12526         * gnus-art.el (gnus-article-time-format): Exchange the order of
12527         day and month in the default value; fix customization type.
12528         (article-date-ut): Use add-text-properties.
12529         (article-make-date-line): Use message-make-date instead of
12530         current-time-string.
12532         * message.el (message-fetch-field): Don't use set-text-properties.
12533         (message-make-date): Simplify.
12535 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12537         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
12538         (rfc2047-encode-region): Treat text within parentheses as special;
12539         show the original text when error has occurred.
12541         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
12542         already-computed method to gnus-activate-group.
12544         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
12545         same select-methods identical Lisp objects.
12547         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
12548         object when modifying the info.
12550 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12552         * gnus-srvr.el (gnus-server-set-info): Remove the server from
12553         gnus-opened-servers since it has never been opened with the new
12554         configuration yet.
12556 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12558         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
12559         arg to nnheader-generate-fake-message-id.
12561 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
12563         * nnheader.el (nnheader-generate-fake-message-id): Accept a
12564         number and build a fake message ID localized to a group and
12565         article number (so it's repeatable from that point on).
12566         (nnheader-fake-message-id-p): Change regex to accommodate new fake
12567         ID format.
12569         * gnus-sum.el (gnus-get-newsgroup-headers): Call
12570         nnheader-generate-fake-message-id with the article number.
12572 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
12574         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
12575         end-of-buffer.
12577 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12579         * message.el (message-ignored-supersedes-headers): Add Approved.
12581 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12583         * rfc2047.el (rfc2047-encode-message-header): Remove useless
12584         goto-char.
12585         (rfc2047-encode): Fold the line before encoding.
12587 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12589         * rfc2047.el (rfc2047-encode-message-header): Disabled header
12590         folding -- not all headers can be folded, and this should be done
12591         by the message composition mode.  Probably.  I think.
12593 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12595         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
12596         fast.
12598         * gnus-ems.el (gnus-remove-image): Don't use
12599         message-text-with-property; remove only the image found first.
12601 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
12603         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
12605 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12607         * message.el (message-text-with-property): Make it fast and accept
12608         optional arguments.
12609         (message-strip-forbidden-properties): Use it.
12610         (message-fix-before-sending): Follow the m-t-w-p change.
12612         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
12614 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12616         * gnus-art.el (article-hide-headers): Don't change the buffer
12617         mistakenly when performing mml-preview even if
12618         gnus-single-article-buffer is nil.
12620 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
12622         * message.el (message-expand-name-databases): New user option.
12623         (message-expand-name): Use it.
12625 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
12627         * spam.el (spam-report-articles-resend)
12628         (spam-report-resend-register-routine): Allow ham reporting.
12629         (spam-report-resend-register-ham-routine): Add wrapper.
12630         (spam-registration-functions): Add ham resending functions.
12631         (spam-list-of-processors): Add ham resend processor.
12633         * gnus.el (ham-resend-to): Add new group parameter.
12634         (spam-process): Add ham resend option.
12636         * spam-report.el (spam-report-resend): Allow reporting ham.
12637         (spam-report-resend-ham): Add wrapper.
12639 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12641         * message.el (message-cite-articles-with-x-no-archive): New
12642         variable.
12643         (message-cite-original): Use it.
12645 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12647         * message.el (message-cite-original): Respect X-No-Archive.
12649 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12651         * gnus-art.el (article-hide-headers): Refer to the values for
12652         gnus-ignored-headers and gnus-visible-headers in the summary
12653         buffer since a user may have set them as group parameters.
12655 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
12657         * assistant.el (assistant-node-name): Add convenience function.
12658         (assistant-render-text, assistant-render-node): Add error handling,
12659         plus handle multiple next nodes.
12660         (assistant-find-next-node): Comment out for now.
12661         (assistant-find-next-nodes): Add function, returns list of next
12662         nodes.
12664 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
12666         * mail-source.el (mail-source-directory): Fix doc-string.
12668 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
12670         * assistant.el (assistant-render-text, assistant-eval): Add :set
12671         widget type, which is different because it takes and returns a
12672         list.  Much hilarity ensues.
12674 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
12676         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
12678         * gnus-group.el (gnus-group-get-new-news-this-group): Added
12679         doc-string.
12681         * gnus-start.el (gnus-activate-group): Added doc-string.
12683 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12685         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
12687 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
12689         * assistant.el (assistant-render-text): Try to add a :set
12690         widget, more to come.
12692         * spam.el (spam-group-spam-contents-p): Handle empty groupname
12693         strings.
12694         (spam-report-articles-resend)
12695         (spam-register-routine): Do registration iff any articles warrant
12696         it.
12697         (spam-summary-prepare-exit): Change log message for nil group
12698         destinations.
12700 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
12702         * spam.el (spam-report-resend-register-routine): Allow
12703         spam-report-resend-to to be a group parameter or a global value.
12705 2004-05-26  Simon Josefsson  <jas@extundo.com>
12707         * starttls.el: Merge with my GNUTLS based starttls.el.
12708         (starttls-gnutls-program, starttls-use-gnutls)
12709         (starttls-extra-arguments, starttls-process-connection-type)
12710         (starttls-connect, starttls-failure, starttls-success): New
12711         variables.
12712         (starttls-program, starttls-extra-args): Doc fix.
12713         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
12714         functions.
12715         (starttls-negotiate, starttls-open-stream): Check
12716         `starttls-use-gnutls' and pass on to corresponding *-gnutls
12717         function if it is set.
12719 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12721         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
12722         structured fields.
12724 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12726         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
12728 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
12730         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
12731         variable.
12732         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
12733         assigning the spam-mark to new messages.
12735 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
12737         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
12739 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12741         * rfc2047.el (rfc2047-encodable-p): Don't move point.
12742         (rfc2047-decode): Treat the ascii coding-system as raw-text by
12743         default.
12745 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
12747         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
12748         correct data.
12750 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
12752         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
12753         (spam-group-processor-p): Fix function.
12754         (spam-group-processor-multiple-p)
12755         (spam-group-spam-processor-report-gmane-p)
12756         (spam-group-spam-processor-report-resend-p)
12757         (spam-group-spam-processor-bogofilter-p)
12758         (spam-group-spam-processor-blacklist-p)
12759         (spam-group-spam-processor-ifile-p)
12760         (spam-group-ham-processor-ifile-p)
12761         (spam-group-spam-processor-spamoracle-p)
12762         (spam-group-spam-processor-crm114-p)
12763         (spam-group-ham-processor-bogofilter-p)
12764         (spam-group-spam-processor-stat-p)
12765         (spam-group-ham-processor-stat-p)
12766         (spam-group-ham-processor-whitelist-p)
12767         (spam-group-ham-processor-BBDB-p)
12768         (spam-group-ham-processor-spamoracle-p)
12769         (spam-group-ham-processor-copy-p): Remove functions with some
12770         prejudice against unneeded code.
12771         (spam-report-articles-resend)
12772         (spam-report-resend-register-routine): Allow the group/topic
12773         spam-resend-to value to override spam-report-resend-to.
12774         (spam-summary-prepare-exit): Invoke spam-group-processor-p
12775         properly now.
12777         * gnus.el (spam-resend-to): Add group/topic parameter.
12778         (spam-process): Move the OBSOLETE processors to the end of the
12779         choices.
12781 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
12783         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
12784         with resend-to set to nil, and then ask the user if necessary.
12785         (spam-report-resend): spam-report-resend takes a list of articles, not
12786         separate article numbers.
12788 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12790         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
12791         addition to emacs-w3m.
12793 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12795         * assistant.el (assistant-authinfo-data): New function.
12796         (assistant-eval): Eval for entire assistant.
12798         * netrc.el (netrc-services-file): New variable.
12799         (netrc-parse-services): New function.
12800         (netrc-find-service-name): New function.
12801         (netrc-find-service-number): New function.
12802         (netrc-port-equal): New function.
12803         (netrc-machine): Use it.
12805         * nnimap.el (nnimap-open-connection): Use netrc.
12807         * gnus-util.el (gnus-netrc-get): Remove aliases.
12809         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
12811         * assistant.el (wid-edit): Fix compilation.
12813         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
12815 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
12817         * gnus-util.el (gnus-set-file-modes): New function.  (small
12818         patch).
12820 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12822         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
12824         * assistant.el (assistant-render-node): Fix up rendering and
12825         read-only text.
12826         (assistant-render-node): Reset.
12827         (assistant-make-read-only): Not sticky.
12829 2004-05-20  Danny Siu  <dsiu@adobe.com>
12831         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
12832         centered even when gnus-auto-center-summary is t
12834 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12836         * dns.el (dns-get-txt-answer): New function.
12837         (dns-read-txt): Ditto.
12838         (query-dns): Use it.
12840 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12842         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
12843         active for foreign groups even if the group level is higher than
12844         the specified value.
12846 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12848         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
12849         non-active groups.
12851         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
12853 2004-05-20  Magnus Henoch  <mange@freemail.hu>
12855         * dns.el (dns-read-type): Add support for SVR.  (small patch)
12857 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
12859         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
12860         (spam-crm114-header, spam-crm114-spam-switch)
12861         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
12862         (spam-crm114-positive-spam-header)
12863         (spam-crm114-database-directory, spam-list-of-processors)
12864         (spam-group-spam-processor-crm114-p)
12865         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
12866         (spam-generic-score, spam-list-of-checks)
12867         (spam-list-of-statistical-checks, spam-registration-functions)
12868         (spam-check-crm114-headers, spam-crm114-score)
12869         (spam-check-crm114, spam-crm114-register-with-crm114)
12870         (spam-crm114-register-spam-routine)
12871         (spam-crm114-unregister-spam-routine)
12872         (spam-crm114-register-ham-routine)
12873         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
12874         asjo@koldfront.dk (Adam Sjøgren).
12876         * gnus.el: Add spam-use-crm114.
12878         * spam.el (spam-list-of-processors, spam-registration-functions):
12879         Add spam-use-resend.
12880         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
12881         (spam-report-articles-gmane): Add doc fix.
12882         (spam-report-articles-resend, spam-report-resend-register-routine):
12883         Add wrappers around spam-report-resend-to.
12885         * spam-report.el (spam-report-resend-to, spam-report-resend):
12886         Add support for resending spam.
12887         (spam-report-gmane): Fix line length >80.
12889         * gnus.el (spam-process): Add spam-use-resend.
12891 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12893         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
12894         number of processed spam messages.
12895         (spam-ham-copy-or-move-routine): Return the number of processed
12896         ham messages.
12897         (spam-summary-prepare-exit): Use the above values to decide
12898         whether status messages shouled be displayed.
12900 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12902         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
12903         `rfc2047-encoding-function-alist' in order to avoid conflicting
12904         with the old version.
12905         (rfc2047-encode-region): Concatenate words containing non-ASCII
12906         characters in structured fields; don't encode space-delimited
12907         ASCII words even in unstructured fields; don't break words at
12908         char-category boundaries.
12909         (rfc2047-encode-1): New function.
12910         (rfc2047-encode): Use it; encode text so that it occupies the
12911         maximum width within 76-column; work correctly on Q encoding for
12912         iso-2022-* charsets.
12913         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
12914         sure not to break a line just after the header name.
12915         (rfc2047-b-encode-region): Removed.
12916         (rfc2047-b-encode-string): New function.
12917         (rfc2047-q-encode-region): Removed.
12918         (rfc2047-q-encode-string): New function.
12920         * mm-util.el (mm-replace-in-string): New function.
12922 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12924         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
12925         get it right.
12926         (gnus-inews-make-draft): Really.
12928 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
12930         * nnmh.el (nnmh-request-list-1): Don't check the link count
12931         before descending.  (small patch)
12933 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12935         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
12936         stuff.
12938         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
12939         on real group name.
12941         * gnus-art.el (gnus-signature-limit): Doc fix.
12943         * gnus-msg.el (gnus-inews-make-draft): Quote list.
12945 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12947         * gnus-draft.el (gnus-draft-send): Bind
12948         rfc2047-encode-encoded-words.
12950         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
12951         (rfc2047-encodable-p): Say that =? needs encoding.
12952         (rfc2047-encode-encoded-words): New variable.
12954         * gnus-group.el (gnus-group-select-group): Doc fix.
12956         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
12958         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
12959         to nil.
12961         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
12963         * nnheader.el (nnheader-get-lines-and-char): New function.
12965 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
12967         * gnus-msg.el (gnus-summary-followup-with-original): Document
12968         yanking of region when active.
12970 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12972         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
12973         groups if the group level is higher than the specified value.
12975 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
12977         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
12978         (gnus-group-jump-to-group): Added prefix argument using
12979         `gnus-group-jump-to-group-prompt'.  Query before jumping to
12980         non-active group.
12982         * compface.el (uncompface): Be verbose when changing
12983         `uncompface-use-external'.
12985         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
12986         handle manual section.
12988 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12990         * gnus-art.el (gnus-button-alist): Revert previous change.
12992 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
12994         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
12996 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12998         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
12999         whether backend can accept message.
13001         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
13003 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
13005         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
13006         Avoid creating directory when nntp-marks-is-evil is true.
13007         Reported by Reiner Steib.
13009 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
13011         * gnus-picon.el (gnus-picon-style): New variable.
13012         (gnus-picon-insert-glyph): Added optional `nostring' argument.
13013         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
13014         Jesper Harder <harder@ifa.au.dk>.
13016 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13018         * message.el (message-fill-field): Return point.
13019         (message-generate-headers): Go to end of field.
13021         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
13022         stuff for non-living groups.
13024 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
13026         * gnus-art.el (gnus-article-followup-with-original)
13027         (gnus-article-reply-with-original): gnus-mark-active-p ->
13028         gnus-region-active-p.
13030 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
13032         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
13033         only when there is spam or ham to be processed.
13035 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13037         * mail-source.el (mail-source-delete-crash-box): Refactor.
13038         (mail-source-fetch): Use it.
13039         (mail-source-fetch-file): Ditto.
13040         (mail-source-fetch-directory): Run postscript in loop.
13041         (mail-source-fetch-pop): Delete.
13042         (mail-source-fetch-maildir): Ditto.
13043         (mail-source-fetch-imap): Ditto.
13045         * imap.el (imap-authenticators): Comment out sasl.
13047         * message.el (message-skip-to-next-address): New function.
13048         (message-fill-header-address): Refactor.
13049         (message-fill-address): Use it.
13050         (message-delete-address): Use it.
13051         (message-fill-header-general): Refactor.
13052         (message-fill-field-address): Rename.
13053         (message-narrow-to-field): Find the start of the header.
13054         (message-header-format-alist): Don't pre-fill.
13055         (message-fill-header): Removed.
13056         (message-insert-header): New function.
13057         (message-shorten-references): Use it.
13059         * rfc2047.el (rfc2047-field-value): Strip props.
13061         * mail-parse.el (mail-header-make-address): New alias.
13063         * ietf-drums.el (ietf-drums-make-address): New function.
13065         * imap.el: Add compiler directives.
13067         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
13069         * gnus-art.el (article-decode-idna-rhs): Don't use
13070         message-idna-inside-rhs-p.
13072 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13074         * message.el (message-idna-inside-rhs-p): Removed.
13075         (message-idna-to-ascii-rhs-1): Use proper address parsing.
13077         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
13078         false positives.
13080 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
13082         * imap.el (imap-sasl-make-mechanisms): Use sasl.
13084 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13086         * nneething.el (nneething-file-name): Don't create spurious
13087         files.
13089         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
13090         (gnus-inews-do-gcc): Remove sleep.
13092         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
13093         part under point.
13095         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
13096         (gnus-agent-regenerate-group): Using nil messages aren't valid.
13098 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
13100         * spam.el (spam-summary-prepare-exit): Fixed (length).
13102 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13104         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
13105         as expired without moving it" message when there are spam
13106         messages left.
13108 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
13110         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
13111         header is not nil.
13113 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
13115         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
13116         nntp-possibly-create-directory, not nntp-possibly-change-group.
13117         (nntp-marks-changed-p): New arg SERVER.
13118         (nntp-request-update-info): Adjust caller.
13120 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
13122         * nntp.el (nntp-save-marks): Pass missing arg.
13124 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
13126         * nntp.el: Support marks.
13127         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
13128         (nntp-marks-modtime, nntp-marks-directory): New variables.
13129         (nntp-request-set-mark, nntp-request-update-info)
13130         (nntp-possibly-create-directory, nntp-marks-changed-p)
13131         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
13132         functions.
13134 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
13136         * gnus-score.el (gnus-score-insert-help): Use
13137         gnus-select-lowest-window.
13139         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
13140         appt-select-lowest-window and rename to gnus-select-lowest-window.
13142         * gnus.el: do.
13144 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13146         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
13147         encodings of MIME-encoded words, in order to improve
13148         interoperability with several broken MUAs.
13150 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13152         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
13153         tags, only when charsets are not specified in headers.
13154         (mm-inline-text-html-render-with-w3m): Ditto.
13156 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13158         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
13159         instead of MIME-decoded from fields when checking
13160         `gnus-article-address-banner-alist'.
13162 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
13164         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
13165         description rather than subject.
13167 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13169         * gnus.el (gnus-version-number): Bump.
13171 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13173         * gnus.el: No Gnus v0.2 is released.
13175 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13177         * gnus-agent.el (gnus-agent-read-agentview): Inline
13178         gnus-uncompress-range.
13180 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13182         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
13183         `exec-installed-p'.
13185 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13187         * gnus.el (spam-process, spam-autodetect-methods): Add
13188         bsfilter and bsfilter-headers.
13190         * spam.el (spam-bsfilter): New customize group.
13191         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
13192         (spam-bsfilter-header, spam-bsfilter-probability-header)
13193         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
13194         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
13195         (spam-bsfilter-database-directory): New options.
13196         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
13197         (spam-list-of-statistical-checks, spam-registration-functions):
13198         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
13199         (spam-bsfilter-score): New command.
13200         (spam-check-bsfilter-headers, spam-check-bsfilter)
13201         (spam-bsfilter-register-with-bsfilter)
13202         (spam-bsfilter-register-spam-routine)
13203         (spam-bsfilter-unregister-spam-routine)
13204         (spam-bsfilter-register-ham-routine)
13205         (spam-bsfilter-unregister-ham-routine): New functions.
13206         (spam-generic-score): Support bsfilter; Accept an optional argument
13207         to recalcurate spam score even if scoring header has already been
13208         added.
13209         (spam-bogofilter-score, spam-spamassassin-score): Accept an
13210         optional argument to recalcurate spam score even if scoring header
13211         has already been added.
13213 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
13215         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
13216         strings!  Reported by David D. Smith <davidsmith@acm.org>.
13217         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
13218         link is missing.
13220 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
13222         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
13223         (html2text-get-attr): Rewrite.
13225         * message.el (message-setup-1): Remove redundant put-text-property
13226         on mail-header-separator.
13228 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
13230         * gnus-registry.el (gnus-registry-cache-whitespace)
13231         (gnus-registry-action, gnus-registry-spool-action)
13232         (gnus-registry-split-fancy-with-parent): Change message levels
13233         from 5 to 3 or 7, as needed.
13235         * spam.el (spam-summary-prepare-exit)
13236         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
13237         (spam-split, spam-find-spam, spam-log-undo-registration)
13238         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
13239         level from 5 to 6.
13241 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13243         * gnus-ems.el: Autoload appt-select-lowest-window (revert
13244         2004-03-04 change).
13246 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
13248         * sieve-manage.el (sieve-manage-open):
13249         * nnweb.el (nnweb-insert-html):
13250         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
13251         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
13252         * nnspool.el (nnspool-request-group):
13253         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
13254         * nnml.el (nnml-request-update-info):
13255         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
13256         (nnmh-request-create-group, nnmh-update-gnus-unreads):
13257         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
13258         (nnimap-request-set-mark):
13259         * nnfolder.el (nnfolder-request-update-info):
13260         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
13261         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
13262         * gnus-uu.el (gnus-uu-find-articles-matching):
13263         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
13264         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
13265         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
13266         * gnus-nocem.el (gnus-nocem-scan-groups):
13267         * gnus-int.el (gnus-start-news-server):
13268         * gnus-group.el (gnus-group-make-kiboze-group)
13269         (gnus-group-browse-foreign-server):
13270         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
13271         Use mapc when appropriate.
13273 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
13275         FIXME: Make separate entries for each person.
13277         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
13278         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
13279         <shields@msrl.com>:
13281         * spam.el (spam-necessary-extra-headers): Get the extra headers we
13282         may need for spam sorting and scoring.
13283         (spam-user-format-function-S): Add user format function suitable for
13284         general use.
13285         (spam-article-sort-by-spam-status): Add sorting function for summary
13286         sorting.
13287         (spam-extra-header-to-number): Add function to get a score from a
13288         header.
13289         (spam-summary-score): Add function to  get a numeric score from the
13290         headers.
13291         (spam-generic-score): Fix function doc, was in wrong place.
13292         (spam-initialize): Take symbols when it's run, and install the
13293         extra headers that spam-necessary-extra-headers thinks we need.
13295 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
13297         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
13298         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
13300 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
13302         * gnus-sum.el (gnus-set-global-variables)
13303         (gnus-build-all-threads, gnus-get-newsgroup-headers)
13304         (gnus-article-get-xrefs, gnus-summary-best-group)
13305         (gnus-summary-next-article, gnus-summary-enter-digest-group)
13306         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
13307         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
13308         Use with-current-buffer.
13310 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
13312         * spam.el (spam-summary-prepare-exit): Simplify logic.
13313         (spam-fetch-article-header): Read the article header if it's not
13314         available.
13315         (spam-list-articles): Simplify logic.
13316         (spam-filelist-register-routine): Fix bug with unregister-list.
13318         * gnus-registry.el: Fix comments at beginning.
13320 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
13322         * message.el (message-cater-to-broken-inn): Remove.
13323         (message-shorten-references): Make sure the total folded length of
13324         References is shorter than 998 characters to cater to a bug in INN
13325         2.3.  Also, don't pretend that references aren't folded -- this
13326         hasn't worked for a while.
13328 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13330         * gnus-agent.el (gnus-agentize):
13331         gnus-agent-send-mail-real-function no longer set to current value
13332         of message-send-mail-function but rather a lambda that calls
13333         message-send-mail-function.  The change makes the agent real-time
13334         responsive to user changes to message-send-mail-function.
13336 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13338         * legacy-gnus-agent.el
13339         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
13340         help from Florian Weimer <fw@deneb.enyo.de>
13342 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13344         * nnmail.el (nnmail-cache-insert): Revert last change.
13346 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13348         * nnmail.el (nnmail-cache-insert): Always check whether
13349         nnmail-cache-ignore-groups matches a group name.
13351 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
13353         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
13354         (spam-find-spam, spam-log-processing-to-registry)
13355         (spam-log-registered-p, spam-log-unregistration-needed-p)
13356         (spam-log-undo-registration): Use gnus-message instead of
13357         gnus-error, none of these errors are fatal.
13359         * gnus-registry.el (gnus-registry-clean-empty-function)
13360         (gnus-registry-clean-empty): Remove only empty entries without
13361         extra data.
13363 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
13365         * spam-stat.el (spam-stat-buffer-change-to-spam)
13366         (spam-stat-buffer-change-to-non-spam): Change (error) to
13367         (gnus-message 8) invocation.
13369 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13371         * nntp.el (nntp-via-netcat-command): New variable.
13372         (nntp-via-netcat-switches): New variable.
13373         (nntp-open-via-rlogin-and-netcat): New function.
13374         (nntp-open-connection-function): Doc fix.
13375         (nntp-telnet-command): Doc fix.
13376         (nntp-end-of-line): Doc fix.
13377         (nntp-via-rlogin-command): Doc fix.
13378         (nntp-via-user-name): Doc fix.
13379         (nntp-via-address): Doc fix.
13381 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13383         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
13384         error in Emacs 21.1.
13386 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
13388         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
13390 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13392         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
13393         (gnus-agent-with-refreshed-group): New macro.
13394         (gnus-agent-rename-group): New function.
13395         (gnus-agent-delete-group): New function.
13396         (gnus-agent-save-group-info): Use gnus-command-method when
13397         `method' parameter is nil.  Don't write nil entries into the
13398         active file.
13399         (gnus-agent-get-group-info): New function.
13400         (gnus-agent-fetch-articles): Use
13401         gnus-agent-update-files-total-fetched-for to increment disk space
13402         used.
13403         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
13404         gnus-agent-update-view-total-fetched-for to increment disk space
13405         used.
13406         (gnus-agent-get-local): Added optional parameters to avoid calling
13407         gnus-group-real-name and gnus-find-method-for-group.
13408         (gnus-agent-set-local): Delete stored entry if either min, or max,
13409         are nil.
13410         (gnus-agent-fetch-session): Reworded error/quit messages.  On
13411         quit, use gnus-agent-regenerate-group to record existence of any
13412         articles fetched to disk before the quit occurred.
13413         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
13414         gnus-agent-update-view-total-fetched-for, and
13415         gnus-agent-update-files-total-fetched-for to decrement disk space
13416         used.
13417         (gnus-agent-retrieve-headers): Use
13418         gnus-agent-update-view-total-fetched-for to increment disk space
13419         used.
13420         (gnus-agent-regenerate-group): Replace gnus-group-update-group
13421         with gnus-agent-update-files-total-fetched-for to decrement disk
13422         space and fresh group buffer.
13423         (gnus-agent-inhibit-update-total-fetched-for): New variable.
13424         (gnus-agent-need-update-total-fetched-for): New variable.
13425         (gnus-agent-update-files-total-fetched-for): New function.
13426         (gnus-agent-update-view-total-fetched-for): New function.
13427         (gnus-agent-total-fetched-for): New function.
13429         * gnus-cache.el (gnus-cache-save-buffers): Use
13430         gnus-cache-update-overview-total-fetched-for to change disk space
13431         used by this group.
13432         (gnus-cache-possibly-enter-article): Use
13433         gnus-cache-update-file-total-fetched-for to increment disk space
13434         used by this group.
13435         (gnus-cache-possibly-remove-article): Use
13436         gnus-cache-update-file-total-fetched-for to decrement disk space
13437         used by this group.
13438         (gnus-cache-generate-nov-databases): Purge total fetched cache.
13439         (gnus-cache-rename-group): New function.
13440         (gnus-cache-delete-group): New function.
13441         (gnus-cache-inhibit-update-total-fetched-for): New variable.
13442         (gnus-cache-need-update-total-fetched-for): New variable.
13443         (gnus-cache-with-refreshed-group): New macro.
13444         (gnus-cache-update-file-total-fetched-for): New function.
13445         (gnus-cache-update-overview-total-fetched-for): New function.
13446         (gnus-cache-rename-group-total-fetched-for): New function.
13447         (gnus-cache-delete-group-total-fetched-for): New function.
13448         (gnus-cache-total-fetched-for): New function.
13450         * gnus-group.el: Require gnus-sum and autoload functions to
13451         resolve warnings when gnus-group.el compiled alone.
13452         (gnus-group-line-format): Documented new %F.
13453         (size of Fetched data) group line format; identifies disk space
13454         used by agent and cache.
13455         (gnus-group-line-format-alist): Defined new F format.
13456         (gnus-total-fetched-for): New function.
13457         (gnus-group-delete-group): No longer update
13458         gnus-cache-active-altered as gnus-request-delete-group now keeps
13459         the cache in sync.
13460         (gnus-group-list-active): Let the agent store a server's active
13461         list if currently plugged.
13463         * gnus-int.el (gnus-request-delete-group):
13464         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
13465         local disk in sync with the server.
13466         (gnus-request-rename-group):
13467         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
13468         local disk in sync with the server.
13470         * gnus-start.el (gnus-get-unread-articles):
13471         Cosmetic simplification to logic.
13473         * gnus-util.el (gnus-rename-file): New function.
13475 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
13477         * mm-util.el (mm-image-load-path): Handle nil in load-path.
13479 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
13481         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
13482         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
13484 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
13486         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
13487         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
13489 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
13491         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
13493 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
13495         * spam.el (spam-set-difference): Add function to replace
13496         gnus-set-difference in spam.el.
13497         (spam-summary-prepare-exit): Use spam-set-difference.
13499 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
13501         * gnus-registry.el (gnus-registry-cache-file): Update to use
13502         gnus-dribble-directory OR gnus-home-directory OR ~.
13503         (gnus-registry-split-fancy-with-parent): Fix doc.
13505 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13507         * message.el (message-exchange-point-and-mark): Use
13508         message-mark-active-p.  Suggested by Jesper Harder
13509         <harder@ifa.au.dk>.
13511 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13513         * message.el (message-exchange-point-and-mark): Don't activate
13514         region if it was inactive.  Suggested by Hiroshi Fujishima
13515         <pooh@nature.tsukuba.ac.jp>.
13517 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13519         * gnus-art.el (article-display-face): Display Faces in the same
13520         order as X-Faces.
13522 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13524         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
13526 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13528         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
13529         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
13530         (gnus-article-mime-hierarchy): Remove.
13531         (gnus-article-mime-hierarchy-next): Remove.
13532         (gnus-article-mode): Revert 2004-03-19 change.
13533         (gnus-article-setup-buffer): Revert 2004-03-19 change.
13534         (gnus-insert-mime-button): Revert 2004-03-19 change.
13535         (gnus-mime-accumulate-hierarchy): Remove.
13536         (gnus-mime-enter-multipart): Remove.
13537         (gnus-mime-leave-multipart): Remove.
13538         (gnus-mime-display-part): Revert 2004-03-19 change.
13539         (gnus-mime-display-alternative): Revert 2004-03-19 change.
13541         * mml.el (mml-preview): Revert 2004-03-19 change.
13543 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
13545         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
13547 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13549         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
13550         t while entering a file name using the mm-with-multibyte macro.
13551         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13553         * mm-util.el (mm-with-multibyte): New macro.
13555 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13557         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
13558         user option.
13559         (gnus-mime-multipart-functions): Doc and customization fix.
13560         (gnus-article-mime-hierarchy): New variable.
13561         (gnus-article-mime-hierarchy-next): New variable.
13562         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
13563         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
13564         gnus-article-mime-hierarchy-next to nil.
13565         (gnus-insert-mime-button): Show hierarchy numbers.
13566         (gnus-mime-accumulate-hierarchy): New function.
13567         (gnus-mime-enter-multipart): New function.
13568         (gnus-mime-leave-multipart): New function.
13569         (gnus-mime-display-part): Recompute hierarchical MIME structure.
13570         (gnus-mime-display-alternative): Show hierarchy numbers.
13572         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
13573         gnus-article-mime-hierarchy-next to nil.
13575 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
13577         * dns.el: Don't require gnus-xmas.
13579 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
13581         * mml.el (mml-generate-mime-1): Don't use format=flowed with
13582         inline PGP.
13583         (mml-menu): Disable mml-quote-region if mark is inactive.
13585 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13587         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
13588         when the group's active is not available.
13590 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13592         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
13593         error.
13595 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
13597         * imap.el (imap-store-password): New variable.
13598         (imap-interactive-login): Use it.
13599         Suggested by Mark Plaksin <happy@mcplaksin.org>.
13601 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13603         * gnus-art.el (gnus-article-read-summary-keys): Restore new
13604         window-start and hscroll to summary window.
13606 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13608         * gnus-start.el (gnus-convert-old-newsrc): Only write the
13609         conversion message to newsrc-dribble when an actual conversion is
13610         performed.
13612 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
13614         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
13616 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13618         * mm-decode.el (mm-complicated-handles): New function reviving
13619         former definition of mm-multiple-handles.
13621         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
13622         (gnus-mime-delete-part): Use it.
13624 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13626         * gnus-agent.el (gnus-agent-read-local): Bind
13627         nnheader-file-coding-system to gnus-agent-file-coding-system to
13628         avoid the implicit assumption that they will always be equal.
13629         (gnus-agent-save-local): Bind buffer-file-coding-system, not
13630         coding-system-for-write, as the with-temp-file macro first prints
13631         to a buffer then saves the buffer.
13633 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13635         * gnus-art.el (gnus-article-edit-part): New function.
13636         (gnus-mime-save-part-and-strip): Use it; do query instead of
13637         signaling an error; don't use mm-multiple-handles.
13638         (gnus-mime-delete-part): Ditto.
13640 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13642         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
13643         old file versions.
13644         (gnus-group-prepare-hook): Removed function that converted list
13645         form of gnus-agent-expire-days to group properties.
13647         * gnus-int.el: Autoload gnus-agent-regenerate-group.
13648         (gnus-request-accept-article): Re-indented.
13650         * gnus-start.el (gnus-convert-old-newsrc): Registered new
13651         converters to handle old agent file formats.  Added logic for a
13652         "backup before upgrading warning".
13653         (gnus-convert-mark-converter-prompt): Developers can mark
13654         functions as needing (default), or not needing,
13655         gnus-convert-old-newsrc's "backup before upgrading warning".
13656         (gnus-convert-converter-needs-prompt): Tests whether the user
13657         should be protected from potentially irreversable changes by the
13658         function.
13660         * legacy-gnus-agent.el: New.  Provides converters that are only
13661         loaded when gnus-convert-old-newsrc needs to call them.
13663 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13665         * mail-source.el (mail-source-touch-pop): Doc fix.
13667         * message.el (message-smtpmail-send-it): Doc fix.
13669 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
13671         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
13673         * nnmail.el (nnmail-split-fancy): do.
13675         * gnus-kill.el (gnus-kill, gnus-execute): do.
13677 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
13679         * gnus-sum.el (gnus-widget-reversible-match)
13680         (gnus-widget-reversible-to-internal)
13681         (gnus-widget-reversible-to-external): New functions.
13682         (gnus-widget-reversible): New widget.
13683         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
13685 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
13687         * gnus-sum.el (gnus-thread-sort-functions)
13688         (gnus-article-sort-functions): Document `(not F)' items.
13690 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
13692         * spam.el (spam-use-gmane-xref): Add new backend.
13693         (spam-gmane-xref-spam-group): Add variable to control the name of the
13694         Gmane spam group.
13695         (spam-blackhole-servers, spam-blackhole-good-server-regex)
13696         (spam-regex-headers-spam, spam-regex-headers-ham)
13697         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
13698         (spam-list-of-checks): Add spam-use-gmane-xref to list of
13699         backends and checks.
13700         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
13702         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
13703         an autodetect method.
13705 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13707         * gnus-int.el (gnus-request-accept-article): Inform the agent that
13708         articles are being added to a group.
13709         (gnus-request-replace-article): Inform the agent that articles
13710         need to be uncached as the cached contents are no longer valid.
13712 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13714         * binhex.el: Don't autoload executable-find.
13716         * canlock.el: Don't autoload mail-fetch-field.
13718         * gnus-ems.el: Don't autoload appt-select-lowest-window.
13720         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
13721         rmail-dont-reply-to and rmail-output.
13723         * gnus-score.el: Don't autoload ffap-string-at-point.
13725         * gnus-setup.el: Don't autoload sc-cite-original.
13727         * imap.el: Don't autoload base64-decode-string,
13728         base64-encode-string and md5.
13730         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
13731         and rmail-msg-restore-non-pruned-header.
13733         * mm-decode.el: Don't autoload executable-find.
13735         * mm-url.el: Don't autoload executable-find.
13737         * mm-view.el: Don't autoload diff-mode.
13739         * nndb.el: Don't autoload news-reply-mode, news-setup,
13740         cancel-timer and telnet.
13742         * password.el: Don't autoload run-at-time for Emacs.
13744         * sha1-el.el: Don't autoload executable-find.
13746         * sieve-mode.el: Don't autoload c-mode.
13748         * uudecode.el: Don't autoload executable-find.
13750 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13752         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
13753         (gnus-agent-possibly-alter-active): Avoid null in numeric
13754         comparison.
13755         (gnus-agent-set-local): Refuse to save null in local object table.
13756         (gnus-agent-regenerate-group): The REREAD parameter can now be a
13757         list of articles that will be marked as unread.
13759 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13761         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
13763 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
13765         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
13766         language tags.
13768 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
13770         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
13771         Don't bind "obarray".
13773         * gnus-sum.el (gnus-thread-sort-functions): Added
13774         `gnus-thread-sort-by-most-recent-number' and
13775         `gnus-thread-sort-by-most-recent-date'.
13776         Reported by Kai Grossjohann <kai@emptydomain.de>.
13778 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13780         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
13782 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
13784         * gnus-cus.el (gnus-agent-customize-category): Removed
13785         ignore-errors macro reference that required cl to be loaded at
13786         run-time.
13788         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
13789         single-interval range of the form (min . max).  Previously the
13790         range had to look like ((min . max)).  Likewise, return
13791         (min . max) rather than ((min . max)).
13792         (gnus-range-map): Use gnus-range-normalize to accept
13793         single-interval range.
13795         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
13796         the cache, but not the agent, now appear with their usual face.
13798 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13800         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
13801         w3m-safe-url-regexp variable buffer-local.
13803         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
13805 2004-02-27  Simon Josefsson  <jas@extundo.com>
13807         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
13808         gnus-group-real-prefix.
13809         (gnus-summary-move-article): Use it, instead of
13810         gnus-group-real-prefix.
13812 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13814         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
13815         w3m-safe-url-regexp variable buffer-local and set it as the value
13816         of mm-w3m-safe-url-regexp.
13818         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
13820         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
13821         parsing gnus-posting-styles when the message is not for replying.
13823         * nnrss.el (nnrss-opml-export): Use
13824         mm-set-buffer-file-coding-system instead of
13825         set-buffer-file-coding-system.
13827 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
13829         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
13830         of checkdoc.el).
13831         * nnrss.el: do.
13832         * gnus-mlspl.el: do.
13833         * gnus-ml.el: do.
13834         * gnus-srvr.el: do.
13836         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
13838 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
13840         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
13841         Corrections to custom-manual links.
13843         * gnus-art.el (gnus-article): Ditto.
13845         * mm-decode.el (mime-display, mime-security): Ditto.
13847 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
13849         * flow-fill.el: Typo.
13851 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
13853         * spam-wash.el: New file.
13855 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
13857         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
13859 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
13861         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
13862         to be run with new-articles as LIST1, not LIST2.
13863         (spam-registration-functions): Add spam-use-ham-copy as a nil
13864         registration backend.
13866 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
13868         * spam-stat.el (spam-stat-washing-hook): New option.
13869         (spam-stat-buffer-words): Use it.
13870         (spam-stat-process-directory, spam-stat-test-directory): Use
13871         insert-file-contents-literally.
13872         (spam-stat-coding-system): New variable.
13873         (spam-stat-load, spam-stat-save): Use it.
13875 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13877         * spam-report.el (spam-report-plug-agent): Quote
13878         spam-report-url-to-file and spam-report-url-ping-plain.
13880 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
13882         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
13883         / in mailto URLs.
13885 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
13887         * spam-report.el (spam-report-process-queue): Fix interactive use.
13888         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
13889         (spam-report-unplug-agent): Doc fixes.
13890         (spam-report-url-ping-mm-url, spam-report-url-to-file)
13891         (spam-report-agentize, spam-report-deagentize): Autoload
13893 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13895         * message.el (message-setup-fill-variables): Add mml tags to
13896         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
13897         <ajk@iu.edu>.
13898         (message-mode): Don't modify paragraph-separate there.
13900 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13902         * compface.el (uncompface-use-external): Default to undecided.
13903         (uncompface-use-external-threshold): New variable.
13904         (uncompface-float-time): New macro.
13905         (uncompface): Determine whether to use the external decoder if
13906         uncompface-use-external is undecided.
13908 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13910         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
13911         after images.
13913         * gnus-art.el (gnus-mime-display-single): Remove dead code.
13915 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
13917         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
13919         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
13921         * gnus-sum.el (gnus-summary-limit-to-age)
13922         (gnus-summary-limit-children): do.
13924         * gnus-int.el (gnus-request-scan): do.
13926         * gnus-group.el (gnus-group-suspend): do.
13928         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
13930         * gnus-cite.el (gnus-cite-parse-attributions): do.
13932         * gnus-agent.el (gnus-summary-set-agent-mark)
13933         (gnus-agent-regenerate-group): do.
13935         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
13937         * binhex.el (binhex-decode-region-internal): do.
13939 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13941         * gnus-fun.el (gnus-face-properties-alist): New user option.
13942         (gnus-display-x-face-in-from): Use it.
13944         * gnus-art.el (article-display-face): Ditto.
13946         * compface.el (uncompface-use-external): Default to nil.
13948 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
13950         * nntp.el (nntp-erase-buffer): New function.
13951         (nntp-retrieve-data, nntp-send-command)
13952         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
13953         (nntp-possibly-change-group): Use it.
13955         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
13956         with-current-buffer.
13958 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
13960         * compface.el: Merge the ELisp-based uncompface program.
13961         (compface): New customization group.
13962         (uncompface-use-external): New user option.
13963         (uncompface): Call uncompface-internal if uncompface-use-external
13964         is nil.
13965         (uncompface-internal): New function.  Note that there are also
13966         some other functions and variables added for this function.
13968 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
13970         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
13971         if necessary.
13973 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
13975         * spam-report.el (spam-report-unplug-agent)
13976         (spam-report-plug-agent, spam-report-deagentize)
13977         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
13978         Add support for the Agent in spam-report: when unplugged, report to a
13979         file; when plugged, submit all the requests.
13981         * spam.el (spam-register-routine): Fix message about
13982         registration.
13984 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
13986         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
13987         dependencies.
13988         (rfc2047-encode): Use it.
13990         * gnus-art.el (gnus-button-marker-list): Move before first
13991         reference.
13993         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
13994         (imap-parse-body): Fix format string mismatch.
13996         * gnus-score.el (gnus-summary-increase-score): do.
13998         * nnrss.el (nnrss-close): New function.
14000 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
14002         * nnrss.el (nnrss-make-filename): New function.
14003         (nnrss-request-delete-group, nnrss-read-server-data)
14004         (nnrss-save-server-data, nnrss-read-group-data)
14005         (nnrss-save-group-data): Use it.
14006         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
14007         (nnrss-read-server-data, nnrss-read-group-data): Use load.
14008         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
14010 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
14012         * mml.el (mml-compute-boundary-1): Don't uncompress files.
14014 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
14016         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
14017         files.
14019         * message.el (message-generate-headers-first): Don't quote nil
14020         and t in docstrings.
14022         * imap.el (imap-id): do.
14024         * gnus-agent.el (gnus-agent-consider-all-articles)
14025         (gnus-agent-queue-mail): do.
14027 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
14029         * spam-report.el (spam-report-process-queue): New function.
14030         Process requests from `spam-report-requests-file'.
14031         (spam-report-process-queue): Doc fix.
14033 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
14035         * spam.el (spam-register-routine)
14036         (spam-log-processing-to-registry, spam-log-registered-p)
14037         (spam-log-unregistration-needed-p, spam-log-undo-registration):
14038         Change "check" to "spam-check" for semi-clarity.
14040 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
14042         * pop3.el: Require nnheader.
14044         * mml-smime.el: Require cl.  Autoload message-fetch-field.
14046         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
14048         * gnus-picon.el: Require cl.
14050         * gnus-fun.el: Require gnus-ems and gnus-util.
14052         * gnus.el (gnus-method-to-server): Move defsubst before first use.
14054         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
14056         * gnus-art.el (gnus-article-edit-mode): Define before first
14057         reference.
14059 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
14061         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
14062         (gnus-uu-post-encoded): Use point-at-bol.
14064         * gnus-topic.el (gnus-group-active-topic-p): do.
14066         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
14068         * gnus-group.el (gnus-group-kill-region): do.
14070         * gnus-art.el (article-date-ut): do.
14072         * message.el (message-fetch-field): Remove redundant
14073         case-fold-search binding.
14074         (message-narrow-to-field): Simplify.
14076 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
14078         * spam.el (spam-directory): Derive from `gnus-directory'.
14080         * spam-report.el (spam-report-url-to-file)
14081         (spam-report-requests-file): New function and variable for offline
14082         reporting.
14083         (spam-report-url-ping-function): Add `spam-report-url-to-file'
14084         and user defined function.
14085         (spam-report-url-ping-mm-url): Remove doubled slash.
14087 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
14089         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
14091 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
14093         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
14094         format string mismatch.
14096         * sieve.el (sieve-deactivate-all): do.
14098         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
14100         * nnlistserv.el (nnlistserv-kk-wash-article): do.
14102         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
14104         * mm-bodies.el (mm-7bit-chars): Don't include \r.
14106 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
14108         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
14109         the list of checks.
14111 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
14113         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
14114         padding.
14116 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
14118         * mm-view.el (mm-fill-flowed): New variable.
14119         (mm-inline-text): Use it.
14121 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
14123         * spam.el (spam-spamassassin-register-ham-routine)
14124         (spam-spamassassin-register-spam-routine): Fix function names.
14126 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14128         * gnus.el (gnus-tmp-grouplens): Remove.
14129         (gnus-summary-line-format): Remove grouplens.
14131         * gnus-group.el (gnus-group-line-format): Ditto.
14133         * gnus-spec.el (gnus-format-specs): Ditto.
14134         (gnus-update-format-specifications): Flush the group format spec
14135         cache if there's the grouplens stuff.
14136         (gnus-parse-simple-format): Replace %l with the empty string.
14138 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
14140         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
14141         omission.
14143 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14145         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
14146         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14148 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
14150         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
14151         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
14152         New macros and functions.
14153         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
14154         Handle > NLINK_MAX messages.
14155         * nnmaildir.el (nnmaildir-request-set-mark): Use
14156         nnmaildir--emlink-p and nnmaildir--eexist-p.
14158 2004-01-25  Alex Schroeder  <alex@gnu.org>
14160         * spam-stat.el (spam-stat-process-directory-age): New option.
14161         (spam-stat-process-directory): Use it.
14163 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
14165         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
14166         (spam-stat-save): Accept prefix argument.
14168 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
14170         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
14171         links" error.
14173 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
14175         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
14176         compatibility with old .newsrc.eld files.
14178         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
14180         * gnus-start.el (gnus-1): do.
14182         * gnus-group.el (gnus-group-line-format-alist): do.
14184         * gnus.el (gnus-use-grouplens, gnus-visual): do.
14186         * gnus-gl.el: Remove.
14188 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14190         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
14191         marks consisting of a single range {for example, (3 . 5)} rather
14192         than a list of a single range { ((3 . 5)) }.
14194 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
14196         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
14197         with-current-buffer.
14198         (spam-stat-store-current-buffer): Use insert-buffer-substring to
14199         avoid consing a string.
14201         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
14202         Remove obsolete entries for big5 and gb2312.
14204 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14206         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
14207         uncompressed list.
14209 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
14211         * spam-stat.el (spam-stat-strip-xref): New function.
14212         (spam-stat-process-directory): Use it.
14214         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
14215         here -- it's done in message-fetch-field.
14217 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14219         * gnus-agent.el (gnus-agent-queue-mail)
14220         (gnus-agent-prompt-send-queue): New variables.
14221         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
14222         * gnus-draft.el (gnus-group-send-queue): Pass the group name
14223         "nndraft:queue" along to gnus-draft-send.  Use
14224         gnus-agent-prompt-send-queue.
14225         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
14226         is "nndraft:queue".  Suggested by Gaute Strokkenes
14227         <gs234@srcf.ucam.org>
14229         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
14230         (agent-enable-undownloaded-faces): Added.
14231         (gnus-agent-cat-groups): Use eval-and-compile, not
14232         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
14233         method of gnus-agent-cat-groups even when the buffer has been
14234         evaled.
14235         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
14236         delete gnus-agent-save-active-1.
14237         (gnus-agent-save-groups): Deleted.  Identical to
14238         gnus-agent-save-active.
14239         (gnus-agent-write-active): No longer adjust agent's copy of active
14240         file as agent's adjustments are now stored in their own
14241         file.  Removed optional parameter.
14242         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
14243         servers.  Add use of min/max range limits from server's local
14244         file.
14245         (gnus-agent-save-alist): Removed unused optional argument.
14246         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
14247         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
14248         (gnus-agent-set-local): A per-server file that keeps min/max range
14249         limits for articles known to the agent.  Provides a fast mechanism
14250         for altering many active ranges.
14251         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
14252         active file (local makes it unnecessary).
14253         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
14255         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
14256         (agent-enable-undownloaded-faces): Added.
14258         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
14259         disable it when sending to "nndraft:queue".
14260         (gnus-group-send-queue): Add safety check to avoid sending queue
14261         when unplugged.
14263         * gnus-group.el (gnus-group-catchup): Use new
14264         gnus-sequence-of-unread-articles, not
14265         gnus-list-of-unread-articles, to avoid exhausting memory with huge
14266         numbers of articles.  Use gnus-range-map to avoid having to
14267         uncompress the unread list.
14268         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
14269         Fixed invalid ange-ftp reference.
14271         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
14272         (gnus-sorted-range-intersection): Intersection of two ranges
14273         without requiring that they first be uncompressed.
14275         * gnus-start.el (gnus-activate-group): Unless blocked by the
14276         caller, possibly expand the active range to include both cached
14277         and agentized articles.
14278         (gnus-convert-old-newsrc): Rewrote in anticipation of having
14279         multiple version-dependent converters.
14280         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
14281         gnus-agent-save-active.
14282         (gnus-save-newsrc-file): Save dirty agent range limits.
14284         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
14285         gnus-agent-possibly-alter-active.
14286         (gnus-adjust-marked-articles): Faster handling of simple lists
14288 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
14290         * spam-stat.el (spam-stat-test-directory): New optional argument
14291         displays a list of files detected.  Suggested by Andrew Cohen
14292         <cohen@andy.bu.edu>.
14293         (spam-stat-buffer-words-with-scores): Don't narrow and change
14294         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
14296 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
14298         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
14299         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
14300         (spam-spamassassin-arguments)
14301         (spam-spamassassin-spam-flag-header)
14302         (spam-spamassassin-positive-spam-flag-header)
14303         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
14304         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
14305         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
14306         (spam-list-of-processors, spam-list-of-checks)
14307         (spam-list-of-statistical-checks, spam-registration-functions)
14308         (spam-check-spamassassin-headers, spam-check-spamassassin)
14309         (spam-spamassassin-score)
14310         (spam-spamassassin-register-with-sa-learn)
14311         (spam-spamassassin-register-spam-routine)
14312         (spam-spamassassin-register-ham-routine)
14313         (spam-assassin-register-spam-routine)
14314         (spam-assassin-register-ham-routine): Add SpamAssassin support.
14315         (spam-bogofilter-score): Fix to show article before scoring.
14317 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
14319         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
14320         default scoring function.
14321         (spam-generic-score): Call spam-spamassassin-score if
14322         spam-use-spamassassin or spam-use-spamassassin-headers is on;
14323         spam-bogofilter-score otherwise.
14325         * gnus.el (spam-process, spam-autodetect-methods): Add
14326         spamassassin and spamassassin-headers.
14328 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
14330         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14331         Suppress unnecessary messages.
14333 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
14335         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
14336         make-hash-table.
14338 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14340         * canlock.el (base64-encode-string): Don't autoload it.
14342 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14344         * run-at-time.el: Remove useless (require 'itimer),
14345         eval-and-compile and (featurep 'xemacs).
14347 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
14349         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
14350         GROUP is a virtual group.
14352 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
14354         * gnus.el: Autoload `message-y-or-n-p'.
14356 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
14358         * pgg-parse.el: Remove unnecessary (require 'custom).
14360         * pgg-def.el: do.
14362         * nnmail.el: do.
14364         * gnus-undo.el: do.
14366         * gnus-picon.el: do.
14368         * gnus-util.el: do.
14370 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
14372         * gnus-sum.el (gnus-pick-line-number): Add autoload.
14374 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14376         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
14377         handle, as well as a list.
14379         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
14380         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
14381         (mm-w3m-cid-retrieve): Simplify.
14383 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
14385         * message.el (message-kill-to-signature): Allow prefix arg to
14386         specify number of lines to keep before signature.
14388 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
14390         * message.el (message-kill-to-signature): Change docstring.
14392 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14394         * canlock.el: Always require sha1-el.
14395         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
14397         * message.el: Autoload sha1 only when compiling.
14399 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14401         * message.el (message-canlock-generate): Require sha1-el.
14403 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
14405         * message.el (message-expand-name): Silence the byte compiler.
14407 2004-01-13  Simon Josefsson  <jas@extundo.com>
14409         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
14410         Invoke gnus-score-mode.  Reported by
14411         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14413         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
14414         Jim Blandy <jimb@redhat.com> (tiny change).
14416 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
14418         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
14420 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
14422         * spam.el (spam-get-article-as-string): Update to use
14423         gnus-request-article-this-buffer, much simpler.
14424         (spam-get-article-as-buffer): Remove.
14426 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
14428         * message.el (message-expand-name): Use EUDC if the user uses that.
14430 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
14432         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
14433         character for the encoding to avoid consing a string.
14435         * rfc2047.el (rfc2047-decode-string): Don't cons a string
14436         unnecessarily.
14438         * mm-util.el (mm-replace-chars-in-string): Remove.
14440         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
14441         of mm-replace-chars-in-string.
14443 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
14445         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
14447         * mm-util.el (mm-subst-char-in-string): Support inplace.
14449         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
14450         a new string in every iteration.  Use shy groups.
14452 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
14454         * gnus-srvr.el (gnus-browse-unsubscribe-group):
14455         * gnus-soup.el (gnus-soup-group-brew):
14456         * gnus-msg.el (gnus-put-message):
14457         * gnus-move.el (gnus-group-move-group-to-server):
14458         * gnus-kill.el (gnus-batch-score):
14459         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
14460         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
14461         (gnus-group-update-group, gnus-group-read-group)
14462         (gnus-group-make-group, gnus-group-make-help-group)
14463         (gnus-group-make-archive-group, gnus-group-make-directory-group)
14464         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
14465         (gnus-group-sort-by-unread, gnus-group-catchup)
14466         (gnus-group-unsubscribe-group, gnus-group-kill-group)
14467         (gnus-group-yank-group, gnus-group-set-info)
14468         (gnus-group-list-groups):
14469         * gnus.el (gnus-generate-new-group-name):
14470         * gnus-delay.el (gnus-delay-send-queue):
14471         * nnvirtual.el (nnvirtual-catchup-group):
14472         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
14473         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
14474         (gnus-group-prepare-topics, gnus-topic-check-topology):
14475         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
14476         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
14477         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
14478         (gnus-group-make-articles-read):
14479         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
14480         (gnus-group-change-level, gnus-kill-newsgroup)
14481         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
14482         (gnus-get-unread-articles, gnus-make-articles-unread)
14483         (gnus-make-ascending-articles-unread): Use accessor
14484         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
14485         to get group information for improved readability.
14487 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
14489         * gnus-art.el (article-decode-mime-words, article-babel)
14490         (gnus-article-highlight-signature, gnus-article-add-buttons)
14491         (gnus-signature-toggle): Use gnus-with-article-buffer.
14493         * gnus-art.el (gnus-article-highlight-headers)
14494         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
14496         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
14497         (gnus-article-set-globals, gnus-request-article-this-buffer)
14498         (gnus-button-message-id, gnus-article-maybe-hide-headers)
14499         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
14500         (gnus-mime-display-alternative): Use with-current-buffer.
14502 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
14504         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
14505         also under 80 char limit, and call gnus-error if needed.
14506         (spam-fetch-article-header): Fix - it was a
14507         buffer-local variable (gnus-newsgroup-data).
14508         (spam-find-spam): Use spam-generate-fake-headers, forget about
14509         spam-insert-fake-headers.
14510         (spam-insert-fake-headers): Remove.
14512 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
14514         * deuglify.el (gnus-article-outlook-unwrap-lines)
14515         (gnus-outlook-rearrange-article)
14516         (gnus-outlook-repair-attribution-outlook)
14517         (gnus-outlook-repair-attribution-block)
14518         (gnus-outlook-repair-attribution-other): Remove redundant
14519         save-excursion.
14521 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
14523         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
14524         (spam-fetch-field-subject-fast)
14525         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
14526         (spam-fetch-article-header): Add functions to deal with Gnus
14527         internals for fast retrieval of article header data.
14528         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
14530 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
14532         * pop3.el (pop3-md5): Remove.
14533         (pop3-apop): Replace pop3-md5 with md5.
14535         * mm-bodies.el: base64 is always built-in.
14537         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
14538         with-current-buffer.
14540 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14542         * canlock.el (canlock-insert-header): Remove excessive grouping in
14543         regexp.
14545         * gnus-sum.el (gnus-summary-read-document): Ditto.
14547         * gnus-uu.el (gnus-uu-part-number): Ditto.
14549         * html2text.el (html2text-remove-tags): Ditto.
14550         (html2text-format-tags): Ditto.
14551         (html2text-format-single-elements): Ditto.
14553         * mml.el (mml-parse-1): Ditto.
14555 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
14557         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
14559         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
14561         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
14563         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
14565 2003-11-15  Simon Josefsson  <jas@extundo.com>
14567         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
14568         (pgg-gpg-lookup-key): Use regexp match instead of
14569         split-string (split-string is different between emacs 21.2 and
14570         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
14572 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
14574         * gnus-art.el (gnus-mime-view-all-parts)
14575         (gnus-article-part-wrapper, gnus-article-view-part): Use
14576         with-current-buffer.
14578 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
14580         * spam.el (spam-disable-spam-split-during-ham-respool)
14581         (spam-spamoracle-database, spam-cache-lookups)
14582         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
14583         (spam-group-ham-mark-p, spam-group-spam-mark-p)
14584         (spam-group-ham-marks, spam-group-spam-marks)
14585         (spam-group-spam-contents-p, spam-group-ham-contents-p)
14586         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
14587         also add spam-use-blackholes to the statistical checks.
14588         (spam-fetch-field-fast): Add interface to fetching fields, may
14589         become a macro.
14590         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
14591         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
14592         (spam-insert-fake-headers): Fake an article when needed.
14593         (spam-find-spam): Fake article when possible.
14594         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
14595         (spam-check-bogofilter-headers): Use message-fetch-field instead
14596         of nnmail-fetch-field.
14598 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
14600         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
14602 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
14604         * spam.el (spam-split): Do not require spam-use-CHECK to be
14605         enabled if that check is passed to spam-split explicitly; also
14606         fix so 'spam doesn't get converted to spam-split-group when
14607         spam-split-symbolic-return is t.
14608         (spam-find-spam): Find registrations of the article and use those
14609         instead of re-running spam-split to find the spam/ham
14610         classification of the article.
14611         (spam-log-processing-to-registry, spam-log-registered-p)
14612         (spam-log-unregistration-needed-p, spam-log-undo-registration):
14613         Use gnus-error instead of gnus-message.
14614         (spam-log-registration-type): Add function to determine the
14615         classification of a message based on registry entries; will
14616         return nil if both 'spam and 'ham are found.
14617         (spam-check-BBDB): Expand all the BBDB macros here so we can have
14618         a reasonably fast local cache without the loading errors.
14619         (spam-cache-lookups): Set to t by default.
14620         (spam-find-spam): Don't try to guess spam-cache-lookups.
14621         (spam-enter-whitelist, spam-enter-blacklist): Clear the
14622         spam-caches entry.
14623         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
14624         caching of whitelist/blacklist entries.
14625         (spam-check-whitelist, spam-check-blacklist): Invoke
14626         spam-from-listed-p with a type, not a cache variable.
14627         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
14629 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
14631         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
14633         * nnmail.el (nnmail-split-fancy): do.
14635         * mml.el (mml-parse): do.
14637         * gnus-score.el (gnus-enter-score-words-into-hashtb)
14638         (gnus-score-adaptive): do.
14640 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14642         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
14643         (gnus-mime-button-map): Don't set keymap parent.
14644         (gnus-button-ctan-directory-regexp): Use shy grouping.
14645         (gnus-prev-page-map): Don't set keymap parent.
14646         (gnus-prev-page-map): Remove duplicated one.
14647         (gnus-next-page-map): Don't set keymap parent.
14648         (gnus-mime-security-button-map): Ditto.
14650         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
14651         version number.
14653         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
14655 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14657         * canlock.el (canlock-sha1-function): Remove.
14658         (canlock-sha1-function-for-verify): Remove.
14659         (canlock-openssl-program): Remove.
14660         (canlock-openssl-args): Remove.
14661         (canlock-ignore-errors): Remove.
14662         (canlock-sha1-with-openssl): Remove.
14663         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
14664         (canlock-verify): Don't use canlock-ignore-errors.
14666         * sha1-el.el (sha1-string-external): Make it can return a string
14667         in binary form.
14668         (sha1-region-external): Ditto.
14669         (sha1-string-internal): Ditto.
14670         (sha1-region-internal): Ditto.
14671         (sha1-region): Ditto.
14672         (sha1-string): Ditto.
14673         (sha1): Ditto.
14675 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14677         * spam.el (spam-report-articles-gmane): New command.
14679 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14681         * gnus.el: Don't make unnecessary *Group* buffer when loading.
14683         * run-at-time.el (run-at-time-saved): Remove.
14684         (run-at-time): Doc fix.
14686 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
14688         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
14689         (gnus-summary-limit-map): Add it.
14690         (gnus-summary-make-menu-bar): do.
14692 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
14694         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
14695         Make attempt at some caching support (done for BBDB only now).
14696         (spam-find-spam): Set spam-cache-lookups if there are more than 2
14697         addresses to be checked.
14698         (spam-clear-cache-BBDB): Add function, to be invoked by
14699         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
14700         (spam-check-BBDB): Check and use the caches, if
14701         spam-cache-lookups is on, remove superfluous (provide).
14703 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
14705         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
14707 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
14709         * run-at-time.el (run-at-time-saved): Move to after the definition
14710         of `run-at-time'.
14712 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14714         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
14715         mm-w3m-local-map-property.
14717         * mm-view.el (mm-w3m-mode-map): Remove.
14718         (mm-w3m-local-map-property): Remove.
14719         (mm-inline-text-html-render-with-w3m): Don't use
14720         mm-w3m-local-map-property.
14722 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14724         * run-at-time.el: New file.
14726         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
14727         of gnus-set-text-properties.
14729         * gnus-uu.el (gnus-uu-save-article): Ditto.
14731         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
14733         * gnus-cite.el (gnus-cite-parse): Ditto.
14735         * gnus-art.el (gnus-button-push): Use set-text-properties instead
14736         of gnus-.
14738         * gnus.el: Changed calls to nnheader-run-at-time and
14739         password-run-at-time throughout to use run-at-time directly.
14741         * password.el: Removed definition of run-at-time.
14743 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
14745         * mml.el (mml-minibuffer-read-disposition): Show attachment type
14746         in prompt.
14748 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
14750         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
14751         XEmacs version.
14753         * dns.el (dns-make-network-process): Use `open-network-stream'
14754         instead of `gnus-xmas-open-network-stream'.
14756         * .cvsignore: Add auto-autoloads.el, custom-load.el.
14758 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
14760         * gnus-art.el (gnus-mime-display-alternative)
14761         (gnus-insert-mime-button, gnus-insert-mime-security-button)
14762         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
14763         Don't use gnus-local-map-property.
14765         * gnus-util.el (gnus-local-map-property): Remove.
14767         * mm-view.el (mm-view-pkcs7-decrypt): Replace
14768         gnus-completing-read-maybe-default with completing-read.
14770         * gnus-util.el (gnus-completing-read): do.
14771         (gnus-completing-read-maybe-default): Remove.
14773 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
14775         * password.el: Only autoload `run-at-time' if not XEmacs.
14776         Only autoload the itimer functions if XEmacs.
14778 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
14780         * gnus-art.el (gnus-read-string): Remove.
14781         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
14782         read-string.
14784 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
14786         * netrc.el: Autoload password-read.
14787         (netrc): Add configuration group.
14788         (netrc-encoding-method, netrc-openssl-path): Add
14789         variables for encoding and decoding of files with symmetric
14790         ciphers.
14791         (netrc-encode): Add assistant function to encode a file with
14792         netrc-encoding-method.
14793         (netrc-parse): Add interactive parameter, added optional
14794         decoding if netrc-encoding-method is non-nil but otherwise
14795         behavior is standard.
14796         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
14797         Do s/encode/encrypt/ everywhere.
14799         * spam.el: Remove executable-find autoload.
14801 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
14803         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
14805         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
14807 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
14809         * gnus-art.el (gnus-treat-ansi-sequences)
14810         (article-treat-ansi-sequences): New variable and function.
14811         Suggested by Dan Jacobson <jidanni@jidanni.org>.
14813         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
14814         Use it.
14816 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
14818         * mm-util.el (mm-quote-arg): Remove.
14820         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
14821         shell-quote-argument.
14823         * gnus-uu.el (gnus-uu-command): do.
14825         * gnus-sum.el (gnus-summary-insert-pseudos): do.
14827         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
14828         with make-char.
14830         * mm-util.el (mm-make-char): Remove.
14832         * mml.el (mml-mode): Replace gnus-add-minor-mode with
14833         add-minor-mode.
14835         * gnus-undo.el (gnus-undo-mode): do.
14837         * gnus-topic.el (gnus-topic-mode): do.
14839         * gnus-sum.el (gnus-dead-summary-mode): do.
14841         * gnus-start.el (gnus-slave-mode): do.
14843         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
14845         * gnus-ml.el (gnus-mailing-list-mode): do.
14847         * gnus-gl.el (gnus-grouplens-mode): do.
14849         * gnus-draft.el (gnus-draft-mode): do.
14851         * gnus-dired.el (gnus-dired-mode): do.
14853         * gnus-ems.el (gnus-add-minor-mode): Remove.
14855         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
14856         Replace gnus-char-width with char-width.
14858         * gnus-ems.el (gnus-char-width): Remove.
14860         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
14861         Replace gnus-char-width with char-width.
14863         * gnus-ems.el (gnus-char-width): Remove.
14865         * spam-stat.el (with-syntax-table): Remove with-syntax-table
14866         definition.
14867         Remove Emacs 20 hash table compatibility code.
14869         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
14870         20 compatibility code.
14872         * spam.el (spam-point-at-eol): Replace with point-at-eol.
14874         * smime.el (smime-point-at-eol): Replace with point-at-eol.
14876         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
14877         with point-at-{eol,bol}.
14879         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
14881         * imap.el (imap-point-at-eol): Replace with point-at-eol.
14883         * flow-fill.el (fill-flowed-point-at-bol)
14884         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
14886         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
14887         Replace with point-at-{eol,bol} throughout all files.
14889 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14891         * ntlm.el (ntlm-string-as-unibyte): New macro.
14892         (ntlm-build-auth-response): Use it.
14894         Remove Emacs 20 stuff:
14895         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
14896         of delq and copy-sequence.
14897         * gnus-art.el (popup-menu): Remove the compiler macro.
14898         * nnmail.el (nnmail-split-fancy): Don't support customizing with
14899         Emacs 20.
14901 2004-01-05  Simon Josefsson  <jas@extundo.com>
14903         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
14904         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
14905         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
14906         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
14907         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
14908         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
14909         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
14910         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
14911         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
14912         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
14913         ntlm-string-permute, string-lshift into ntlm-string-lshift,
14914         string-xor into ntlm-string-xor.  Suggested by
14915         Jesper Harder <harder@myrealbox.com>.
14917         * ntlm.el: Don't include poem.
14919         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
14920         Jesper Harder <harder@myrealbox.com>.
14922         * sasl-ntlm.el, ntlm.el, md4.el: New files.
14924         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
14925         probably breaks emacs with DL patch, but do we care? Is anyone
14926         still using the DL stuff?)
14928         * sieve-manage.el: Use the password package.
14929         (sieve-manage-read-passwd): Remove.
14930         (sieve-manage-interactive-login): Use password.  Re-add
14931         condition-case around loop.
14933         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
14934         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
14935         the password package.
14937 2003-02-19  Simon Josefsson  <jas@extundo.com>
14939         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
14940         token.
14942 2002-08-07  Simon Josefsson  <jas@extundo.com>
14944         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
14945         (sieve-manage-authenticators):
14946         (sieve-manage-authenticator-alist): Add some SASL mechs.
14947         (sieve-sasl-auth): New function.
14948         (sieve-manage-cram-md5-auth):
14949         (sieve-manage-plain-auth): Rewrite using SASL library.
14950         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
14951         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
14952         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
14953         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
14955 2004-01-05  Simon Josefsson  <jas@extundo.com>
14957         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
14958         New files.
14960 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14962         * gnus-group.el (gnus-no-groups-message): Update.
14964         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
14966 2003-11-09  Simon Josefsson  <jas@extundo.com>
14968         * imap.el: Support for ID IMAP extension (RFC 2971).
14969         (imap-local-variables): Add imap-id.
14970         (imap-id): New variable.
14971         (imap-id): New function.
14972         (imap-parse-response): Parse untagged ID response.
14973         * nnimap.el (nnimap-id): New variable.
14974         (nnimap-open-connection): Use it.
14976 2003-12-28  Simon Josefsson  <jas@extundo.com>
14978         * gnus-score.el (gnus-score-edit-all-score): New.
14979         * gnus-group.el (gnus-group-score-map): Bind it to W e.
14981 2004-01-04  Simon Josefsson  <jas@extundo.com>
14983         * password.el: Add.
14985 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
14987         * dns.el (dns-query-types): Fix typo.
14988         (dns-query-types): New function.
14989         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
14990         PTR and SOA replies, see RFC 1035.
14992 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14994         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
14996         * Moved to Changelog.2.
14998 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15000         * gnus.el (gnus-version-number): Bump version.
15002 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15004         * gnus.el: No Gnus v0.1 is released.
15006 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15008         * gnus.el: No Gnus v0.0 is released.
15010 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15012         * gnus.el (gnus-version-number): Bump.
15013         (gnus-version): No.
15015 See ChangeLog.2 for earlier changes.
15017     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
15019   This file is part of GNU Emacs.
15021   GNU Emacs is free software: you can redistribute it and/or modify
15022   it under the terms of the GNU General Public License as published by
15023   the Free Software Foundation, either version 3 of the License, or
15024   (at your option) any later version.
15026   GNU Emacs is distributed in the hope that it will be useful,
15027   but WITHOUT ANY WARRANTY; without even the implied warranty of
15028   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15029   GNU General Public License for more details.
15031   You should have received a copy of the GNU General Public License
15032   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
15034 ;; Local Variables:
15035 ;; coding: utf-8
15036 ;; fill-column: 79
15037 ;; add-log-time-zone-rule: t
15038 ;; End: