Only read the agent.lib/local file once per `g' run.
[gnus] / lisp / ChangeLog
1 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
4         file once per `g' run.
5
6         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
7         directories.  This makes the draft queue directory work.
8
9         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
10         data from the backends, so that we only request the list of groups from
11         each method once.  This should speed things up considerably.
12
13         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
14         detect that it's not implemented.
15
16         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
17         we actually do recurse down into the tree, but don't stat all leaf
18         nodes.
19
20         * gnus-html.el (gnus-html-show-images): If there are no images to show,
21         then say so instead of bugging out.
22
23         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
24         files exist before trying to read them.
25
26         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
27         around <pre_int>.
28
29         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
30
31         * nnmh.el (nnmh-request-list-1): Optimize for speed.
32
33 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
34
35         * mm-util.el (mm-image-load-path): Just return the image directories,
36         not all directories in the path in addition to the image directories.
37         (mm-image-load-path): Maintain a cache of the image directories so that
38         the `g' command in Gnus doesn't have to stat dozens of directories each
39         time.
40
41         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
42         (gnus-html-wash-tags): Add a new `i' command to insert images.
43         (gnus-html-insert-image): New command and keystroke.
44         (gnus-html-redisplay-with-images): New command and keystroke.
45         (gnus-html-show-images): Renamed command.
46         (gnus-html-wash-tags): Remove more white space before <pre_int> image
47         spacers.
48         (gnus-html-wash-tags): Decode entities at the end, so that entities
49         inside the tags don't mess up the rest of the "parsing".
50
51         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
52         so that nnimap methods aren't agentized by default.  There's apparently
53         many problems related to agent/imap behaviour.
54
55         * gnus-art.el (gnus-article-copy-string): New command and key binding.
56
57         * gnus-html.el: Doc fix.
58
59 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
60
61         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
62         specifier-spec-list for Emacs 21.
63
64         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
65         glyph-width and glyph-height instead of display-graphic-p and
66         image-size; make avoidance of displaying small images work for XEmacs.
67
68         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
69         for XEmacs.
70
71         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
72         of symbol that holds plist data.
73         (gnus-process-plist): Remove plist of process after getting it.
74
75 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
76
77         * message.el (message-generate-hashcash): Change default to
78         'opportunistic if hashcash is installed.
79
80         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
81         (gnus-html-put-image): Only call image-size once, since it's somewhat
82         time-consuming on remote X servers.
83
84 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
85
86         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
87         type on data, not a file name.
88
89         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
90         window-pixel-edges for Emacs 21.
91
92         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
93         decoded contents.
94         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
95
96 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
97
98         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
99         group line format, since it isn't very interesting.
100
101         * gnus-agent.el (gnus-agent-short-article),
102         (gnus-agent-long-article): Increase values for these two variables,
103         since most people are likely to have more network connection and
104         storage than before.
105
106         * gnus.el (gnus-refer-article-method): Change default to 'current.
107         When referring an article, the common behaviour is to refer it from the
108         current select method, not the native select method.  The chances of
109         the native select method having the message in question is rather slim
110         these days.
111
112         * gnus-sum.el (gnus-auto-select-subject): Change default to
113         `unseen-or-unread'.  I think it's likely that most people want to
114         select an unseen article over a previously seen, but unread one.
115
116         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
117         means that in the article buffer none of the minor mode elements will
118         be shown, usually, and this is not desirable in most cases.
119
120         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
121         that commands like `d' (and the like) go to the next line in the
122         buffer, instead of the next unread article.  I think this is the
123         behaviour that is most natural for most users.
124         (gnus-single-article-buffer): Change default to nil, so that people can
125         have as many article buffers open as they have summary buffer.  I think
126         this is the most natural way for the groups to behave.
127
128         * message.el (message-generate-new-buffers): Change default to
129         `unsent', so that all new message buffers start their names with the
130         string "*unsent", and it's easier to find the buffers if you move from
131         them.
132
133 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
134
135         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
136         small. They're probably tracking images.
137         (gnus-html-wash-tags): Remove all <pre_int> place holders.
138         (gnus-html-rescale-image): Yet another try at getting the image sizing
139         right.
140
141         * nntp.el (nntp-request-set-mark): Refuse to do marks if
142         nntp-marks-file-name is nil.
143
144 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
145
146         * gnus-html.el (gnus-html-wash-tags)
147         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
148         Better logging.
149
150 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
151
152         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
153
154         * gnus-html.el (gnus-html-wash-tags): Check the value of
155         gnus-blocked-images in the summary buffer.
156
157 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
158
159         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
160
161 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
162
163         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
164         like "a", it seems like.
165         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
166         since it needs to be picked from the correct buffer.
167
168         * nnwfm.el: Removed.
169
170         * nnlistserv.el: Removed.
171
172 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
173
174         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
175         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
176
177 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
178
179         * nnkiboze.el: Removed.
180
181         * nndb.el: Removed.
182
183         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
184         alt text.
185         (gnus-html-rescale-image): Try to get the rescaling logic right for
186         images that are just wide and not tall.
187
188         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
189         overshadow variable bindings.
190
191 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
192
193         * gnus-html.el (gnus-html-wash-tags)
194         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
195         extra logging.
196
197 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
198
199         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
200         (gnus-max-image-proportion): New variable.
201         (gnus-html-rescale-image): New function.
202         (gnus-html-put-image): Rescale images.
203
204 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
205
206         Fix up some byte-compiler warnings.
207         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
208         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
209         (gnus-article-fill-cited-article, gnus-article-hide-citation)
210         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
211         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
212         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
213         (gnus-group-update-group): Use save-excursion and with-current-buffer.
214
215 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
216
217         * gnus-html.el (gnus-article-html): Decode contents by charset.
218
219 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
220
221         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
222         (gnus-html-frame-width, gnus-blocked-images)
223         * message.el (message-prune-recipient-rules): Add custom version.
224         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
225
226         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
227         functions.
228
229         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
230         gnus-process-get.
231
232 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
233
234         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
235         instead of lsub directly.
236
237 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
238
239         * nnwarchive.el: Removed.
240
241         * gnus-soup.el: Removed.
242
243         * nnsoup.el: Removed.
244
245         * nnultimate.el: Removed.
246
247         * gnus-html.el (gnus-blocked-images): New variable.
248
249         * message.el (message-prune-recipients): New function.
250         (message-prune-recipient-rules): New variable.
251
252         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
253         guess whether a long line is natural text or not.
254
255         * gnus-html.el (gnus-html-schedule-image-fetching): Use
256         gnus-process-plist and friends for compatibility.
257
258 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
259
260         * gnus-html.el: Require packages that define macros used in this file.
261         (gnus-article-mouse-face): Declare to silence byte-compiler.
262         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
263         process-get.
264         (gnus-html-put-image): Use plist-get to avoid getf.
265         (gnus-html-prefetch-images): Use with-current-buffer.
266
267 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
268
269         * gnus-ems.el: Provide compatibility functions for
270         gnus-set-process-plist.
271
272         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
273         header-line-format for XEmacs 21.4.
274
275         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
276         * gnus.el (gnus-valid-select-methods)
277         * message.el (message-send-mail-partially-limit)
278         * mm-decode.el (mm-text-html-renderer)
279         * mml.el (mml-insert-mime-headers-always)
280         * smiley.el (smiley-regexp-alist): Bump custom version.
281
282 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
283
284         * gnus-html.el: require mm-url.
285         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
286         with the url to `url'.
287         (gnus-html-wash-tags): Support cid: URLs/images.
288
289 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
290
291         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
292         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
293         bindings, as they aren't useful at all. `w' is moved to `W w'.
294
295         * gnus-move.el: Removed file, since it doesn't really work.
296
297         * gnus-html.el (gnus-article-html): Tell w3m that the input is
298         UTF-8. This seems to fix problems with some German web feeds.
299
300         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
301         at the top so that the proper colours are applied.
302
303         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
304         don't have dots in their names.
305
306         * gnus-art.el (gnus-article-view-part): Doc fix.
307
308         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
309         XEmacs-compatible.
310         (gnus-html-put-image): Don't do images on non-graphic displays.
311
312         * nnslashdot.el: Removed this unused backend.
313
314         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
315         actions.
316         (gnus-undo-register-1): Revert last change.
317
318         * gnus-group.el (gnus-group-completing-read): Protect against not
319         having completion-styles bound.
320
321         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
322         make broken recipients happier.
323
324         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
325
326         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
327         point parameter.
328
329         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
330
331         * gnus-group.el (gnus-group-completing-read): Add 'substring to
332         completion-styles for group selection.
333
334 2009-02-04  Andreas Schwab  <schwab@suse.de>
335
336         * gnus-score.el (gnus-score-string): Fix regex for matching extra
337         headers and regexp-quote the match if necessary.
338
339 2009-03-24  Miles Bader  <miles@gnu.org>
340
341         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
342         the blinking smiley.
343
344 2009-03-24  Simon Josefsson  <simon@josefsson.org>
345
346         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
347         blink smiley.
348
349 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
350
351         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
352         where the dribbel file lives exists.
353
354         * message.el (message-send-mail-partially-limit): Change the default to
355         nil, since most people don't want this.
356
357         * mm-url.el (mm-url-decode-entities): Also decode entities like
358         &#x3212.
359
360 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
361
362         * gnus-sum.el (gnus-summary-idna-message):
363         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
364         Hyperlink urls in docstrings with URL `...'.
365
366 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
367
368         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
369         functions.
370
371 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
372
373         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
374         say what the mouseover text should be.
375
376         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
377         version of the mm-w3m-safe-url-regexp variable to only download images
378         in the groups where we want that to happen.
379
380         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
381
382         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
383         easier debugging.
384         (gnus-article-beginning-of-window): Add kludge to allow spacing past
385         big pictures in the article buffer.
386
387         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
388         gnus-article-html.
389         (mm-text-html-renderer): gnus-article-html needs curl in addition to
390         w3m.
391
392         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
393
394 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
395
396         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
397         which doesn't exist.
398
399         * message.el (message-inhibit-ecomplete): New variable to allow some
400         function to inhibit ecomplete address storage.
401         (message-resend): Disable ecomplete message storage when resending
402         messages.
403
404         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
405
406 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
407
408         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
409         Save excursion while copying, moving, and deleting articles in order to
410         prevent the cursor from jumping to unforeseen place.
411
412 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
413
414         * lpath.el: No need to bind bookmark-current-buffer,
415         bookmark-yank-point and bookmark-make-record-function.
416
417 2010-08-17  Glenn Morris  <rgm@gnu.org>
418
419         * gnus-sync.el: Require gnus components whose functions are used.
420
421         * gnus-art.el (bookmark-make-record-function):
422         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
423         Declare for compiler.
424
425         * mm-url.el (mml-compute-boundary): Autoload.
426
427 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
428
429         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
430
431 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
432
433         Typo fix "hoo4a" -> "hook".
434
435         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
436
437 2010-08-14  Glenn Morris  <rgm@gnu.org>
438
439         * gnus-sync.el (gnus-sync): Fix defgroup version.
440
441 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
442
443         Doc fixes and keep unknown groups (ammended for nunion bug fix).
444
445         * gnus-sync.el: Fix docs.
446         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
447         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
448
449 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
450
451         Optimizations for gnus-sync.el.
452
453         * gnus-sync.el: Add docs about gnus-sync-backend
454         possibilities.
455         (gnus-sync-save): Remove unnecessary message.
456         (gnus-sync-read): Optimize and show what groups were skipped.
457
458 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
459
460         Minor bug fixes for gnus-sync.el.
461
462         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
463         read the sync on get-new-news.
464
465         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
466         quiet.
467
468         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
469
470 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
471
472         Make saving and restoring of hidden threads work with overlays.
473         Patch applied by Ted Zlatanov.
474
475         * gnus-sum.el (gnus-hidden-threads-configuration)
476         (gnus-restore-hidden-threads-configuration): Update to deal with text
477         properties, rather than searching for a magic character.
478
479 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
480
481         New gnus-sync.el library for synchronization of marks.
482
483         * gnus-sync.el: New library for synchronization of marks.
484
485         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
486         renamed from `gnus-registry-grep-in-list'.
487
488         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
489
490         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
491
492 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
493
494         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
495         determining charset of text fails.
496
497 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
498
499         * nnmail.el (nnmail-get-new-mail-1): Revert.
500
501         * nnml.el (nnml-active-number): Make sure names of newly created groups
502         in nnml-group-alist are encoded.
503
504 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
505
506         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
507         containing non-ASCII characters in active file for nnml back end.
508
509 2010-07-24  David Engster  <dengste@eml.cc>
510
511         * mml-smime.el (mml-smime-epg-verify): Also accept the older
512         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
513
514 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
515
516         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
517         tag (Bug#6654).
518
519 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
520
521         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
522         the article buffer, not the summary buffer.
523
524 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
525
526         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
527         Emacs 23 as well.
528
529 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
530
531         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
532         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
533
534 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
535
536         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
537         Patch applied by Karl Fogel.
538
539         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
540         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
541
542 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
543
544         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
545         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
546         C-w still not working correctly from Article buffers; Thierry's
547         patch to fix that will be applied after this.
548
549         * gnus-art.el (bookmark-make-record-function): New local variable.
550
551         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
552         article buffer.
553         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
554
555 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
556
557         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
558         on changes in bookmark.el.
559
560 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
561
562         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
563         `no-log' instead of message not to log prompt string.
564
565 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
566
567         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
568         the *other* type of HTML form submission.
569
570 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
571
572         * auth-source.el (auth-source-pick): If choice does not contain a
573         questioned keyword, set the check to t.
574
575 2010-06-12  Romain Francoise  <romain@orebokech.com>
576
577         * gnus-util.el (gnus-date-get-time): Move up before first use.
578
579 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
580
581         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
582         (gnus-article-edit-part): Bind it to make last part that is substituted
583         or deleted visible.
584         (gnus-mime-display-single): Buttonize part of which id equals to
585         gnus-mime-buttonized-part-id.
586
587 2010-06-10  Dan Christensen  <jdc@uwo.ca>
588
589         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
590         (gnus-dd-mmm): Use gnus-date-get-time.
591         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
592         simplify logic.
593         (gnus-summary-limit-to-age): Use gnus-date-get-time.
594         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
595
596 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
597
598         * auth-source.el (top): Autoload `secrets-list-collections',
599         `secrets-create-item', `secrets-delete-item'.
600         (auth-sources): Fix tag string.
601         (auth-get-source, auth-source-retrieve, auth-source-create)
602         (auth-source-delete): New defuns.
603         (auth-source-pick): Rewrite in order to avoid 2 passes.
604         (auth-source-forget-user-or-password): New parameter USERNAME.
605         (auth-source-user-or-password): New parameters CREATE-MISSING and
606         DELETE-EXISTING.  Retrieve password interactively, if needed.
607
608 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
609
610         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
611         deleting unused directories when gnus-expert-user is t.
612
613 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
614
615         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
616         for each temp file when gnus-article-browse-delete-temp is ask.
617
618 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
619
620         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
621         Lisp calls to delete-backward-char by calls to delete-char.
622
623 2010-05-20  Kevin Ryde  <user42@zip.com.au>
624
625         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
626
627 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
628
629         * password-cache.el (password-cache-remove): Fix docstring.
630
631 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
632
633         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
634         article unless decoding article to be saved.
635
636 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
637
638         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
639         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
640         generated within the mm-with-unibyte-current-buffer macro.
641
642 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
643
644         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
645         to nil when we're in a mml-preview buffer and no group is selected.
646
647 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
648
649         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
650         when catching the `C-g'.  Reported by "Leo".
651
652 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
653
654         * message.el (message-forward-make-body-plain)
655         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
656         multibyte-string-p.
657
658         * lpath.el: Revert.
659
660 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
661
662         * message.el (message-forward-make-body-mml): Assume original message
663         is multibyte string; error on unibyte.
664         (message-forward-make-body-plain): Ditto; don't add excessive newline
665         in body end.
666
667         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
668
669 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
670
671         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
672         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
673
674 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
675
676         * mm-extern.el (mm-extern-url): Don't use
677         mm-with-unibyte-current-buffer.
678         (mm-extern-cache-contents): Use with-current-buffer instead of
679         save-excursion + set-buffer.
680
681 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
682
683         * mm-util.el (mm-emacs-mule): Remove.
684
685 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
686
687         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
688         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
689         change.
690
691 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
692
693         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
694         bind the default value of enable-multibyte-characters to nil.
695
696 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
697
698         * message.el (message-forward-make-body-plain)
699         (message-forward-make-body-mml):
700         Don't use mm-with-unibyte-current-buffer.
701
702 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
703
704         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
705
706 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
707
708         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
709         (Bug#5592).
710
711 2010-05-07  Julien Danjou  <julien@danjou.info>
712
713         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
714         it to mm-pipe-part.
715
716         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
717         it is given.
718
719 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
720
721         * binhex.el (binhex-decode-region-internal)
722         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
723         (dns-query)
724         * nnweb.el (nnweb-gmane-search)
725         * pgg-parse.el (pgg-parse-armor)
726         * pgg.el (pgg-verify-region)
727         * sha1.el (sha1-string-external)
728         * uudecode.el (uudecode-decode-region-internal)
729         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
730         XEmacs.
731
732         * gnus-art.el (gnus-article-browse-html-parts)
733         * gnus-group.el (gnus-read-ephemeral-gmane-group)
734         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
735         make-temp-file.
736
737         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
738         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
739         compiling.
740
741         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
742         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
743         XEmacs when compiling.
744
745         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
746         gnus-pick-mode-off-hook for XEmacs when compiling.
747         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
748         gnus-binary-mode-off-hook for XEmacs when compiling.
749
750         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
751         nil if char-charset is not available.
752
753         * imap.el (imap-disable-multibyte)
754         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
755         macros.
756
757         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
758         instead of encode-coding-string.
759
760         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
761         'xemacs) instead of mm-emacs-mule to switch function definitions.
762         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
763
764         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
765         bind temporary-file-directory for XEmacs;
766         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
767         timer-set-function for XEmacs 21.4 and SXEmacs;
768         bind timer-list for XEmacs 21.4 and SXEmacs;
769         fbind char-charset and find-charset-region for non-Mule XEmacs;
770         fbind decode-coding-region, decode-coding-string, detect-coding-region,
771         encode-coding-region and encode-coding-string for XEmacs having no
772         file-coding feature.
773
774 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
775
776         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
777
778 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
779
780         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
781         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
782
783 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
784
785         * mm-util.el (mm-decompress-buffer): Use `delete-file';
786         alias `jka-compr-delete-temp-file' no longer exists.
787
788 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
789
790         Use define-minor-mode in Gnus where applicable.
791         * mml.el (mml-mode): Use define-minor-mode.
792         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
793         (gnus-undo-mode): Use define-minor-mode.
794         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
795         (gnus-dead-summary-mode): Use define-minor-mode.
796         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
797         Initialize in declaration.
798         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
799         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
800         (gnus-mailing-list-mode): Use define-minor-mode.
801         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
802         (gnus-draft-mode): Use define-minor-mode.
803         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
804         (gnus-dired-mode): Use define-minor-mode.
805
806 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
807
808         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
809         handles on recursive mml-to-mime translation and check them for
810         boundary delimiter collisions.  Reported by Greg Troxel.
811
812 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
813
814         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
815
816 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
817
818         * mm-util.el (mm-find-buffer-file-coding-system):
819         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
820
821 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
822
823         * message.el (message-generate-headers): Record insertion of optional
824         headers as well.  Otherwise the check to prevent repeated insertion of
825         optional headers is a no-op.
826
827 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
828
829         * smime.el: Don't mention CVS.
830
831         * nnrss.el (nnrss-fetch): Don't mention CVS.
832
833         * nnir.el: Don't mention CVS.
834
835 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
836
837         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
838
839 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
840
841         * lpath.el: Fbind bookmark-default-handler,
842         bookmark-get-bookmark-record, bookmark-make-record-default,
843         bookmark-prop-get for Emacs <23 and XEmacs.
844
845 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
846
847         * gnus-sum.el: Add bookmark declarations to silence the compiler.
848         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
849         Use with-current-buffer to silence the byte-compiler.
850         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
851         bother to require `gnus'.
852         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
853
854 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
855
856         * gnus-sum.el (gnus-summary-bookmark-make-record)
857         (gnus-summary-bookmark-jump): New functions.
858         (gnus-summary-mode): Setup bookmark support.
859
860 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
861
862         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
863         if set.
864
865 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
866
867         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
868         gnus-article-browse-html-save-cid-image; make it work recursively for
869         forwarded messages as well.
870         (gnus-article-browse-html-parts): Work when prefix arg is given.
871         (gnus-article-browse-html-article): Doc fix.
872
873 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
874
875         * message.el (message-default-mail-headers):
876         (message-default-headers): Carry the value mail-default-headers over
877         into message-default-mail-headers, rather than message-default-headers.
878
879 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
880
881         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
882         charset.
883
884         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
885         charset into the <meta> tag when the article is encoded to utf-8.
886
887 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
888
889         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
890         directories as well.
891         (gnus-article-browse-html-parts): Work for images that do not specify
892         file names; delete temp directory when quitting; insert header at the
893         right place; use file: scheme for image files.
894
895 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
896
897         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
898         (gnus-article-browse-html-parts): Use it to make temporary cid image
899         files in addition to html file so that browser may display them.
900
901 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
902
903         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
904
905 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
906
907         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
908
909 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
910
911         * auth-source.el (auth-sources): Change default to be simpler.  Explain
912         about Secret Service API sources.  Improve Customize options.
913         (auth-source-pick): Change to accept any number of search parameters.
914         Implement fallbacks iteratively, not recursively.  Add scoring on the
915         second pass and sort by score.  Call Secret Service API when needed.
916         (auth-source-user-or-password): Use it.  Call Secret Service API
917         directly when needed to get the user name and the password.
918
919 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
920
921         * message.el (message-interactive): Doc fix.
922         (message-qmail-inject-args): Reflow.
923         (message-kill-to-signature): Fix typo in docstring.
924
925         * smiley.el (smiley-buffer): Fix typo in docstring.
926
927 2010-03-24  Glenn Morris  <rgm@gnu.org>
928
929         * mail-source.el (gnus-message): Declare.
930         (mail-source-delete-old-incoming): Require gnus-util.
931
932 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
933
934         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
935
936         * message.el (ecomplete-setup): Autoload it for Emacs <23.
937
938         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
939         password-cache's default if it is not bound.
940         (mml-secure-passphrase-cache-expiry): Default to 16 that is
941         password-cache-expiry's default if it is not bound.
942
943         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
944         available in Emacs 21.
945
946         * lpath.el: Suppress compiler warnings for:
947         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
948         XEmacs;
949         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
950         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
951         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
952
953 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
954
955         * auth-source.el (auth-sources): Fix up definition so extra parameters
956         are always inline.
957
958 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
959
960         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
961         wasn't updated after mismatch.  Clear cached mailbox info correctly
962         when uidvalidity changes.
963         (nnimap-group-prefixed-name): New function to avoid some code
964         duplication.
965         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
966         (nnimap-request-group): Use it.
967         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
968         (nnimap-update-unseen): Significantly improved speed of Gnus startup
969         with many imap folders.  This is done by caching the group status from
970         the imap server persistently in a group parameter `imap-status'.  (This
971         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
972         but not persistently, so every Gnus startup was still very slow.)
973
974 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
975
976         * assistant.el (assistant-render-text): Run `widget-setup' and don't
977         delete the extra newline.  Otherwise editing of :string and :number
978         types don't work.
979
980 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
981
982         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
983         secrets.el dependency.
984         (auth-sources): Add optional user name.  Add secrets.el configuration
985         choice (unused right now).
986
987 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
988
989         * gnus-sum.el (gnus-summary-make-menu-bar): Let
990         `gnus-registry-install-shortcuts' fill in the functions.
991
992         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
993         warnings.
994         (gnus-registry-misc-menus): Variable to hold registry mark menus.
995         (gnus-registry-install-shortcuts): Populate and use it in a
996         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
997
998 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
999
1000         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1001         In-place substitutions for the group name encoding/decoding.
1002         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1003         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1004         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1005         (nnimap-update-unseen, nnimap-request-list)
1006         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1007         (nnimap-request-set-mark, nnimap-split-to-groups)
1008         (nnimap-split-articles, nnimap-request-newgroups)
1009         (nnimap-request-create-group, nnimap-request-accept-article)
1010         (nnimap-request-delete-group, nnimap-request-rename-group)
1011         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1012         `encoded-mbx' for consistency.
1013         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1014         variable `imap-current-mailbox'.
1015
1016         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1017         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1018
1019 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1020
1021         * pop3.el (pop3-display-message-size-flag): Display message size byte
1022         counts during POP3 download.
1023         (pop3-movemail): Use it.
1024         (pop3-list): Implement listing of available messages.
1025
1026 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1027
1028         * nnir.el (nnir-get-article-nov-override-function): New function to
1029         override the normal NOV retrieval.
1030         (nnir-retrieve-headers): Use it.
1031
1032 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1033
1034         * auth-source.el (netrc-machine-user-or-password): Autoload.
1035
1036 2010-03-19  Glenn Morris  <rgm@gnu.org>
1037
1038         Stop message.el from loading about 40 libraries it doesn't always need.
1039         The general approach is to autoload rather than require, and to
1040         require in the specific functions rather than the file.  (Bug#5642)
1041
1042         * gmm-utils.el: Don't require wid-edit.
1043         (widget-create-child-value, widget-convert, widget-default-get):
1044         Autoload.
1045
1046         * gnus-util.el: Don't require time-date, netrc.
1047         (message-fetch-field, gnus-group-name-decode): Declare rather than
1048         autoloading.
1049         (gnus-fetch-field): Require message.
1050         (gnus-decode-newsgroups): Require gnus-group.
1051
1052         * ietf-drums.el: Don't require time-date.
1053
1054         * message.el: Don't require hashcash, canlock, ecomplete.
1055         Do require mail-utils.  Require nnheader only when compiling.
1056         (smtpmail-default-smtp-server): Remove declaration.
1057         (message-send-mail-function): Check smtpmail-default-smtp-server
1058         is bound rather than requiring smtpmail.
1059         (message-auto-save-directory, message-insert-signature): Use
1060         expand-file-name rather than nnheader-concat.
1061         (nnheader-insert-file-contents): Autoload.
1062         (hashcash-wait-async): Declare.
1063         (message-send-mail): Only call gnus-setup-posting-charset if
1064         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1065         (message-send-mail-with-sendmail): Require sendmail.
1066         (canlock-password, canlock-password-for-verify): Declare.
1067         (message-canlock-password): Require canlock.
1068         (nnheader-get-report): Autoload.
1069         (gnus-setup-posting-charset): Declare.
1070         (message-send-news): Require gnus-msg.
1071         (message-make-references, message-make-in-reply-to): Use mail-header-id
1072         rather than the alias mail-header-message-id.
1073         (ecomplete-add-item, ecomplete-save): Declare.
1074         (message-put-addresses-in-ecomplete): Require ecomplete.
1075         (ecomplete-display-matches): Autoload.
1076
1077         * mm-decode.el: Don't require mailcap, gnus-util.
1078         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1079         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1080         Autoload.
1081         (mailcap-mime-extensions): Declare.
1082
1083         * mm-encode.el: Don't require mailcap.
1084         (mailcap-extension-to-mime): Autoload.
1085
1086         * mml-sec.el: Don't require password-cache.
1087
1088         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1089         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1090         (mml-minibuffer-read-type): Require mailcap.
1091         (mml-preview): Require gnus-msg.
1092
1093         * mml1991.el: Require password-cache.
1094         (password-cache-expiry): Remove declaration.
1095
1096         * mml2015.el: Require password-cache.
1097         (password-cache-expiry): Remove declaration.
1098
1099         * nneething.el (mailcap): Require mailcap.
1100
1101         * nnheader.el (declare-function): Add compatibility stub.
1102         (message-remove-header): Declare rather than autoload.
1103         (nnheader-replace-header): Require message.
1104
1105         * nnimap.el (declare-function): Add compatibility stub.
1106         (netrc-parse, netrc-machine-user-or-password): Declare.
1107         (nnimap-open-connection): Require netrc.
1108
1109         * nntp.el (declare-function): Add compatibility stub.
1110         (netrc-parse, netrc-machine, netrc-get): Declare.
1111         (nntp-send-authinfo): Require netrc.
1112
1113         * rfc2047.el: Don't require qp.
1114         (quoted-printable-encode-region, quoted-printable-decode-string):
1115         Autoload.
1116
1117         * sieve-mode.el: Don't require easymenu.
1118         (easy-menu-add-item): Autoload it.
1119
1120         * spam-stat.el (time-to-number-of-days): Autoload it.
1121
1122 2010-03-19  Glenn Morris  <rgm@gnu.org>
1123
1124         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1125
1126 2010-03-18  Glenn Morris  <rgm@gnu.org>
1127
1128         * hashcash.el (declare-function): Remove duplicate definition.
1129
1130 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1131
1132         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1133         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1134         value if any backslash escapes).
1135
1136 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1137
1138         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1139         if it is available.  (bug#5647)
1140
1141         * lpath.el: Suppress compiler warning for coding-system-from-name for
1142         Emacs 21 and XEmacs.
1143
1144 2010-03-14  Juri Linkov  <juri@jurta.org>
1145
1146         * hmac-def.el:
1147         * hmac-md5.el:
1148         * netrc.el: Fix keywords.
1149
1150 2010-02-26  Glenn Morris  <rgm@gnu.org>
1151
1152         * message.el (message-send-mail-function): Change the default, so that
1153         it inherits from a customized send-mail-function.  (Bug#5643)
1154
1155 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1156
1157         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1158         shell-command-to-string signals an error (bug#5299).
1159
1160 2010-02-24  Glenn Morris  <rgm@gnu.org>
1161
1162         * message.el (message-smtpmail-send-it)
1163         (message-send-mail-with-mailclient): Doc fixes.
1164
1165 2010-02-16  Glenn Morris  <rgm@gnu.org>
1166
1167         * message.el (message-default-mail-headers): Change the default value
1168         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1169
1170 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1171
1172         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1173         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1174
1175 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1176
1177         * time-date.el (date-to-time): Doc fix (Bug#5408).
1178
1179 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1180
1181         * message.el (message-mail): Just pass yank-action on to message-setup.
1182         (message-setup): Handle (FUN . ARGS) form of yank-action.
1183         (message-with-reply-buffer, message-widen-reply)
1184         (message-yank-original): Handle non-buffer values of
1185         message-reply-buffer (Bug#4080).
1186         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1187
1188 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1189
1190         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1191         Fix typo in docstring.
1192
1193 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1194
1195         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1196         response.
1197
1198 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1199
1200         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1201
1202         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1203
1204         * message.el (message-check-news-header-syntax): Protect against a
1205         string that `rfc822-addresses' returns when parsing fails.
1206
1207 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1208
1209         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1210         (gnus-previous-char-property-change): New functions.
1211
1212         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1213
1214 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1215
1216         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1217         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1218
1219 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1220
1221         * message.el (message-exchange-point-and-mark): Rework last change to
1222         avoid using optional arg of exchange-point-and-mark, for backward
1223         compatibility.
1224
1225 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1226
1227         * message.el (message-exchange-point-and-mark): Call
1228         exchange-point-and-mark with an argument rather than setting
1229         mark-active by hand (Bug#5175).
1230
1231 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1232
1233         * nntp.el (nntp-service-to-port): Work for service expressed with
1234         numeric string; replace [:digit:] with [0-9] for XEmacs.
1235
1236 2009-12-17  Glenn Morris  <rgm@gnu.org>
1237
1238         * gnus-group.el (gnus-bug-group-download-format-alist):
1239         Change emacs entry to debbugs.gnu.org.  Bump :version.
1240
1241 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1242
1243         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1244
1245 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1246
1247         * message.el (message-info): Explain why we use `Info-goto-node'.
1248
1249 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1250
1251         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1252
1253 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1254
1255         * message.el (message-completion-in-region): New compatibility function.
1256         (message-expand-group): Use it.
1257
1258 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1259
1260         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1261         with no unread article should be listed if the 2nd arg `predicate' is
1262         given.
1263
1264 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1265
1266         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1267
1268 2009-11-29  Juri Linkov  <juri@jurta.org>
1269
1270         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1271         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1272         on `gnus-recenter'. (Bug#4698, Bug#4981)
1273
1274 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1275
1276         * sha1.el (sha1-string-external): default-directory "/" in case
1277         otherwise non-existent.  process-connection-type pipe for touch of
1278         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1279
1280 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1281
1282         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1283         it's comms related and sgml-mode.el has "comm" on that basis too.
1284
1285 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1286
1287         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1288         containing tspecial characters if they have been already quoted.
1289
1290 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1291
1292         * dns-mode.el (auto-mode-alist): Purecopy string.
1293
1294 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1295
1296         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1297
1298 2009-10-24  Glenn Morris  <rgm@gnu.org>
1299
1300         * gnus-art.el (help-xref-stack-item): Define for compiler.
1301
1302 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1303
1304         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1305
1306 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1307
1308         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1309
1310 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1311
1312         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1313         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1314
1315 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1316
1317         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1318         (gnus-overlays-in): New alias to overlays-in.
1319
1320         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1321         gnus-overlay-get, and gnus-delete-overlay.
1322         (gnus-summary-show-thread): Make it work as well for systems in which
1323         next-single-char-property-change is not available.
1324         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1325
1326         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1327         (gnus-overlay-get): New alias to extent-property.
1328         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1329
1330         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1331         SXEmacs.
1332
1333         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1334         SXEmacs.
1335
1336 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1337
1338         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1339
1340 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1341
1342         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1343         and XEmacs that don't have `remove-overlays'.
1344
1345 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1346
1347         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1348         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1349         selective display.  Use overlays instead.
1350
1351 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1352
1353         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1354
1355 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1356
1357         * spam-stat.el (spam-stat-load): Fix typo in message.
1358
1359 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1360
1361         * dig.el (dig-invoke): Fix typo in docstring.
1362         (query-dig): Reflow docstring.
1363
1364 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1365
1366         * gnus-art.el (gnus-article-encrypt-body):
1367         * message.el (message-check-recipients):
1368         * mm-util.el (mm-codepage-setup):
1369         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1370         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1371
1372 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1373
1374         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1375         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1376         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1377         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1378         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1379
1380 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1381
1382         * dig.el: Add "Keywords: comm", as per net-utils.el.
1383
1384 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1385
1386         * dig.el (dig-mode): Use define-derived-mode.
1387
1388 2009-09-19  Glenn Morris  <rgm@gnu.org>
1389
1390         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
1391
1392 2009-09-18  Glenn Morris  <rgm@gnu.org>
1393
1394         * gnus-diary.el (gnus-diary-check-message):
1395         * message.el (message-insert-formatted-citation-line):
1396         * nnbabyl.el (top-level):
1397         * nndiary.el (nndiary-schedule):
1398         Fix typos in condition-case handlers.
1399
1400 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1401
1402         * gnus-art.el (gnus-article-edit-part): Work for the buffer
1403         configuration that provides the sole article window in a frame;
1404         position point correctly after deleting a part.
1405
1406 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
1407
1408         * spam.el (spam-unregister-on-reregister): Add boolean variable.
1409         (spam-resolve-registrations-routine): Use it to unregister articles
1410         that change status.
1411
1412 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1413
1414         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
1415         with XEmacs.
1416         (parse-time-string-chars): Use it.
1417
1418 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
1419
1420         * imap.el (imap-interactive-login): Better messages.
1421         (imap-open): Fix bug with renamed buffer on reconnect.
1422         (imap-authenticate): Add buffer-local imap-last-authenticator variable
1423         for easier debugging and cleaner code.  On successful (guessed based on
1424         server capabilities) secondary authentication, set imap-state
1425         correctly.
1426         (imap-last-authenticator): Define imap-last-authenticator as a variable
1427         to avoid warnings.
1428
1429 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1430
1431         * nnrss.el (nnrss-request-article): Remove binding of
1432         default-enable-multibyte-characters that has gotten needless by
1433         the 2007-07-13 change in rfc2047-encode-message-header.
1434
1435         * mml.el (mml-insert-multipart): Error on the message header.
1436         (mml-insert-part): Error on the message header; position point at
1437         the end of a MIME tag.
1438
1439 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1440
1441         * time-date.el (autoload): Expand define-obsolete-function-alias into
1442         defalias and make-obsolete for old Emacsen that Gnus supports.
1443         (with-no-warnings): Define it for old Emacsen.
1444         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
1445         is available.
1446         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
1447         float-time is available; suppress compile warning for time-to-seconds.
1448
1449         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
1450         (gnus-float-time): Alias to float-time if it exists.
1451
1452         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
1453         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
1454         float-time is available; suppress compile warning for time-to-seconds.
1455
1456         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
1457         XEmacs.
1458
1459 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
1460
1461         * imap.el (imap-message-map): Docstring fix.
1462
1463 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1464
1465         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
1466         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
1467         Add the optional argument `encoding' that overrides the default.
1468
1469         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
1470         mm-encode-buffer.
1471
1472 2009-09-04  Glenn Morris  <rgm@gnu.org>
1473
1474         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
1475         mm-disable-multibyte, rather than default-enable-multibyte-characters.
1476         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
1477         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
1478         * mm-util.el (mm-with-unibyte-current-buffer)
1479         (mm-find-buffer-file-coding-system):
1480         * yenc.el (yenc-decode-region): Use default-value rather than
1481         default-enable-multibyte-characters.
1482
1483 2009-09-03  Glenn Morris  <rgm@gnu.org>
1484
1485         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
1486         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
1487         than default-enable-multibyte-characters.
1488
1489 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
1490
1491         * gnus-art.el (gnus-article-read-summary-keys):
1492         Fix gnus-buffer-configuration's value temporarily used.
1493
1494 2009-09-02  Glenn Morris  <rgm@gnu.org>
1495
1496         * gnus-util.el (gnus-float-time): New function.
1497         * gnus-delay.el (gnus-delay-article):
1498         * gnus-sum.el (gnus-thread-latest-date):
1499         * gnus-util.el (gnus-user-date): Use gnus-float-time.
1500         * nnspool.el (nnspool-request-newgroups):
1501         Use gnus-float-time rather than time-to-seconds.
1502         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
1503
1504         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
1505         (gnus-header-subject-face, gnus-header-newsgroups-face)
1506         (gnus-header-name-face, gnus-header-content-face):
1507         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
1508         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
1509         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
1510         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
1511         (gnus-cite-face-11):
1512         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
1513         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
1514         (gnus-server-closed-face, gnus-server-denied-face)
1515         (gnus-server-offline-face):
1516         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
1517         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
1518         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
1519         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
1520         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
1521         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
1522         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
1523         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
1524         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
1525         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
1526         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
1527         (gnus-summary-selected-face, gnus-summary-cancelled-face)
1528         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
1529         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
1530         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
1531         (gnus-summary-high-undownloaded-face)
1532         (gnus-summary-low-undownloaded-face)
1533         (gnus-summary-normal-undownloaded-face)
1534         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
1535         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
1536         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
1537         (gnus-splash-face):
1538         * message.el (message-header-to-face, message-header-cc-face)
1539         (message-header-subject-face, message-header-newsgroups-face)
1540         (message-header-other-face, message-header-name-face)
1541         (message-header-xheader-face, message-separator-face)
1542         (message-cited-text-face, message-mml-face):
1543         * sieve-mode.el (sieve-control-commands-face)
1544         (sieve-action-commands-face, sieve-test-commands-face)
1545         (sieve-tagged-arguments-face):
1546         * spam.el (spam-face):
1547         Mark face aliases with "-face" in the name as obsolete.
1548
1549 2009-09-01  Glenn Morris  <rgm@gnu.org>
1550
1551         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
1552         than goto-line.
1553
1554 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1555
1556         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
1557         Don't move point if the command is invoked inside the message header.
1558
1559 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1560
1561         * imap.el (imap-send-command): Simplify.
1562         (imap-wait-for-tag): point-max -> buffer-size.
1563
1564 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1565
1566         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
1567         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
1568         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
1569         * nnir.el (nnir-swish-e-index-file):
1570         * gnus-sum.el (gnus-summary-delete-marked-as-read)
1571         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
1572         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
1573         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
1574         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
1575         (gnus-treat-display-xface): Add Emacs version of obsolescence.
1576
1577 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1578
1579         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
1580         Don't save excursion.
1581
1582 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1583
1584         * nnheader.el (nnheader-find-file-noselect):
1585         * mm-util.el (mm-insert-file-contents):
1586         Use (default-value 'major-mode) instead of default-major-mode.
1587
1588 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1589
1590         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
1591
1592 2009-08-26  Glenn Morris  <rgm@gnu.org>
1593
1594         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
1595         than placing in files.el.
1596
1597 2009-08-25  Glenn Morris  <rgm@gnu.org>
1598
1599         * nnir.el (top-level): Don't require cl at run-time.
1600         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
1601         Replace cl-function substitute with gnus-replace-in-string.
1602         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
1603         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
1604         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
1605         simplified expansions.
1606
1607 2009-08-25  Kevin Ryde  <user42@zip.com.au>
1608
1609         * dig.el (dig): Add autoload cookie.
1610
1611 2009-08-22  Glenn Morris  <rgm@gnu.org>
1612
1613         * gnus-art.el (gnus-button-patch): Use forward-line rather than
1614         goto-line.
1615
1616 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
1617
1618         * parse-time.el (parse-time-string-chars): Save match data.
1619
1620 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
1621
1622         * parse-time.el (parse-time-string-chars): Compute using character
1623         classes, to handle non-ascii characters (Bug#3190).
1624
1625 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1626
1627         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
1628
1629         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
1630         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
1631         (gnus-mm-display-part, gnus-mime-display-single)
1632         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
1633         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
1634
1635         * gnus-sum.el
1636         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
1637         (gnus-summary-move-article): Add expirable mark to articles copied or
1638         moved to group that has auto-expire turned on if the option is non-nil.
1639
1640 2009-07-24  Glenn Morris  <rgm@gnu.org>
1641
1642         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
1643         Fix typo.  (Bug#3903)
1644
1645 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1646
1647         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
1648         gnus-article-read-summary-keys rather than gnus-summary-edit-article
1649         that should not be used for draft articles.
1650         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
1651         that has no concern in minor mode keys.
1652         (gnus-article-summary-command, gnus-article-summary-command-nosave):
1653         Abolish.
1654
1655 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1656
1657         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
1658         article without making inquiry to a user for unknown encoding.
1659
1660         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
1661         (nnmaildir--scan): Assume i-node and device number that file-attributes
1662         returns might be cons-cell.
1663
1664         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
1665
1666         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
1667
1668 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
1669
1670         * auth-source.el: Remove docs now in auth.texi.  Don't use
1671         `gnus-message' for logging.  Add new variables `auth-source-debug' and
1672         `auth-source-hide-passwords' and use them.
1673
1674 2009-07-15  Glenn Morris  <rgm@gnu.org>
1675
1676         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
1677
1678 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1679
1680         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
1681         excessive whitespace from the default values of title and description.
1682
1683 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1684
1685         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
1686         mail-fetch-field to fetch Content-Description header in order to
1687         exclude newlines.
1688
1689 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
1690
1691         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
1692         format used by GnuPG 2.0.11.
1693
1694 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1695
1696         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
1697         to deleted part.
1698
1699 2009-05-30  David Engster  <dengste@eml.cc>
1700
1701         * nnmairix.el: Remove old documentation in the commentary block.
1702         (nnmairix-request-group): Do not update active file for nnml back ends.
1703         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
1704         end so that overview files are ignored.
1705         (nnmairix-update-groups): Make updating the groups more robust by using
1706         marks.
1707         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
1708         with dollar characters in message-id.
1709
1710 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
1711
1712         * spam.el: Use dns-query instead of query-dns.  Was renamed on
1713         2008-12-25 in dns.el.
1714
1715 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1716
1717         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
1718         could happen if the text is only composed of spaces and/or tabs.
1719
1720 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
1721
1722         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
1723         when sending a queued message to avoid extra mml tags.
1724
1725 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1726
1727         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
1728
1729 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1730
1731         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
1732         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
1733         rmail-toggle-header for XEmacs;
1734         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
1735
1736 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1737
1738         * gnus-dired.el: Remove autoload for gnus-setup-message.
1739         (gnus-dired-attach): Fake this-command value to prevent Gnus from
1740         displaying Gnus logo; always use compose-mail.
1741
1742 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1743
1744         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
1745
1746 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1747
1748         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
1749         (gnus-nocem-issuers): List currently active issuers; fix custom type.
1750         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
1751         available.
1752         (gnus-nocem-epg-verify): New function.
1753
1754 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
1755
1756         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
1757
1758 2009-02-15  Glenn Morris  <rgm@gnu.org>
1759
1760         * gnus-util.el (rmail-insert-rmail-file-header)
1761         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
1762         autoloads.
1763         (rmail-default-rmail-file): Remove unnecessary declaration.
1764         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
1765
1766 2009-02-14  Glenn Morris  <rgm@gnu.org>
1767
1768         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
1769         variable (only used in gnus-util, which declares it anyway).
1770         (rmail-output-to-rmail-file): Remove autoload of deleted function,
1771         which was only needed by gnus-art (changed to not use it any more).
1772         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
1773         only used in gnus-util, which autoloads it itself.
1774         (rmail-update-summary): Fix autoload.
1775
1776         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
1777         rather than rmail-output-to-rmail-file.
1778
1779 2009-02-07  Glenn Morris  <rgm@gnu.org>
1780
1781         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
1782         autoload of function that no longer exists.
1783         (rmail-toggle-header): Declare.
1784         (message-forward-rmail-make-body): Handle mbox Rmail.
1785
1786 2009-01-31  Glenn Morris  <rgm@gnu.org>
1787
1788         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
1789         2009-01-09 change.
1790
1791 2009-01-31  Dave Love  <fx@gnu.org>
1792
1793         * imap.el (imap-fetch-safe): Bind debug-on-error.
1794         (imap-debug): Add imap-fetch-safe.
1795
1796 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
1797
1798         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
1799         (auth-source-forget-all-cached): New convenience function.
1800         (auth-source-user-or-password): Accept list of modes or a single mode.
1801
1802         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
1803         auth-source modes.
1804
1805         * netrc.el (netrc-machine-user-or-password): Use list of
1806         auth-source modes.
1807
1808         * nnimap.el (nnimap-open-connection): Use list of
1809         auth-source modes.
1810
1811         * nntp.el (nntp-send-authinfo): Use list of
1812         auth-source modes.
1813
1814 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
1815
1816         * auth-source.el: Update docs to reflect epa-file-enable is to be used
1817         now.
1818
1819 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1820
1821         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
1822         coding system in XEmacs; add a workaround for XEmacs.
1823
1824         * lpath.el: Fbind coding-system-aliasee.
1825
1826 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1827
1828         * mm-util.el (mm-coding-system-priorities): Protect against nil value
1829         of current-language-environment.
1830
1831 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
1832
1833         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
1834         available at runtime.
1835
1836 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1837
1838         * gnus-art.el (article-date-ut): Fix end point of narrowing.
1839
1840 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
1841
1842         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
1843         the greatest positive fixnum value doesn't work under an XEmacs with
1844         bignum support; use the most-positive-fixnum constant instead,
1845         available since Emacs 21.1 with cl and XEmacs 21.1.
1846
1847 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1848
1849         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
1850         XEmacs gets not to work.
1851
1852 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1853
1854         * mm-util.el (mm-coding-system-priorities): Allow the value like
1855         "Japanese (UTF-8)" of current-language-environment.
1856
1857 2009-01-09  Glenn Morris  <rgm@gnu.org>
1858
1859         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
1860         with last-command-event.
1861
1862 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
1863
1864         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
1865         in the doc string.
1866
1867         * message.el (message-fix-before-sending): Amend comment.
1868
1869 2009-01-08  Dave Love  <fx@gnu.org>
1870
1871         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
1872
1873 2009-01-07  David Engster  <dengste@eml.cc>
1874
1875         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
1876         simplified server definitions by converting it via
1877         gnus-server-to-method.
1878
1879 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1880
1881         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
1882         parameter's operands.
1883
1884 2009-01-06  David Engster  <dengste@eml.cc>
1885
1886         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
1887         primary select method (for gnus-group-mark-article-as-read).
1888
1889 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
1890
1891         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
1892         `(gnus)Face', not `(gnus)X-Face'.
1893
1894 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1895
1896         * mm-util.el (mm-ucs-to-char): New function.
1897
1898         * mm-url.el (mm-url-decode-entities): Use it.
1899
1900         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
1901         unicode-to-char.
1902
1903 2009-01-05  Dave Love  <fx@gnu.org>
1904
1905         * time-date.el: Require cl for `declare'.
1906
1907 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
1908
1909         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
1910         Dave Love.
1911
1912 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
1913
1914         * message.el (message-fix-before-sending): Add `eight-bit' to
1915         illegible-text check.
1916
1917 2009-01-03  Michael Olson  <mwolson@gnu.org>
1918
1919         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
1920         `headers' is nil.  This can occur if the IMAP server does not have
1921         permissions to read messages from a folder, but can write new messages
1922         to the folder.
1923         (nnimap-request-article-part): Do not insert `data' if it is nil.
1924
1925         * imap.el (imap-parse-fetch): Courier can insert spurious blank
1926         characters which will confuse `read', so skip past them.
1927
1928 2009-01-01  Dave Love  <fx@gnu.org>
1929
1930         * imap.el (imap-string-to-integer): Fix typo.
1931         (imap-fetch-safe): New function.
1932         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
1933
1934         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
1935
1936         * imap.el (imap-process-connection-type, imap-debug, imap-open):
1937         (imap-parse-greeting): Fix doc strings.
1938         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
1939         (imap-parse-flag-list): Make messages unique.
1940         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
1941
1942         * nnimap.el: Fix author email.
1943         (nnimap-split-rule): Add FIXME comment.
1944         (nnimap-debug): Fix doc string.
1945
1946 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
1947
1948         * dns.el (dns-set-servers): Check "Address".  Fix typo.
1949
1950 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
1951
1952         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
1953         nslookup if resolv.conf isn't available.
1954         (dns-query): Rename from query-dns.
1955         (dns-query-cached): Rename from query-dns-cached.
1956
1957 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1958
1959         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
1960         overlay-arrow-position and overlay-arrow-string buffer-local; no need
1961         to check if those variables exist (first appeared in Emacs 18.50).
1962
1963 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1964
1965         * mm-util.el (mm-line-number-at-pos): New function.
1966
1967         * spam-report.el (spam-report-process-queue): Use it.
1968
1969 2008-12-24  David Engster  <dengste@eml.cc>
1970
1971         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
1972         parameters that haven't existed as variables as buffer-local variables.
1973
1974 2008-12-23  Dave Love  <fx@gnu.org>
1975
1976         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
1977         cadar.
1978
1979         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
1980         imap-starttls-p.
1981         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
1982
1983 2008-12-22  Dave Love  <fx@gnu.org>
1984
1985         * imap.el: Fix author email.  Doc fixes.
1986         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
1987         reply.
1988
1989 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
1990
1991         * spam-report.el (spam-report-gmane-max-requests): New constant.
1992         (spam-report-gmane-wait): New variable.
1993         (spam-report-gmane-ham, spam-report-gmane-spam)
1994         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
1995         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
1996         the server.
1997
1998         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
1999         Add explanations.
2000
2001         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2002         nnheader-accept-process-output and nnheader-read-timeout if available.
2003         (pop3-movemail): Use it.
2004
2005         * message.el (message-check-news-body-syntax): Fix signature check if
2006         there's an attachment.
2007
2008 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2009
2010         * mm-util.el: Add comments to the mm- emulating functions.
2011
2012 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2013
2014         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2015         by Stephen Berman <stephen.berman@gmx.net>.
2016
2017 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2018
2019         * mm-util.el (mm-substring-no-properties): New function.
2020         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2021         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2022         (mm-string-to-multibyte): Doc fix.
2023
2024         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2025
2026 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2027
2028         * mml.el (mml-attach-file): Strip text properties from file name.
2029         (Bug#1574)
2030
2031 2008-12-16  Glenn Morris  <rgm@gnu.org>
2032
2033         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2034
2035 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2036
2037         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2038         knows since the charset specified might be a bogus alias that
2039         mm-charset-synonym-alist provides.
2040
2041 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2042
2043         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2044         "ISO_8859-1".
2045
2046         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2047
2048 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2049
2050         * mm-util.el (mm-charset-eval-alist):
2051         Define it before mm-charset-to-coding-system.
2052         (mm-charset-to-coding-system): Add optional argument `silent';
2053         define it before mm-charset-override-alist.
2054         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2055         default value if it can be used in Emacs currently running;
2056         silence mm-charset-to-coding-system.
2057
2058 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2059
2060         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2061         `allow-override' which says whether to use `mm-charset-override-alist'.
2062         (rfc2047-decode-encoded-words): Use it.
2063
2064         * mm-util.el (mm-charset-override-alist): Fix custom type;
2065         add `(gb2312 . gbk)' to choices.
2066
2067 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2068
2069         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2070         fast.
2071
2072         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2073
2074         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2075
2076 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2077
2078         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2079         on links.
2080
2081         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2082
2083 2008-12-03  Lute Kamstra  <lute@gnu.org>
2084
2085         * sha1.el: Remove leading * from docstrings of defcustoms,
2086         deffaces, defconsts and defuns.
2087
2088 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2089
2090         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2091         users' addresses that don't have domain parts.
2092         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2093         rather than message-narrow-to-head since there will be the message
2094         header separator.
2095
2096 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2097
2098         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2099         since the result is inserted in a unibyte buffer anyway.
2100         (nnimap-demule-use-string-to-multibyte): Remove.
2101         (nnimap-demule): Alias it to mm-string-to-multibyte.
2102
2103 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2104
2105         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2106         variable for debugging bug#464 and bug#1174.
2107         (nnimap-demule): Use it.
2108
2109 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2110
2111         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2112         score calculation correctly.
2113
2114 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2115
2116         * message.el (message-send-mail): Just set the buffer to unibyte
2117         rather than use mm-with-unibyte-current-buffer which does a lot more.
2118         (message-send-mail-partially): Don't bother with
2119         mm-with-unibyte-current-buffer since it's already been made unibyte by
2120         message-send-mail.
2121
2122 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2123
2124         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2125
2126 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2127
2128         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2129
2130 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2131
2132         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2133         require itself and to remove `with-no-warnings'.
2134
2135 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2136
2137         * starttls.el (starttls-any-program-available): Get the name of the
2138         available TLS layer program.
2139         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2140         well as the host name in the "opening" message.
2141
2142         * auth-source.el (auth-source-cache, auth-source-do-cache)
2143         (auth-source-user-or-password): Cache passwords and logins by default,
2144         allow override with `auth-source-do-cache'.
2145         (auth-source-forget-user-or-password): Allow users to remove cache
2146         entries if needed.
2147
2148 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2149
2150         * md4.el (md4-buffer): Fix typo in docstring.
2151         (md4, md4-64): Doc fixes.
2152         (md4-pack-int32): Reflow docstring.
2153
2154 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2155
2156         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2157         condition-case to only the forward-sexp call.
2158
2159 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2160
2161         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2162         quotes contained.  Make it more robust regardless by an extra
2163         condition-case wrapper.
2164
2165 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2166
2167         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2168
2169 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2170
2171         * nnml.el (nnml-request-expire-articles): Check if the function set to
2172         `nnmail-expiry-target' returns the symbol `delete'.
2173
2174         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2175
2176         * nnmail.el (nnmail-expiry-target): Fix custom type.
2177
2178 2008-10-02  Glenn Morris  <rgm@gnu.org>
2179
2180         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2181         Silence compiler warning.
2182
2183 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2184
2185         * tls.el (open-tls-stream): Show the actual command being
2186         executed, instead of the format string.
2187
2188 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2189
2190         * lpath.el: Fbind codepage-setup for Emacs 23.
2191
2192 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2193
2194         * mml.el (mml-menu): Don't assume mml2015 is bound.
2195
2196 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2197
2198         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2199         exists.
2200
2201 2008-09-27  Glenn Morris  <rgm@gnu.org>
2202
2203         * gnus-util.el (mail-header-remove-comments): Autoload it.
2204
2205 2008-09-27  Andreas Schwab  <schwab@suse.de>
2206
2207         * gnus-util.el (gnus-split-references): Strip comments.
2208         (gnus-parent-id): Likewise.
2209
2210 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2211
2212         * message.el (message-confirm-send): Fix version.
2213
2214 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2215
2216         * message.el (message-idna-to-ascii-rhs-1): Use
2217         mail-extract-address-components rather than mail-header-parse-addresses
2218         that is an alias by default to ietf-drums-parse-addresses that does not
2219         support non-ASCII names in headers' contents.
2220
2221 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2222
2223         * message.el (message-confirm-send): Fixed variable documentation to
2224         avoid the "y/n" wording.
2225
2226 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2227
2228         * message.el (message-set-auto-save-file-name): Save to a different
2229         filename so multiple messages (especially drafts) can be recovered.
2230
2231 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2232
2233         * message.el (message-confirm-send): Add appropriate version.
2234
2235 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2236
2237         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2238         defvar.
2239
2240 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2241
2242         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2243         (mm-pkcs7-enveloped-magic): Ditto.
2244
2245 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2246
2247         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2248         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2249
2250 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2251
2252         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2253         default, it's better.
2254
2255 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2256
2257         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2258         summary line gnus-number property and ignore them (with a warning
2259         message).
2260
2261 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2262
2263         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2264         macro caddr in the interactive form since it won't be expanded.
2265
2266 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2267
2268         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2269         `charset'; fix name of function called recursively.
2270         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2271
2272 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2273
2274         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2275         (gnus-mime-set-charset-parameters): New function.
2276         (gnus-mime-view-part-as-charset): Use it to correctly display part
2277         specifying wrong charset.
2278
2279 2008-09-08  David Engster  <dengste@eml.cc>
2280
2281         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2282         in completing-read for back end server.
2283
2284 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2285
2286         * message.el (message-confirm-send): New variable to confirm sending a
2287         message.
2288         (message-send): Use it.
2289
2290 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2291
2292         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2293
2294 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2295
2296         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2297
2298 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2299
2300         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2301         prevent tracking too many groups.
2302         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2303         Use it.
2304
2305 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2306
2307         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2308         moving point to the bottom of the window in order to avoid recentering.
2309
2310 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2311
2312         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2313
2314         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2315         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2316         (gnus-article-beginning-of-window): Fix calculation.
2317
2318 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2319
2320         * gnus-msg.el (gnus-summary-supersede-article)
2321         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2322         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2323         message header.
2324
2325 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2326
2327         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2328         pending output coming after the status change.
2329
2330 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2331
2332         * message.el:
2333         * gnus-start.el:
2334         * gnus-registry.el: Remove VMS support.
2335
2336 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2337
2338         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2339         macro.
2340         (rfc2104-hash): Use it.
2341
2342 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2343
2344         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2345         (gnus-summary-sort-by-most-recent-date): New commands.
2346         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2347         and menu entries.
2348
2349 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2350
2351         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2352         don't redisplay article for raw contents; remove plural articles stuff.
2353
2354         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2355         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2356         on gnus-summary-save-article; display results properly.
2357
2358 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2359
2360         * lpath.el: No need to fbind ns-focus-frame.
2361
2362 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2363
2364         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2365
2366 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2367
2368         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2369         gnus-save-all-headers.
2370
2371 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2372
2373         * gnus-util.el (ns-focus-frame): Remove declaration.
2374         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2375         like x.
2376
2377 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2378
2379         * rfc2104.el (rfc2104-zero): Delete defconst.
2380         (rfc2104-hex-alist): Likewise.
2381         (rfc2104-hex-to-int): Delete func.
2382         (rfc2104-hexstring-to-bitstring): Likewise.
2383         (rfc2104-nybbles): New defconst.
2384         (rfc2104-hash): Rewrite for speed.
2385
2386 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2387
2388         * tls.el (open-tls-stream): Make it work with the 2nd argument
2389         BUFFER that is a string but does not exist as a buffer object, as
2390         mentioned in the doc-string.
2391
2392 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2393
2394         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
2395         SXEmacs.
2396
2397 2008-07-16  Glenn Morris  <rgm@gnu.org>
2398
2399         * gnus-util.el (ns-focus-frame): Declare for compiler.
2400
2401 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2402
2403         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
2404         set as a group parameter.
2405         (gnus-summary-save-in-pipe): Work when it is called independently.
2406         (gnus-summary-pipe-to-muttprint): Don't modify
2407         gnus-summary-pipe-output-default-command.
2408
2409 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2410
2411         * message.el (message-send-mail-with-sendmail):
2412         Display the error message.
2413
2414 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2415
2416         * gnus-art.el (gnus-default-article-saver):
2417         Add gnus-summary-save-in-pipe to choices.
2418         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
2419         gnus-summary-pipe-output-default-command as the default command.
2420         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
2421         instead of gnus-last-shell-command.
2422
2423         * gnus-sum.el (gnus-summary-pipe-output-default-command):
2424         New user option.
2425         (gnus-summary-muttprint-program): Mention the value will be changed.
2426         (gnus-summary-save-article): Force showing of all headers.
2427         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
2428
2429 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
2430
2431         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
2432
2433 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
2434
2435         * nnimap.el (nnimap-id):
2436         * sieve-manage.el (sieve-manage-open): Doc fixes.
2437
2438 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
2439
2440         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
2441         if available.
2442
2443 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2444
2445         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
2446
2447         * nnkiboze.el (nnkiboze-generate-group):
2448         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
2449
2450         * nnmairix.el: Require CL.
2451
2452 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2453
2454         * dgnushack.el: Autoload get-display-table and put-display-table for
2455         XEmacs 21.5.
2456
2457         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
2458         21.4 and SXEmacs.
2459
2460 2008-06-15  David Engster  <dengste@eml.cc>
2461
2462         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
2463
2464 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
2465
2466         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
2467         New macros that expand to an `aset'/`aref' call under Emacs, and to a
2468         runtime choice under XEmacs.
2469
2470         * gnus-sum.el (gnus-summary-set-display-table):
2471         Use `gnus-put-display-table', `gnus-get-display-table',
2472         `gnus-set-display-table' for the display table, instead of `aset'.
2473
2474         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
2475         Use `gnus-put-display-table', `gnus-get-display-table',
2476         `gnus-set-display-table' for the display table.
2477
2478 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
2479
2480         * nnmairix.el: Add autoloads.
2481
2482 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
2483
2484         * nnmairix.el (nnmairix-delete-recreate-group)
2485         (nnmairix-update-and-clear-marks): Fix error messages.
2486
2487 2008-06-14  David Engster  <dengste@eml.cc>
2488
2489         * nnmairix.el: Upgrade to version 0.6.
2490         (nnmairix-group-toggle-propmarks-this-group)
2491         (nnmairix-group-toggle-readmarks-this-group)
2492         (nnmairix-group-delete-recreate-this-group)
2493         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
2494         (nnmairix-remove-tick-mark-original-article): New commands.
2495         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
2496         (nnmairix-propagate-marks-to-nnmairix-groups)
2497         (nnmairix-only-use-registry, nnmairix-allowfast-default)
2498         (nnmairix-marks-cache, nnmairix-version-output): New variables.
2499         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
2500         functions needed for marks propagation and manipulation of read marks.
2501         (nnmairix-update-groups): New function.
2502         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
2503         (nnmairix-determine-original-group-from-registry)
2504         (nnmairix-determine-original-group-from-path)
2505         (nnmairix-get-group-from-file-path, nnmairix-map-range)
2506         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
2507         New helper functions.
2508         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
2509         keystrokes for new commands.
2510         (nnmairix-delete-and-create-on-change): Doc string cleanup.
2511         (nnmairix-request-group): Check allow-fast group parameter.
2512         (nnmairix-request-create-group): Set allow-fast group parameter if
2513         nnmairix-allowfast-default is set.
2514         (nnmairix-close-group): Propagate marks upon closing if needed.
2515         (nnmairix-group-toggle-threads-this-group): Use new.
2516         nnmairix-group-toggle-parameter helper function.
2517         (nnmairix-search): Better check for empty search result.
2518         (nnmairix-goto-original-article): Use new helper functions for
2519         determining original article.
2520         (nnmairix-show-original-article): Make sure message-id is in brackets.
2521         (nnmairix-call-mairix-binary): Change variable name.
2522         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
2523         helper function.
2524         (nnmairix-widget-toggle-activate): Fix doc string.
2525
2526 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2527
2528         * nnir.el: Require edmacro when compiling with XEmacs.
2529         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
2530         available in Emacs 21.
2531
2532 2008-06-11  Glenn Morris  <rgm@gnu.org>
2533
2534         * gnus-util.el (x-focus-frame):
2535         * gnus.el (image-size):
2536         * mm-decode.el (image-size): Declare.
2537
2538         * gnus-picon.el (declare-function): Add compat definition.
2539         (image-size): Declare.
2540
2541         * gnus-group.el (tool-bar-map):
2542         * gnus-sum.el (tool-bar-map): Define for compiler.
2543
2544         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
2545
2546         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
2547
2548         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
2549         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
2550         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
2551         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
2552         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
2553         * sieve-manage.el, spam-report.el, spam.el:
2554         Remove unnecessary eval-and-compile of autoloads.
2555
2556 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
2557
2558         * auth-source.el: Precise Tramp doc.
2559
2560 2008-06-07  Glenn Morris  <rgm@gnu.org>
2561
2562         * nnmairix.el: Remove unnecessary eval-when-compile.
2563
2564 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2565
2566         * lpath.el: Fbind propertize for XEmacs 21.4.
2567
2568 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
2569
2570         * nnir.el: Move here from ../contrib.
2571
2572 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2573
2574         * gnus-util.el (gnus-read-shell-command): New function.
2575         * mm-decode.el (mm-pipe-part):
2576         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
2577
2578 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2579
2580         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
2581
2582 2008-06-03  Glenn Morris  <rgm@gnu.org>
2583
2584         * pop3.el (nnheader-accept-process-output): Autoload it.
2585
2586 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2587
2588         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
2589         are not 2-digit hexadecimal characters that follow `%'s.
2590
2591 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
2592
2593         * message.el (message-bogus-recipient-p): Fix type in doc string.
2594         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
2595         (message-bogus-addresses): Rename from message-bogus-address-regexp.
2596         Improve custom options.
2597         (message-bogus-recipient-p): Adjust accordingly.
2598
2599 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
2600
2601         * parse-time.el (parse-time-months, parse-time-weekdays): Add
2602         long-form month and day names.
2603
2604 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2605
2606         * dgnushack.el: Autoload debug, eudc-expand-inline and
2607         pgg-snarf-keys-region for XEmacs.
2608
2609         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
2610
2611         * nnmairix.el: Require edmacro when compiling with XEmacs.
2612
2613 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
2614
2615         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
2616         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
2617
2618 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
2619
2620         * auth-source.el: Add more docs.
2621
2622         * netrc.el (netrc-machine): Always match if the port is not given.
2623
2624 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2625
2626         * nnheader.el (nnheader-read-timeout): Change the default timeout from
2627         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
2628         retrieval faster in some cases, but might make CPU usage larger.  If
2629         this has any bad side effects, we might revert this change.
2630
2631         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
2632         seems to make mail retrieval much, much faster.
2633         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
2634         unconditionally.
2635
2636         * gnus-draft.el (gnus-group-send-queue): Bind
2637         message-send-mail-partially-limit to nil to avoid being prompted.
2638
2639 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
2640
2641         * mml.el (mml-attach-buffer): Prompt for `disposition'.
2642
2643         * message.el (message-bogus-address-regexp): Fix and improve custom
2644         type.
2645         (message-setup-hook): Add message-check-recipients as custom option.
2646
2647 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
2648
2649         * message.el (message-cite-function): Remove bogus autoload which crept
2650         in during merge from v5-10.
2651
2652 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
2653
2654         * nnimap.el (nnimap-open-connection): Fix login/password bug.
2655
2656         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
2657
2658         * auth-source.el: Preliminary Tramp docs.
2659         (auth-sources): Change the default auth-sources to use
2660         EPA .gpg files.
2661
2662 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
2663
2664         * nntp.el: Autoload `auth-source-user-or-password'.
2665         (nntp-send-authinfo): Use it.
2666
2667         * nnimap.el: Autoload `auth-source-user-or-password'.
2668         (nnimap-open-connection): Use it.
2669
2670         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
2671         for the gnus-message function.
2672         (auth-source-user-or-password): Use it.
2673
2674 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2675
2676         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
2677         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
2678         (rfc2104-hash): Use it.
2679
2680 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
2681
2682         * gnus-art.el (gnus-article-toggle-truncate-lines):
2683         Don't use `iff' in docstring.
2684
2685 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
2686
2687         * gnus-registry.el: Adjusted copyright dates and added a keyword.
2688
2689         * gnus-util.el (gnus-extract-address-component-name)
2690         (gnus-extract-address-component-email): Convenience functions around
2691         `gnus-extract-address-components'.
2692
2693         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
2694         Use `gnus-extract-address-component-email' to fix bug of comparing full
2695         sender name to `user-mail-address'.
2696
2697 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
2698
2699         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
2700         catch/throw to optimize.
2701         (gnus-registry-find-keywords): Just use member to find a keyword.
2702
2703 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2704
2705         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
2706         is current before calling gnus-server-prepare.
2707         (gnus-server-setup-buffer, gnus-server-update-server)
2708         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
2709
2710 2008-05-04  Juri Linkov  <juri@jurta.org>
2711
2712         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
2713         (mailcap-file-default-commands): Use mailcap-replace-in-string
2714         instead of replace-regexp-in-string, and mailcap-delete-duplicates
2715         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
2716
2717 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
2718
2719         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
2720
2721 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2722
2723         * gnus.el: Bump version to 0.11.
2724
2725 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2726
2727         * gnus.el: No Gnus v0.10 is released.
2728
2729 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2730
2731         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
2732         hooks.
2733         (gnus-update-read-articles): Speed up non-marks-using users.
2734         (gnus-use-marks): Define gnus-use-marks.
2735         (gnus-propagate-marks): Rename variable to something more sensible.
2736
2737 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
2738
2739         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
2740         (gmm-image-load-path-for-library): Fix typos in docstrings.
2741         (gmm-message): Reflow docstring.
2742
2743 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
2744
2745         * mail-source.el (mail-source-set-1, mail-source-bind):
2746         Move auth-source code out of the macro to clean it up and fix bugs.
2747
2748 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
2749
2750         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
2751         by sender if it's equal to user-mail-address, it's likely to be
2752         useless.
2753
2754         * mail-source.el (mail-source-bind): Don't use user or password if they
2755         are not bound.  Unintern them if they are nil.  Don't use server unless
2756         it's bound, and default it to empty string otherwise.
2757
2758 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
2759
2760         * mail-source.el: Load auth-source.el.
2761         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
2762         get user name or password, if auth-sources is set up.
2763
2764         * gnus-registry.el (gnus-registry-split-strategy): New variable for
2765         strategy of splitting with parent.
2766         (gnus-registry-split-fancy-with-parent)
2767         (gnus-registry-post-process-groups): Use it and fix prior
2768         bug (returning a list as the split result).
2769
2770         * auth-source.el (auth-sources): Remove server parameter.
2771         (auth-source-pick, auth-source-user-or-password)
2772         (auth-source-user-or-password-imap)
2773         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
2774         (auth-source-user-or-password-sftp)
2775         (auth-source-user-or-password-smtp): Remove server parameter.
2776
2777 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
2778
2779         * smime.el (smime-sign-region, smime-encrypt-region)
2780         (smime-decrypt-region):
2781         Remove redundant calls to `generate-new-buffer-name'.
2782
2783 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
2784
2785         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
2786         Don't use QP for message/rfc822.
2787         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
2788
2789 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2790
2791         * sieve-manage.el (sieve-string-bytes): Remove.
2792         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
2793         correct byte-length only if the process's coding-system is the same as
2794         the one used internally by Emacs to represent strings.
2795
2796 2008-04-22  Juri Linkov  <juri@jurta.org>
2797
2798         * mailcap.el (mailcap-file-default-commands): New function.
2799
2800 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
2801
2802         * message.el (message-signature-separator, message-cite-function):
2803         Change custom version.
2804
2805 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
2806
2807         * tls.el (tls-program): Add -ign_eof argument to call the openssl
2808         commands.
2809         (tls-checktrust): Ditto.
2810
2811 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
2812
2813         * mm-decode.el (mm-display-external): Make temp file read-only.
2814
2815 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
2816
2817         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
2818         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
2819         `C-c C-f d'.
2820
2821 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
2822
2823         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
2824
2825 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
2826
2827         * gnus.el: Bump version to 0.9.
2828
2829 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
2830
2831         * gnus.el: No Gnus v0.8 is released.
2832
2833 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2834
2835         * mail-source.el (mail-source-value):
2836         Prefer fboundp to functionp so it works with macros as well.
2837
2838 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2839
2840         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2841         Fix last change in case the element is not even a symbol.
2842
2843 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2844
2845         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2846         Prefer fboundp to functionp so it works with macros as well.
2847
2848 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
2849
2850         * auth-source.el: Added docs.
2851         (auth-sources): Modify format to support server.
2852         (auth-source-pick, auth-source-user-or-password)
2853         (auth-source-user-or-password-imap)
2854         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
2855         (auth-source-user-or-password-sftp)
2856         (auth-source-user-or-password-smtp): Add server parameter.
2857
2858 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
2859
2860         * gnus-registry.el: Initialize the registry when gnus-registry-install
2861         is t.
2862
2863 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2864
2865         * compface.el (uncompface): Make buffer unibyte.
2866
2867 2008-04-05  Glenn Morris  <rgm@gnu.org>
2868
2869         * gnus-ems.el (mm-disable-multibyte): Autoload it.
2870
2871 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2872
2873         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
2874         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
2875
2876         * nnheader.el (nnheader-init-server-buffer): Change buffer's
2877         multibyteness after rather than before erasing it.
2878
2879         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
2880         mm-with-multibyte.
2881         (gnus-request-article-this-buffer): Make sure the proper decoding is
2882         used if gnus-original-article-buffer happens to be unibyte.
2883
2884         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
2885         default-enable-multibyte-characters.
2886
2887         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
2888         default-enable-multibyte-characters.
2889
2890         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
2891
2892         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
2893
2894 2008-04-02  Simon Josefsson  <simon@josefsson.org>
2895
2896         * imap.el (imap-enable-exchange-bug-workaround): New variable.
2897         (imap-message-copyuid-1): Use it.
2898         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
2899         J. Williams in
2900         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
2901
2902         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
2903         imap-enable-exchange-bug-workaround.
2904         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
2905
2906 2008-04-01  Simon Josefsson  <simon@josefsson.org>
2907
2908         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
2909         a 100 byte status-checks into a 2-3MB transfer for each group.
2910         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
2911         to enable bug workaround or not.
2912         (nnimap-find-minmax-uid): Only enable workaround conditionally.
2913
2914 2008-03-31  Glenn Morris  <rgm@gnu.org>
2915
2916         * message.el (mml2015-use): Declare for compiler.
2917         (message-info): Require mml2015 when appropriate.
2918
2919 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2920
2921         * Makefile.in (EMACS_COMP): Quote directory name that might contain
2922         whitespace.
2923
2924 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2925
2926         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
2927         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
2928         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
2929         (nntp-service-to-port): New function.
2930         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
2931         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
2932         (nntp-open-netcat-stream): New function.
2933         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
2934
2935 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
2936
2937         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
2938
2939 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2940
2941         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
2942
2943 2008-03-28  Magnus Henoch  <mange@freemail.hu>
2944
2945         * dns.el (dns-write): Use set-buffer-multibyte.
2946
2947 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
2948
2949         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
2950
2951 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
2952
2953         * message.el (message-signature-separator): Change default.
2954         Improve custom type.
2955         (message-cite-function): Change default to
2956         message-cite-original-without-signature.
2957
2958         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
2959         toggle.
2960
2961         * message.el (message-check-news-body-syntax): Fix signature check.
2962         (message-setup-1): Mark buffer as unmodified _after_ running
2963         message-setup-hook and handling message-alternative-emails.
2964         (message-shorten-references): Be more strict when building list of
2965         valid references to comply with GNKSA.
2966
2967         * gnus-group.el (gnus-read-ephemeral-bug-group)
2968         (gnus-read-ephemeral-debian-bug-group)
2969         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
2970
2971         * message.el (message-info): Don't use booleanp which isn't supported
2972         in Emacs 21 and XEmacs.
2973
2974 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
2975
2976         * gnus-group.el (gnus-gmane-group-download-format): Rename from
2977         gnus-group-gmane-group-download-format.
2978         (gnus-group-read-ephemeral-gmane-group): Rename from
2979         gnus-group-read-ephemeral-gmane-group.
2980         (gnus-read-ephemeral-gmane-group-url): Rename from
2981         gnus-group-read-ephemeral-gmane-group-url.
2982         (gnus-bug-group-download-format-alist): New variable.
2983         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
2984         (gnus-read-ephemeral-emacs-bug-group): New commands.
2985
2986 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
2987
2988         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
2989         (gnus-visible-headers): Improve custom type.
2990
2991 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
2992
2993         * mml.el (mml-menu): Add workarounds for XEmacs.
2994
2995         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
2996         X-Boundary header.
2997
2998         * message.el (message-simplify-recipients): Fix previous commit.
2999
3000 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3001
3002         * mm-util.el (mm-set-buffer-multibyte): New function.
3003         * mm-decode.el (mm-copy-to-buffer): Use it.
3004
3005 2008-03-19  Glenn Morris  <rgm@gnu.org>
3006
3007         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3008         Accidentally removed in the sync process with Emacs.
3009
3010 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3011
3012         * message.el (message-alter-recipients-discard-bogus-full-name):
3013         New function.
3014         (message-alter-recipients-function): New variable.
3015         (message-get-reply-headers): Use it.
3016         (message-replace-header): New helper function.
3017         (message-recipients-without-full-name): New variable.
3018         (message-simplify-recipients): New command.
3019
3020         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3021
3022         * message.el (message-info): Handle EasyPG manual.
3023
3024         * mml.el (mml-menu): Add entry for EasyPG.
3025
3026 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3027
3028         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3029         parameter.
3030
3031         * message.el (message-disassociate-draft): Specify drafts group name
3032         fully.
3033
3034 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3035
3036         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3037         unnecessary duplicates from the match list.
3038
3039 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3040
3041         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3042
3043         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3044
3045         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3046         args of `how-many' of which the XEmacs version doesn't take; declare
3047         Info-index-next as function.
3048
3049 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3050
3051         * gnus-score.el (gnus-score-headers): Fix handling of
3052         gnus-inhibit-slow-scoring.
3053
3054         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3055         string.
3056         (gnus-button-url-regexp): Improve handling of parenthesis.
3057         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3058         (gnus-button-handle-info-keystrokes): Handle index entries.
3059
3060 2008-03-15  Glenn Morris  <rgm@gnu.org>
3061
3062         * parse-time.el (parse-time-string): Simplify.
3063
3064 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3065
3066         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3067         Incoming* files.
3068
3069 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3070
3071         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3072         (auth-source-pick): Use it.
3073
3074 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3075
3076         * binhex.el (binhex-decode-region-internal):
3077         * uudecode.el (uudecode-decode-region-internal):
3078         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3079         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3080         setting default-enable-multibyte-characters.
3081
3082 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3083
3084         * auth-source.el (auth-source-protocols)
3085         (auth-source-protocols-customize, auth-source-choices): Added and
3086         modified variable customizations and defaults.
3087         (auth-source-pick, auth-source-user-or-password)
3088         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3089         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3090         (auth-source-user-or-password-sftp)
3091         (auth-source-user-or-password-smtp): Use new variables and provide an
3092         interface to netrc.el.
3093
3094 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3095
3096         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3097         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3098         Make sure the nntp port to specify is a string.
3099
3100 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3101
3102         * nntp.el: Use with-current-buffer.
3103         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3104         dubious mm-with-unibyte-current-buffer.
3105         (nntp-with-open-group-function): New function extracted from
3106         nntp-with-open-group macro.
3107         (nntp-with-open-group): Use the function, so it's easier to debug.
3108         Add indentation and debugging info.
3109         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3110         the use of the netcat alternatives.
3111
3112         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3113         Avoid mm-string-as-multibyte as well.
3114
3115         * nnweb.el (nnweb-insert-html):
3116         Remove use of nnheader-string-as-multibyte.
3117
3118         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3119         (nnheader-string-as-multibyte): Remove.
3120
3121         * mm-view.el: Use inhibit-read-only.
3122         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3123         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3124         or unibyte-string.
3125
3126         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3127         (mm-uu-yenc-extract): Use with-current-buffer.
3128
3129         * gnus-soup.el (gnus-soup-send-packet): Don't use
3130         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3131
3132         * nnmh.el: Use with-current-buffer.
3133         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3134         mm-string-as-multibyte on the output of mm-encode-coding-string.
3135
3136         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3137         (nnimap-request-move-article): Use with-current-buffer.
3138
3139         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3140         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3141         conversion uses string-make-unibyte rather than string-as-unibyte.
3142
3143         * gnus-msg.el: Use with-current-buffer.
3144
3145         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3146
3147 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3148
3149         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3150         string for caching if it is 'PIN.
3151
3152 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3153
3154         * lpath.el: Consider the case without Emacs/W3.
3155
3156 2008-03-08  Glenn Morris  <rgm@gnu.org>
3157
3158         * time-date.el (date-to-time, time-subtract, time-add)
3159         (safe-date-to-time): Doc fixes.
3160
3161 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3162
3163         * mail-source.el (mail-source-delete-old-incoming-confirm):
3164         Change default to nil.
3165         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3166
3167 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3168
3169         * lpath.el: Rearrange.
3170
3171         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3172         (gnus-article-goto-prev-page): Work for articles having ^L's.
3173
3174         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3175
3176         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3177
3178 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3179
3180         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3181         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3182         (gnus-bookmark-jump): Adjust some variable names.
3183
3184 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3185
3186         * auth-source.el: New package.
3187         (auth-source-choices): Add customization entry point variable.
3188
3189         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3190         bug.
3191
3192 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3193
3194         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3195         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3196         (gnus-registry-install-shortcuts): Rename from
3197         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3198         the `gnus-registry-mark-map' keymap dynamically from
3199         `gnus-registry-marks'.  The generated functions update the summary line
3200         when a registry mark is added or deleted, and will call
3201         `gnus-registry-install-p' (see the comments in the code).
3202         (gnus-registry-user-format-function-M): Use concat intelligently.
3203
3204         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3205         the registry mark functions.
3206
3207 2008-03-05  Glenn Morris  <rgm@gnu.org>
3208
3209         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3210         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3211         gnus-art.
3212         (top-level): No need to load own source when compiling.
3213
3214 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3215
3216         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3217         Suggested by <chris.anderton@zetnet.co.uk>.
3218
3219 2008-03-04  Glenn Morris  <rgm@gnu.org>
3220
3221         * gnus-sum.el (top-level): No need to require gnus when compiling,
3222         since unconditionally required near start of file.
3223         (gnus-summary-display-while-building): Move definition before use.
3224
3225 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3226
3227         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3228         formatting function.
3229
3230 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3231
3232         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3233         with plists.
3234         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3235         Use new format.
3236
3237 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3238
3239         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3240         `where-is-internal' that returns a range of key sequences.
3241
3242 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3243
3244         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3245
3246         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3247         (gnus-summary-jump-to-group): Consider windows on other displayed
3248         frames as well.  Similar changes might be needed elsewhere, but that's
3249         the one I've bumped into during my use.
3250
3251         * nndoc.el (nndoc-oe-dbx-type-p):
3252         * gnus-msg.el (gnus-debug):
3253         * gnus-group.el (gnus-update-group-mark-positions):
3254         Use mm-string-to-multibyte.
3255
3256 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3257
3258         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3259         doesn't handle NotDashEscaped.
3260
3261         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3262         (mml-dnd-attach-options): Fix typo in custom choice.
3263
3264         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3265         nndoc-article-type to mbox.
3266         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3267
3268         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3269         to nil, instead of html2text.
3270
3271         * imap.el (imap-debug): Add `imap-ping-server'.
3272
3273         * gnus-bookmark.el: Add FIXMEs.
3274
3275         * message.el (message-form-letter-separator)
3276         (message-send-form-letter-delay): New variables.
3277         (message-send-form-letter): Use them.  New command to send form
3278         letters.  Requested by Uwe Siart.
3279         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3280
3281 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3282
3283         * Update copyright years.
3284
3285 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3286
3287         Sync from EMACS_22_BASE.
3288
3289         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3290
3291 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3292
3293         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3294         empty author.
3295
3296 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3297
3298         * gnus-registry.el (gnus-registry-marks): Add variable for
3299         customization of marks and their appearance.
3300         (gnus-registry-read-mark): Use it.
3301         (gnus-registry-do-marks): Add utility function to loop through
3302         `gnus-registry-marks'.
3303         (gnus-registry-install-shortcuts-and-menus): Add function to install
3304         shortcuts and menus.
3305         (gnus-registry-initialize): Use it.
3306         (gnus-registry-default-mark): Clarify documentation.
3307
3308 2008-02-29  Glenn Morris  <rgm@gnu.org>
3309
3310         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3311         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3312         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3313         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3314         Change defcustom :version from 23.0 to 23.1.
3315
3316 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3317
3318         * gnus-registry.el (gnus-registry-follow-group-p)
3319         (gnus-registry-post-process-groups): Add functions to aid registry
3320         splitting and improve logging.  Clarify behavior in function
3321         documentation.
3322         (gnus-registry-split-fancy-with-parent): Use them.
3323
3324 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3325
3326         * gnus-art.el: Use with-current-buffer.
3327
3328 2008-02-27  David Engster  <dengste@eml.cc>
3329
3330         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3331         Express real group name in the response.
3332
3333 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3334
3335         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3336         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3337         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3338         autoload gnus-registry-fetch-group when compiling.
3339         (nnmairix-request-group-with-article-number-correction): Remove
3340         unreferenced argument passed to nnmairix-call-backend.
3341
3342 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3343
3344         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3345         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3346         Wilde.
3347
3348 2008-02-27  Glenn Morris  <rgm@gnu.org>
3349
3350         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3351         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3352         variables to defconsts.  Convert comments to doc-strings.
3353         (nnmairix-last-server, nnmairix-current-server): Convert from free
3354         variables to defvars.  Convert comments to doc-strings.
3355         (gnus-registry-fetch-group): Autoload.
3356         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3357         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3358         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3359         caddr.
3360         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3361         nnmairix-request-group-with-article-number-correction call.
3362         (nnmairix-fast, nnmairix-group): New, less general names, for free
3363         variables passed from nnmairix-request-group to
3364         nnmairix-request-group-with-article-number-correction.  Declare.
3365         (nnmairix-request-group-with-article-number-correction):
3366         Use nnmairix-fast, nnmairix-group rather than fast, group.
3367
3368 2008-02-26  David Engster  <dengste@eml.cc>
3369
3370         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3371         version 0.5.
3372
3373 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3374
3375         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3376         instead of making an extra function call.  Don't add the current group
3377         to articles only when they have the group.  Use
3378         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3379         Reported by David <de_bb@arcor.de>.
3380
3381 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3382
3383         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
3384         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
3385
3386 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
3387
3388         * mail-source.el (mail-source-delete-incoming): Change default.
3389         Supplement doc string.
3390
3391         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
3392
3393 2008-02-14  Glenn Morris  <rgm@gnu.org>
3394
3395         * time-date.el (format-seconds): New function.
3396
3397 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
3398
3399         * nnmail.el (nnmail-message-id-cache-file): Derive from
3400         `gnus-home-directory'.
3401
3402 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
3403
3404         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
3405         Document negative prefix.
3406
3407         * gnus-group.el (gnus-group-read-group): Document negative prefix.
3408
3409 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3410
3411         * message.el (message-unsent-separator): Add the Exim bounce
3412         separator.
3413
3414 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
3415
3416         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
3417         list.
3418         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
3419         recipient/signer list.
3420
3421 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3422
3423         * Makefile.in (datarootdir): Define.
3424         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
3425         name that might contain whitespace.
3426
3427 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
3428
3429         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
3430         fbound (Emacs 23 unicode), signal an error.
3431
3432 2008-02-08  Glenn Morris  <rgm@gnu.org>
3433
3434         * gnus-art.el (pgg-display-output-buffer): Declare as function.
3435
3436 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
3437
3438         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
3439         ports to the calls to `netrc-machine-user-or-password' in addition to
3440         "imap" and "imaps".
3441
3442 2008-02-01  Zhang Wei  <id.brep@gmail.com>
3443
3444         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
3445
3446         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
3447
3448 2008-02-01  Kenichi Handa  <handa@m17n.org>
3449
3450         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
3451         rfc2104-hexstring-to-bitstring and changed to return a byte list.
3452         (rfc2104-hash): Convert the result of concat to unibyte string.
3453
3454 2008-02-01  Dave Love  <fx@gnu.org>
3455
3456         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
3457         coding-system-for-read.
3458         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
3459
3460 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
3461
3462         * gnus.el (gnus-group-startup-message): Add `find-image' call before
3463         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
3464         <hanche@math.ntnu.no>.
3465
3466 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3467
3468         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
3469
3470         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
3471
3472 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
3473
3474         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
3475         * message.el (message-beginning-of-line): Use featurep instead of bound
3476         tests in order to resolve conditionals at compile time.
3477
3478 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
3479
3480         * mail-source.el (mail-sources): Add `group' choice.
3481
3482         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
3483         parameter `in-group' to control into which group the articles go.
3484         Add treatment of `group' mail-source.
3485
3486 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
3487
3488         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
3489
3490         * mm-decode.el (mm-dissect-buffer): Decode description.
3491
3492         * mml.el (mml-to-mime): Encode message header first.
3493
3494 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3495
3496         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
3497         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
3498
3499         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
3500         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
3501
3502 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
3503
3504         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
3505
3506 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3507
3508         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
3509         prefix keys.
3510         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
3511         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
3512         gnus-xmas.el.
3513
3514         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
3515         (gnus-xmas-article-describe-bindings): New function.
3516         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
3517         gnus-xmas-article-describe-bindings.
3518
3519         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
3520
3521 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
3522
3523         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
3524         Add new variables for article mark management.
3525         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
3526         list of extra data entries which, when present, will indicate that the
3527         article ID should not be trimmed from the registry.
3528         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
3529         functions.
3530         (gnus-registry-read-mark): New function to read a mark name from the
3531         user.
3532         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
3533         (gnus-registry-set-article-mark-internal): New functions to add and
3534         remove marks.
3535         (gnus-registry-get-article-marks): New function to show the marks for
3536         an article, or retrieve them for further use.
3537
3538 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3539
3540         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
3541         keys when no argument is given.
3542
3543 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
3544
3545         * imap.el (imap-ping-server): New variable.
3546         (imap-opened): On add extra ping if imap-ping-server is non-nil.
3547         (imap-ping-server): Minor doc string fixes.
3548
3549 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
3550
3551         * imap.el (imap-ping-server): New function.
3552         (imap-opened): Call imap-ping-server.
3553
3554 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
3555
3556         * gnus-sum.el (gnus-article-sort-by-random)
3557         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
3558         jidanni@jidanni.org.
3559
3560 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3561
3562         * gnus-art.el (gnus-article-describe-bindings): New function.
3563         (gnus-article-read-summary-keys): Use it.
3564         (gnus-article-mode-map): Bind `C-h b' to it.
3565
3566 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3567
3568         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
3569         XEmacs.
3570         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
3571         against non-character events.
3572
3573         * lpath.el: Fbind map-keymap for Emacs 21.
3574
3575 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
3576
3577         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
3578         command.
3579         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
3580         instead of END.  Change name of the temp file.
3581         (gnus-group-gmane-group-download-format): Add doc string.  Make it
3582         customizable.
3583
3584 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3585
3586         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
3587         bind `S W' to gnus-article-wide-reply-with-original; set default
3588         binding to gnus-article-read-summary-send-keys.
3589         (gnus-article-read-summary-keys): Fix the order of keys; display
3590         continuation keys correctly in the echo area; describe bindings
3591         correctly when keys end with `C-h'.
3592         (gnus-article-read-summary-send-keys): New function.
3593         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
3594         for gnus-article-read-summary-send-keys; display continuation keys
3595         correctly in the echo area.
3596         (gnus-article-reply-with-original): Ignore prefix argument.
3597         (gnus-article-wide-reply-with-original): New function.
3598
3599         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
3600         Emacs 21.
3601
3602 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3603
3604         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
3605         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
3606
3607 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
3608
3609         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
3610         (gnus-group-read-ephemeral-gmane-group): New command.
3611
3612 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
3613
3614         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
3615
3616 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
3617
3618         * message.el (message-send-mail-function): Increase custom version.
3619
3620         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
3621         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
3622
3623 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
3624
3625         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
3626         for the cases where imap-authenticate is called with a nil buffer
3627         parameter.
3628
3629 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3630
3631         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
3632         html parts correctly; support forwarded messages.
3633         (gnus-article-browse-html-article): Remove work buffers.
3634
3635         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
3636         compiling.
3637         (netrc-bound-and-true-p): New macro.
3638         (netrc-parse): Use it instead of bound-and-true-p that is not available
3639         in XEmacs 21.4.
3640
3641 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
3642
3643         * gnus-registry.el (gnus-registry-mark-article)
3644         (gnus-registry-article-marks): Add functionality to mark articles
3645         through the Gnus registry.
3646
3647         * encrypt.el: Clarify documentation for the new pgg method.
3648         (encrypt-file-alist): Add PGG option.
3649         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
3650         functionality.  Abstract password key and messaging to external
3651         functions.
3652         (encrypt-password-key, encrypt-get-passphrase-if-needed)
3653         (encrypt-message-method-and-cipher): Add new convenience external
3654         functions.
3655         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
3656         (encrypt-pgg-process-buffer): Add PGG functionality glue.
3657
3658         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
3659         (netrc-parse): Use encrypt-file-alist to determine if
3660         encrypt-find-model or encrypt-insert-file-contents should be used.
3661
3662         * encrypt.el: Clarify documentation.  Load password-cache or
3663         password, whichever one is found first, instead of autoloading.
3664
3665 2007-12-19  Glenn Morris  <rgm@gnu.org>
3666
3667         * mml.el (message-options-set, message-narrow-to-head)
3668         (message-in-body-p, message-mail-p, message-encode-message-body):
3669         Autoload.
3670         (message-remove-header, message-narrow-to-headers-or-head)
3671         (message-subscribed-p, message-make-mail-followup-to)
3672         (message-position-on-field, message-news-p)
3673         (message-options-set-recipient, message-generate-headers)
3674         (message-sort-headers): Declare as functions.
3675
3676 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
3677
3678         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
3679         convention in doc string.
3680
3681 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3682
3683         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
3684         title to html parts.
3685         (gnus-article-browse-html-article): Pass message header to it.
3686
3687         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
3688
3689 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
3690
3691         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
3692         or password compatible with XEmacs.
3693
3694 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
3695
3696         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
3697         format document.
3698         (gnus-mime-delete-part): Don't write description line if empty.
3699         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
3700
3701 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
3702
3703         * gnus-sum.el (gnus-summary-mark-unread-as-read)
3704         (gnus-summary-mark-read-and-unread-as-read)
3705         (gnus-summary-mark-current-read-and-unread-as-read)
3706         (gnus-summary-mark-unread-as-ticked): Doc fix.
3707         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
3708
3709 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
3710
3711         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
3712         Christoph Conrad <christoph.conrad@gmx.de>.
3713
3714 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
3715
3716         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
3717         yes-or-no-p.
3718
3719 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3720
3721         * mm-decode.el (mm-add-meta-html-tag): New function.
3722         (mm-save-part-to-file, mm-pipe-part): Use it.
3723
3724         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
3725         gnus-y-or-n-p instead of y-or-n-p.
3726         (gnus-article-browse-html-parts): Work with message/external-body; use
3727         mm-add-meta-html-tag.
3728
3729 2007-12-11  Glenn Morris  <rgm@gnu.org>
3730
3731         * gnus-cache.el: Require gnus-sum not just when compiling.
3732
3733         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
3734
3735         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
3736         definitions before use.
3737
3738         * mm-decode.el: Require gnus-util.
3739         (mm-remove-part): Only call delete-annotation on XEmacs.
3740
3741         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
3742
3743         * nnmail.el: Require gnus-int.
3744
3745         * spam.el: Move `require's before `eval-when-compile's.
3746
3747         * gnus-ems.el (gnus-alive-p):
3748         * gnus-fun.el (message-goto-eoh):
3749         * gnus-util.el (gnus-group-name-decode):
3750         * mail-source.el (gnus-compress-sequence):
3751         * message.el (Info-goto-node, format-spec):
3752         * mm-bodies.el (message-options-get):
3753         * mm-decode.el (mm-view-pkcs7):
3754         * mm-util.el (gmm-write-region):
3755         * mml-smime.el (mml-compute-boundary)
3756         (gnus-completing-read-with-default):
3757         * mml.el (widget-button-press, gnus-make-hashtable):
3758         * mml1991.el (mm-decode-content-transfer-encoding)
3759         (mm-encode-content-transfer-encoding)
3760         (message-options-get, message-options-set):
3761         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
3762         * nnfolder.el (gnus-request-group):
3763         * nnheader.el (ietf-drums-unfold-fws):
3764         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
3765         * smime.el (gnus-run-mode-hooks):
3766         * spam-stat.el (gnus-message): Autoload.
3767
3768         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
3769         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
3770         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
3771         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
3772         Add declare-function compatibility definition.
3773
3774         * gnus-cache.el (nnvirtual-find-group-art):
3775         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
3776         (gnus-add-image, gnus-add-wash-type):
3777         * gnus-group.el (nnkiboze-score-file):
3778         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
3779         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
3780         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
3781         (message-tokenize-header, gnus-get-buffer-create)
3782         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
3783         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
3784         * gnus.el (gnus-group-decoded-name):
3785         * mail-source.el (imap-capability):
3786         * mm-bodies.el (message-options-set):
3787         * mm-decode.el (gnus-configure-windows):
3788         * mm-extern.el (message-goto-body):
3789         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
3790         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
3791         (epg-sub-key-validity, message-options-set):
3792         * mml.el (widget-event-point, gnus-configure-windows):
3793         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
3794         * mml2015.el (epg-check-configuration, epg-configuration)
3795         (message-options-set):
3796         * nndb.el (nndb-request-article):
3797         * nnfolder.el (gnus-request-create-group):
3798         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
3799         * nnmaildir.el (gnus-group-mark-article-read):
3800         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
3801         * rfc1843.el (message-fetch-field):
3802         * spam.el (gnus-extract-address-components):
3803         Declare as functions.
3804
3805 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3806
3807         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
3808
3809         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
3810
3811         * lpath.el: Fbind run-mode-hooks for Emacs 21;
3812         bind show-trailing-whitespace for XEmacs.
3813
3814 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
3815
3816         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
3817         new no-op macro for backward compatibility.
3818
3819         * imap.el (imap-string-to-integer): New function.
3820
3821 2007-12-09  Glenn Morris  <rgm@gnu.org>
3822
3823         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
3824
3825         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
3826         * message.el, mm-view.el, sieve-manage.el, smime.el:
3827         Add declare-function compatibility definition.
3828
3829         * gnus-art.el (w3-region, w3m-region, Info-menu):
3830         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
3831         * gnus-sum.el (gnus-get-predicate):
3832         * gnus-util.el (mm-append-to-file, w32-focus-frame):
3833         * message.el (mail-abbrev-in-expansion-header-p):
3834         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
3835         (w3m-detect-meta-charset, w3m-region):
3836         * sieve-manage.el (password-read, password-cache-add)
3837         (password-cache-remove):
3838         * smime.el (password-read-and-add): Declare as functions.
3839
3840 2007-12-08  David Kastrup  <dak@gnu.org>
3841
3842         * gnus-sum.el (gnus-summary-simplify-subject-query):
3843         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
3844         `message'.
3845
3846 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3847
3848         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
3849         it to bind idna-program, installation-directory, defined-colors, and
3850         face-attribute for XEmacs of the version that compiles defcustom forms.
3851
3852 2007-12-07  Glenn Morris  <rgm@gnu.org>
3853
3854         * gnus-art.el (article-make-date-line): Revert previous change.
3855
3856 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
3857
3858         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
3859
3860 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
3861
3862         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
3863         Call gnus-add-to-range ranges only once with a prepared article-list.
3864
3865 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
3866
3867         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
3868         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
3869         group names with backslashes.  Reported by Tassilo Horn
3870         <tassilo@member.fsf.org>.
3871
3872 2007-12-06  Deepak Goel  <deego3@gmail.com>
3873
3874         * gnus-art.el (article-make-date-line):
3875         * gnus-start.el (gnus-load):
3876         * pop3.el (pop3-read-response): Fix buggy call to `error'.
3877
3878 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3879
3880         * gnus-art.el (gnus-use-idna)
3881         * gnus-start.el (gnus-site-init-file)
3882         * message.el (message-use-idna)
3883         * mm-uu.el (mm-uu-hide-markers)
3884         * smiley.el (smiley-style): Revert changes that suppress warnings.
3885
3886 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3887
3888         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
3889         specify charset to html source.  Reported by Christoph Conrad
3890         <christoph.conrad@gmx.de>.
3891
3892 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3893
3894         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
3895         idna-program in order to suppress byte compile warning issued by XEmacs
3896         that came to byte compile the default value section of defcustom forms
3897         recently.
3898
3899         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
3900         value of installation-directory.
3901
3902         * message.el (message-use-idna): Don't directly refer to the value of
3903         idna-program.
3904
3905         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
3906
3907         * smiley.el (smiley-style): Don't directly call face-attribute.
3908
3909 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
3910
3911         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
3912
3913         * gnus-dired.el: Reduce Gnus dependencies.
3914         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
3915         require.  Use autoloads instead.
3916         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
3917         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
3918         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
3919         (gnus-dired-mode): Adjust doc string.
3920         (gnus-dired-mail-mode): New variable.
3921         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
3922         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
3923         (gnus-dired-mail-buffers): New function.  Return mail or message
3924         composition buffers.
3925         (gnus-dired-attach): Use it.
3926         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
3927         NO-DECODE.
3928         (gnus-dired-print): Use `gnus-print-buffer' depending on
3929         `gnus-dired-mail-mode'.
3930
3931 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3932
3933         * rfc2047.el (rfc2047-encoded-word-regexp)
3934         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
3935         explaining what regexp patterns are for.
3936
3937 2007-12-04  Glenn Morris  <rgm@gnu.org>
3938
3939         * password.el: Move to password-cache.el.
3940
3941         * mml1991.el (password-read, password-cache-add, password-cache-remove):
3942         * mml2015.el (password-read, password-cache-add, password-cache-remove):
3943         * mml-smime.el (password-read, password-cache-add)
3944         (password-cache-remove):
3945         No need to autoload, since mml-sec requires password.
3946
3947         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
3948         * message.el (gnus-extract-address-components):
3949         * mml-smime.el (gnus-extract-address-components): Define for compiler.
3950
3951         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
3952         password.
3953
3954 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
3955
3956         * mailcap.el: Reduce dependencies.
3957         (mail-header-parse-content-type): Autoload.
3958         (mailcap-delete-duplicates): New alias.
3959         (mailcap-mime-info): Add optional argument NO-DECODE.
3960         (mailcap-mime-types): Use mailcap-delete-duplicates.
3961
3962         * message.el (message-ignored-supersedes-headers): Add "X-ID".
3963
3964 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
3965
3966         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
3967         (imap-parse-status): Upcase status-att for servers that sends them
3968         lower-case (e.g., MS Exchange 2007).
3969
3970 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3971
3972         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
3973         function.
3974
3975         * gnus-uu.el (gnus-uu-decode-yenc): New command.
3976         (gnus-uu-yenc-article): New function.
3977
3978         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
3979
3980         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
3981         buffer.
3982
3983 2007-12-02  Glenn Morris  <rgm@gnu.org>
3984
3985         * binhex.el (binhex): New custom group.
3986         (binhex-decoder-program, binhex-decoder-switches)
3987         (binhex-use-external): Move to the binhex custom group.
3988
3989         * uudecode.el (uudecode): New custom group.
3990         (uudecode-decoder-program, uudecode-decoder-switches)
3991         (uudecode-use-external): Move to the uudecode custom group.
3992
3993         * netrc.el (top-level): Don't load `encrypt' features.
3994         (netrc-parse): Don't use encrypt.
3995         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
3996
3997         * encrypt.el: Remove file.
3998
3999 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4000
4001         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4002         matches on patches.
4003
4004         * gnus-art.el (gnus-article-browse-html-article): Mention
4005         `mm-text-html-renderer' in the doc string.
4006
4007         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4008         string.  Add comments.
4009
4010         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4011         if rhs is ASCII.
4012
4013 2007-12-01  Glenn Morris  <rgm@gnu.org>
4014
4015         * mail-source.el (top-level): Require format-spec before
4016         eval-when-compile.
4017
4018 2007-11-30  Glenn Morris  <rgm@gnu.org>
4019
4020         * encrypt.el: Require password, rather than autoloading password-read.
4021
4022 2007-11-29  Glenn Morris  <rgm@gnu.org>
4023
4024         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4025         (sasl-make-client, sasl-next-step, sasl-step-data)
4026         (sasl-step-set-data): Declare as functions.
4027
4028 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4029
4030         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4031
4032 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4033
4034         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4035         certs should be verified and what is to be done in the event of a
4036         verification failure.
4037
4038         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4039         caller can indicate whether the cache should be disregarded for this
4040         call.  This way the result of the call is reproducible at all times and
4041         can be considered a canonical server name for the supplied method.
4042         (gnus-agent-method-p): Canonicalize server names by pushing their
4043         method through `gnus-method-to-server' using the no-cache argument.
4044
4045         * gnus-srvr.el (gnus-server-insert-server-line): Call
4046         `gnus-method-to-server' with `no-cache' argument.
4047
4048         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4049         gnus-agent-possibly-synchronize-flags as this should be called when the
4050         server is actually being opened.
4051         (gnus-agent-possibly-synchronize-flags)
4052         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4053         flags file of an agentized server to the latter function.
4054
4055         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4056         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4057         after a connection has been established successfully.
4058
4059 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4060
4061         * gnus-art.el (article-display-face): Force to display face if called
4062         interactively; check if gnus-article-x-face-too-ugly matches author.
4063         (article-display-x-face): Display face even if From header is missing
4064         as article-display-face does.
4065
4066 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4067
4068         * hashcash.el (message-narrow-to-headers-or-head)
4069         (message-fetch-field, message-goto-eoh)
4070         (message-narrow-to-headers): Declare as functions.
4071
4072 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4073
4074         * mail-source.el (mail-sources): Default to fetch from file for
4075         compatibility with default of nnmail-spool-file.
4076
4077 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4078
4079         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4080         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4081         to look for encoded word that should be encoded again.
4082         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4083         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4084         encoding pattern.
4085         (rfc2047-decode-region): Switch strict regexp and loose one according
4086         to rfc2047-allow-irregular-q-encoded-words.
4087
4088 2007-11-25  Romain Francoise  <romain@orebokech.com>
4089
4090         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4091
4092 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4093
4094         * tls.el (tls-program): Provide more custom choices from
4095         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4096         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4097
4098 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4099
4100         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4101         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4102
4103         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4104         `nnmail-spool-file'.
4105
4106         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4107         `nnmail-spool-file'.
4108
4109         * gnus-move.el (gnus-change-server): Ditto.
4110
4111         * gnus-kill.el (gnus-batch-score): Ditto.
4112
4113         * gnus-cache.el (gnus-jog-cache): Ditto.
4114
4115         * gnus-msg.el (gnus-summary-reply):
4116         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4117
4118 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4119
4120         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4121         version.  Minor improvement to doc strings.
4122         (tls-program): Add comment.
4123
4124 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4125
4126         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4127         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4128         mismatch between the hostname provided in the certificate and the name
4129         of the host connnecting to.
4130         (open-tls-stream): Use them.  Check certificates against trusted root
4131         certificates.
4132
4133 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4134
4135         * gnus-cache.el (gnus-cache-generate-nov-databases):
4136         Use nnml-generate-nov-databases-directory instead of
4137         nnml-generate-nov-databases-1.
4138
4139 2007-11-24  Glenn Morris  <rgm@gnu.org>
4140
4141         * message.el (message-tool-bar-retro): Update for rename
4142         mail_send.xpm->mail-send.xpm.
4143
4144 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4145
4146         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4147         `smime-ldap-search' for Emacs 22 and up.
4148
4149 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4150
4151         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4152
4153         * message.el (message-send-mail-function): Fix error convention.
4154         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4155         (message-widen-reply, message-send-mail, message-talkative-question)
4156         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4157         (message-clone-locals, message-send-news): Use with-current-buffer.
4158         (message-insert-or-toggle-importance): Remove unused var `valid'.
4159         (message-make-references): Remove unused var `new-references'.
4160         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4161
4162 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4163
4164         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4165         (spam-split-symbolic-return-positive): Reflow docstring.
4166         (spam-backends, spam-summary-exit-behavior)
4167         (spam-mark-ham-unread-before-move-from-spam-group)
4168         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4169         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4170         (spam-clear-cache, spam-backend-check, spam-install-backend)
4171         (spam-install-statistical-backend, spam-list-of-processors)
4172         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4173         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4174         (spam-check-crm114, spam-initialize, spam-unload-hook):
4175         Fix typos in docstrings.
4176
4177 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4178
4179         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4180         been checked if they have never been read and those group levels are
4181         higher than the one that a user specified.
4182
4183 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4184
4185         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4186         foreign groups unless a group level is specified by a user.
4187         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4188
4189 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4190
4191         * message.el (message-send-mail-function): Require sendmail.
4192
4193 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4194
4195         * message.el (message-send-mail-function): Check for smtpmail too.
4196
4197         * utf7.el (utf7-encode, utf7-decode): Use coding system
4198         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4199
4200         * message.el (message-send-mail-function): New function.
4201         (message-send-mail-function): Set default using
4202         message-send-mail-function.  Adjust doc string.
4203         (message-send-mail-with-mailclient): New function.
4204
4205 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4206
4207         * smime.el (from):
4208         * rfc2047.el (message-posting-charset):
4209         * qp.el (mm-use-ultra-safe-encoding):
4210         * pop3.el (parse-time-months):
4211         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4212         * nnml.el (files):
4213         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4214         (jka-compr-compression-info-list, ange-ftp-path-format)
4215         (efs-path-regexp):
4216         * nndiary.el (files):
4217         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4218         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4219         (epg-digest-algorithm-alist, inhibit-redisplay)
4220         (password-cache-expiry):
4221         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4222         (pgg-output-buffer, password-cache-expiry):
4223         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4224         (efs-path-regexp):
4225         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4226         (inhibit-redisplay):
4227         * mm-uu.el (file-name, start-point, end-point, entry)
4228         (gnus-newsgroup-name, gnus-newsgroup-charset):
4229         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4230         (latin-unity-ucs-list):
4231         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4232         (mm-uu-binhex-decode-function):
4233         * message.el (gnus-message-group-art, gnus-list-identifiers)
4234         (rmail-enable-mime-composing, gnus-local-organization)
4235         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4236         (gnus-read-active-file, facemenu-add-face-function)
4237         (facemenu-remove-face-function, gnus-article-decoded-p)
4238         (tool-bar-mode):
4239         * mail-source.el (display-time-mail-function):
4240         * gnus-util.el (nnmail-pathname-coding-system)
4241         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4242         (gnus-original-article-buffer, gnus-user-agent)
4243         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4244         (xemacs-codename, sxemacs-codename, emacs-program-version):
4245         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4246         * gnus-start.el (gnus-agent-covered-methods)
4247         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4248         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4249         (gnus-newsgroup-headers, gnus-group-list-mode)
4250         (gnus-group-mark-positions, gnus-newsgroup-data)
4251         (gnus-newsgroup-unreads, nnoo-state-alist)
4252         (gnus-current-select-method, mail-sources)
4253         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4254         (nnmail-spool-file, gnus-cache-active-hashtb):
4255         * gnus-mh.el (mh-lib-progs):
4256         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4257         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4258         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4259         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4260         (gnus-group-buffer):
4261         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4262         (font-lock-set-defaults):
4263         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4264         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4265         (gnus-summary-post-menu, total-parts, type, condition, length):
4266         * gnus-agent.el (gnus-agent-read-agentview):
4267         * flow-fill.el (show-trailing-whitespace):
4268         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4269         eval-and-compile wrappers for byte compiler pacifiers.
4270
4271         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4272         (mm-display-inline-fontify): Check for featurep 'xemacs not
4273         extent-list.
4274
4275         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4276         itimer-list.
4277         (mm-create-image-xemacs): Only do something for XEmacs.
4278         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4279
4280         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4281
4282         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4283         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4284
4285 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4286
4287         * nnimap.el (nnimap-split-download-body):
4288         * gnus-demon.el (gnus-demon):
4289         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4290
4291 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4292
4293         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4294         macros.
4295         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4296         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4297         copy data from unibyte buffer to multibyte current buffer.
4298         (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
4299         to copy data from unibyte current buffer to multibyte buffer.
4300         (nntp-make-process-buffer): Make process buffer unibyte.
4301
4302         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4303
4304 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4305
4306         * pop3.el (pop3-open-server): Accept and process data more robustly at
4307         connexion start to avoid spurious "POP SSL connexion failed" errors.
4308
4309 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4310
4311         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4312         read group names.
4313
4314 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4315
4316         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4317
4318 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4319
4320         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4321         (nnmail-save-active): Use a unibyte buffer when saving active file,
4322         which may contain non-ASCII group names.
4323
4324         * nnml.el (nnml-request-group): Decode group names in messages.
4325
4326 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4327
4328         * message.el (message-citation-line-function)
4329         (message-insert-formatted-citation-line): Fix spelling of
4330         `message-insert-formated-citation-line'.
4331
4332 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4333
4334         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4335
4336 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4337
4338         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4339         nnmail-pathname-coding-system.
4340
4341         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4342         that a user enters; decode group names in messages.
4343
4344         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4345
4346 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4347
4348         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4349
4350         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4351
4352         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4353         risky local variable.
4354
4355         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4356
4357 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4358
4359         * encrypt.el: Improve documentation to fix function name typo.
4360         Reported by Daiki Ueno <ueno@unixuser.org>.
4361
4362 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4363
4364         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4365         even if the point is not in the last page of an article.
4366         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4367         back to the previous page.
4368
4369 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4370
4371         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4372
4373 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4374
4375         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4376
4377 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4378
4379         * message.el (message-check-news-body-syntax): Avoid
4380         mm-string-as-multibyte.
4381         (message-hide-headers): Don't assume (point-min)==1.
4382
4383 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
4384
4385         * message.el (message-remove-blank-cited-lines): Fix if remove is
4386         given.
4387         (message-bogus-address-regexp): New variable.
4388         (message-bogus-recipient-p): New function.
4389         (message-check-recipients): New command.
4390         (message-syntax-checks): Add `bogus-recipient'.
4391         (message-fix-before-sending): Add `bogus-recipient'.
4392
4393         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
4394         (gnus-treat-body-boundary): Don't test window-system.
4395
4396 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
4397
4398         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
4399
4400 2007-10-28  Miles Bader  <miles@gnu.org>
4401
4402         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
4403         at compile-time too.
4404
4405 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
4406
4407         * gnus-msg.el (gnus-message-setup-hook): Add
4408         `message-remove-blank-cited-lines' to options.
4409
4410 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
4411
4412         * message.el (message-remove-blank-cited-lines): New function.
4413         Suggested by Karl Plästerer.
4414
4415 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4416
4417         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
4418         mapc.
4419
4420         * imap.el (imap-open): Replace mapcar called for effect with mapc.
4421         (top-level): Use mapc to set functions to be traced for debugging.
4422
4423         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
4424         called for effect with while loop.
4425
4426         * message.el (message-talkative-question): Replace mapcar called for
4427         effect with mapc.
4428
4429         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
4430         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
4431         called for effect with dolist.
4432
4433         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
4434
4435         * nndiary.el: Use dolist instead of mapcar to add diary headers to
4436         gnus-extra-headers and nnmail-extra-headers.
4437
4438         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
4439         called for effect with dolist.
4440         (top-level): Use mapc to set functions to be traced for debugging.
4441
4442         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
4443         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
4444         dolist.
4445
4446         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
4447         Replace mapcar called for effect with mapc.
4448         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
4449         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
4450         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
4451         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
4452
4453         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
4454         remove-if that's a cl function.
4455
4456         * webmail.el (webmail-debug): Replace mapcar called for effect with
4457         dolist.
4458
4459         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
4460         with mapc.
4461
4462 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4463
4464         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
4465         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
4466         with while loop.
4467
4468         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
4469         functions from article-* functions.
4470         (gnus-multi-decode-header): Replace mapcar called for effect with
4471         dolist.
4472
4473         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
4474         (gnus-bookmark-show-details): Replace mapcar called for effect with
4475         while loop.
4476
4477         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
4478         called for effect with while loop.
4479
4480         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
4481         with dolist.
4482
4483         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
4484         mapcar called for effect with dolist.
4485
4486         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
4487
4488         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
4489         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
4490         Replace mapcar called for effect with dolist.
4491         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
4492         mapc.
4493
4494         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
4495         Replace mapcar called for effect with dolist.
4496         (gnus-topic-list): Replace mapcar called for effect with mapc.
4497
4498         * gnus.el: Use mapc instead of mapcar to add autoloads.
4499
4500 2007-10-23  Richard Stallman  <rms@gnu.org>
4501
4502         * gnus-group.el (gnus-group-highlight): Mark as risky.
4503
4504 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4505
4506         * gnus.el (gnus-server-to-method): Return method found first in
4507         gnus-newsrc-alist.
4508
4509         * gnus-art.el (gnus-article-highlight-signature)
4510         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
4511         button overlay without the front stickiness.
4512
4513 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
4514
4515         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
4516         overview buffer needed a catch to receive its throw.
4517         (gnus-agent-flush-cache): Declared as interactive to make this function
4518         easier to use.
4519
4520 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
4521
4522         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
4523         `next-line'.
4524
4525 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4526
4527         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
4528         exclude address matching message-dont-reply-to-names.
4529
4530 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4531
4532         * gnus-util.el (gnus-string<): New function.
4533
4534         * gnus-sum.el (gnus-article-sort-by-author)
4535         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
4536
4537 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4538
4539         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
4540         the frame-focus tag is set in gnus-buffer-configuration.
4541
4542 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4543
4544         * gnus-art.el (gnus-article-add-button): Make a button overlay without
4545         the front stickiness.
4546
4547 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4548
4549         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
4550         url pattern; remove duplicate one.
4551         (gnus-article-extend-url-button): New function.
4552         (gnus-article-add-buttons): Use it.
4553         (gnus-button-push): Use concatenated url that it makes.
4554
4555 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
4556
4557         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
4558
4559 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4560
4561         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
4562         Don't hardcode point-min==1.
4563
4564 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
4565
4566         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
4567         Fix comment about "iso8859-1".
4568
4569 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
4570
4571         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
4572         ones returned from the verify-function.
4573
4574         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
4575         mml2015-extract-cleartext-signature if extraction failed.
4576
4577 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
4578
4579         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
4580         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
4581         failed.
4582
4583 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
4584
4585         * Relicense "GPLv2 or later" files to "GPLv3 or later".
4586
4587 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
4588
4589         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
4590         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
4591         recommends to use EasyPG instead of PGG.
4592
4593         * pgg.el: Revert to revision 6.23.2.16.
4594
4595         * pgg-def.el: Revert to revision 6.6.2.14.
4596
4597         * pgg-gpg.el: Revert to revision 6.23.2.34.
4598
4599 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
4600
4601         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
4602         to mark a thread as expirable.  Add variable `hide' to handle hiding of
4603         thread for both the null and zero (kill/expire thread) universal prefix
4604         cases.
4605         (gnus-summary-expire-thread): Add new function to expire a thread,
4606         using gnus-summary-kill-thread.
4607         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
4608         shortcuts for gnus-summary-expire-thread.
4609         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
4610         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
4611
4612 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
4613
4614         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
4615         extras value, so an extras entry can be deleted.
4616         (gnus-registry-delete-extra-entry): Use it.
4617         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
4618         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
4619         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
4620         storage through the gnus-registry, and provide an appropriate API for
4621         it.
4622
4623 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4624
4625         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
4626         Suggested by Leo <sdl.web@gmail.com>.
4627
4628         * gnus.el: Do.
4629
4630 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4631
4632         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
4633         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
4634
4635         * gnus-agent.el (gnus-agent-fetch-headers): Do.
4636
4637         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
4638         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
4639
4640 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4641
4642         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
4643         newline.
4644         (nnmbox-request-accept-article): Don't change article in source buffer;
4645         narrow to header to use message-fetch-field rather than
4646         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
4647         (nnmbox-request-replace-article): Quote lines that'll be misidentified
4648         as delimiters; make sure article ends with newline.
4649         (nnmbox-delete-mail): Correct last position of article to be deleted;
4650         ignore X-Gnus-Newsgroup header in article body.
4651         (nnmbox-save-mail): Quote lines looking like delimiters at the right
4652         positions; make sure article ends with newline.
4653
4654         * message.el (message-display-abbrev): Don't infloop when a user
4655         inserts SPC in the beginning of header.
4656
4657         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
4658         coding-system-for-read and coding-system-for-write for XEmacs having no
4659         file-coding feature.
4660
4661         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
4662
4663 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
4664
4665         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
4666         list of groups not followed by default.  Fix type to be regexp.
4667         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
4668
4669 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
4670
4671         * hmac-def.el (define-hmac-function): Switch from old-style to
4672         new-style backquotes.
4673
4674         * md4.el (md4-make-step): Likewise.
4675
4676 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4677
4678         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
4679         raw-text coding system when saving .newsrc file, which may contain
4680         non-ASCII group names.
4681
4682 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4683
4684         * gnus-cus.el (gnus-score-extra): New widget.
4685         (gnus-score-extra-convert): New function.
4686         (gnus-score-customize): Use it for Extra.
4687
4688 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
4689
4690         * mml2015.el (mml2015-extract-cleartext-signature): New function.
4691         (mml2015-mailcrypt-clear-verify): Use it.
4692         (mml2015-gpg-clear-verify): Use it.
4693         (mml2015-pgg-clear-verify): Use it.
4694         (mml2015-epg-clear-verify): Replace the current part with the output
4695         from GnuPG; don't extract the plaintext by itself.
4696
4697         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
4698         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
4699         mml2015-clear-verify-function; don't touch the armor headers or
4700         dash-escaped text here.
4701
4702 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4703
4704         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
4705         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
4706         parts, or application/octet-stream as a last resort.
4707         (gnus-mime-view-part-as-type): Don't toggle display.
4708         (gnus-mime-view-part-as-charset): Don't turn off display before
4709         querying charset.
4710
4711         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
4712         stuff to undisplayer function in Emacs.
4713         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
4714
4715         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
4716         text/calendar parts.
4717
4718 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4719
4720         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
4721         decoding text/calendar parts.
4722
4723         * message.el (message-forward-make-body-mime): Always mark body as
4724         having no illegible text; remove signed-or-encrypted argument.
4725         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
4726
4727         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
4728         (mml-generate-mime-1): Don't encode body if it is specified to be in
4729         raw form; don't make buffer be unibyte when inserting multibyte string.
4730
4731 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4732
4733         * sha1.el: Fix up comment style.
4734         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
4735         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
4736
4737         * hex-util.el: Fix up comment style.
4738         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
4739
4740         * gnus-salt.el: Use with-current-buffer.
4741         (gnus-pick-setup-message): Fix long-standing typo.
4742
4743 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4744
4745         * imap.el (imap-logout-timeout): New variable.
4746         (imap-logout, imap-logout-wait): New functions.
4747         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
4748
4749         * nnimap.el (nnimap-logout-timeout): New server variable.
4750         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
4751         nnimap-logout-timeout.
4752
4753         * gnus-art.el (gnus-article-summary-command-nosave)
4754         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
4755
4756 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4757
4758         * gnus.el (gnus-maximum-newsgroup): New variable.
4759
4760         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
4761         according to gnus-maximum-newsgroup.
4762
4763         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
4764         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
4765         Limit the range of articles according to gnus-maximum-newsgroup.
4766
4767 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
4768
4769         * gnus-art.el (gnus-sticky-article): Fixed problems described in
4770         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
4771         Don't perform gnus-configure-windows here; reuse existing sticky
4772         article buffer.
4773
4774         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
4775         it doesn't exist in gnus-article-mode.
4776
4777 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4778
4779         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
4780         (gnus-agent-decoded-group-name): New function.
4781         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
4782         (gnus-agent-expire-group-1): Use it; decode group name in messages.
4783
4784 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
4785
4786         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
4787         Add binding for gnus-sticky-article.
4788         (gnus-summary-exit): Don't kill sticky article buffers.
4789
4790         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
4791         article buffer.
4792         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
4793         (gnus-kill-sticky-article-buffers): New commands.
4794
4795 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4796
4797         * nntp.el (nntp-xref-number-is-evil): New server variable.
4798         (nntp-find-group-and-number): If it is non-nil, don't trust article
4799         numbers in the Xref header.
4800
4801 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4802
4803         * gnus-agent.el (gnus-agent-read-group): New function.
4804         (gnus-agent-flush-group, gnus-agent-expire-group)
4805         (gnus-agent-regenerate-group): Use it.
4806         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
4807         nnmail-pathname-coding-system.
4808
4809 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4810
4811         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
4812
4813         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
4814         that are unread as unread, and also as selected so that information of
4815         marks having been changed by a user may be updated when exiting group.
4816
4817 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
4818
4819         * gnus-art.el (gnus-mime-display-single): Pass part number that is
4820         calculated ignoring signature parts to gnus-treat-article.
4821
4822 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4823
4824         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
4825         a point here in order to keep the window start.
4826         (gnus-insert-mime-security-button): Make a button overlay without the
4827         front stickiness.
4828         (gnus-mime-display-security): Goto the end of a button.
4829
4830         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
4831
4832 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4833
4834         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
4835         group-name-at-point.
4836         (gnus-group-completing-read): New function that offers decoded
4837         non-ASCII group names for completion.
4838         (gnus-fetch-group, gnus-group-read-ephemeral-group)
4839         (gnus-group-jump-to-group, gnus-group-make-group-simple)
4840         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
4841         (gnus-group-fetch-control): Use it.
4842         (gnus-fetch-group): Use group-name-at-point for the initial value
4843         rather than the default value; use gnus-alive-p.
4844
4845         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
4846         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
4847         (gnus-summary-post-news): Use gnus-group-completing-read.
4848
4849         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
4850         (gnus-read-move-group-name): Decode group name for completion.
4851
4852 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
4853
4854         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
4855         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
4856         Yamaoka slightly modified the code).
4857
4858 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4859
4860         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
4861         (nnmail-split-incoming): Bind it.
4862
4863         * nnml.el (nnml-group-name-charset): New function.
4864         (nnml-decoded-group-name): Use it; don't decode group name if
4865         nnmail-group-names-not-encoded-p is non-nil.
4866         (nnml-encoded-group-name): New function.
4867         (nnml-group-pathname): Inline nnml-decoded-group-name.
4868         (nnml-request-expire-articles): Decode group name in message.
4869         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
4870         nnmail-pathname-coding-system.
4871         (nnml-save-mail, nnml-active-number): Work with decoded group names and
4872         not decoded ones according to nnmail-group-names-not-encoded-p.
4873         (nnml-generate-active-info): Use nnml-encoded-group-name.
4874
4875 2007-08-08  Glenn Morris  <rgm@gnu.org>
4876
4877         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
4878         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
4879         doc-strings and comments.
4880
4881 2007-07-25  Glenn Morris  <rgm@gnu.org>
4882
4883         * Relicense all FSF files to GPLv3 or later.
4884
4885 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4886
4887         * gnus-sum.el (gnus-summary-move-article): Make
4888         gnus-summary-respool-article work.
4889
4890 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
4891
4892         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
4893         string.
4894
4895 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
4896
4897         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
4898         that should be ignored when comparing distant RSS articles with local
4899         ones.
4900         (nnrss-make-hash-index): New function.  Create a hash index according
4901         to the ignored fields.
4902         (nnrss-check-group): Use it.
4903
4904 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4905
4906         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
4907
4908         * gnus-art.el (article-decode-group-name): Decode Xref header too.
4909
4910         * gnus-group.el (gnus-group-make-group): Encode group name here unless
4911         the new optional argument ENCODED is non-nil.
4912         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
4913         coding system for encoding group name.
4914         (gnus-group-make-rss-group): Pass un-encoded group name to
4915         gnus-group-make-group.
4916         (gnus-group-set-info): Tell gnus-group-make-group that group name is
4917         encoded.
4918
4919         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
4920         Encode group name to which articles are moved or copied.
4921         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
4922         coding system for encoding Newsgroup, Followup-To and Xref headers.
4923
4924         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
4925         marks; use nnheader-file-coding-system to write a file.
4926         (nnagent-retrieve-headers): Bind file-name-coding-system to
4927         nnmail-pathname-coding-system.
4928
4929         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
4930
4931         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
4932         (nnml-request-article, nnml-request-create-group)
4933         (nnml-request-rename-group, nnml-find-id)
4934         (nnml-possibly-change-directory, nnml-possibly-create-directory)
4935         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
4936         (nnml-save-marks): Use nnml-group-pathname instead of
4937         nnmail-group-pathname.
4938
4939         (nnml-request-create-group, nnml-request-expire-articles)
4940         (nnml-request-move-article, nnml-request-delete-group)
4941         (nnml-deletable-article-p, nnml-possibly-create-directory)
4942         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
4943         (nnml-open-marks): Bind file-name-coding-system to
4944         nnmail-pathname-coding-system.
4945
4946         (nnml-request-article): Pass server argument to nnml-find-group-number.
4947         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
4948         server argument to nnml-possibly-create-directory.
4949         (nnml-request-accept-article): Pass server argument to
4950         nnml-active-number and nnml-save-mail.
4951         (nnml-find-group-number): Pass server argument to nnml-find-id.
4952         (nnml-request-update-info): Pass server argument to
4953         nnml-marks-changed-p.
4954
4955         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
4956         (nnml-save-mail, nnml-active-number): Add server argument.
4957
4958         (nnml-request-delete-group): Warn if group is missing.
4959         (nnml-get-nov-buffer): Decode group name.
4960         (nnml-generate-active-info): Encode group name.
4961         (nnml-open-marks): Decode group name in messages.
4962
4963 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4964
4965         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
4966         if it is not specified.
4967         (gnus-article-pipe-part, gnus-article-save-part)
4968         (gnus-article-interactively-view-part, gnus-article-copy-part)
4969         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
4970         (gnus-article-inline-part, gnus-article-save-part-and-strip)
4971         (gnus-article-replace-part, gnus-article-delete-part)
4972         (gnus-article-view-part-as-type): Pass raw prefix argument to
4973         gnus-article-part-wrapper.
4974
4975 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4976
4977         * gnus-agent.el (gnus-agent-save-active): Bind
4978         nnheader-file-coding-system to gnus-agent-file-coding-system.
4979
4980         * gnus-cache.el (gnus-cache-save-buffers)
4981         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
4982         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
4983         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
4984         (gnus-cache-braid-nov, gnus-cache-braid-heads)
4985         (gnus-cache-generate-active, gnus-cache-rename-group)
4986         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
4987         (gnus-cache-update-overview-total-fetched-for): Bind
4988         file-name-coding-system to nnmail-pathname-coding-system.
4989         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
4990         variables.
4991         (gnus-cache-decoded-group-name): New function.
4992         (gnus-cache-file-name): Use it.
4993         (gnus-cache-generate-active): Use non-decoded group name for active.
4994
4995         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
4996         right place.
4997         (gnus-write-active-file): Don't break non-ASCII group names.
4998
4999         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5000         nnmail-pathname-coding-system.
5001
5002         * lpath.el: Bind default-file-name-coding-system,
5003         file-name-coding-system and language-info-alist for XEmacs.
5004
5005         * gnus-uu.el (gnus-uu-decode-save): Typo.
5006
5007 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5008
5009         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5010
5011 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5012
5013         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5014         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5015         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5016         (gnus-agent-flush-group, gnus-agent-flush-cache)
5017         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5018         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5019         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5020         (gnus-agent-regenerate-group)
5021         (gnus-agent-update-files-total-fetched-for)
5022         (gnus-agent-update-view-total-fetched-for): Bind
5023         file-name-coding-system to nnmail-pathname-coding-system.
5024         (gnus-agent-group-pathname): Don't encode file names by
5025         nnmail-pathname-coding-system.
5026         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5027         coding-system-for-write instead of buffer-file-coding-system to
5028         gnus-agent-file-coding-system.
5029
5030         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5031         Decode group name.
5032
5033         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5034
5035         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5036         (gnus-read-newsrc-el-file): Make group names unibyte.
5037
5038         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5039         nnmail-pathname-coding-system.
5040
5041         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5042         (nnrss-request-delete-group): Bind file-name-coding-system to
5043         nnmail-pathname-coding-system.
5044         (nnrss-read-server-data, nnrss-read-group-data): Bind
5045         file-name-coding-system correctly.
5046         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5047
5048         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5049         (nntp-server-to-method-cache): New variable.
5050         (nntp-group-pathname): New function that decodes non-ASCII group names.
5051         (nntp-possibly-create-directory, nntp-marks-changed-p)
5052         (nntp-save-marks, nntp-open-marks): Use it.
5053         (nntp-possibly-create-directory, nntp-open-marks):
5054         Bind file-name-coding-system to nnmail-pathname-coding-system.
5055         (nntp-open-marks): Decode group names when bootstrapping marks.
5056
5057         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5058         Newsgroups and Folowup-To headers.
5059
5060 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5061
5062         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5063         (gnus-server-closed-face, gnus-server-denied-face)
5064         (gnus-server-offline-face): Remove variable.
5065         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5066
5067         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5068         of modifying message-stack directly for XEmacs.
5069
5070         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5071         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5072         if the coding-system argument is nil for XEmacs.
5073
5074         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5075         mm-charset-override-alist.
5076
5077         * rfc2047.el: Don't require base64; require rfc2045 for the function
5078         rfc2045-encode-string.
5079         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5080         to quote the parameter value.
5081
5082 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5083
5084         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5085         form in gnus-group-name-charset-method-alist.
5086
5087         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5088         overrides the default layout edit-form.
5089
5090         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5091
5092         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5093
5094 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5095
5096         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5097         as unfetched articles.
5098
5099 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5100
5101         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5102
5103 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5104
5105         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5106         original back end that keeps marks in the local system.
5107
5108 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5109
5110         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5111         arg of pop-to-buffer for XEmacs.
5112         (gnus-article-read-summary-keys): Ditto; don't restore window
5113         configuration if summary command ends up with neither article buffer
5114         nor summary buffer; describe bindings if summary keys end with C-h.
5115
5116 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5117
5118         * message.el (message-fix-before-sending): Skip raw message part to be
5119         forwarded while checking illegible text.
5120         (message-forward-make-body-mime, message-forward-make-body): Mark
5121         signed or encrypted raw message as having no illegible text.
5122
5123 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5124
5125         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5126         (gnus-message-with-timestamp-1): New macro.
5127         (gnus-message-with-timestamp): New function.
5128         (gnus-message): Use them.
5129
5130         * nnheader.el (nnheader-message): Use them.
5131
5132 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5133
5134         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5135         .newsrc.eld file.
5136
5137 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5138
5139         * gnus-agent.el (gnus-agent-fetch-headers)
5140         (gnus-agent-retrieve-headers): Bind
5141         gnus-decode-encoded-address-function to identity.
5142
5143         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5144         available also when the server returns simply a dot.
5145
5146         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5147
5148 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5149
5150         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5151
5152 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5153
5154         * gnus-ems.el (gnus-x-splash): Make it work.
5155
5156         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5157         from being used.
5158
5159         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5160
5161 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5162
5163         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5164         4th and the 5th arguments.
5165
5166         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5167         the front stickiness.
5168         (gnus-article-summary-command-nosave): Correct the order of the
5169         arguments passed to pop-to-buffer.
5170         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5171         summary command ends up with the article buffer.
5172
5173         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5174         the same faces.
5175
5176 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5177
5178         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5179
5180 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5181
5182         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5183         * gnus-sum.el (gnus-summary-highlight):
5184         * pgg.el (pgg-sign-region, pgg-sign):
5185         * mail-source.el (mail-source-delete-old-incoming-confirm):
5186         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5187
5188 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5189
5190         * gnus-art.el (gnus-mime-view-part-externally)
5191         (gnus-mime-view-part-internally): Fix predicate function passed to
5192         completing-read.
5193
5194         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5195
5196         * gnus.el (gnus-update-message-archive-method): Add :version.
5197
5198 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5199
5200         * gnus.el (gnus-update-message-archive-method): New variable.
5201
5202         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5203         according to gnus-message-archive-method if
5204         gnus-update-message-archive-method is non-nil.
5205
5206 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5207
5208         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5209         by Loic Dachary <loic@dachary.org>.
5210         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5211
5212 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5213
5214         * message.el (message-pop-to-buffer): Add switch-function argument.
5215         (message-mail): Pass switch-function argument to it.
5216
5217 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5218
5219         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5220         Improve doc string.
5221
5222 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5223
5224         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5225         (gnus-header-content)
5226         * gnus-cite.el (gnus-cite-10)
5227         * gnus-srvr.el (gnus-server-closed)
5228         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5229         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5230         (gnus-group-mail-3-empty, gnus-group-mail-low)
5231         (gnus-group-mail-low-empty, gnus-splash)
5232         * message.el (message-header-to, message-header-cc)
5233         (message-header-subject, message-header-other, message-header-name)
5234         (message-header-xheader, message-separator, message-cited-text)
5235         (message-mml): Lighten colors of faces used for dark background.
5236
5237 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5238
5239         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5240         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5241
5242 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5243
5244         * message.el (message-narrow-to-headers-or-head):
5245         Ignore mail-header-separator in the body.
5246
5247 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5248
5249         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5250         same as window size.
5251
5252 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5253
5254         * message.el (message-font-lock-keywords): Use message-header-xheader
5255         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5256         ahead of the anything pattern, to get it recognised.
5257
5258 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5259
5260         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5261         spam.el loads uses it in the compiled defadvice form.
5262
5263 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5264
5265         * gnus-sum.el (gnus-articles-to-read)
5266         (gnus-summary-insert-old-articles): Don't truncate group name for
5267         `read-string'.
5268
5269         * gnus-util.el (gnus-limit-string): Delete this function.
5270
5271         * gnus-sum.el (gnus-simplify-subject-fully): Use
5272         `truncate-string-to-width' instead.
5273
5274 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5275
5276         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5277         if, on summary exit, the next group has to be selected.
5278         (gnus-summary-exit): Use it.
5279
5280 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5281
5282         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5283         non-break space.
5284
5285 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5286
5287         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5288         Check if group is not a directory.
5289         (nnfolder-request-expire-articles): Don't delete articles if the target
5290         group is not available.
5291
5292         * nnml.el (nnml-request-create-group): Properly check if group is not a
5293         file.
5294         (nnml-request-expire-articles): Don't delete articles if the target
5295         group is not available.
5296
5297         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5298         Don't quote characters that are within parentheses.
5299
5300 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5301
5302         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5303         (gnus-handle-ephemeral-exit): Select article according to it.
5304
5305 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5306
5307         * message.el (message-insert-formated-citation-line): Remove newline.
5308         (message-citation-line-format): Add final \n here so that the user can
5309         avoid a blank line.
5310
5311 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5312
5313         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5314         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5315         Update lanl/arXiv support.
5316
5317 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5318
5319         * gnus.el: Bump version number.
5320
5321 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5322
5323         * gnus.el (gnus-version-number): Bump version.
5324
5325 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5326
5327         * gnus.el: No Gnus v0.6 is released.
5328
5329 2007-04-27  Didier Verna  <didier@xemacs.org>
5330
5331         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5332         * gmm-utils.el (gmm-regexp-concat): here.
5333         * message.el: Don't require 'gnus-util.
5334         (message-dont-reply-to-names): Handle name change above.
5335         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5336
5337 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5338
5339         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5340         since the initial value varies according to the system.
5341
5342 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5343
5344         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5345
5346 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5347
5348         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5349
5350 2007-04-24  Didier Verna  <didier@xemacs.org>
5351
5352         Improve the type of gnus-ignored-from-addresses.
5353         * gnus-util.el (gnus-orify-regexp): New function.
5354         * message.el (gnus-util): Require it.
5355         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5356         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5357         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5358
5359 2007-04-24  Didier Verna  <didier@xemacs.org>
5360
5361         * gnus-sum.el:
5362         * gnus-utils.el: Fix some trailing whitespaces.
5363
5364 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5365
5366         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5367         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5368         article's Message-ID; refer parent article in summary buffer.
5369
5370         * message.el (message-bounce): Call mime-to-mml.
5371
5372         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5373         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5374         optimize and/or forms properly.
5375
5376 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5377
5378         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5379         URL.
5380
5381 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5382
5383         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
5384
5385 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5386
5387         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
5388         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
5389         displayed of multipart/alternative part if it is invoked from summary
5390         buffer.
5391
5392         * mm-view.el (mm-inline-text-html-render-with-w3m)
5393         (mm-inline-text-html-render-with-w3m-standalone)
5394         (mm-inline-render-with-function): Use mail-parse-charset by default.
5395
5396 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
5397
5398         * parse-time.el (parse-time-string-chars): Check if CHAR
5399         is less than the length of parse-time-syntax.
5400
5401 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5402
5403         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
5404         from gnus-newsgroup-processable.
5405
5406 2007-04-16  Didier Verna  <didier@xemacs.org>
5407
5408         * gnus-msg.el (gnus-configure-posting-styles): Handle
5409         message-signature-directory properly with :file syntax.  Reported by
5410         "Leo".
5411
5412 2007-04-11  Didier Verna  <didier@xemacs.org>
5413
5414         New user option: message-signature-directory.
5415         * gnus-msg.el (gnus-configure-posting-styles): Support it.
5416         * message.el (message-insert-signature): Ditto.
5417         * message.el (message-signature-file): Doc update.
5418         * message.el (message-signature-directory): New.
5419
5420 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5421
5422         * gnus-msg.el (gnus-inews-yank-articles): Use
5423         message-exchange-point-and-mark instead of exchange-point-and-mark.
5424
5425 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5426
5427         * message.el (message-yank-original): Make sure cited text ends with
5428         newline; don't exchange point and mark.
5429
5430 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
5431
5432         * tls.el (open-tls-stream): Properly handle case where there
5433         is no associated buffer.
5434
5435 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
5436
5437         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
5438         message-yank-original, make sure (< mark TEXT point).
5439
5440 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
5441
5442         * message.el (message-fill-column): New variable.
5443         (message-mode): Use it.  Add comment on a possible new hook.
5444
5445         * nnmail.el (nnmail-spool-file): Mark as obsolete.
5446         (nnmail-get-new-mail): Reformat.
5447
5448         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
5449
5450         * gmm-utils.el: Fix Commentary.
5451         (gmm-tool-bar-from-list): Fix typo in doc string.
5452
5453 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
5454
5455         * message.el (message-yank-original): Don't switch point and mark
5456         unnecessarily to put point and mark as documented.
5457
5458 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5459
5460         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
5461         from the message heads.
5462
5463 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
5464
5465         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
5466         article buffer does not have a window.  This may not be the best
5467         solution but is certainly better than setting the start of the null,
5468         that is the current, window.
5469
5470 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
5471
5472         * gnus-draft.el (gnus-draft-setup-hook): New hook.
5473         (gnus-draft-setup): Run it.
5474
5475         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
5476         gnus-score-fast-scoring.  Allow regexp.
5477         (gnus-score-headers): Use it.
5478
5479         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
5480         XEmacs.
5481
5482         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
5483         string.
5484         (gnus-button-alist): Also catch `<f1> k ...'.
5485         (gnus-treat-display-x-face): Fix doc string.
5486
5487 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5488
5489         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
5490         evaluation of gnus-extended-version to ensure correct generation of the
5491         User-Agent header when message-generate-headers-first is used.
5492
5493 2007-03-24  Simon Josefsson  <simon@josefsson.org>
5494
5495         * hashcash.el (hashcash-generate-payment-async): Don't crash if
5496         hashcash-path is nil.  Don't call callback with incorrect number of
5497         parameters if val is 0.
5498
5499 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5500
5501         * message.el (message-required-news-headers):
5502         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
5503
5504 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
5505
5506         * tls.el (open-tls-stream): In handshake-waiting loop,
5507         don't wait more if there is output available to process.
5508
5509 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
5510
5511         * tls.el (tls-program): Doc fix.
5512
5513 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5514
5515         * message.el (message-generate-new-buffers): Change the meaning of the
5516         nil value; add `standard' to the choices; treat t as `unique'; improve
5517         doc string.
5518         (gnus-select-frame-set-input-focus): Autoload.
5519         (message-buffer-name): Search for the existing message buffer if
5520         message-generate-new-buffers is nil or `standard'; treat the value t of
5521         message-generate-new-buffers as `unique'.
5522         (message-pop-to-buffer): Raise the frame already displaying the message
5523         buffer; clear the echo area after querying.
5524         (message-setup): Pass the `continue' argument to compose-mail.
5525         (message-mail): Prefer `switch-function' if it is given; search for the
5526         existing message buffer if the `continue' argument is non-nil; pass
5527         continue and switch-function arguments to compose-mail by way of
5528         message-setup.
5529         (message-mail-other-window): Adjust argument of message-setup.
5530         (message-mail-other-frame): Ditto.
5531
5532 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5533
5534         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
5535         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
5536         to turn font-lock on when turning gnus-message-citation-mode on.
5537
5538 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
5539
5540         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
5541         (mml-smime-function-alist): New variable; add epg as the backend.
5542         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
5543         mml-smime- functions instead.
5544         * mm-view.el: Require smime.
5545
5546 2007-03-05  Didier Verna  <didier@xemacs.org>
5547
5548         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
5549         instead of just inheritance for posting styles.
5550         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
5551
5552 2007-02-24  Chris Moore  <dooglus@gmail.com>
5553
5554         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
5555         * pgg-pgp.el (pgg-pgp-encrypt-region):
5556         * pgg-gpg.el (pgg-gpg-encrypt-region):
5557         Check pgg-encrypt-for-me if no other recipients.
5558
5559 2007-02-24  John Paul Wallington  <jpw@pobox.com>
5560
5561         * tls.el (tls-certtool-program): Fix custom type.
5562
5563 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5564
5565         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
5566         and point-at-eol instead of line-(beginning|end)-position.
5567
5568         * assistant.el (assistant-parse-buffer): Ditto.
5569
5570         * netrc.el (netrc-parse-services): Ditto.
5571
5572 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
5573
5574         * mml2015.el (mml2015-epg-find-usable-key): New function.
5575         (mml2015-epg-sign): Use it.
5576         (mml2015-epg-encrypt): Use it.
5577
5578 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5579
5580         * message.el (message-make-in-reply-to): Quote name containing
5581         non-ASCII characters.  It will make the RFC2047 encoder cause an error
5582         if there are special characters.  Reported by NAKAJI Hiroyuki
5583         <nakaji@jp.freebsd.org>.
5584
5585 2007-02-27  Didier Verna  <didier@xemacs.org>
5586
5587         Include the group parameters as well as the topic ones in the
5588         inheritance filter process.
5589         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
5590         argument GROUP-PARAMS-LIST.
5591         * gnus-topic.el (gnus-group-topic-parameters): Use it.
5592
5593 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5594
5595         * nntp.el (nntp-never-echoes-commands)
5596         (nntp-open-connection-functions-never-echo-commands): New variables.
5597         (nntp-send-command): Use them.
5598
5599 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
5600
5601         * mml2015.el (mml2015-epg-verify): Simplified.
5602
5603 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5604
5605         * mml.el (mml-content-disposition-alist): New user option.
5606         (mml-content-disposition): New function.
5607         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
5608         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
5609
5610 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
5611
5612         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
5613         verification.
5614
5615 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5616
5617         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
5618         articles posted in the last 24 hours.
5619
5620 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
5621
5622         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
5623
5624 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
5625
5626         * nntp.el (nntp-send-command): Don't wait for echoes when
5627         nntp-open-ssl-stream is used.
5628
5629 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5630
5631         * gnus-cite.el (gnus-test-font-lock-add-keywords)
5632         (gnus-message-add-citation-keywords)
5633         (gnus-message-remove-citation-keywords): Remove.
5634         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
5635         directly, make the variables in font-lock-defaults buffer-local, add
5636         gnus-message-citation-keywords to them and then update the value of
5637         font-lock-keywords.
5638
5639 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5640
5641         * message.el (message-cite-original-1): Don't call
5642         gnus-article-highlight-citation.
5643
5644         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
5645         citations; fix line count.
5646
5647 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5648
5649         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
5650         (gnus-message-add-citation-keywords)
5651         (gnus-message-remove-citation-keywords): Use it; fix the emulating
5652         versions of font-lock-add-keywords and font-lock-remove-keywords to
5653         work with XEmacs correctly.
5654
5655 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5656
5657         * gnus-cite.el (gnus-cite-face-list): Set the values of
5658         gnus-message-max-citation-depth and gnus-message-citation-keywords.
5659         (gnus-message-max-citation-depth): Use defvar rather than defconst.
5660         (gnus-message-cite-prefix-regexp): New variable.
5661         (gnus-message-search-citation-line): Use it; protect against long
5662         citation prefix; fill match data with nil rather than 0 for XEmacs; set
5663         the 0th match data for Emacs.
5664         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
5665         (gnus-message-add-citation-keywords): Append keywords rather than
5666         prepending; emulate font-lock-add-keywords if it is not available.
5667         (gnus-message-remove-citation-keywords): Emulate
5668         font-lock-remove-keywords if it is not available.
5669
5670         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
5671
5672         * message.el (message-cite-prefix-regexp): Set the value of
5673         gnus-message-cite-prefix-regexp.
5674
5675 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5676
5677         * nnweb.el (nnweb-google-parse-1): Update parser.
5678
5679 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
5680
5681         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
5682
5683 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5684
5685         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
5686         regexp.
5687
5688 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5689
5690         * uudecode.el (uudecode-string-to-multibyte): New function emulating
5691         string-to-multibyte.
5692         (uudecode-decode-region-internal): Use it.
5693
5694         * lpath.el: Fbind string-as-multibyte for XEmacs.
5695
5696 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
5697
5698         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
5699         custom choice.
5700
5701         * gnus-art.el (gnus-signature-limit): Fix custom choice.
5702
5703 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
5704
5705         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
5706
5707         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
5708         `write-region' to respect `mm-inhibit-file-name-handlers'.
5709
5710 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
5711
5712         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
5713         Use gnus-home-directory instead of "~/" or "$HOME".
5714
5715 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
5716
5717         * encrypt.el (encrypt-insert-file-contents): Add better prompt
5718         to mention filename.
5719         Add comments at beginning regarding usage.
5720         (encrypt-write-file-contents): Change interactive so a string is
5721         acceptable.  If the file has no associated model, show an error instead
5722         of a nonsense prompt.
5723
5724 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
5725
5726         * spam.el (spam-bsfilter-ham-switch): Fix typo.
5727         Thanks to Yoshihiko Yamada for kind notification of this typo.
5728
5729 2007-01-12  Kenichi Handa  <handa@m17n.org>
5730
5731         * uudecode.el (uudecode-decode-region-internal): Make it work in a
5732         multibyte buffer.
5733
5734 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
5735
5736         * gnus-score.el (gnus-score-fast-scoring): New variable.
5737         (gnus-score-headers): Use it.
5738
5739         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
5740
5741         * message.el (message-cite-original-1): Call
5742         gnus-article-highlight-citation if requested.
5743         (message-make-from): Allow name and address as optional arguments.
5744
5745         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
5746
5747         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
5748         bugs to doc string.
5749         (gnus-button-alist): Add mid\\|message-id.
5750         (gnus-button-fetch-group): Extend for use in
5751         `browse-url-browser-function'.
5752         (gnus-button-url-regexp): Try to catch paired parentheses like in
5753         Wikipedia URLs.
5754
5755         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
5756         Suggested by Simon Krahnke <overlord@gmx.li>.
5757
5758 2007-01-13  Romain Francoise  <romain@orebokech.com>
5759
5760         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
5761         Update copyright.
5762
5763 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
5764
5765         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
5766
5767 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
5768
5769         * gnus-registry.el (gnus-registry-unfollowed-groups)
5770         (gnus-registry-split-fancy-with-parent): Fix documentation.
5771
5772 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5773
5774         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
5775         from nnweb groups.
5776
5777 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5778
5779         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
5780         Xref urls.  Erase buffer before requesting head.
5781
5782 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
5783
5784         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
5785         customizable.
5786
5787 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
5788
5789         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
5790         no signing key is found.
5791         (mml2015-epg-encrypt): Ask user whether to skip or abort if
5792         no encrypting and/or signing key is found.
5793
5794 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
5795
5796         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
5797
5798 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5799
5800         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
5801         headers read from disk with the ones newly found in the current search.
5802         This should no longer cause problems, because the article numbers in
5803         Gmane's `nov.php' output are ignored since the previous change.
5804
5805 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5806
5807         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
5808
5809 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5810
5811         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
5812         replace-regexp-in-string; bind url-version; fbind display-images-p and
5813         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
5814         find-face and set-itimer-function for Emacs; bind itimer-list for
5815         Emacs.
5816
5817         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
5818
5819 2007-01-01  Romain Francoise  <romain@orebokech.com>
5820
5821         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
5822
5823 2006-12-31  Steve Youngs  <steve@sxemacs.org>
5824
5825         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
5826         `define-minor-mode' macro definition expanded properly.
5827         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
5828         exclude it there.
5829
5830         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
5831         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
5832         `fboundp' test.
5833         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
5834         This is OK to autoload in (S)XEmacs now.
5835
5836 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5837
5838         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
5839         keystroke.
5840         (gnus-summary-limit-to-singletons): Fix typo.
5841
5842         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
5843         else fails.
5844
5845 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5846
5847         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
5848         docstring.
5849
5850         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
5851         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
5852         (gnus-summary-insert-dormant-articles): Fix typo in message.
5853
5854 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
5855
5856         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
5857         nil for XEmacs.
5858         (gnus-message-citation-mode): Don't autoload in XEmacs.
5859
5860         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
5861
5862 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
5863
5864         * nnimap.el (nnimap-expunge-search-string): Mention
5865         nnimap-search-uids-not-since-is-evil in docstring.
5866
5867 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
5868
5869         * spam.el: Revert to make-obsolete-variable because
5870         define-obsolete-variable-alias is not supported in Emacs 21.
5871
5872         * spam.el (spam-ifile-path, spam-ifile-database-path)
5873         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
5874         make-obsolete-variable.
5875         (spam-bsfilter-path, spam-bsfilter-program)
5876         (spam-spamassassin-path, spam-spamassassin-program)
5877         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
5878         use "path" inappropriately.
5879         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
5880         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
5881         variable names.
5882
5883 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
5884
5885         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
5886         summary buffer.
5887
5888         * password.el (password-cache-remove): Use clear-string to burn
5889         password, if available.
5890
5891 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5892
5893         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
5894
5895         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
5896
5897         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
5898         (gnus-message-highlight-citation): Move defcustom here from
5899         gnus-cite.el.
5900         (gnus-message-citation-mode): Autoload.
5901
5902         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
5903         checks to make it compile with XEmacs.
5904         (gnus-message-citation-mode): New minor mode.
5905         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
5906         (gnus-message-highlight-citation): New variables.
5907         (gnus-message-search-citation-line)
5908         (gnus-message-add-citation-keywords)
5909         (gnus-message-remove-citation-keywords)
5910         (turn-on-gnus-message-citation-mode)
5911         (turn-off-gnus-message-citation-mode): New functions.
5912
5913 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
5914
5915         * gnus-cite.el: Enable highlighting of different citation levels in
5916         message-mode.
5917
5918 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5919
5920         * message.el (message-make-fqdn): Fix comment.
5921         (message-bogus-system-names): Add ".local".
5922
5923         * spam.el (spam-ifile-path, spam-ifile-program)
5924         (spam-ifile-database-path, spam-ifile-database)
5925         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
5926         Don't use "path" inappropriately.
5927         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
5928         strings.
5929         (spam-check-ifile, spam-ifile-register-with-ifile)
5930         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
5931         new variable names.
5932
5933         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
5934         (gnus-treat-display-smileys): Simplify using
5935         gnus-image-type-available-p.
5936
5937         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
5938         available.
5939
5940         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
5941         `display-images-p' if available.
5942
5943 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5944
5945         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
5946         one after turning on the buffer's multibyteness instead of decoding
5947         them directly in the unibyte buffer that causes unexpected conversion
5948         in Emacs 23 (unicode).
5949
5950 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5951
5952         * message.el (message-generate-hashcash): Fix custom type.
5953
5954 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
5955
5956         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
5957
5958 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
5959
5960         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
5961         disconnect icons.  Add help text.
5962
5963 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
5964
5965         * spam.el (spam-extra-header-to-number): CRM114 spam score is
5966         negated to be consistent with the others we handle.
5967
5968 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5969
5970         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
5971         version of gnus-summary-buffer to something, so that we can use two
5972         article buffers at the same time.
5973
5974 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
5975
5976         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
5977         trigger all the extra headers.
5978         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
5979         sorting.
5980
5981 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5982
5983         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
5984         solid groups.
5985
5986 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
5987
5988         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
5989
5990 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
5991
5992         * legacy-gnus-agent.el: Add Copyright notice.
5993
5994 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
5995
5996         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
5997
5998 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5999
6000         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6001
6002         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6003         to make it work reliably in CVS Emacs.
6004         (gnus-summary-limit-strange-charsets-predicate)
6005         (gnus-summary-limit-to-predicate): New functions.
6006
6007 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6008
6009         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6010         specifying array size.
6011         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6012         array if it is too small.
6013         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6014         (gnus-sort-threads-loop): New function.
6015
6016 2006-12-06  Chris Moore  <dooglus@gmail.com>
6017
6018         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6019         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6020
6021 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6022
6023         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6024         options.
6025
6026 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6027
6028         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6029         DOS-ing the recipient.
6030
6031         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6032         the headers when creating the mapping to avoid mismappings.
6033         (nnweb-gmane-create-mapping): Always nix out old mapping.
6034
6035 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6036
6037         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6038         and mm-verify-option to never.
6039
6040 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6041
6042         * message.el (message-signed-or-encrypted-p): New function.
6043         (message-forward-make-body): Use it.
6044
6045         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6046         Replace encode-coding-string with mm-encode-coding-string.
6047
6048 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6049
6050         * nneething.el (nneething-decode-file-name): Replace
6051         decode-coding-string with mm-decode-coding-string.
6052
6053         * gnus-int.el (gnus-open-server): Say failed server's name.
6054
6055 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6056
6057         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6058         strings to a single string.  Quote `errors-file-name'.
6059         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6060         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6061         Adjust calls.  Use `shell-quote-argument'.
6062
6063 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6064
6065         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6066         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6067
6068         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6069         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6070         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6071         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6072         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6073         (gnus-subscribe-newsgroup, gnus-1):
6074         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6075         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6076         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6077         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6078
6079 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6080
6081         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6082         keystroke.
6083         (gnus-summary-limit-to-bodies): Implement headersp.
6084
6085 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6086
6087         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6088
6089 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6090
6091         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6092
6093 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6094
6095         * message.el (message-generate-hashcash): Expand range of values to
6096         include `opportunistic'.
6097         (message-send-mail): Use it.
6098
6099 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6100
6101         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6102         and comment it.
6103
6104         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6105
6106 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6107
6108         * gnus-util.el (gnus-extract-address-components): Improve comment.
6109
6110 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6111
6112         * gnus-util.el (gnus-extract-address-components): Work with address in
6113         which the name portion contains @.
6114
6115         * lpath.el: Fbind custom-autoload.
6116
6117 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6118
6119         * gnus.el (gnus-start): Move custom group up.
6120         (gnus-select-method): Don't autoload, but make it available for
6121         `customize-variable'.
6122         (gnus-getenv-nntpserver): Don't autoload.
6123
6124 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6125
6126         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6127
6128 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6129
6130         * message.el (message-sendmail-extra-arguments): New variable.
6131         (message-send-mail-with-sendmail): Use it.
6132
6133 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6134
6135         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6136         mm-with-unibyte-current-buffer to make string unibyte.
6137
6138         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6139         mm-string-as-multibyte.
6140
6141 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6142
6143         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6144         Reported by Werner Koch <wk@gnupg.org>.
6145
6146 2006-11-14  Daiki Ueno  <ueno@p360>
6147
6148         * mml2015.el: Autoload epa-select-keys when compiling.
6149
6150 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6151
6152         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6153         message-options.
6154         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6155
6156 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6157
6158         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6159         EasyPG (< 0.0.6).
6160         (mml2015-always-trust): New user option.
6161         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6162         prompt.
6163
6164 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6165
6166         * nntp.el (nntp-authinfo-force): New variable.
6167         (nntp-send-authinfo): Use it.
6168
6169 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6170
6171         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6172         decode encoded words.  Improve prompt.  Add comment about forwarding.
6173         (message-replacement-char): Move up.
6174
6175 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6176
6177         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6178         instead of gnus-intersection because arguments of gnus-sorted-nunion
6179         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6180
6181 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6182
6183         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6184         (message-simplify-subject-functions): Enable
6185         message-strip-subject-encoded-words by default.
6186
6187 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6188
6189         * message.el (message-strip-subject-encoded-words): New function.
6190         (message-simplify-subject-functions): New variable.
6191         (message-simplify-subject): Use it.  Fix typo in doc string.
6192         Support message-strip-subject-encoded-words.
6193
6194 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6195
6196         * gnus-diary.el (gnus-diary-delay-format-function):
6197         * nndiary.el (nndiary-reminders):
6198         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6199
6200 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6201
6202         * gnus-art.el (article-hide-boring-headers): Fetch date from
6203         gnus-original-article-buffer to avoid problems with localized date
6204         strings.
6205
6206 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6207
6208         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6209
6210 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6211
6212         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6213         New variables.
6214         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6215         (mm-charset-synonym-alist): Move some entries to
6216         mm-codepage-iso-8859-list.
6217         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6218         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6219
6220 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6221
6222         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6223
6224 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6225
6226         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6227         with Emacs 21 and XEmacs.
6228
6229 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6230
6231         * spam.el (spam-parse-address): New function for better parsing,
6232         catching errors, etc.
6233         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6234
6235 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6236
6237         * mm-view.el: Add interactive arg to html2text autoload.
6238
6239 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6240
6241         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6242
6243 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6244
6245         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6246         variables.
6247         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6248         (mm-charset-synonym-alist): Move some entries to
6249         mm-codepage-iso-8859-list.
6250
6251         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6252
6253 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6254
6255         * message.el (message-citation-line-format)
6256         (message-insert-formated-citation-line): Fix implementation of %E, %N
6257         and %n according to the doc string.
6258
6259 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6260
6261         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6262         car-safe to avoid bad parses.
6263
6264 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6265
6266         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6267         names.
6268
6269         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6270
6271 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6272
6273         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6274         header.
6275
6276         * message.el (message-draft-headers): Add Date.
6277         (message-headers-to-generate): Fix typo in docstring.
6278
6279         * nndraft.el (nndraft-required-headers): New variable.
6280         (nndraft-generate-headers): Use it.
6281
6282         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6283
6284 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6285
6286         * gnus-registry.el (gnus-registry-wash-for-keywords)
6287         (gnus-registry-find-keywords): New functions to allow easy searching of
6288         articles that are in the registry.
6289
6290 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6291
6292         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6293         ietf-drums-parse-address instead of gnus-extract-address-components.
6294         Reported by Damien Elmes <damien@repose.cx>.
6295
6296 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6297
6298         * gnus.el (gnus-mime): Remove unused custom group.
6299
6300 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6301
6302         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6303         "blank line" when searching for end of armor headers.
6304
6305 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6306
6307         * gmm-utils.el (gmm-write-region): Fix variable name.
6308
6309 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6310
6311         * gmm-utils.el (gmm-write-region): New function based on compatibility
6312         code from `mm-make-temp-file'.
6313
6314         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6315
6316         * nnmaildir.el (nnmaildir--update-nov)
6317         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6318         Use `gmm-write-region'.
6319
6320 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6321
6322         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6323         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6324
6325         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6326
6327         * message.el (message-replacement-char): New variable.
6328         (message-fix-before-sending): Use it.
6329         (message-simplify-subject): New function to remove duplicate code.
6330         (message-reply, message-followup): Use it.
6331
6332         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6333         gnus-summary-limit-to-articles.
6334
6335 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6336
6337         * gnus-util.el (gnus-with-local-quit): New macro.
6338
6339         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6340
6341 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6342
6343         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6344         ignore non-string data.
6345
6346 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6347
6348         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6349         non-string data (needs to be done in the registry too).
6350
6351 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6352
6353         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6354         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6355         (gnus-registry-split-fancy-with-parent)
6356         (gnus-registry-fetch-simplified-message-subject-fast)
6357         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6358         Remove text properties on ingress into the registry and when it's saved.
6359         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6360         registry from entries with no groups.
6361
6362 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6363
6364         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6365         function to remove string properties.
6366
6367 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6368
6369         * gmm-utils.el (gmm): Adjust custom version.
6370
6371         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6372         custom version.
6373
6374         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6375
6376 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6377
6378         * gnus-art.el (gnus-insert-prev-page-button)
6379         (gnus-insert-next-page-button): Simplify.  Reformat.
6380
6381 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6382
6383         * gnus-art.el (gnus-insert-prev-page-button)
6384         (gnus-insert-next-page-button): Apply gnus-article-button-face.
6385
6386 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
6387
6388         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
6389
6390 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6391
6392         * gnus-art.el (gnus-insert-mime-button)
6393         (gnus-insert-mime-security-button):
6394         Apply gnus-article-button-face to MIME and security buttons.
6395
6396 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
6397
6398         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
6399         readable.
6400
6401 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6402
6403         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
6404
6405 2006-09-20  Steve Youngs  <steve@sxemacs.org>
6406
6407         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
6408         `browse-url-of-file' instead of `browse-url'.
6409
6410 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6411
6412         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6413         regexp.  Articles containing quotation were cut prematurely.
6414
6415 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6416
6417         * message.el (message-cite-original-1): Use nobody by default for the
6418         value of From header.
6419         (message-reply): Ditto.
6420
6421 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
6422
6423         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
6424         to the gnus-info.  This fixes a bug of inline-PGP message verification.
6425         Reported by Michael Piotrowski <mxp@dynalabs.de>.
6426
6427 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
6428
6429         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
6430         mails in the doc string.  Add some URLs in comment.
6431         (pop3-movemail): Warn about pop3-leave-mail-on-server.
6432
6433 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6434
6435         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
6436         backslashes handling and the way to find boundaries of quoted strings.
6437
6438 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
6439
6440         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
6441         mml1991-encrypt-to-self is set and mml1991-signers is not set.
6442         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
6443         mml2015-encrypt-to-self is set and mml2015-signers is not set.
6444
6445 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
6446
6447         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
6448         doc string.
6449         (gnus-button-regexp, gnus-button-last): Remove unused variables.
6450
6451 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6452
6453         * lpath.el: Fbind epg-check-configuration.
6454
6455 2006-09-06  Simon Josefsson  <jas@extundo.com>
6456
6457         * mml2015.el (mml2015-use): Doc fix, mention epg.
6458
6459 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6460
6461         * mml2015.el (mml2015-use): Default to epg, if available.
6462
6463 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6464
6465         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
6466         message-sender.
6467         (mml1991-epg-encrypt): Ditto.
6468         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
6469         message-sender.
6470         (mml2015-epg-encrypt): Ditto.
6471
6472 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
6473
6474         * message.el (message-send-mail-with-sendmail): Look for sendmail in
6475         several common directories.
6476
6477 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
6478
6479         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
6480         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
6481
6482 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6483
6484         * gnus-art.el (article-decode-encoded-words): Make it fast.
6485
6486 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6487
6488         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
6489
6490         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
6491         in quoted string into `\'.
6492
6493 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6494
6495         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6496         Use standard-syntax-table.
6497
6498 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6499
6500         * gnus-art.el (gnus-decode-address-function): New variable.
6501         (article-decode-encoded-words): Use it to decode headers which are
6502         assumed to contain addresses.
6503         (gnus-mime-delete-part): Remove useless `or'.
6504
6505         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
6506         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
6507         (gnus-nov-parse-line): Use it to decode From header.
6508         (gnus-get-newsgroup-headers): Ditto.
6509         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
6510
6511         * mail-parse.el (mail-decode-encoded-address-region): New alias.
6512         (mail-decode-encoded-address-string): New alias.
6513
6514         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6515         New function.
6516         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
6517         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
6518         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
6519         (rfc2047-decode-string): Ditto.
6520         (rfc2047-decode-address-region): New function.
6521         (rfc2047-decode-address-string): New function.
6522
6523 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
6524
6525         * message.el (message-caesar-buffer-body): Allow rotating headers.
6526
6527         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
6528
6529         * message.el (message-insert-formated-citation-line): Fix %f.
6530         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
6531
6532 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6533
6534         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
6535         (gnus-bookmark-mouse-available-p): New macro.
6536         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
6537         (gnus-bookmark-bmenu-show-infos): Use it.
6538         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
6539         (gnus-bookmark-bmenu-hide-infos): Ditto.
6540         (gnus-bookmark-remove-properties): New function.
6541         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
6542         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
6543         (gnus-bookmark-write-file): Bind coding-system-for-write.
6544         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
6545         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
6546         group before selecting it.
6547         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
6548         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
6549         quit-window if it is not available; use gnus-mouse-2 and bind it to
6550         gnus-bookmark-bmenu-select-by-mouse.
6551         (gnus-bookmark-show-details): Remove unused variable `details-list'.
6552         (gnus-bookmark-bmenu-select-by-mouse): New function.
6553
6554 2006-08-13  Romain Francoise  <romain@orebokech.com>
6555
6556         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
6557         space.
6558
6559 2006-08-10  Romain Francoise  <romain@orebokech.com>
6560
6561         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
6562         (dns-mode-soa-auto-increment-serial): New user option.
6563         (dns-mode-soa-maybe-increment-serial): New function.
6564         (dns-mode): Add the latter to `write-contents-functions'.
6565
6566 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6567
6568         * compface.el (uncompface): Use binary rather than raw-text-unix.
6569
6570 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6571
6572         * compface.el (uncompface): Make sure the eol conversion doesn't take
6573         place when communicating with the external programs.  Reported by
6574         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
6575
6576 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6577
6578         * nnheader.el (nnheader-insert-head): Fix typo in comment.
6579
6580 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6581
6582         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
6583         Make it more robust by parsing author and date independently.
6584
6585 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6586
6587         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
6588
6589 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
6590
6591         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
6592         first matching secret key.
6593         (mml2015-epg-encrypt): Ditto.
6594
6595         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
6596         first matching secret key.
6597         (mml1991-epg-encrypt): Ditto.
6598
6599         * mml2015.el (mml2015-encrypt-to-self): New user option.
6600         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
6601         mml2015-epg-encrypt-to-self is set.
6602
6603         * mml1991.el (mml1991-encrypt-to-self): New variable.
6604         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
6605         mml1991-epg-encrypt-to-self is set.
6606
6607         * mml2015.el (mml2015-signers): New user option.
6608         (mml2015-epg-sign): Reflect the value of mml2015-signers.
6609         (mml2015-epg-encrypt): Allow to select signing keys.
6610
6611         * mml1991.el (mml1991-signers): New variable.
6612         (mml1991-epg-sign): Reflect the value of mml1991-signers.
6613         (mml1991-epg-encrypt): Allow to select signing keys.
6614
6615 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6616
6617         * nnheader.el (nnheader-insert-head): Make it work even if the file
6618         uses CRLF for the line-break code.
6619
6620 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
6621
6622         * mml2015.el: Require mml-sec instead of password.
6623         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
6624         (mml2015-cache-passphrase): Inherit the default value from
6625         mml-secure-cache-passphrase.
6626         (mml2015-passphrase-cache-expiry): Inherit the default value from
6627         mml-secure-passphrase-cache-expiry.
6628
6629         * mml1991.el: Require mml-sec instead of password.
6630         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
6631         (mml1991-cache-passphrase): Inherit the default value from
6632         mml-secure-cache-passphrase.
6633         (mml1991-passphrase-cache-expiry): Inherit the default value from
6634         mml-secure-passphrase-cache-expiry.
6635
6636         * mml-sec.el: Require password.
6637         (mml-secure-verbose): New user option.
6638         (mml-secure-cache-passphrase): New user option.
6639         (mml-secure-passphrase-cache-expiry): New user option.
6640
6641 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
6642
6643         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
6644         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
6645         andreas@altroot.de (Andreas Vögele).
6646
6647         FIXME: Use `tiny change'?
6648
6649 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6650
6651         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
6652         workaround for the url package included with Emacs.
6653
6654         * nnweb.el (nnweb-google-create-mapping): Update regexp.
6655
6656 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6657
6658         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
6659         correctly.  This fixes a bug caused by the 2006-05-12 change.
6660
6661 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
6662
6663         * nnmail.el (nnmail-article-group): If splitting raises an error, give
6664         some information about the error when saying that the `bogus' mail
6665         group will be used.
6666
6667 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
6668
6669         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
6670         string.
6671
6672 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
6673
6674         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
6675
6676 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6677
6678         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
6679
6680 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
6681
6682         * mml1991.el (mml1991-function-alist): Add epg.
6683         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
6684         (mml1991-epg-encrypt): New functions.
6685
6686 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
6687
6688         * mml2015.el (mml2015-verbose): New variable.
6689         (mml2015-cache-passphrase): Ditto.
6690         (mml2015-passphrase-cache-expiry): Ditto.
6691         (mml2015-function-alist): Add epg.
6692         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
6693         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
6694         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
6695         functions.
6696
6697 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6698
6699         * message.el (message-cite-original-1): Preserve region when removing
6700         quoted text due to X-No-Archive in order to avoid bogus attribution
6701         when citing multiple messages.
6702
6703 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6704
6705         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
6706         Kenneth Jacker <khj@be.cs.appstate.edu>.
6707
6708 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
6709
6710         * gnus-diary.el (gnus-user-format-function-d)
6711         (gnus-user-format-function-D): Autoload.
6712
6713         * imap.el (Commentary): Fix typo.
6714
6715         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
6716         2006-04-22 contribution.
6717
6718 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6719
6720         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
6721         It didn't really fix the bogosity I'm seeing with solid web groups.
6722
6723 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6724
6725         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
6726         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
6727         created using server names.  If we use the feature without declaring
6728         it, Gnus does not properly manage server and group state.
6729
6730         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
6731         bound.
6732
6733 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6734
6735         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
6736         looking up the method using GROUP's prefix before inventing a new one.
6737         It is used on killed/unknown groups in various places where returning
6738         an all-new method isn't expected by the caller.
6739
6740         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
6741         and match semantics of gnus-group-real-prefix.
6742
6743 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
6744
6745         * nnmail.el (nnmail-broken-references-mailers): New variable.
6746         (nnmail-ignore-broken-references): New function generalizing
6747         nnmail-fix-eudora-headers.
6748         (nnmail-fix-eudora-headers): Now obsolete.
6749
6750         * gnus-art.el (gnus-button-handle-custom): Support
6751         `customize-apropos*'.
6752
6753 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6754
6755         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
6756
6757         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
6758         articles.
6759
6760 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
6761
6762         * message.el (message-cite-reply-above): New variable.
6763         (message-yank-original): Use it.
6764
6765 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6766
6767         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
6768
6769 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
6770
6771         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
6772         as read.
6773
6774         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
6775
6776 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
6777
6778         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
6779         (gnus-bookmark-default-file): Use gnus-directory.
6780         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
6781         Remove "*" in doc string.
6782         (gnus-bookmark-write-file): Simplify.
6783         (gnus-bookmark-maybe-sort-alist): Use `when'.
6784         (gnus-bookmark-get-bookmark): Fix typo in doc string.
6785         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
6786         FIXME about Emacs 21 and XEmacs compatibility.
6787         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
6788         compatibility.
6789         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
6790         compatibility.
6791         (gnus-bookmark-menu-heading): Fix version.
6792
6793 2006-06-19  Bastien Guerry  <bzg@altern.org>
6794
6795         * gnus-bookmark.el: New file.
6796
6797 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6798
6799         * message.el (message-syntax-checks): Doc fix.
6800
6801 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6802
6803         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
6804         unsubscribed groups as if they were killed ones.  It causes duplicate
6805         entries in gnus-newsrc-alist.
6806
6807 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6808
6809         * message.el (message-syntax-checks): Doc fix.
6810         (message-send-mail): Add check for continuation headers.
6811         (message-check-news-header-syntax): Fix regexp used to check for
6812         continuation headers.
6813
6814 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6815
6816         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
6817
6818 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
6819
6820         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
6821
6822 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6823
6824         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
6825         default-truncate-lines.
6826
6827 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6828
6829         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
6830         to fill the utf-8 entry.
6831
6832         * lpath.el: Fbind unicode-precedence-list.
6833
6834 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6835
6836         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
6837
6838 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
6839
6840         * gnus-agent.el (directory-files-and-attributes): Move all the way
6841         forward (the third and final move).
6842         (gnus-agent-read-agentview): Trap reconstruction errors due to
6843         nonexistant directory.  Handle by returning nil.
6844
6845 2006-05-30  Didier Verna  <didier@xemacs.org>
6846
6847         * message.el (message-dont-reply-to-names): Update the custom type.
6848         * message.el (message-dont-reply-to-names): New defsubst: potentially
6849         convert a list of regexps into a single one.
6850         * message.el (message-get-reply-headers): Use it.
6851         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
6852
6853 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6854
6855         * gnus-agent.el (directory-files-and-attributes): Move forward.
6856
6857 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6858
6859         * gnus-ml.el (gnus-mailing-list-subscribe)
6860         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
6861         (gnus-mailing-list-message): Fix doc strings.
6862
6863 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6864
6865         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
6866         of doing it manually.
6867
6868 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6869
6870         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
6871         comment.
6872
6873 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
6874
6875         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
6876         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
6877         (gnus-agent-read-local): All symbols allocated in my-obarray.
6878         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
6879         (gnus-agent-regenerate-group): Check numeric names to see if they are
6880         messages or groups.
6881         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
6882         better way of do this...)
6883
6884         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
6885         'dummy.group' (there should be a better way of do this...)
6886
6887 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6888
6889         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
6890         (gnus-saved-headers): Ditto.
6891         (gnus-default-article-saver): Mention functions may have properties.
6892         (gnus-article-save): Override gnus-save-all-headers and
6893         gnus-saved-headers by :headers property which saver function may have.
6894         (gnus-summary-save-in-file): Add :headers property.
6895         (gnus-summary-write-to-file): Ditto.
6896
6897         * gnus-sum.el (gnus-summary-save-article): Bind
6898         gnus-prompt-before-saving to t when saving many articles in a file;
6899         always show all headers.
6900
6901         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
6902
6903 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
6904
6905         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
6906         marks.
6907
6908         * message.el (message-indent-citation): Add optional arguments to allow
6909         using it outside of message buffers.
6910
6911         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
6912         (gnus-article-treat-unfold-headers): Use it.
6913         (gnus-article-truncate-lines): New variable.
6914         (gnus-article-mode): Use it.
6915         (gnus-article-toggle-truncate-lines): New function.
6916
6917         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
6918         gnus-article-toggle-truncate-lines.
6919
6920         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
6921         coding system in XEmacs, use binary.
6922
6923 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6924
6925         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
6926         after-load-alist.
6927
6928         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
6929         this function should save decoded articles.
6930         (gnus-summary-write-to-file): Use property to specify this function
6931         should save decoded articles and specify gnus-summary-save-in-file
6932         should be used to save articles other than the first one when saving
6933         many articles.
6934         (gnus-summary-save-body-in-file): Use property to specify this
6935         function should save decoded articles.
6936         (gnus-summary-write-body-to-file): Use property to specify this
6937         function should save decoded articles and specify
6938         gnus-summary-save-body-in-file should be used to save articles other
6939         than the first one when saving many articles.
6940
6941         * gnus-sum.el (gnus-summary-save-article): Simplify.
6942
6943 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6944
6945         * gnus-art.el (gnus-default-article-saver): Add
6946         gnus-summary-write-body-to-file.
6947         (gnus-article-save-coding-system): Don't use coding system object
6948         in XEmacs.
6949         (gnus-read-save-file-name): Add optional `dir-var' argument which
6950         specifies directory in which files are saved; work even if optional
6951         `variable' argument is not specified.
6952         (gnus-summary-write-to-file): Read file name.
6953         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
6954         (gnus-summary-write-body-to-file): New function.
6955
6956         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
6957         (gnus-summary-local-variables): Add it.
6958         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
6959         (gnus-summary-save-article): Remove optional `decode' argument;
6960         determine whether to decode articles by the value of
6961         gnus-default-article-saver; when saving many files using
6962         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
6963         it first and use gnus-summary-save-in-file or
6964         gnus-summary-save-body-in-file thereafter unless
6965         gnus-prompt-before-saving is always; move point to article which
6966         will be saved.
6967         (gnus-summary-save-article-file): Revert.
6968         (gnus-summary-write-article-file): Revert.
6969         (gnus-summary-save-article-body-file): Revert.
6970         (gnus-summary-write-article-body-file): New function.
6971
6972 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6973
6974         * gnus-art.el (gnus-default-article-saver): Doc fix.
6975         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
6976         from gnus-summary-save-article-coding-system, and default to a
6977         certain coding system.
6978         (gnus-output-to-file): Add coding cookie and encode text according
6979         to gnus-article-save-coding-system; don't use mm-append-to-file.
6980
6981         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
6982         gnus-art.el and rename to gnus-article-save-coding-system.
6983         (gnus-summary-save-article): Require gnus-art; don't show all
6984         headers if it decodes articles; don't add coding cookie here;
6985         don't bind mm-text-coding-system-for-write.
6986         (gnus-summary-save-article-file): Save decoded articles.
6987         (gnus-summary-write-article-file): When saving many files, use
6988         gnus-summary-write-to-file first and gnus-summary-save-in-file
6989         thereafter unless gnus-prompt-before-saving is always.
6990         (gnus-summary-save-article-body-file): Save decoded articles.
6991
6992         * lpath.el: Fbind select-safe-coding-system for XEmacs.
6993
6994 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
6995
6996         * nnrss.el (nnrss-check-group): Bind hash-index.
6997
6998 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
6999
7000         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7001         its hash index.  Store this hash in `nnrss-group-data'.
7002         (nnrss-read-group-data): Update accordingly.
7003
7004 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7005
7006         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7007         entry.
7008
7009         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7010         gnus-article-browse-html-article.
7011
7012 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7013
7014         * gnus-sum.el (gnus-summary-mime-map): Add
7015         gnus-article-browse-html-article.
7016
7017         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7018
7019 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7020
7021         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7022         suitable coding systems in customize.
7023
7024 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7025
7026         * mail-source.el (mail-sources): Fix custom type.
7027
7028 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7029
7030         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7031         (gnus-summary-expire-articles-now): Shorten prompt.
7032
7033         * gmm-utils.el (wid-edit): Require.
7034         (defun-gmm): Renamed from `gmm-defun-compat'.
7035         (gmm-image-search-load-path): Use it.
7036         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7037
7038 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7039
7040         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7041         variable.
7042         (gnus-summary-save-article): Add optional `decode' argument.  If
7043         it is set and gnus-summary-save-article-coding-system is non-nil,
7044         save decoded article.
7045         (gnus-summary-write-article-file): Save decoded article if
7046         gnus-summary-save-article-coding-system is non-nil.
7047
7048         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7049         type.
7050
7051 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7052
7053         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7054
7055 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7056
7057         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7058         first to test gnus-single-article-buffer which may be buffer-local.
7059
7060         * gnus-sum.el (gnus-summary-setup-buffer): Make
7061         gnus-single-article-buffer buffer-local and nil in ephemeral
7062         group; make gnus-article-buffer, gnus-article-current, and
7063         gnus-original-article-buffer always buffer-local.
7064         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7065         group.
7066         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7067
7068 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7069
7070         * nnml.el (nnml-request-compact-group): Compressed files might not
7071         have .gz extension.
7072
7073 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7074
7075         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7076         (mm-copy-to-buffer): Use with-current-buffer.
7077         (mm-display-part): Simplify.
7078         (mm-inlinable-p): Add optional arg `type'.
7079
7080 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7081
7082         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7083         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7084         Try harder to show the attachment internally or externally using
7085         gnus-mime-view-part-as-type.
7086
7087 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7088
7089         * message.el (message-from-style, message-signature-separator)
7090         (message-user-organization-file, message-send-mail-function)
7091         (message-citation-line-function, message-yank-prefix)
7092         (message-indent-citation-function, message-signature)
7093         (message-signature-file, message-signature-insert-empty-line):
7094         Remove autoloads.
7095
7096         * gnus-art.el (gnus-buttonized-mime-types): Remove
7097         "multipart/signed".  Revert 2006-04-26 change.
7098
7099 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7100
7101         * gnus.el (gnus-version-number): Bump version.
7102
7103 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7104
7105         * gnus.el: No Gnus v0.5 is released.
7106
7107 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7108
7109         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7110         fetching articles by message-id.
7111
7112 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7113
7114         * message.el (hashcash): Require hashcash as normal.
7115
7116         * ecomplete.el (ecomplete-highlight-match-line): Use
7117         point-at-eol.
7118         (ecomplete-highlight-match-line): Use `highlight', because that
7119         face exists in both Emacs and XEmacs.
7120
7121         * message.el (message-display-abbrev): Use point-at-bol.
7122
7123         * mail-source.el: Don't require timer/timer-funcs.
7124
7125         * gnus-async.el: Ditto.
7126
7127         * password.el: Ditto.
7128
7129         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7130
7131         * mm-url.el: Ditto.
7132
7133         * gnus-xmas.el: Don't require timer-funcs.
7134
7135         * mm-util.el: Require timer/timer-funcs.
7136
7137 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7138
7139         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7140         Close.
7141
7142 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7143
7144         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7145         unibyte after clear-decrypt function runs.
7146
7147         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7148         returns as a unibyte string.
7149
7150 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7151
7152         * lpath.el: Revert.
7153
7154         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7155         (pgg-gpg-process-sentinel): Revert.
7156
7157         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7158         (pgg-pgp-lookup-key): Revert.
7159
7160         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7161         (pgg-pgp5-lookup-key): Revert.
7162
7163         * pgg.el (pgg-fetch-key): Revert.
7164
7165 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7166
7167         * lpath.el: Fbind string-as-multibyte for XEmacs.
7168
7169         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7170         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7171         (mml1991-pgg-encrypt): Ditto.
7172
7173         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7174         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7175         a multibyte buffer.
7176
7177         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7178         (pgg-pgp-lookup-key): Ditto.
7179
7180         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7181         (pgg-pgp5-lookup-key): Ditto.
7182
7183         * pgg.el (pgg-fetch-key): Ditto.
7184
7185 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7186
7187         * message.el (message-user-organization-file): Check several
7188         locations of the organization file.
7189
7190         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7191         Add gnus-article-view-part-as-type.
7192
7193         * gnus-art.el (gnus-article-view-part-as-type): New function.
7194
7195         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7196         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7197
7198         * mml.el: Simplify autoload.
7199         (mml-mode): defvar dnd-protocol-alist instead of using
7200         symbol-value.
7201         (mml-default-directory): New variable.
7202         (mml-minibuffer-read-file): Use it.
7203         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7204
7205         * message.el (message-citation-line-format): New variable.
7206         (message-insert-formated-citation-line): New function.
7207         (message-citation-line-function): Add
7208         `message-insert-formated-citation-line' to custom type.
7209
7210         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7211         to doc string.
7212
7213         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7214         depending on mm-verify-option.
7215
7216 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7217
7218         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7219         binding pgg-* variables; reimplement the section which prevents
7220         MIME header from being signed.
7221         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7222         pgg-text-mode; remove a blank line at the top of body.
7223
7224         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7225         lines at the top of body; use gnus-newsgroup-charset if there's no
7226         Charset header.
7227
7228 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7229
7230         * message.el (message-self-insert-commands): Doc fix.
7231
7232         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7233         (mm-uu-pgp-encrypted-test): Ditto.
7234         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7235         between header and body; return application/pgp-encrypted handle
7236         if decryption failed; decode decrypted body by charset.
7237
7238         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7239         element match to application/pgp-*.
7240
7241 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7242
7243         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7244         HTML.
7245
7246 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7247
7248         * mail-source.el (mail-source-call-script): Message the error
7249         string.
7250
7251 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7252
7253         * gnus-util.el (gnus-byte-compile): Use it.
7254
7255 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7256
7257         * gnus-util.el (kill-empty-logs): New function.
7258
7259 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7260
7261         * message.el (message-mail-alias-type): Doc fix.
7262         (message-mail-alias-type-p): New function.
7263         (message-send): Use it.
7264         (message-mode): Ditto.
7265         (message-strip-forbidden-properties): Ditto.
7266
7267         * ecomplete.el (ecomplete-database-file-coding-system): New
7268         variable.
7269         (ecomplete-save): Use it.
7270         (ecomplete-setup): Use it.
7271
7272 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7273
7274         * message.el (message-self-insert-commands): New variable.
7275         (message-strip-forbidden-properties): Use it.
7276
7277 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7278
7279         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7280         that doesn't make XEmacs choke.
7281
7282 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7283
7284         * gnus-util.el (gnus-replace-in-string):
7285         Prefer replace-regexp-in-string over of replace-in-string.
7286
7287 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7288
7289         * gnus-util.el (gnus-select-frame-set-input-focus):
7290         Use select-frame-set-input-focus if it is available in XEmacs; use
7291         definition defined in Emacs 22 for old Emacsen.
7292
7293         * dgnushack.el: Autoload unmorse-region for XEmacs.
7294
7295         * lpath.el: Bind cursor-in-non-selected-windows and
7296         select-frame-set-input-focus for XEmacs.
7297
7298 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7299
7300         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7301
7302 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7303
7304         * gnus-registry.el (gnus-registry-cache-save): Remove text
7305         properties when saving via the temp buffer.
7306
7307 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7308
7309         * message.el (message-generate-hashcash): Honor custom type.
7310
7311 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7312
7313         * message.el (message-generate-hashcash): Default to non-nil when
7314         hashcash is found.
7315
7316         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7317         (gnus-refer-thread-limit): Increase default to 500.
7318
7319         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7320
7321         * flow-fill.el (fill-flowed): Allow delete-space.
7322
7323 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7324
7325         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7326         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7327         Remove autoloads.
7328
7329 2006-04-18  Simon Josefsson  <jas@extundo.com>
7330
7331         * message.el (message-generate-hashcash): Default to.
7332
7333 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7334
7335         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7336         concatenating segments rather than before concatenating them.
7337
7338 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7339
7340         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7341
7342 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7343
7344         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7345
7346         * message.el (message-forward-make-body-plain): Allow
7347         message-forward-ignored-headers to be a list.
7348         (message-remove-ignored-headers): Factor out into function.
7349         (message-forward-make-body-mml): Use it.
7350
7351         * imap.el (imap-quote-specials): New function.
7352         (imap-login-auth): Quote specials.
7353
7354         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7355         (rfc2231-parse-string): Allow concatanation of parameters that
7356         aren't contiguous.  The test case is
7357           (mail-header-parse-content-type "message/external-body;
7358             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7359             access-type=LOCAL-FILE;
7360             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7361
7362 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7363
7364         * nntp.el (nntp-accept-process-output): Return the value of
7365         `nnheader-accept-process-output'.
7366
7367 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7368
7369         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7370         (gnus-button-alist): Recognize more diff formats.
7371         (gnus-button-patch): Strip directory.
7372
7373 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7374
7375         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7376         Emacs 22 when setting focus.
7377
7378 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7379
7380         * gnus-art.el (gnus-article-treat-types): Do treatment of
7381         text/x-verbatim parts.
7382         (gnus-button-patch): New command.
7383
7384         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
7385         addresses that contain invalid characters.
7386
7387 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7388
7389         * message.el (message-put-addresses-in-ecomplete): Use
7390         gnus-replace-in-string.
7391         (message-is-yours-p): Use the more correct
7392         mail-header-parse-address instead of
7393         mail-extract-address-components.
7394         (message-put-addresses-in-ecomplete): Fix typo.
7395
7396         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
7397         keystroke.
7398
7399         * gnus-art.el (gnus-treatment-function-alist): Change order of
7400         newsgroups/generic header folding to avoid double-folding.
7401
7402         * message.el (message-hidden-headers): Add X-Draft-From.
7403
7404         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
7405         command.
7406         (gnus-summary-repeat-search-article-backward): New command.
7407
7408         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
7409         groups in the parent topic.
7410
7411 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
7412
7413         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
7414         (spam-extra-header-to-number): Return the CRM114 number as a
7415         number instead of a string.
7416
7417 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7418
7419         * gnus-art.el (gnus-face-properties-alist): Moved here from
7420         gnus-fun.
7421
7422         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
7423
7424 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7425
7426         * message.el (message-strip-forbidden-properties): Only display on
7427         self-insert-command.
7428
7429         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
7430         reindent.
7431         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
7432
7433 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
7434
7435         * smiley.el (smiley-style): Fix typo.
7436
7437 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7438
7439         * hashcash.el (hashcash-insert-payment-async-2): Use
7440         message-goto-eoh instead of doing it manually.
7441         (mail-add-payment): Use message-narrow-to-header instead of trying
7442         to do the same itself.
7443
7444         * message.el (message-hidden-headers): Add Face.
7445
7446         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
7447         reparenting code.
7448         (gnus-summary-reparent-children): Refactored out code.
7449         (gnus-summary-thread-map): New keystroke.
7450         (gnus-summary-reparent-children): Make into command.
7451
7452         * smiley.el (smiley-style): Default to `medium' if using a large
7453         font.
7454
7455         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
7456         does it itself.
7457
7458         * message.el (message-point-in-header-p): Simplify definition.
7459
7460 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7461
7462         * nnagent.el (nnagent-request-set-mark): Silence log file
7463         writing.
7464         (nnagent-request-set-mark): Use write-region instead of
7465         append-to-file.
7466
7467         * gnus-sum.el (gnus-read-header): Fudge article number if using a
7468         strange select method.
7469
7470         * ecomplete.el (ecomplete-display-matches): Get highlightling
7471         right.
7472         (ecomplete-display-matches): Use literals.
7473         (ecomplete-display-matches): Disable message logging.
7474
7475         * message.el (message-display-abbrev): Small optimization.
7476
7477         * ecomplete.el (ecomplete-display-matches): Allow automatic
7478         display.
7479
7480         * message.el (message-strip-forbidden-properties): Display
7481         abbrevs.
7482         (message-display-abbrev): Get automatic display right.
7483
7484         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
7485         keystrokes.
7486
7487 2006-04-13  Romain Francoise  <romain@orebokech.com>
7488
7489         TODO: Backport to v5-10!
7490
7491         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
7492         Moved here (and renamed) from gnus-registry.el.
7493
7494         * gnus-registry.el: Require gnus-util.
7495         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
7496
7497 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7498
7499         * gnus-group.el (gnus-group-catchup-current): Change
7500         if-then-else-if-then-else into cond.
7501         (gnus-group-catchup): Indent.
7502         (group-name-at-point): New function.
7503         (gnus-fetch-group): Provide default from thing at point.
7504
7505 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7506
7507         * message.el (message-display-abbrev): Fix regexp.
7508
7509         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
7510         choosing.
7511         (ecomplete-highlight-match-line): Fix up code rewrite, remove
7512         dead variables.
7513
7514         * message.el (message-newline-and-indent): Remove debugging.
7515         (message-display-abbrev): Use new implementation.
7516
7517 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
7518
7519         * gnus-art.el (gnus-article-mode): Set
7520         cursor-in-non-selected-windows to nil.
7521
7522         * smiley.el: Revert previous change.
7523         (smiley-data-directory): defvar it before using it in the
7524         defcustom of `smiley-style'.
7525
7526 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7527
7528         * message.el (message-newline-and-indent): New function.
7529
7530         * ecomplete.el: Implement more bits.
7531
7532         * message.el (message-put-addresses-in-ecomplete): Clean up the
7533         string.
7534
7535         * ecomplete.el (ecomplete-add-item): Chop off decimals.
7536
7537         * gnus-sum.el (gnus-summary-save-parts): Bind
7538         gnus-summary-save-parts-counter and use it to make unique file
7539         names.
7540
7541         * gnus-art.el (gnus-ignored-headers): Add some more headers.
7542
7543         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
7544         parameter to say whether to actually parse the individual
7545         addresses.
7546
7547         * message.el (message-put-addresses-in-ecomplete): New function.
7548         (ecomplete): Require.
7549         (message-mail-alias-type): Add ecomplete as an option.
7550
7551 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
7552
7553         * flow-fill.el (fill-flowed): Remove trailing space from blank
7554         quoted lines.
7555
7556 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7557
7558         * smiley.el (smiley-style): Move definition later to avoid a
7559         compilation warning.
7560
7561 2006-04-12  Kenichi Handa  <handa@m17n.org>
7562
7563         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
7564         buffer and then decode the buffer text if necessary.
7565         (rfc2231-encode-string): Be sure to work on multibyte buffer at
7566         first, and after mm-encode-body, change the buffer to unibyte.
7567         Use mm-disable-multibyte instead of set-buffer-multibyte.
7568
7569 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7570
7571         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
7572         Content-Type header instead of Content-Disposition header.
7573         (gnus-mime-inline-part): Ditto.
7574         (gnus-mime-view-part-as-charset): Ignore charset that the part
7575         specifies.
7576
7577         * mm-decode.el (mm-display-part): Work with external parts and
7578         usual parts similarly.
7579
7580         * mm-extern.el (mm-inline-external-body): Use mm-display-part
7581         instead of gnus-display-mime.
7582
7583         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
7584         instead of with-temp-buffer.
7585
7586         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
7587         tag to summarized topics part in order to encode non-ASCII text.
7588
7589 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7590
7591         * smiley.el (smiley-style): New variable.
7592         (smiley-directory): New function.
7593         (smiley-data-directory): Derive from `smiley-style' using
7594         `smiley-directory'.
7595         (smiley-regexp-alist): Add new entries.
7596
7597         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
7598         (gnus-article-browse-delete-temp): Add :version.
7599
7600 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
7601
7602         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
7603         the sieve region.
7604
7605 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7606
7607         * gnus.el (gnus-version-number): Bump version.
7608
7609 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7610
7611         * gnus.el: No Gnus v0.4 is released.
7612
7613 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7614
7615         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
7616         layout.
7617
7618         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
7619         unknown charset.
7620
7621         * message.el (message-header-synonyms): Add Original-To to the
7622         default.
7623
7624         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
7625         optional parameter.
7626
7627 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
7628
7629         * gnus-fun.el (gnus): Require it for gnus-directory.
7630
7631 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7632
7633         * gnus-fun.el (gnus-face-properties-alist): Add :version.
7634
7635 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
7636
7637         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
7638
7639 2006-04-05  Simon Josefsson  <jas@extundo.com>
7640
7641         * password.el (password-reset): New function.
7642
7643 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
7644
7645         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
7646         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
7647
7648 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7649
7650         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7651         Some whitespace was matched into the url, which broke browsing hits
7652         > 100 when mm-url-use-external was nil.
7653
7654 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
7655
7656         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
7657         gnus-extra-headers for 'Newsgroups.
7658
7659         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
7660         bound.
7661
7662 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
7663
7664         * pgg-gpg.el: Clean up process buffers every time gpg processes
7665         complete.
7666
7667 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
7668
7669         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
7670         doc string.
7671
7672 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
7673
7674         * pgg-gpg.el (pgg-gpg-process-filter)
7675         (pgg-gpg-wait-for-completion): Check if buffer is alive.
7676
7677         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
7678         lines, temporary fix.
7679
7680 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
7681
7682         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
7683
7684 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
7685
7686         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
7687         default-enable-multibyte-characters.  This reverts the change from
7688         revision 6.17 which is no longer necessary because the passphrase
7689         is sent separately now.  GnuPG messages are unreadable under
7690         multibyte locales with default-enable-multibyte-characters set to
7691         nil.
7692
7693 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
7694
7695         * message.el (message-tool-bar-gnome): Move "spell".
7696
7697 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
7698
7699         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
7700         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
7701         instead.
7702
7703 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
7704
7705         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
7706         newsgroups handling for NNTP overviews which don't include
7707         Newsgroups.
7708
7709 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7710
7711         * message.el (message-resend): Bind message-generate-hashcash to nil.
7712
7713 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7714
7715         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
7716         when searching for already-paid recipients.
7717
7718 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
7719
7720         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
7721         passphrases when it is not needed.
7722         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
7723         passphrase stuff from gpg, should only be necessary when you use
7724         gpg with a smartcard.
7725
7726 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7727
7728         * mml.el (mml-insert-mime): Ignore cached contents of
7729         message/external-body part.
7730
7731         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
7732         (mm-insert-part): Ditto.
7733
7734 2006-03-23  Simon Josefsson  <jas@extundo.com>
7735
7736         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
7737         Reiner.
7738         (pgg-gpg-use-agent-p): Use it again.
7739
7740 2006-03-23  Simon Josefsson  <jas@extundo.com>
7741
7742         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
7743         older emacsen.
7744         (pgg-gpg-use-agent-p): Don't use it.
7745
7746 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
7747
7748         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
7749         if we can.
7750
7751 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
7752
7753         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
7754         (pgg-gpg-update-agent): New function.
7755         (pgg-gpg-use-agent-p): New function.
7756         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
7757         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
7758         (pgg-gpg-sign-region): Use it.
7759
7760 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7761
7762         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
7763         Reported by Ralf Wachinger <rwachinger@gmx.de>.
7764
7765 2006-03-21  Simon Josefsson  <jas@extundo.com>
7766
7767         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
7768         <wilde@sha-bang.de>.
7769         (pgg-gpg-use-agent): New variable.
7770         (pgg-gpg-process-region): Use it.
7771         (pgg-gpg-encrypt-region): Likewise.
7772         (pgg-gpg-encrypt-symmetric-region): Likewise.
7773         (pgg-gpg-decrypt-region): Likewise.
7774         (pgg-gpg-sign-region): Likewise.
7775         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
7776
7777 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
7778
7779         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
7780
7781         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
7782         Add comment on version.
7783
7784 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
7785
7786         * smiley.el: Add missing test smiley.
7787
7788 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7789
7790         * mm-decode.el (mm-with-part): New macro.
7791         (mm-get-part): Use it; work with message/external-body as well.
7792         (mm-save-part): Treat name and filename equally.
7793
7794         * mm-extern.el (mm-extern-cache-contents): New function.
7795         (mm-inline-external-body): Use it; force the part to be displayed;
7796         move undisplayer added to the cached handle to the parent.
7797
7798         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
7799         (gnus-mime-view-part-as-type): Work with message/external-body.
7800
7801         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
7802
7803 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
7804
7805         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
7806         images in image-load-path.  [Sync with image.el, revision 1.60, in
7807         Emacs.]
7808
7809 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
7810
7811         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
7812         path rather than symbol.  Always return list of directories.
7813         Guarantee that image directory comes first.  [Sync with image.el,
7814         revision 1.59, in Emacs.]
7815
7816         * message.el (message-make-tool-bar): Adjust to new API of
7817         `gmm-image-load-path-for-library'.
7818
7819         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
7820
7821         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
7822
7823 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7824
7825         * gnus-art.el (gnus-article-only-boring-p):
7826         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
7827         intangible text.
7828         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
7829
7830 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
7831
7832         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
7833         `defun' instead of `gmm-defun-compat'.
7834
7835 2006-03-14  Simon Josefsson  <jas@extundo.com>
7836
7837         * message.el (message-unique-id): Don't use message-number-base36
7838         if (user-uid) is a float.
7839         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
7840
7841 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
7842
7843         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
7844
7845         * gnus-art.el (gnus-mime-display-single): Make sure there is an
7846         empty line between a part and a message part.
7847
7848 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
7849
7850         * smiley.el: Add more test smileys.
7851         (smiley-data-directory, smiley-regexp-alist)
7852         (gnus-smiley-file-types): Fix doc strings.
7853         (smiley-update-cache): Clear smiley-cached-regexp-alist before
7854         adding new elements.
7855         (smiley-mouse-map): Unused code.  Make it a comment.
7856
7857 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7858
7859         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
7860         scan latest NoCeM messages instead of old ones.
7861         (gnus-nocem-check-article): Fix regexps so as to match to PGP
7862         delimiters that are recently used.
7863         (gnus-nocem-load-cache): Add autoload cookie.
7864
7865         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
7866
7867         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
7868         level which is larger than gnus-use-nocem is specified.
7869
7870         * gnus-group.el (gnus-group-get-new-news): Ditto.
7871
7872 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
7873
7874         * gnus-util.el (gnus-tool-bar-update): New function.
7875
7876         * gnus-group.el (gnus-group-update-tool-bar): New variable.
7877         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
7878
7879         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
7880
7881         * gnus-group.el (gnus-group-redraw-when-idle)
7882         (gnus-group-redraw-check): Remove.
7883         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
7884
7885 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7886
7887         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
7888         if optional last element is specified in splits (FIELD VALUE...).
7889
7890 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
7891
7892         * message.el (message-make-tool-bar): Rename gmm-image-load-path
7893         to gmm-image-load-path-for-library.  Call with no-error argument.
7894         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
7895
7896         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
7897
7898         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
7899
7900         * gmm-utils.el (gmm-image-load-path): Remove alias.
7901
7902 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
7903
7904         * gmm-utils.el (gmm-image-load-path): Add alias.
7905
7906         * nnml.el (nnml-generate-nov-databases-directory): Rename from
7907         nnml-generate-nov-databases-1.
7908         (nnml-generate-nov-databases): Use it.
7909         (nnml-generate-nov-databases-directory): Document no-active
7910         argument.
7911
7912         * gmm-utils.el (gmm-image-load-path-for-library): Return single
7913         directory if path is t.  Add no-error.
7914
7915         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
7916         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
7917
7918         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
7919         resetting gnus-article-browse-html-temp-list.
7920
7921         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
7922         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
7923         Add example to docstring.  Rename local variables.  Move error
7924         checks to default case in cond and simplify.
7925
7926 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7927
7928         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
7929         handle is multipart when calling it recursively.
7930         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
7931
7932 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
7933
7934         * nnimap.el (nnimap-request-update-info-internal): Optimize.
7935         Don't `gnus-uncompress-range' to avoid excessive memory usage.
7936
7937 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7938
7939         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
7940         is loaded.
7941
7942         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
7943         loaded.
7944
7945 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
7946
7947         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
7948         to "Emacs 23 (unicode)" in doc string.
7949
7950         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
7951         "Emacs 23 (unicode)" in comment.
7952
7953 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7954
7955         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
7956
7957         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
7958         characters 160 through 255 in Emacs 23.
7959
7960 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
7961
7962         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
7963         gnus-article-browse-html-temp.
7964         (gnus-article-browse-delete-temp): Make it customizable.  Add
7965         `file'.  Adjust doc string.
7966         (gnus-article-browse-delete-temp-files): Add argument.  Allow
7967         query for each file.  Adjust doc string.
7968         (gnus-article-browse-html-parts): Add
7969         `gnus-article-browse-delete-temp-files' to
7970         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
7971
7972 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
7973
7974         * gnus-art.el (gnus-article-browse-html-temp)
7975         (gnus-article-browse-delete-temp): New variables.
7976         (gnus-article-browse-delete-temp-files): New function.
7977         (gnus-article-browse-html-parts): Use it.
7978
7979 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
7980
7981         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
7982
7983         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
7984         string.
7985
7986         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
7987         gnus-summary-insert-new-articles when unplugged.  Remove
7988         gnus-summary-search-article-forward.
7989
7990         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
7991         display-visual-class instead of display-color-cells.
7992
7993 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7994
7995         * dgnushack.el: Autoload customize-group for XEmacs.
7996
7997         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
7998         message/* containing non-ASCII text properly.
7999
8000 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8001
8002         * message.el: Require gmm-utils, remove autoloads.
8003         (message-tool-bar): Set default based on
8004         gmm-tool-bar-style.
8005         (message-tool-bar-gnome): Add gmm-customize-mode.
8006
8007         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8008         gmm-tool-bar-style.
8009         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8010
8011         * gnus-group.el (gnus-group-tool-bar): Set default based on
8012         gmm-tool-bar-style.
8013         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8014
8015         * gmm-utils.el (gmm-image-directory): Rename variable from
8016         gmm-image-load-path.
8017         (gmm-image-load-path): Use gmm-image-directory.
8018         (gmm-customize-mode): New function.
8019         (gmm-tool-bar-style): New variable.
8020
8021         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8022         gnus-group-redraw-line-number.
8023         (gnus-group-redraw-check): Simplify.
8024         (gnus-group-tool-bar-update): Remove redraw check.
8025         (gnus-group-make-tool-bar): Add redraw check.
8026
8027 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8028
8029         * gnus-art.el (gnus-button): Add missing parentheses.
8030
8031 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8032
8033         * lpath.el: Fbind line-number-at-pos.
8034
8035 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8036
8037         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8038
8039 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8040
8041         * gnus-art.el (gnus-button): New face.
8042         (gnus-article-button-face): Use it.
8043
8044         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8045         gnus-summary-next-page.  Re-order.
8046
8047         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8048         next-node are now included.
8049         (gnus-group-redraw-line-number): New internal variable.
8050         (gnus-group-redraw-check): Helper function for updating the tool
8051         bar.
8052         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8053
8054         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8055
8056         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8057         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8058         Use it to match format of Spamassassin 3.0 and later.  Reported by
8059         IRIE Tetsuya <irie@t.email.ne.jp>.
8060         (spam-check-bogofilter)
8061         (spam-bogofilter-register-with-bogofilter): Fix args of
8062         `gnus-error' calls.
8063
8064 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8065
8066         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8067         unnecessary interaction when sending queued mails.  Reported by
8068         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8069
8070 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8071
8072         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8073         first or last are nil.
8074
8075 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8076
8077         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8078
8079 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8080
8081         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8082
8083 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8084
8085         * dns.el (query-dns): Protect more against buggy tcp output.
8086
8087 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8088
8089         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8090         nov.php.
8091
8092 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8093
8094         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8095         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8096         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8097         output on the server side.
8098         (nnweb-google-create-mapping): Update regexps and add some
8099         progress indication.
8100
8101 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8102
8103         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8104         gnus-agent-toggle-plugged.  Re-order icons.
8105         (gnus-group-tool-bar-gnome): Add
8106         gnus-group-{prev,next}-unread-group.
8107         (gnus-group-tool-bar-gnome): Re-order icons.
8108
8109         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8110         gnus-summary-insert-new-articles.
8111
8112         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8113         comments.
8114
8115         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8116         also available in Emacs 21.3.
8117
8118         * message.el (message-fix-before-sending): Change "Emacs 22" to
8119         "Emacs 23 (unicode)" in comment.
8120
8121         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8122         "Emacs 23 (unicode)" in comment.
8123
8124         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8125         comment.
8126         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8127
8128         * mm-view.el (mm-fill-flowed): Add :version.
8129
8130 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8131
8132         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8133         and load-path.
8134
8135 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8136
8137         * message.el: Autoload gmm-image-load-path.
8138         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8139         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8140         consitency.
8141
8142         * gmm-utils.el (gmm-image-load-path): Also search in
8143         "../etc/images".  Don't set gmm-image-load-path if we don't find
8144         the image.
8145
8146 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8147
8148         * gmm-utils.el (gmm-image-load-path): Don't make
8149         `gmm-image-load-path' include subdirectories which the second arg
8150         `image' might specify.
8151
8152         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8153         subdirectory to icon file names.
8154
8155         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8156
8157 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8158
8159         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8160         gmm-image-load-path calls.
8161
8162         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8163
8164         * message.el (message-make-tool-bar): Ditto.
8165
8166         * mml.el (mml-preview): Added comment concerning tool bar icons.
8167
8168         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8169         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8170
8171         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8172         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8173
8174         * message.el (message-tool-bar-gnome): Use new icon names.
8175         (message-make-tool-bar): Use `gmm-image-load-path'.
8176
8177         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8178         functions from MH-E.
8179         (gmm-image-load-path): New variable from MH-E.
8180         (gmm-image-load-path): New function from MH-E.  Added arguments
8181         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8182         *-image-load-path-called-flag.
8183
8184 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8185
8186         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8187
8188 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8189
8190         * nnimap.el (nnimap-request-move-article): Change folder back to
8191         source group before deleting.
8192
8193 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8194
8195         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8196
8197         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8198         mm-url.
8199
8200         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8201
8202 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8203
8204         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8205         coding system which mm-charset-to-coding-system returns for a
8206         given charset is valid.
8207
8208 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8209
8210         * html2text.el (html2text-remove-tag-list):
8211         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8212
8213 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8214
8215         * gnus-cus.el: Revert 2005-10-17 change.
8216
8217 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8218
8219         * gnus-art.el (article-strip-banner): Call
8220         article-really-strip-banner only when the regexp match is made.
8221
8222 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8223
8224         * gnus-art.el (article-strip-banner): Use
8225         gnus-extract-address-components instead of
8226         mail-header-parse-addresses to make it work with non-ASCII text;
8227         remove mail-encode-encoded-word-string.
8228
8229         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8230         values which are surrounded with \"...\"; make it never cause a
8231         Lisp error; give up parsing of parameters if it failed in
8232         extracting type.
8233
8234 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8235
8236         * smime.el (smime-cert-by-ldap-1): Fix bug where
8237         `smime-ldap-search' returns results without userCertificates.
8238
8239 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8240
8241         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8242
8243 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8244
8245         * spam.el (spam-check-spamassassin-headers): Adapt format for
8246         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8247         <ari@mbf.ocn.ne.jp>.
8248         (spam-list-of-processors): Add spam-use-gmane.
8249
8250 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8251
8252         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8253         make-temp-file; make it work with XEmacs as well.
8254
8255         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8256         mm-make-temp-file.
8257
8258         * mm-decode.el (mm-display-external): Use the 3rd arg of
8259         mm-make-temp-file.
8260         (mm-create-image-xemacs): Ditto.
8261
8262 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8263
8264         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8265         with message-narrow-to-headers.
8266         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8267         (gnus-draft-check-draft-articles): New function.
8268         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8269
8270 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8271
8272         * gnus-art.el (gnus-article-browse-html-parts):
8273         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8274         Don't use suffix argument for mm-make-temp-file for Emacs 21
8275         compatibility.  Remove useless `format'.
8276
8277 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8278
8279         * nnweb.el (nnweb-google-wash-article): Update regexps.
8280         (nnweb-group-alist): Use defvoo instead of defvar.
8281
8282 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8283
8284         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8285         re-loading nn* modules.
8286
8287 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8288
8289         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8290         for `tool-bar-mode' and don't check it's default-value.
8291
8292         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8293
8294         * message.el (message-make-tool-bar): Ditto.
8295
8296         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8297         `substring'.  Shorten tmp-file name.
8298
8299         * gnus.el: Remove bogus comment.
8300
8301 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8302
8303         * gnus-art.el (gnus-article-browse-html-parts): New function.
8304         (gnus-article-browse-html-article): New function for viewing html
8305         articles with a browser.
8306
8307 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8308
8309         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8310         in elisp.
8311         (pgg-gpg-encrypt-symmetric-region): Ditto.
8312         (pgg-gpg-sign-region): Ditto.
8313
8314         * pgg-def.el (pgg-text-mode): New variable.
8315
8316         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8317         (mml2015-pgg-encrypt): Ditto.
8318
8319         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8320         (mml1991-pgg-encrypt): Ditto.
8321
8322 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8323
8324         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8325         message-make-date instead of current-time-string.
8326
8327         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8328         to gnus-decoded which mm-uu might set.
8329
8330 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8331
8332         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8333         don't decode quoted parameters; remove misimported Emacs code.
8334         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8335         (rfc2231-decode-encoded-string): Don't use split-string which
8336         behaves differently according to Emacs version; use
8337         mm-decode-coding-region to convert charset to coding-system.
8338         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8339         (rfc2231-encode-string): Remove misimported Emacs code.
8340
8341 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8342
8343         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8344         when calling mail-header-parse-content-type.
8345         (article-de-quoted-unreadable): Ditto.
8346         (article-de-base64-unreadable): Ditto.
8347         (article-wash-html): Ditto.
8348
8349         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8350         calling mail-header-parse-content-type and
8351         mail-header-parse-content-disposition.
8352         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8353         mail-header-parse-content-type.
8354
8355         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8356         insert charset and format parameters; encode description after
8357         inserting it to buffer.
8358         (mml-insert-parameter): Fold lines properly even if a parameter is
8359         segmented into two or more lines; change the max column to 76.
8360
8361         * rfc1843.el (rfc1843-decode-article-body): Don't use
8362         ignore-errors when calling mail-header-parse-content-type.
8363
8364         * rfc2231.el (rfc2231-parse-string): Return at least type if
8365         possible; don't cause an error even if it fails in parsing of
8366         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8367         (rfc2231-encode-string): Don't break lines at the beginning, leave
8368         it to mml-insert-parameter.
8369
8370         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8371         calling mail-header-parse-content-type.
8372
8373 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8374
8375         * spam-report.el (spam-report-gmane-use-article-number):
8376         Improve doc string.
8377         (spam-report-gmane-internal): Check if a suitable header was found
8378         in the article.
8379
8380 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8381
8382         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
8383         (rfc2231-encode-string): Make param*=value always begin with LWSP.
8384
8385 2006-02-05  Romain Francoise  <romain@orebokech.com>
8386
8387         Update copyright notices of all files in the gnus directory.
8388
8389 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8390
8391         * nnweb.el (nnweb-request-group): Avoid growing overview files.
8392
8393 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8394
8395         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
8396         segmented lines of parameter value to cope with Thunderbird 1.5
8397         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
8398         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8399         (rfc2231-encode-string): Don't make lines exceeding 76 column.
8400
8401 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
8402
8403         * mml.el (mml-generate-mime-1): Correct the order of inline signed
8404         parts.
8405
8406 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8407
8408         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
8409         there's only one active file for all servers.
8410         (nnweb-request-scan): Make sure nnweb-articles is initialized on
8411         solid groups.  Gnus might have used a FAST request to select the group.
8412         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
8413         and nnweb-search redundantly in the active file.
8414         (nnweb-request-list): Don't list bogus groups.  There can only be one.
8415         (nnweb-request-create-group): Don't use ARGS.
8416         (nnweb-possibly-change-server, nnweb-request-group): Remove some
8417         initialisations.  Let nnoo do the work.
8418
8419 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8420
8421         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
8422         Say the part has been decoded.
8423
8424         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
8425
8426 2006-01-31  Kevin Ryde  <user42@zip.com.au>
8427
8428         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
8429         mailcap-viewer-test-cache when there's no 'test clause, since that
8430         will invert the meaning of a "nil" test previously determined by
8431         mailcap-mailcap-entry-passes-test.
8432
8433 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8434
8435         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
8436         compiling.
8437
8438         * gnus-sum.el: Ditto.
8439
8440         * message.el: Don't bind tool-bar-map when compiling.
8441
8442 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
8443
8444         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
8445
8446 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8447
8448         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
8449         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
8450         current Google Groups.
8451
8452 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
8453
8454         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
8455         and tool-bar-mode.
8456
8457         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
8458         and tool-bar-mode.
8459
8460         * message.el (message-tool-bar-update): Simplify.
8461         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
8462
8463         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
8464         gnus-summary-buffer.
8465         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
8466         gnus-summary-reply.
8467
8468         * gmm-utils.el (gmm): Add :version.
8469
8470 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8471
8472         * Makefile.in (clean): New rule.
8473         (distclean): Use it.
8474
8475 2006-01-26  Steve Youngs  <steve@sxemacs.org>
8476
8477         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
8478         autoload.
8479
8480 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8481
8482         * gmm-utils.el (gmm-verbose): Add :group.
8483
8484 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
8485
8486         * message.el: Change some comments WRT tool-bars.
8487
8488         * gnus-sum.el (gnus-summary-tool-bar)
8489         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
8490         (gnus-summary-tool-bar-zap-list): New variables.
8491         (gnus-summary-make-tool-bar): Complete rewrite using
8492         `gmm-tool-bar-from-list'.
8493
8494         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
8495         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
8496         variables.
8497         (gnus-group-make-tool-bar): Complete rewrite using
8498         `gmm-tool-bar-from-list'.
8499         (gnus-group-tool-bar-update): New function.
8500
8501         * message.el (message-mode-field-menu): Add "Show hidden Headers".
8502
8503 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8504
8505         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
8506         is dissected into a single part of which the type is the same as
8507         the given one; decode charset.
8508
8509 2006-01-21  Kevin Ryde  <user42@zip.com.au>
8510
8511         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
8512         into alists as symbol not string, since that's what
8513         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
8514         look for.
8515
8516 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
8517
8518         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
8519         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
8520
8521         * message.el (message-tool-bar-gnome): Use gmm-ignore.
8522
8523 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8524
8525         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
8526         (gnus-xmas-mime-security-button-menu): New function.
8527
8528         * gnus-art.el (gnus-mime-security-button-commands): New variable.
8529         (gnus-mime-security-button-menu): New definition.
8530         (gnus-mime-security-button-map): Use them.
8531         (gnus-mime-security-button-menu): New function.
8532         (gnus-insert-mime-security-button): Addition to help echo.
8533         (gnus-mime-security-run-function, gnus-mime-security-save-part)
8534         (gnus-mime-security-pipe-part): New functions.
8535
8536         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
8537         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
8538
8539         * mm-decode.el (mm-handle-set-disposition): Remove.
8540         (mm-handle-set-description): Remove.
8541
8542 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8543
8544         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
8545         (mm-w3m-standalone-supports-m17n-p): New function.
8546         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
8547         w3m usage.
8548
8549         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
8550         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
8551
8552 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
8553
8554         * message.el (message-tool-bar-zap-list): Use
8555         gmm-tool-bar-zap-list as custom type.
8556         (message-tool-bar-update): New function.
8557         (message-tool-bar, message-tool-bar-gnome)
8558         (message-tool-bar-retro): Add message-tool-bar-update.
8559         (message-tool-bar-gnome): Add flyspell-buffer.
8560
8561         * gnus-util.el (gnus-error): Describe `args'.
8562
8563         * gmm-utils.el (gmm-error): Describe `args'.
8564         (gmm-tool-bar-zap-list): New widget.
8565         (gmm-tool-bar-from-list): Improve description of `zap-list'.
8566
8567 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8568
8569         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
8570         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
8571         the number of recursive calls.
8572
8573         * mm-decode.el (mm-handle-set-disposition): New macro.
8574         (mm-handle-set-description): New macro.
8575
8576 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8577
8578         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
8579         encoding.
8580
8581 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
8582
8583         * message.el (message-tool-bar-zap-list, message-tool-bar)
8584         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
8585         (message-tool-bar-local-item-from-menu): Remove.
8586         (message-tool-bar-map): Replace by `message-make-tool-bar'.
8587         (message-make-tool-bar): New function.
8588         (message-mode): Use `message-make-tool-bar'.
8589
8590         * gmm-utils.el: New file.
8591         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
8592         (gmm-lazy): New widget copied from `nnmail.el'.
8593         (gmm-tool-bar-from-list): New function for creating customizable
8594         tool bars.
8595         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
8596         output.
8597         (gmm): Add :prefix to defgroup.
8598
8599 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
8600
8601         * gmm-utils.el (gmm-widget-p): New function.
8602
8603 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
8604
8605         * mml.el (mml-attach-file): Describe `description' in doc string.
8606         (mml-menu): Add Emacs MIME manual and PGG manual.
8607
8608 2006-01-20  Richard M. Stallman  <rms@gnu.org>
8609
8610         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
8611
8612 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
8613
8614         * nntp.el (nntp-end-of-line): Doc fix.
8615
8616 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
8617
8618         * imap.el (imap-open): Handle case where buffer is a buffer
8619         object.
8620
8621 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8622
8623         * gnus-delay.el (gnus-delay): Don't autoload.
8624         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
8625         to be re-loaded when customizing the `gnus-delay' group.
8626
8627 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
8628
8629         * message.el (message-insert-citation-line): Use newlines.
8630
8631 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
8632
8633         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
8634         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
8635         these routines, so the passphrase can be managed externally and
8636         passed in to the system.
8637         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
8638         pgg-add-passphrase-to-cache function.
8639
8640         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
8641         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
8642         these routines, so the passphrase can be managed externally and
8643         passed in to the system.
8644         (pgg-pgp5-sign-region): Use new name of
8645         pgg-add-passphrase-to-cache function.
8646
8647 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
8648
8649         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
8650         part of the decoded armor to find the key-identifier.
8651         (pgg-gpg-lookup-key-owner): New function to return the
8652         human-readable identifier of a key owner.
8653         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
8654         itself.
8655         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
8656         the key value) if we have a key and can match it against a secret
8657         key.  Also, added a note pointing out fact that the prompt only
8658         indicates the first matching key.
8659
8660         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
8661         pgg-decrypt-region.
8662         (pgg-add-passphrase-to-cache): Rename from
8663         `pgg-add-passphrase-cache' to reduce confusion (all callers
8664         changed).
8665         (pgg-remove-passphrase-from-cache): Rename from
8666         `pgg-remove-passphrase-cache' to reduce confusion (all callers
8667         changed).
8668         (pgg-read-passphrase, pgg-add-passphrase-cache)
8669         (pgg-remove-passphrase-cache): Add informative docstrings.
8670         (pgg-decrypt): Convey provided passphrase in subordinate call to
8671         pgg-decrypt-region.
8672
8673 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
8674
8675         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
8676         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
8677         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
8678         'passphrase' argument, so the passphrase can be managed externally
8679         and then passed in to the system.
8680
8681         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
8682         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
8683         so the passphrase cache can be used reliably with identifiers
8684         besides a pgp packet's key id.
8685
8686         * pgg-gpg.el (pgg-gpg-encrypt-region)
8687         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8688         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
8689         these routines, so the passphrase can be managed externally and
8690         passed in to the system.
8691
8692         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
8693         'notruncate' argument, so the passphrase cache can be used
8694         reliably with identifiers besides a pgp packet's key id.
8695
8696 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
8697
8698         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
8699         symmetric encryption.
8700         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
8701         encrypted session key.
8702         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
8703         message ask for the passphrase in a proper way.
8704
8705         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
8706         New user commands for symmetric encryption.
8707
8708 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8709
8710         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
8711
8712         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
8713
8714 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
8715
8716         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
8717
8718 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8719
8720         * mm-decode.el (mm-inlined-types): Add application/pgp.
8721         (mm-automatic-display): Ditto.
8722
8723         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
8724         part as text.
8725
8726 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8727
8728         * nnrss.el: Update copyright.
8729         (nnrss-opml-import): Query whether to subscribe to each entry.
8730
8731         * gnus-art.el:
8732         * gnus-sum.el:
8733         * gnus-xmas.el:
8734         * messagexmas.el:
8735         * mm-uu.el:
8736         * mm-view.el: Update copyright.
8737
8738 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
8739
8740         * message.el (message-info): New function.
8741         (message-mode-menu): Add it.
8742         Update copyright.
8743
8744         * ChangeLog: Fix and update copyright.
8745
8746 2006-01-13  Romain Francoise  <romain@orebokech.com>
8747
8748         * message.el (message-forward-subject-name-subject): Prefer the
8749         address to 'nowhere' if the sender has no name.
8750         Fix typo.  Update copyright year.
8751
8752 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8753
8754         * gnus-art.el (article-wash-html): Use
8755         gnus-summary-show-article-charset-alist if a numeric arg is given.
8756         (gnus-article-wash-html-with-w3m-standalone): New function.
8757
8758         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
8759         mm-inline-text-html-render-with-w3m-standalone.
8760         (mm-text-html-washer-alist): Map w3m-standalone to
8761         gnus-article-wash-html-with-w3m-standalone.
8762         (mm-inline-text-html-render-with-w3m-standalone): New function.
8763
8764 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
8765
8766         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
8767         Improve LaTeX.
8768
8769 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8770
8771         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
8772         (nnrss-request-article): Render text/plain parts as HTML.
8773
8774         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
8775         the buffer.
8776
8777 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
8778
8779         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
8780         custom definition of `gnus-posting-styles'.
8781
8782         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
8783         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
8784
8785 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
8786
8787         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
8788         Use nntp for bug archive.
8789
8790 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8791
8792         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
8793         parts.
8794         (nnrss-normalize-date): New function converts ISO 8601 date into
8795         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
8796         (nnrss-check-group): Use it.
8797
8798 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8799
8800         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
8801
8802         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
8803         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
8804         (nnrss-insert-w3): Ditto.
8805
8806 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8807
8808         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
8809         the articles to be forwarded including the case where neither a
8810         number of articles nor a region is specified.
8811
8812 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8813
8814         * nnrss.el (nnrss-request-article): Fix last change; fill
8815         text/plain parts.
8816
8817 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8818
8819         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
8820         in text/plain part.
8821         (nnrss-check-group): Don't add excessive newline to dc:subject.
8822
8823 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
8824
8825         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
8826         article.
8827
8828 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
8829
8830         * nnml.el: Don't require gnus-bcklg.  Autoload it.
8831         (nnml-use-compressed-files, nnml-save-mail): Support other
8832         comression programs such as bzip2.
8833
8834 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8835
8836         * dns.el (query-dns): Make sure we check the buffer size before
8837         removing tcp headers.
8838
8839 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8840
8841         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
8842         remove MIME buttons associated with multipart/alternative parts.
8843         (gnus-mime-display-alternative): Tag buttons using `article-type'
8844         text property.
8845
8846         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
8847         associated with multipart/alternative parts.
8848
8849         * gnus-art.el (gnus-signature-separator): Fix custom type.
8850
8851         * mm-decode.el (mm-inlined-types): Fix custom type.
8852         (mm-keep-viewer-alive-types): Ditto.
8853         (mm-automatic-display): Ditto.
8854         (mm-attachment-override-types): Ditto.
8855         (mm-inline-override-types): Ditto.
8856         (mm-automatic-external-display): Ditto.
8857
8858 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
8859
8860         * spam-report.el (spam-report-user-mail-address)
8861         (spam-report-user-agent): New variables.
8862         (spam-report-url-ping-plain): Use spam-report-user-agent.
8863
8864 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
8865
8866         * gnus-art.el (gnus-button-handle-custom): Do not just use
8867         `customize-apropos' for any "M-x customize-*" button but the
8868         function called for.  Accept both the function name and its
8869         argument in order to achieve this.
8870         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
8871         function name to `gnus-button-handle-custom' in case of "M-x
8872         customize-*" buttons.
8873
8874 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8875
8876         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
8877         multipart/alternative and add xref to mm-discouraged-alternatives
8878         in doc string.
8879
8880         * mm-decode.el (mm-discouraged-alternatives): Add xref to
8881         gnus-buttonized-mime-types in doc string.
8882
8883 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
8884
8885         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
8886         Suggest image/.* in the doc string.
8887
8888 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
8889
8890         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
8891         message-marks (Debian bug #342521).
8892
8893 2005-12-12  Simon Josefsson  <jas@extundo.com>
8894
8895         * password.el (password-read-from-cache): Add.
8896         (password-read): Use it.
8897
8898 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8899
8900         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
8901         us-ascii as a MIME charset.
8902
8903         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
8904         against the case where the 2nd arg TYPE is nil.
8905
8906 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
8907
8908         * pop3.el (pop3-stream-type): Fix custom version.
8909
8910         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
8911
8912 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8913
8914         * mm-decode.el (mm-display-external): Add missing cdr.
8915
8916 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8917
8918         * mm-decode.el (mm-display-external): Use nametemplate (defined in
8919         RFC1524) if it is in mailcap or add a suffix according to
8920         mailcap-mime-extensions when generating a temp filename; postpone
8921         deleting a temp file for 2 seconds for some wrappers, shell
8922         scripts, and so on, which might exit right after having started a
8923         viewer command as a background job.
8924
8925 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
8926
8927         * nntp.el (nntp-marks-directory): Fix custom group.
8928
8929         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
8930         steps when < 10.
8931
8932         * gnus-start.el (gnus-no-server-1): Mention
8933         `gnus-level-default-subscribed' in doc string.
8934
8935 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8936
8937         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
8938         parens.
8939
8940 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8941
8942         * gnus-xmas.el (gnus-use-toolbar): Revert.
8943         (gnus-xmas-setup-toolbar): Use global default-toolbar if
8944         gnus-use-toolbar is default.
8945
8946         * messagexmas.el (message-use-toolbar): Revert.
8947         (message-setup-toolbar): Use global default-toolbar if
8948         message-use-toolbar is default.
8949
8950 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8951
8952         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
8953         according to default-toolbar-visible-p.
8954
8955         * messagexmas.el (message-use-toolbar): Ditto.
8956
8957 2005-11-26  Dave Love  <fx@gnu.org>
8958
8959         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
8960         (tls-program, tls-success): Provide openssl alternative.
8961
8962         * starttls.el: Doc fixes.
8963         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
8964         SERVICE to PORT.
8965
8966         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
8967         port null or service name.
8968         (starttls-negotiate): Autoload.
8969
8970 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8971
8972         * message.el (message-kill-to-signature): Fix interactive spec.
8973
8974 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8975
8976         * pop3.el (pop3-open-server): Recognize a string as a service name.
8977
8978 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
8979
8980         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
8981
8982 2005-11-23  Dave Love  <fx@gnu.org>
8983
8984         Add pop3s, pop3/starttls.
8985
8986         * pop3.el (pop3-authentication-scheme): Clarify doc.
8987         (open-tls-stream, starttls-open-stream): Autoload.
8988         (pop3-stream-type): New.
8989         (pop3-open-server): Use it.
8990
8991         * mail-source.el (mail-sources): Fix some :types.  Add stream type
8992         for POP.
8993         (mail-source-keyword-map): Add :stream for POP.
8994         (mail-source-fetch-pop): Use pop3-stream-type.
8995
8996 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8997
8998         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
8999         of current-time-string.
9000
9001 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9002
9003         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9004         date header.
9005
9006 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9007
9008         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9009         it can seriously impact performance as it bypasses the agent's
9010         local caches.
9011
9012 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9013
9014         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9015         must be explicitly online rather than "not explicitly offline" for
9016         its flags to be synchronized.
9017
9018         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9019         that gnus-uu-unmark-thread will function correctly.
9020
9021         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9022         1024K is instead displayed as 1M.
9023
9024 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9025
9026         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9027
9028 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9029
9030         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9031
9032 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9033
9034         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9035         error message to display actual error condition.
9036         (gnus-agent-save-local): Avoid saving symbols that are bound to
9037         nil as they simply result in a warning message in
9038         gnus-agent-read-local.
9039
9040 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9041
9042         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9043         rather than make-variable-buffer-local for file-precious-flag.
9044
9045 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9046
9047         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9048         for duplicates which are removed.  The invalid sort check then
9049         triggers a rescan after the sort as sorting may have moved
9050         duplicate entries such that they can be cheaply detected.
9051
9052 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9053
9054         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9055
9056 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9057
9058         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9059         internal variable to a custom variable.  Changed default value
9060         from compressed(2) to uncompressed(1).
9061         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9062         support for uncompressed agentview files.  Taken together, reading
9063         the agentview file should now be 6-7 times faster.
9064
9065 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9066
9067         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9068         as a buffer-local variable.  This avoids creating truncated
9069         dribble files as a result of a hang up, eg.
9070
9071 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9072
9073         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9074         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9075         XEmacs.
9076
9077 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9078
9079         * gnus-start.el (gnus-start-draft-setup): Enforce
9080         `gnus-draft-mode' for nndraft:drafts at startup.
9081
9082         * gnus.el (gnus-splash): Change custom group.
9083         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9084         allow-list argument.
9085
9086         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9087         string.
9088
9089 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9090
9091         * gnus-art.el (gnus-default-article-saver): Add user-defined
9092         `function' to custom type.
9093
9094 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9095
9096         * imap.el (imap-open): Handle case where buffer is a buffer
9097         object.
9098
9099 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9100
9101         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9102         long lines.
9103         (gnus-cache-delete-group): Wrap doc strings.
9104
9105         * gnus-agent.el (gnus-agent-rename-group)
9106         (gnus-agent-delete-group): Wrap doc strings.
9107
9108 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9109
9110         * messagexmas.el (message-use-toolbar): Change the valid values
9111         into default, top, bottom, left, and right.
9112         (message-toolbar-thickness): New variable.
9113         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9114         well.
9115         (message-setup-toolbar): Make it work.
9116
9117         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9118         (gnus-use-toolbar): Change the valid values into default, top,
9119         bottom, left, and right.
9120         (gnus-toolbar-thickness): New variable.
9121         (gnus-xmas-setup-toolbar): New function.
9122         (gnus-xmas-setup-group-toolbar): Use it.
9123         (gnus-xmas-setup-summary-toolbar): Use it.
9124
9125 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9126
9127         * gnus-start.el (gnus-1): Add "native" to
9128         gnus-predefined-server-alist.
9129
9130         * gnus.el (gnus-method-to-server): Don't add "native" to the
9131         lists here, because that leads to problems when
9132         gnus-select-method is bound.
9133
9134 2005-11-09  Simon Josefsson  <jas@extundo.com>
9135
9136         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9137         use (not sort-by-date) instead.
9138
9139 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9140
9141         * gnus-delay.el (gnus-delay-group): Don't autoload.
9142         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9143         to be re-loaded when customizing the `gnus-delay' group.
9144
9145 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9146
9147         * message.el: Revert last changes.
9148         (message-insert-citation-line): Use newlines.
9149
9150 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9151
9152         * message.el (message-courtesy-message)
9153         (message-mark-insert-begin, message-mark-insert-end)
9154         (message-elide-ellipsis, message-cancel-message)
9155         (message-add-header, message-change-subject)
9156         (message-cross-post-followup-to-header)
9157         (message-cross-post-insert-note, message-reduce-to-to-cc)
9158         (message-widen-reply, message-delete-not-region)
9159         (message-kill-to-signature, message-insert-signature)
9160         (message-insert-importance-high, message-insert-importance-low)
9161         (message-insert-or-toggle-importance)
9162         (message-insert-disposition-notification-to)
9163         (message-indent-citation, message-yank-original)
9164         (message-cite-original-without-signature, message-cite-original)
9165         (message-insert-citation-line, message-position-on-field)
9166         (message-fix-before-sending, message-send-mail-partially)
9167         (message-send-mail, message-send-mail-with-sendmail)
9168         (message-send-mail-with-qmail, message-send-news)
9169         (message-check-news-header-syntax, message-generate-headers)
9170         (message-insert-courtesy-copy, message-fill-address)
9171         (message-fill-header, message-shorten-references)
9172         (message-setup-1, message-cancel-news)
9173         (message-forward-make-body-plain, message-forward-make-body-mime)
9174         (message-forward-make-body-mml, message-encode-message-body)
9175         (message-forward-make-body-digest-plain)
9176         (message-forward-make-body-digest-mime)
9177         (message-use-alternative-email-as-from): Insert `hard-newline'
9178         instead of ordinary newlines.
9179
9180 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9181
9182         * message.el (message-generate-headers): Downcase the argument
9183         given to message-check-element.
9184
9185 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9186
9187         * nntp.el (nntp-authinfo-rejected): New error condition.
9188         (nntp-wait-for): Use new error condition to signal authentication
9189         error.
9190         (nntp-retrieve-data): Rethrow new error condition to break out of
9191         recursive call to nntp-send-authinfo.
9192
9193 2005-11-08  Romain Francoise  <romain@orebokech.com>
9194
9195         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9196         (gnus-summary-exit-map): Bind to `Z p'.
9197         (gnus-summary-make-menu-bar): Add menu item.
9198
9199 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9200
9201         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9202         (gnus-treat-*): Add `first' in all doc strings.
9203
9204         * gnus-group.el (gnus-group-compact-group): Fix typo.
9205
9206 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9207
9208         * gnus.el (gnus-parameters-case-fold-search): New variable.
9209         (gnus-parameters-get-parameter): Use it.
9210
9211         * gnus-score.el (gnus-home-score-file): Doc fix.
9212
9213 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9214
9215         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9216
9217 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9218
9219         * mm-util.el (mm-special-display-p): New function.
9220
9221         * mml.el (mml-preview): Use it; doc fix.
9222
9223 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9224
9225         * imap.el (imap-open): Handle case where buffer is a buffer object.
9226
9227 2005-10-29  Romain Francoise  <romain@orebokech.com>
9228
9229         * message.el (message-fix-before-sending): Fix comment.
9230
9231 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9232
9233         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9234
9235 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9236
9237         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9238         Used in gnus-score.el.
9239
9240 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9241
9242         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9243
9244 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9245
9246         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9247         whitespace removed in revision 7.8.  Use concatenated string to
9248         protect trailing whitespace.
9249
9250 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9251
9252         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9253         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9254         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9255         Courier IMAP ("some version from 2004").  Mostly based on similar
9256         code in the same function.
9257
9258 2005-10-26  Didier Verna  <didier@xemacs.org>
9259
9260         * gnus-group.el (gnus-group-compact-group): Invalidate original
9261         article buffer.
9262         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9263         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9264         NOV database and in article itself.
9265         Invalidate article backlog.
9266
9267 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9268
9269         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9270
9271 2005-10-26  Simon Josefsson  <jas@extundo.com>
9272
9273         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9274         part of 2004-07-25 change.
9275
9276 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9277
9278         * message.el (message-display-completion-list): New function.
9279         (message-expand-group): Use it; make sure the Completions buffer
9280         is modifiable.
9281 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9282
9283         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9284         user-mail-name is an empty string.
9285
9286 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9287
9288         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9289         depending on gnus-score-decay-constant.
9290
9291         * encrypt.el (encrypt-insert-file-contents)
9292         (encrypt-write-file-contents): Don't use `gnus-message'.
9293
9294         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9295         arguments.
9296         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9297         arguments to mm-uu-verbatim-marks-extract.
9298         (mm-uu-hide-markers): New variable.
9299         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9300
9301         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9302         (gnus-convert-image-to-face-command): Use "convert" by default to
9303         allow other input image formats.
9304         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9305         accordingly.
9306
9307 2005-10-23  Simon Josefsson  <jas@extundo.com>
9308
9309         * imap.el (imap-gssapi-program): Align command line parameters
9310         with latest GNU SASL.
9311         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9312
9313 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9314
9315         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9316         HTML.
9317         (nnslashdot-request-article): Ditto.
9318
9319         * lpath.el (featurep): Add nobreak-char-display.
9320
9321 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9322
9323         * mail-source.el (mail-source-fetch-pop): Require pop3.
9324         (mail-source-check-pop): Ditto.
9325
9326 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9327
9328         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9329         errors.
9330
9331 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9332
9333         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9334         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9335
9336         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9337
9338         * mm-bodies.el (mm-decode-string): Call
9339         `mm-charset-to-coding-system' with allow-override argument.
9340
9341 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9342
9343         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9344         (rfc2047-charset-to-coding-system): New function.
9345         (rfc2047-decode-encoded-words): New function.
9346         (rfc2047-decode-region): Use them.
9347         (rfc2047-decode-cte): Remove.
9348         (rfc2047-parse-and-decode): Remove.
9349         (rfc2047-decode): Remove.
9350
9351 2005-10-15  Kenichi Handa  <handa@m17n.org>
9352
9353         * rfc2047.el (rfc2047-decode-cte): New function.
9354         (rfc2047-decode-region): Change the way to decode successive
9355         encoded-words: decode B- or Q-encoding in each encoded-word,
9356         concatenate them, and decode it as charset.
9357
9358 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9359
9360         * lpath.el: Fbind codepage-setup for XEmacs.
9361
9362 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9363
9364         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9365         widget-move-and-invoke.
9366         (gnus-custom-mode): Use gnus-custom-map.
9367
9368 2005-10-15  Bill Wohler  <wohler@newt.com>
9369
9370         * message.el (message-tool-bar-map): Renamed image file from
9371         mail_send to mail/send.
9372
9373 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9374
9375         * message.el (message-expand-group): Pass the common
9376         prefix substring of completion to `display-completion-list'.
9377
9378 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9379
9380         * mml-sec.el (mml-secure-method): New internal variable.
9381         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
9382         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
9383         functions using mml-secure-method.
9384
9385         * mml.el (mml-mode-map): Add key bindings for those functions.
9386         (mml-menu): Simplify security menu entries.  Suggested by Jesper
9387         Harder <harder@myrealbox.com>.
9388         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
9389         end of message if point is the headers of the message.
9390
9391         * message.el (message-in-body-p): New function.
9392
9393         * assistant.el: Autoload gnus-util and netrc.
9394
9395         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
9396         Use `mm-charset-override-alist' only when decoding.
9397
9398         * mm-bodies.el (mm-decode-body): Call
9399         `mm-charset-to-coding-system' with allow-override argument.
9400
9401         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
9402         `filename' from Content-Disposition if Content-Type doesn't
9403         provide `name'.
9404         (gnus-mime-view-part-as-type): Set default instead of
9405         initial-input.
9406
9407 2005-10-09  Daniel Brockman  <daniel@brockman.se>
9408
9409         * format-spec.el (format-spec): Propagate text properties of % spec.
9410
9411 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
9412
9413         * gnus-art.el (gnus-treat-predicate): Add `first'.
9414
9415 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
9416
9417         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
9418         (mm-charset-override-alist): New variable.
9419         (mm-charset-to-coding-system): Use it.
9420         (mm-codepage-setup): New helper function.
9421         (mm-charset-eval-alist): New variable.
9422         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
9423         about unknown charsets.
9424
9425         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
9426
9427 2005-10-04  David Hansen  <david.hansen@gmx.net>
9428
9429         * nnrss.el (nnrss-request-article): Add support for the comments tag.
9430         (nnrss-check-group): Ditto.
9431
9432 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9433
9434         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
9435         Rename x-gnus-verbatim to x-verbatim.
9436         (mm-uu-type-alist): Fix regexp for verbatim-marks.
9437
9438         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
9439         x-verbatim.
9440
9441         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
9442
9443         * gnus-util.el (gnus-remove-duplicates): Remove.
9444
9445         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
9446         instead of gnus-remove-duplicates.
9447
9448         * message.el (message-remove-duplicates): Remove.
9449         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
9450         message-remove-duplicates.
9451
9452         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
9453         available, else use implementation from `delete-dups'.
9454
9455         * message.el (message-insert-expires): New function.
9456         (message-mode-map): Add key binding.
9457         (message-mode-field-menu): Add menu entry.
9458         (message-mode): Document it.
9459         (message-make-expires-date): Use `message-make-date'.
9460
9461 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
9462
9463         * message.el (message-make-expires-date): New function.
9464
9465 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9466
9467         * Makefile.in (list-installed-shadows): New entry.
9468         (install): Use it.
9469         (remove-installed-shadows): New entry.
9470
9471         * dgnushack.el (dgnushack-default-load-path): New variable.
9472         (dgnushack-find-lisp-shadows): New function.
9473         (dgnushack-remove-lisp-shadows): New function.
9474
9475 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9476
9477         * Makefile.in (install-el-elc): New entry.
9478         (install): Use it so that .el files are necessarily installed.
9479
9480 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9481
9482         * time-date.el: Autoload parse-time-string, XEmacs needs it.
9483
9484 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9485
9486         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
9487         function rather than the diff-mode.el package.
9488         (mm-display-external): Use with-current-buffer.
9489         (mm-viewer-completion-map, mm-viewer-completion-map):
9490         Move initialization inside declaration.
9491
9492 2005-09-29  Simon Josefsson  <jas@extundo.com>
9493
9494         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
9495         autoload mail-check-payment.
9496         (spam-check-hashcash): Define unconditionally, since hashcash.el
9497         is part of Gnus now.  Ignore errors from payment checking.
9498
9499 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
9500
9501         * message.el (message-bold-region, message-unbold-region): Rename
9502         from `bold-region' and `unbold-region'.
9503
9504         * message.el: Remove useless autoloads.
9505
9506 2005-09-28  Simon Josefsson  <jas@extundo.com>
9507
9508         * message.el (message-use-idna): Default to t.
9509         (message-use-idna): Test whether encoding works too.  Doc fix.
9510
9511 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9512
9513         * nntp.el (nntp-warn-about-losing-connection): Remove.
9514
9515 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
9516
9517         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
9518         customizable.  Change default value.
9519         (mm-uu-diff-groups-regexp): Change default value.
9520         (mm-uu-type-alist): Add doc string.
9521         (mm-uu-configure): Add doc string.  Make it interactive.
9522         (mm-uu-tex-groups-regexp): New variable.
9523         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
9524         (mm-uu-type-alist): Add LaTeX documents.
9525         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
9526         of "text/verbatim".
9527         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
9528
9529         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
9530         instead of "text/verbatim".
9531
9532         * message.el (message-mark-inserted-region)
9533         (message-mark-insert-file): Use slrn style marks when called with
9534         prefix argument.
9535
9536 2005-09-27  Simon Josefsson  <jas@extundo.com>
9537
9538         * message.el (message-idna-to-ascii-rhs-1): Reformat.
9539
9540 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
9541
9542         * message.el (message-remove-duplicates): New function.
9543         Implementation borrowed from `gnus-remove-duplicates'.
9544         (message-idna-to-ascii-rhs): Also encode idna addresses in
9545         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
9546         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
9547         only ask about the same idna domain once per header and also tell
9548         in what header to replace the idna domain.
9549
9550         * gnus-art.el (article-decode-idna-rhs): Also decode idna
9551         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
9552         (article-decode-idna-rhs): Fix regexp so that all idna-address in
9553         a header is decoded and not just the last one.
9554
9555 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9556
9557         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
9558         has been decoded.
9559
9560         * mm-decode.el (mm-automatic-display): Add text/verbatim.
9561         (mm-insert-part): Don't modify text if it has been decoded.
9562
9563         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
9564         decoded.
9565
9566         * mm-view.el (mm-inline-text): Don't strip text props unless
9567         decoding enriched or richtext parts.
9568
9569 2005-09-25  Romain Francoise  <romain@orebokech.com>
9570
9571         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
9572         * gnus-start.el (gnus-subscribe-interactively):
9573         * gnus-uu.el (gnus-uu-grab-articles):
9574         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
9575         space.
9576
9577 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
9578
9579         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9580         * mm-view.el (mm-view-pkcs7-decrypt):
9581         * gnus-sum.el (gnus-summary-limit-to-extra)
9582         (gnus-summary-respool-article, gnus-read-move-group-name):
9583         * gnus-score.el (gnus-summary-increase-score):
9584         * gnus-util.el (gnus-completing-read-with-default):
9585         * gnus-art.el (gnus-read-save-file-name)
9586         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
9587         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
9588         * message.el (message-check-news-header-syntax):
9589         Follow convention for reading with the minibuffer.
9590
9591 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
9592
9593         * spam-report.el (spam-report-url-ping-plain):
9594         Use gnus-extended-version as User-Agent.
9595
9596         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
9597         default value is nil.
9598
9599         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
9600         (mm-uu-verbatim-marks-extract): New function.
9601         (mm-uu-extract): New face.
9602         (mm-uu-copy-to-buffer): Use it.
9603
9604         * spam-report.el (spam-report-gmane-ham): Renamed from
9605         `spam-report-gmane-unspam'.
9606         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
9607         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
9608
9609         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
9610         Autoload.
9611         (spam-report-gmane-unregister-routine): Renamed
9612         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
9613
9614 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
9615
9616         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
9617         (spam-report-gmane-unregister-routine): Add support for gmane
9618         unregistration.
9619
9620         * spam-report.el (spam-report-gmane-unspam)
9621         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
9622         (spam-report-gmane): Change to take a single article and do unspam
9623         registration.
9624
9625 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
9626
9627         * mm-url.el (mm-url-decode-entities): Fix regexp.
9628
9629 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9630
9631         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
9632         default to nil, to be able to use Gnus at all.  If the default
9633         switches to something else, then the function should be fixed not
9634         be exceedingly slow.
9635
9636 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
9637
9638         * gnus-start.el (gnus-activate-group): If the server is nil, don't
9639         fail hard.
9640
9641         * spam-report.el: Add better Keywords line.
9642
9643         * spam.el: Add Maintainer and better Keywords line.
9644
9645 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
9646
9647         * gnus-art.el (gnus-article-replace-part)
9648         (gnus-mime-replace-part): New functions.
9649         (gnus-mime-action-alist, gnus-mime-button-commands)
9650         (gnus-mime-save-part-and-strip): Added file argument.
9651         (gnus-article-part-wrapper): Added interactive argument.
9652
9653         * gnus-sum.el (gnus-summary-mime-map): Add
9654         `gnus-article-replace-part'.
9655
9656 2005-09-19  Didier Verna  <didier@xemacs.org>
9657
9658         The nnml compaction feature:
9659         * nnml.el (nnml-request-compact-group): New function.
9660         * nnml.el (nnml-request-compact): New function.
9661         * gnus-int.el (gnus-request-compact-group): New function.
9662         * gnus-int.el (gnus-request-compact): New function.
9663         * gnus-group.el (gnus-group-compact-group): New function.
9664         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
9665         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
9666         * gnus-srvr.el (gnus-server-compact-server): New function.
9667         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
9668         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
9669
9670 2005-09-18  Deepak Goel  <deego@gnufans.org>
9671
9672         * sieve.el (sieve-help): Fix `message' call: first arg should be a
9673         format spec.
9674
9675 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9676
9677         * gnus.el (gnus-group-startup-message): Bind image-load-path.
9678
9679 2005-09-15  Romain Francoise  <romain@orebokech.com>
9680
9681         * message.el (message-fill-paragraph): Clarify docstring.
9682
9683 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9684
9685         * gnus-art.el (gnus-mime-display-part): Protect against broken
9686         MIME messages.
9687
9688 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9689
9690         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
9691         before parsing header.
9692
9693 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
9694
9695         * html2text.el (html2text-replace-list): Add new entities.
9696
9697 2005-09-11  Romain Francoise  <romain@orebokech.com>
9698
9699         * message.el (message-alternative-emails): Improve docstring.
9700         (message-setup-1): Call `message-use-alternative-email-as-from'
9701         after `message-setup-hook' to give it precedence over posting
9702         styles, etc.
9703         (message-use-alternative-email-as-from): Add docstring.  Remove
9704         the original From header if present.
9705
9706         * nnml.el (nnml-compressed-files-size-threshold): New variable.
9707         (nnml-save-mail): Use it.
9708
9709         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
9710         articles.  Add new argument `silent'.
9711         (gnus-uu-mark-all): Report the total number of marked articles.
9712
9713 2005-09-10  Romain Francoise  <romain@orebokech.com>
9714
9715         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
9716         (gnus-uu-mark-series): Likewise.
9717
9718 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
9719
9720         * spam-report.el (spam-report-gmane): Fix generation of spam
9721         report URL.
9722
9723 2005-09-10  Simon Josefsson  <jas@extundo.com>
9724
9725         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
9726         t, based on discussion on the ding list with Robert Epprecht
9727         <epprecht@solnet.ch>.
9728
9729 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
9730
9731         * spam-report.el (spam-report-gmane): Make it work without
9732         X-Report-Spam header.  Gmane now only provides Archived-At.
9733         This is only used if `spam-report-gmane-use-article-number' is nil.
9734         (spam-report-gmane-spam-header): Remove.  Not used anymore.
9735
9736         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
9737         make `gnus-summary-sort-by-recipient' work with threading.
9738
9739         * nnweb.el (nnweb-google-wash-article): Print a message if article
9740         is not available.
9741
9742 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
9743
9744         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
9745         change.  Decode text/* parts content before displaying.
9746
9747 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
9748
9749         * mml-smime.el: Remove defvar of gnus-extract-address-components.
9750
9751 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9752
9753         * mm-view.el (mm-display-inline-fontify): Disable support modes.
9754
9755         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
9756         url-package-name, url-package-version,
9757         w3m-cid-retrieve-function-alist, w3m-current-buffer,
9758         w3m-display-inline-images, and w3m-minor-mode-map.
9759
9760 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
9761
9762         * message.el (message-tab-body-function): Fix mismatched custom type.
9763
9764         * gnus.el (gnus-group-change-level-function): Ditto.
9765
9766         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
9767
9768         * gnus-art.el (gnus-signature-limit)
9769         (gnus-article-mime-part-function): Ditto.
9770
9771 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9772
9773         * mml.el (mml-mode): Silence the byte compiler.
9774
9775         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
9776         using `(sit-for 0)' before moving the point to the specified part;
9777         skip unbuttonized parts.
9778         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
9779         return to the summary window if gnus-auto-select-part is non-nil.
9780
9781 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
9782
9783         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
9784         variables.
9785         (mml-dnd-attach-file, mml-mode): Use them.
9786
9787         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
9788         Make fetching article by MID work again for Google Groups.  Added
9789         FIXME concerning gnus-group-make-web-group.
9790
9791         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
9792         Don't depend on Gnus by using mail-extract-address-components if
9793         gnus-extract-address-components is not bound.
9794
9795 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9796
9797         * gnus-art.el (gnus-mime-display-security): Don't display the
9798         signature, but only the signed part.
9799
9800 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9801
9802         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
9803
9804         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
9805         list, not listp.
9806
9807 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
9808
9809         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
9810         when encoding.
9811
9812         * mm-bodies.el (mm-decode-content-transfer-encoding):
9813         De-canonicalize CRLF for all text content types, not just
9814         text/plain.
9815
9816 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9817
9818         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
9819         valid article; point arrow and cursor at the MIME button.
9820
9821 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9822
9823         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
9824         Suggested by Dan Christensen <jdc@uwo.ca>.
9825
9826         * mm-decode.el (mm-save-part): Enable change of prompt.
9827
9828 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
9829
9830         * gnus-msg.el (gnus-inews-add-send-actions): Made
9831         `message-post-method' lambda parameter ARG `&optional'.
9832
9833 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
9834
9835         * gnus-sum.el (gnus-summary-mime-map): Added
9836         gnus-article-save-part-and-strip, gnus-article-delete-part and
9837         gnus-article-jump-to-part.
9838
9839         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
9840         (gnus-article-edit-part): Use it.
9841         (gnus-article-part-wrapper): Added no-handle argument.
9842         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
9843         functions.
9844
9845 2005-08-29  Romain Francoise  <romain@orebokech.com>
9846
9847         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
9848         docstring.
9849         (gnus-face-from-file): Likewise.
9850
9851 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
9852
9853         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
9854         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
9855         non-nil.
9856         (gnus-auto-select-part): New variable.
9857         (gnus-article-jump-to-part): New function.
9858         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
9859         (gnus-mime-delete-part): Allow selecting specified part after
9860         deleting or stripping parts.
9861         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
9862         part if argument is bogus.
9863
9864 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
9865
9866         * gnus-art.el (w3m-minor-mode-map):
9867         * gnus-spec.el (gnus-newsrc-file-version):
9868         * gnus-util.el (nnmail-active-file-coding-system)
9869         (gnus-original-article-buffer, gnus-user-agent):
9870         * gnus.el (gnus-ham-process-destinations)
9871         (gnus-parameter-ham-marks-alist)
9872         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
9873         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
9874         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
9875         * mm-decode.el (gnus-current-window-configuration):
9876         * mm-extern.el (gnus-article-mime-handles):
9877         * mm-url.el (url-current-object, url-package-name)
9878         (url-package-version):
9879         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
9880         (smime-keys, w3m-cid-retrieve-function-alist)
9881         (w3m-current-buffer, w3m-display-inline-images)
9882         (w3m-minor-mode-map):
9883         * mml-smime.el (gnus-extract-address-components):
9884         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
9885         (gnus-newsrc-hashtb, message-default-charset)
9886         (message-deletable-headers, message-options)
9887         (message-posting-charset, message-required-mail-headers)
9888         (message-required-news-headers):
9889         * mml1991.el (mc-pgp-always-sign):
9890         * mml2015.el (mc-pgp-always-sign):
9891         * nnheader.el (nnmail-extra-headers):
9892         * rfc1843.el (gnus-decode-encoded-word-function)
9893         (gnus-decode-header-function, gnus-newsgroup-name):
9894         * spam-stat.el (gnus-original-article-buffer): Add defvars.
9895
9896 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
9897
9898         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
9899         the end of the date treatments.
9900
9901 2005-08-15  Simon Josefsson  <jas@extundo.com>
9902
9903         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
9904         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
9905         Capello and Romain Francoise.
9906         (pgg-fetch-key-function): Removed, not used?
9907         (pgg-insert-url-with-w3): Require url, to get
9908         url-insert-file-contents regardless of where it is defined.
9909
9910 2005-08-13  Romain Francoise  <romain@orebokech.com>
9911
9912         * message.el (message-cite-original-1): New function.
9913         (message-cite-original): Use it.
9914         (message-cite-original-without-signature): Ditto.
9915
9916 2005-08-08  Romain Francoise  <romain@orebokech.com>
9917
9918         * message.el (message-yank-empty-prefix): New variable.
9919         (message-indent-citation): Use it.
9920         (message-cite-original-without-signature): Respect X-No-Archive.
9921
9922 2005-08-08  Simon Josefsson  <jas@extundo.com>
9923
9924         * pgg.el: Autoload url-insert-file-contents instead of loading
9925         w3/url.
9926         (pgg-insert-url-with-w3): Don't load url here.
9927
9928 2005-08-07  Jesper Harder  <harder@phys.au.dk>
9929
9930         * message.el (message-kill-to-signature): Don't insert newline at
9931         bol.
9932         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
9933
9934 2005-08-06  Romain Francoise  <romain@orebokech.com>
9935
9936         * message.el (message-user-fqdn): Fix typo in docstring.
9937
9938 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
9939
9940         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
9941
9942         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
9943
9944 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9945
9946         * mm-bodies.el (mm-encode-body): Use coding system rather than
9947         charset to encode text.
9948
9949         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
9950         number of charsets if utf-8 is available (XEmacs).
9951
9952 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
9953
9954         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
9955         taken from `gnus-button-mid-or-mail-regexp'.
9956         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
9957         (gnus-button-alist): Improve regexp for domain part of the MIDs
9958         for news:localpart@domain buttons.
9959         (gnus-button-ctan-directory-regexp): Update.
9960
9961 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9962
9963         * sieve-manage.el (sieve-manage-interactive-login): Use
9964         make-local-variable rather than make-variable-buffer-local.
9965         (sieve-manage-open): Ditto.
9966         (sieve-manage-authenticate): Ditto.
9967
9968         * mml.el (mml-generate-mime-1): Make the content type default to
9969         text/plain if the filename is not specified.
9970
9971 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9972
9973         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
9974         instead of insert-buffer.
9975
9976         * message.el (message-yank-original): Ditto; set the mark at the
9977         end of the yanked message.
9978
9979 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9980
9981         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
9982         lines to scroll rather than to stop it.
9983
9984         * mml.el (mml-generate-default-type): Add doc string.
9985         (mml-generate-mime-1): Use mm-default-file-encoding or make it
9986         default to application/octet-stream when determining the content
9987         type if it is not specified for the part or the mml contents; add
9988         a comment about mml-generate-default-type.
9989
9990 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
9991
9992         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
9993         make it default to application/octet-stream when determining the
9994         content type if it is not specified for the external contents.
9995
9996 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9997
9998         * rfc2231.el (rfc2231-parse-string): Take care that not only a
9999         segmented parameter but also other parameters might be there.
10000
10001 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10002
10003         * mm-decode.el (mm-display-external): Delete temp file, directory
10004         and buffer immediately if the external process is exited.
10005
10006 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10007
10008         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10009         fewer lines than that of scroll-margin.
10010         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10011
10012 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10013
10014         * gnus-art.el (gnus-article-next-page): Revert.
10015         (gnus-article-beginning-of-window): New macro.
10016         (gnus-article-next-page-1): Use it.
10017         (gnus-article-prev-page): Ditto.
10018         (gnus-article-edit-part): Use insert-buffer-substring instead of
10019         insert-buffer.
10020         (gnus-article-edit-exit): Ditto.
10021
10022         * gnus-util.el (gnus-beginning-of-window): Remove.
10023         (gnus-end-of-window): Remove.
10024
10025         * lpath.el: Don't bind header-line-format and scroll-margin.
10026
10027 2005-07-25  Simon Josefsson  <jas@extundo.com>
10028
10029         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10030         to have the url package without w3.  Reported by Daiki Ueno
10031         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10032
10033 2005-07-20  Didier Verna  <didier@xemacs.org>
10034
10035         * gnus-diary.el: Remove the description comment (nndiary is now
10036         properly documented in the Gnus manual).
10037         Fix the spelling of "Back End".
10038         * nndiary.el: Ditto.
10039         Fix the copyright notice.
10040
10041 2005-07-18  Romain Francoise  <romain@orebokech.com>
10042
10043         * gnus-sum.el (gnus-summary-to-prefix)
10044         (gnus-summary-newsgroup-prefix): New variables.
10045         (gnus-summary-from-or-to-or-newsgroups): Use them.
10046
10047 2005-07-17  Romain Francoise  <romain@orebokech.com>
10048
10049         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10050         space as it's generally not especially interesting to the user.
10051
10052 2005-07-16  Romain Francoise  <romain@orebokech.com>
10053
10054         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10055         nil to avoid prompting and file modification if one of the
10056         messages at the top of the nnfolder file contains a copyright
10057         notice.
10058         Update copyright notice.
10059
10060         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10061         instead of `current-time-string' as the latter creates a time
10062         string that is not RFC 2822 compliant (it lacks the zone).
10063         Update copyright notice.
10064
10065 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10066
10067         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10068         for text/rtf.  Display default in prompt.  Pass default for M-n.
10069
10070         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10071
10072 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10073
10074         * gnus-msg.el (gnus-button-mailto): Remove
10075         save-selected-window-window hackery because it relies on
10076         save-selected-window internals.
10077
10078 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10079
10080         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10081         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10082         (gnus-article-prev-page): Ditto.
10083
10084         * gnus-util.el (gnus-beginning-of-window): New function.
10085         (gnus-end-of-window): New function.
10086
10087         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10088
10089 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10090
10091         * gnus-score.el (gnus-score-edit-all-score): Set
10092         gnus-score-edit-exit-function to gnus-score-edit-done and call
10093         gnus-message.
10094
10095 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10096
10097         * gnus-msg.el (gnus-button-mailto): Remove
10098         save-selected-window-window hackery because it relies on
10099         save-selected-window internals.
10100
10101 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10102
10103         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10104         add-minor-mode.
10105         (gnus-binary-mode): Ditto.
10106
10107         * gnus-topic.el (gnus-topic-mode): Ditto.
10108
10109 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10110
10111         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10112         (gnus-article-prev-page): Take scroll-margin into consideration.
10113
10114 2005-07-04  Lute Kamstra  <lute@gnu.org>
10115
10116         Update FSF's address in GPL notices.
10117
10118 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10119
10120         * gnus.el (gnus-exit):
10121         * gnus-group.el (gnus-group-icons):
10122         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10123
10124         * gnus-nocem.el (gnus-nocem):
10125         * message.el (message-various, message-buffers, message-sending)
10126         (message-interface, message-forwarding, message-insertion)
10127         (message-headers, message-news, message-mail):
10128         * pgg-gpg.el (pgg-gpg):
10129         * pgg-parse.el (pgg-parse):
10130         * pgg-pgp.el (pgg-pgp):
10131         * pgg-pgp5.el (pgg-pgp5):
10132         * pop3.el (pop3): Finish `defgroup' description with period.
10133
10134 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10135
10136         * gnus-art.el (article-display-face): Improve the efficiency.
10137         (article-display-x-face): Ditto; remove grey x-face stuff.
10138
10139 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10140
10141         * gnus-art.el (article-display-face): Correct the position in
10142         which Faces are inserted.
10143
10144 2005-06-29  Didier Verna  <didier@xemacs.org>
10145
10146         * gnus-art.el (article-display-face): Display faces in correct
10147         order.
10148
10149 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10150
10151         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10152         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10153         (gnus-nocem-check-article): Fetch the Type header.
10154         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10155         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10156         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10157         make sure gnus-nocem-hashtb is initialized.
10158         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10159         (gnus-nocem-unwanted-article-p): Ditto.
10160
10161         * pgg.el (pgg-verify): Return the verification result.
10162
10163 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10164
10165         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10166         is ascii.
10167
10168 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10169
10170         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10171         `show-nonbreak-escape'.
10172
10173 2005-06-23  Lute Kamstra  <lute@gnu.org>
10174
10175         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10176
10177         * dig.el (dig-mode):
10178         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10179
10180 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10181
10182         * nnimap.el (nnimap-split-download-body): Fix spellings.
10183
10184 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10185
10186         * gnus-art.el (gnus-article-encrypt-body):
10187         * gnus-cus.el (gnus-score-customize):
10188         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10189         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10190
10191 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10192
10193         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10194         header by looking for magic "MII" at the beginnig.
10195
10196 2005-06-16  Miles Bader  <miles@gnu.org>
10197
10198         * gnus-xmas.el (gnus-xmas-group-startup-message):
10199         Use renamed gnus-splash face.
10200
10201         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10202         (assistant-field-face): New backward-compatibility alias for renamed
10203         face.
10204         (assistant-render-text): Use renamed assistant-field face.
10205
10206         * spam.el (spam): Remove "-face" suffix from face name.
10207         (spam-face): New backward-compatibility alias for renamed face.
10208         (spam-face, spam-initialize): Use renamed spam face.
10209
10210         * message.el (message-header-to, message-header-cc)
10211         (message-header-subject, message-header-newsgroups)
10212         (message-header-other, message-header-name)
10213         (message-header-xheader, message-separator, message-cited-text)
10214         (message-mml): Remove "-face" suffix from face names.
10215         (message-header-to-face, message-header-cc-face)
10216         (message-header-subject-face, message-header-newsgroups-face)
10217         (message-header-other-face, message-header-name-face)
10218         (message-header-xheader-face, message-separator-face)
10219         (message-cited-text-face, message-mml-face):
10220         New backward-compatibility aliases for renamed faces.
10221         (message-font-lock-keywords): Use renamed message faces.
10222
10223         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10224         (sieve-test-commands, sieve-tagged-arguments):
10225         Remove "-face" suffix from face names.
10226         (sieve-control-commands-face, sieve-action-commands-face)
10227         (sieve-test-commands-face, sieve-tagged-arguments-face):
10228         New backward-compatibility aliases for renamed faces.
10229         (sieve-control-commands-face, sieve-action-commands-face)
10230         (sieve-test-commands-face, sieve-tagged-arguments-face):
10231         Use renamed sieve faces.
10232
10233         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10234         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10235         (gnus-group-news-3-empty, gnus-group-news-4)
10236         (gnus-group-news-4-empty, gnus-group-news-5)
10237         (gnus-group-news-5-empty, gnus-group-news-6)
10238         (gnus-group-news-6-empty, gnus-group-news-low)
10239         (gnus-group-news-low-empty, gnus-group-mail-1)
10240         (gnus-group-mail-1-empty, gnus-group-mail-2)
10241         (gnus-group-mail-2-empty, gnus-group-mail-3)
10242         (gnus-group-mail-3-empty, gnus-group-mail-low)
10243         (gnus-group-mail-low-empty, gnus-summary-selected)
10244         (gnus-summary-cancelled, gnus-summary-high-ticked)
10245         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10246         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10247         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10248         (gnus-summary-low-undownloaded)
10249         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10250         (gnus-summary-low-unread, gnus-summary-normal-unread)
10251         (gnus-summary-high-read, gnus-summary-low-read)
10252         (gnus-summary-normal-read, gnus-splash):
10253         Remove "-face" suffix from face names.
10254         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10255         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10256         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10257         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10258         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10259         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10260         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10261         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10262         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10263         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10264         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10265         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10266         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10267         (gnus-summary-normal-ticked-face)
10268         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10269         (gnus-summary-normal-ancient-face)
10270         (gnus-summary-high-undownloaded-face)
10271         (gnus-summary-low-undownloaded-face)
10272         (gnus-summary-normal-undownloaded-face)
10273         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10274         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10275         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10276         (gnus-splash-face):
10277         New backward-compatibility aliases for renamed faces.
10278         (gnus-group-startup-message): Use renamed gnus faces.
10279
10280         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10281         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10282         (gnus-server-agent): Remove "-face" suffix from face names.
10283         (gnus-server-agent-face, gnus-server-opened-face)
10284         (gnus-server-closed-face, gnus-server-denied-face)
10285         (gnus-server-offline-face):
10286         New backward-compatibility aliases for renamed faces.
10287         (gnus-server-agent-face, gnus-server-opened-face)
10288         (gnus-server-closed-face, gnus-server-denied-face)
10289         (gnus-server-offline-face): Use renamed gnus faces.
10290
10291         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10292         Remove "-face" suffix from face names.
10293         (gnus-picon-xbm-face, gnus-picon-face):
10294         New backward-compatibility aliases for renamed faces.
10295
10296         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10297         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10298         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10299         (gnus-cite-11): Remove "-face" suffix from face names.
10300         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10301         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10302         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10303         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10304         New backward-compatibility aliases for renamed faces.
10305         (gnus-cite-attribution-face, gnus-cite-face-list)
10306         (gnus-article-boring-faces): Use renamed gnus faces.
10307
10308         * gnus-art.el (gnus-signature, gnus-header-from)
10309         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10310         (gnus-header-content): Remove "-face" suffix from face names.
10311         (gnus-signature-face, gnus-header-from-face)
10312         (gnus-header-subject-face, gnus-header-newsgroups-face)
10313         (gnus-header-name-face, gnus-header-content-face):
10314         New backward-compatibility aliases for renamed faces.
10315         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10316
10317         * gnus-sum.el (gnus-summary-selected-face)
10318         (gnus-summary-highlight): Use renamed gnus faces.
10319         * gnus-group.el (gnus-group-highlight): Likewise.
10320
10321 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10322
10323         * gnus-sieve.el (gnus-sieve-article-add-rule):
10324         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10325         * spam-stat.el (spam-stat-buffer-change-to-spam)
10326         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10327
10328         * message.el (message-is-yours-p):
10329         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10330
10331 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10332
10333         * mm-view.el (mm-inline-text): Withdraw the last change.
10334
10335 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10336
10337         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10338         executing enriched-decode.
10339
10340 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10341
10342         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10343         charset of tar files.
10344
10345 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10346
10347         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10348
10349 2005-06-04  Lute Kamstra  <lute@gnu.org>
10350
10351         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10352         information is never recorded.
10353
10354 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10355
10356         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10357
10358 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10359
10360         * pop3.el (pop3-apop): Run md5 in the binary mode.
10361
10362         * starttls.el (starttls-set-process-query-on-exit-flag):
10363         Use eval-and-compile.
10364
10365 2005-05-31  Simon Josefsson  <jas@extundo.com>
10366
10367         * smime.el (smime-replace-in-string): Define.
10368         (smime-cert-by-ldap-1): Use it.
10369
10370 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10371
10372         * gnus-art.el (article-display-x-face): Replace
10373         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10374
10375         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10376         set-process-query-on-exit-flag or process-kill-without-query.
10377
10378         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10379         loop instead of replace-regexp.
10380
10381         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
10382         instead of process-kill-without-query if it is available.
10383
10384         * lpath.el: Fbind ldap-search-entries.
10385
10386         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
10387         instead of find-file-hooks if it is available.
10388
10389         * mml1991.el: Bind pgg-default-user-id when compiling.
10390
10391         * mml2015.el: Bind pgg-default-user-id when compiling.
10392
10393         * nndraft.el (nndraft-request-associate-buffer):
10394         Use write-contents-functions instead of write-contents-hooks if it is
10395         available.
10396
10397         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
10398         instead of find-file-hooks if it is available.
10399
10400         * nntp.el (nntp-open-connection): Replace
10401         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10402         (nntp-open-ssl-stream): Ditto.
10403         (nntp-open-tls-stream): Ditto.
10404
10405         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
10406         set-process-query-on-exit-flag or process-kill-without-query.
10407         (starttls-open-stream-gnutls): Use it instead of
10408         process-kill-without-query.
10409         (starttls-open-stream): Ditto.
10410
10411 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
10412
10413         * smime.el (smime-cert-by-ldap-1): Don't use
10414         replace-regexp-in-string.
10415
10416 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
10417
10418         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
10419
10420         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
10421         in PEM format.  Adjust to the XEmacs compability.
10422
10423 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
10424
10425         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
10426         by `string-to-number'.
10427         * gnus-agent.el (gnus-agent-regenerate-group)
10428         (gnus-agent-fetch-articles): Ditto.
10429         * gnus-art.el (gnus-button-fetch-group): Ditto.
10430         * gnus-cache.el (gnus-cache-generate-active)
10431         (gnus-cache-articles-in-group): Ditto.
10432         * gnus-group.el (gnus-group-set-current-level)
10433         (gnus-group-insert-group-line): Ditto.
10434         * gnus-score.el (gnus-score-set-expunge-below)
10435         (gnus-score-set-mark-below, gnus-summary-score-effect)
10436         (gnus-summary-score-entry): Ditto.
10437         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
10438         (gnus-soup-pack): Ditto.
10439         * gnus-spec.el (gnus-xmas-format): Ditto.
10440         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
10441         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
10442         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
10443         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
10444         * nndb.el (nndb-get-remote-expire-response): Ditto.
10445         * nndiary.el (nndiary-parse-schedule-value)
10446         (nndiary-string-to-number, nndiary-request-replace-article)
10447         (nndiary-request-article): Ditto.
10448         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
10449         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
10450         * nneething.el (nneething-make-head): Ditto.
10451         * nnfolder.el (nnfolder-request-article)
10452         (nnfolder-retrieve-headers): Ditto.
10453         * nnheader.el (nnheader-file-to-number): Ditto.
10454         * nnkiboze.el (nnkiboze-request-article): Ditto.
10455         * nnmail.el (nnmail-process-unix-mail-format)
10456         (nnmail-process-babyl-mail-format): Ditto.
10457         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
10458         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
10459         (nnmh-request-create-group, nnmh-request-list-1)
10460         (nnmh-request-group, nnmh-request-article): Ditto.
10461         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
10462         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
10463         * nnsoup.el (nnsoup-make-active): Ditto.
10464         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
10465         * nntp.el (nntp-find-group-and-number)
10466         (nntp-retrieve-headers-with-xover): Ditto.
10467         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
10468         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
10469         (pgg-format-key-identifier): Ditto.
10470         * pop3.el (pop3-last, pop3-stat): Ditto.
10471         * qp.el (quoted-printable-decode-region): Ditto.
10472
10473         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
10474         of concat.
10475
10476 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10477
10478         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
10479
10480         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
10481
10482         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
10483
10484         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
10485
10486         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
10487
10488         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
10489
10490         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
10491         (gnus-carpal-mode): Ditto.
10492
10493         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
10494         (gnus-browse-mode): Ditto.
10495
10496         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
10497
10498         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
10499
10500 2005-05-29  Richard M. Stallman  <rms@gnu.org>
10501
10502         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
10503
10504 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10505
10506         * gnus-util.el (gnus-run-mode-hooks): New function.
10507
10508         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
10509
10510         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
10511         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
10512
10513 2005-05-27  Lute Kamstra  <lute@gnu.org>
10514
10515         * dns-mode.el (dns-mode): Specify customization group.
10516
10517 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
10518
10519         * gnus-agent.el (gnus-agent-make-mode-line-string):
10520         Use mode-line-highlight as mouse-face.
10521
10522 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10523
10524         * canlock.el (canlock): Change the parent group to news.
10525
10526         * deuglify.el (gnus-outlook-deuglify): Add :group.
10527
10528         * dig.el (dig): Add :group.
10529
10530         * dns-mode.el (dns-mode): Add :group.
10531
10532         * encrypt.el (encrypt): Add :group.
10533
10534         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
10535         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
10536         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
10537         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
10538         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
10539
10540         * gnus-diary.el (gnus-diary): Add :group.
10541
10542         * gnus.el (gnus-group-news-1-face): Add :group.
10543         (gnus-group-news-1-empty-face): Ditto.
10544         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
10545         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
10546         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
10547         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
10548         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
10549         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
10550         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
10551         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
10552         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
10553         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
10554         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
10555         (gnus-summary-high-ticked-face): Ditto.
10556         (gnus-summary-low-ticked-face): Ditto.
10557         (gnus-summary-normal-ticked-face): Ditto.
10558         (gnus-summary-high-ancient-face): Ditto.
10559         (gnus-summary-low-ancient-face): Ditto.
10560         (gnus-summary-normal-ancient-face): Ditto.
10561         (gnus-summary-high-undownloaded-face): Ditto.
10562         (gnus-summary-low-undownloaded-face): Ditto.
10563         (gnus-summary-normal-undownloaded-face): Ditto.
10564         (gnus-summary-high-unread-face): Ditto.
10565         (gnus-summary-low-unread-face): Ditto.
10566         (gnus-summary-normal-unread-face): Ditto.
10567         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
10568         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
10569
10570         * hashcash.el (hashcash): New custom group.
10571         (hashcash-default-payment): Add :group.
10572         (hashcash-payment-alist): Ditto.
10573         (hashcash-default-accept-payment): Ditto.
10574         (hashcash-accept-resources): Ditto.
10575         (hashcash-path): Ditto.
10576         (hashcash-extra-generate-parameters): Ditto.
10577         (hashcash-double-spend-database): Ditto.
10578         (hashcash-in-news): Ditto.
10579
10580         * message.el (message-minibuffer-local-map): Add :group.
10581
10582         * netrc.el (netrc): Add :group.
10583
10584         * sieve-manage.el (sieve-manage-log): Add :group.
10585         (sieve-manage-default-user): Diito.
10586         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
10587         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
10588         (sieve-manage-authenticators): Ditto.
10589         (sieve-manage-authenticator-alist): Ditto.
10590         (sieve-manage-default-port): Ditto.
10591
10592         * sieve-mode.el (sieve-control-commands-face): Add :group.
10593         (sieve-action-commands-face): Ditto.
10594         (sieve-test-commands-face): Ditto.
10595         (sieve-tagged-arguments-face): Ditto.
10596
10597         * smime.el (smime): Add :group.
10598
10599         * spam-report.el (spam-report): Add :group.
10600
10601         * spam.el (spam, spam-face): Add :group.
10602
10603 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10604
10605         * nntp.el (nntp-next-result-arrived-p): Some news servers may
10606         return \n.\n.\n at the end of articles.  Protect against that.
10607         (nntp-with-open-group): Allow debugging.
10608
10609         * nnheader.el (mail-header-set-extra): Make into a function
10610         because I just could't understand how to quote the list properly.
10611
10612         * dns.el (query-dns-cached): New function.
10613
10614 2005-05-26  Lute Kamstra  <lute@gnu.org>
10615
10616         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
10617
10618 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10619
10620         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
10621
10622         * gnus-art.el: Don't autoload mail-extract-address-components.
10623
10624         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
10625         eval-and-compile to evaluate it.
10626
10627         * hashcash.el: Don't autoload executable-find.
10628
10629         * nndb.el: Don't declare the nndb back end two or more times; don't
10630         autoload news-reply-mode, news-setup, cancel-timer and telnet.
10631
10632         * nntp.el: Autoload format-spec instead of format; use
10633         eval-and-compile to evaluate autoload forms.
10634
10635 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
10636
10637         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
10638
10639 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10640
10641         * gnus.el (gnus-version-number): Bump version.
10642
10643 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10644
10645         * gnus.el: No Gnus v0.3 is released.
10646
10647 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10648
10649         * lpath.el (featurep): Bind show-nonbreak-escape.
10650
10651 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10652
10653         * gnus-art.el (gnus-article-edit-part): Disable undo.
10654
10655 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10656
10657         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
10658         gnus-article-date-lapsed-new-header is t if date timer is active;
10659         skip headers in which the original date value is empty.
10660         (gnus-article-save-original-date): Redefine it as a macro.
10661         (gnus-display-mime): Use it.
10662
10663 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10664
10665         * gnus-art.el (article-date-ut): Support converting date in
10666         forwarded parts as well.
10667         (gnus-article-save-original-date): New function.
10668         (gnus-display-mime): Use it.
10669
10670 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
10671
10672         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
10673         enclosure element of <item>.
10674
10675 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
10676
10677         * message.el (message-kill-buffer-query): Renamed from
10678         `message-kill-buffer-query-if-modified'.  Added :version.
10679
10680 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10681
10682         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
10683         window layout.
10684
10685 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10686
10687         * mml.el: Autoload dnd when compiling.
10688
10689 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10690
10691         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
10692         x-dnd-*.
10693
10694 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10695
10696         * qp.el (quoted-printable-encode-region): Save excursion.
10697
10698 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
10699
10700         * message.el (message-kill-buffer-query-if-modified): Add new variable
10701         so the user can kill a modified message buffer quickly.
10702         (message-kill-buffer): Use it.
10703
10704 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10705
10706         * lpath.el: Fbind display-time-event-handler; don't fbind
10707         string-to-multibyte.
10708
10709         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
10710
10711 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10712
10713         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
10714         contained in text because xml.el decodes entities) with LFs.
10715
10716 2005-04-11  Lute Kamstra  <lute@gnu.org>
10717
10718         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
10719         differently.
10720
10721 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10722
10723         * mm-util.el (mm-detect-coding-region): Typo.
10724
10725 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10726
10727         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
10728
10729 2005-04-06  Deepak Goel  <deego@gnufans.org>
10730
10731         * spam-stat.el (spam-stat-score-buffer): Add a call to a
10732         user-function allow user modifications of the scores.
10733         (spam-stat-score-buffer-user): New function, to allow
10734         user-computed modifications to the score.
10735         (spam-stat-score-buffer-user-functions): List of additional
10736         scoring functions.
10737         (spam-stat-error-holder): Global temporary error holder.
10738         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
10739         variable.
10740
10741 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
10742
10743         * gnus-registry.el (gnus-registry-clean-empty-function)
10744         (gnus-registry-trim, gnus-registry-fetch-groups)
10745         (gnus-registry-delete-group): Groups that match
10746         `gnus-registry-ignored-groups' are removed from the registry
10747         entries, not just ignored for splitting.  This helps clean up the
10748         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
10749         to get all the groups a message ID is in.
10750
10751         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
10752         (spam-stat-split-fancy): Change "threshhold" to "threshold".
10753         (spam-stat-score-buffer-user-functions): Add :number custom type.
10754
10755 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10756
10757         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
10758         argument in XEmacs.
10759
10760         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
10761         (nnrss-request-group): Decode group name first.
10762         (nnrss-request-article): Make a text/plain article if mml-to-mime
10763         failed.
10764         (nnrss-get-encoding): Return a compatible encoding according to
10765         nnrss-compatible-encoding-alist.
10766         (nnrss-find-el): Use consp instead of listp.
10767         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
10768
10769 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10770
10771         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
10772         which Emacs 20 doesn't support.
10773         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
10774
10775 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
10776
10777         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
10778         silence the byte compiler inside the defun.
10779
10780         * gnus-demon.el (parse-time-string): Add autoload.
10781
10782         * gnus-delay.el (parse-time-string): Add autoload.
10783
10784         * gnus-art.el (parse-time-string): Add autoload.
10785
10786         * nnultimate.el (parse-time): Require for `parse-time-string'.
10787
10788 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
10789
10790         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
10791
10792         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
10793
10794         * smime.el (smime-ldap-host-list): Add :version.
10795
10796 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
10797
10798         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
10799         pass it to `gnus-browse-read-group'.
10800         (gnus-browse-read-group): Add NUMBER argument and pass it to
10801         `gnus-group-read-ephemeral-group'.
10802
10803         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
10804         argument and pass it to `gnus-group-read-group'.
10805
10806 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
10807
10808         * mm-util.el (mm-xemacs-find-mime-charset): Only call
10809         mm-xemacs-find-mime-charset-1 if we have the mule feature
10810         available at runtime.
10811
10812 2005-03-25  Werner Lemberg  <wl@gnu.org>
10813
10814         * nnmaildir.el: Replace `illegal' with `invalid'.
10815
10816 2005-03-23  Lute Kamstra  <lute@gnu.org>
10817
10818         * time-date.el: Add comment on time value formats.
10819         Don't require parse-time.
10820         (with-decoded-time-value): New macro.
10821         (encode-time-value): New function.
10822         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
10823         (days-to-time): Return a valid time value when arg is huge.
10824         (time-since): Use time-subtract.
10825         (time-to-number-of-days): Use time-to-seconds.
10826
10827 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10828
10829         * gnus-start.el (gnus-display-time-event-handler):
10830         Check display-time-timer at runtime rather than only at load time
10831         in case display-time-mode is turned off in the mean time.
10832
10833 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
10834
10835         * nnimap.el (nnimap-open-connection): Print which authinfo file is
10836         used.
10837
10838         * nneething.el (nneething-map-file-directory): Derive from
10839         `gnus-directory'.
10840
10841         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
10842         the To/Cc button.
10843
10844 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
10845
10846         * nnmaildir.el (nnmaildir-request-accept-article):
10847         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
10848
10849 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
10850
10851         * gnus-async.el: Require timer-funcs at compile time when in
10852         XEmacs for `run-with-idle-timer'.
10853
10854 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
10855
10856         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
10857         autoloaded function.
10858
10859 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10860
10861         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
10862
10863 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
10864
10865         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
10866
10867 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10868
10869         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
10870         gnus-expert-user to default.
10871
10872 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
10873
10874         * nnimap.el (nnimap-open-server): Ditto.
10875
10876         * imap.el (imap-authenticate): Fix typo.
10877
10878 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
10879
10880         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
10881         buffer (since IMAP server might return FETCH response out of
10882         order, and the nntp buffer must be sorted).
10883
10884 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
10885
10886         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
10887         comparison on string.
10888
10889         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
10890         (gnus-agent-score): Renamed category keywords to match gnus-cus.
10891         (gnus-agent-summary-fetch-series): Modified to protect against
10892         gnus-agent-summary-fetch-group clearing processable flags.
10893         (gnus-agent-synchronize-group-flags): Update live group buffer as
10894         synchronization may occur due to the user toggle the plugged
10895         status.
10896         (gnus-agent-fetch-group-1): Clear downloadable flag when article
10897         successfully downloaded.
10898         (gnus-agent-expire-group-1): Avoid using markers when the overview
10899         is in ascending order; greatly improves performance.
10900         (gnus-agent-regenerate-group): Use
10901         gnus-agent-synchronize-group-flags to reset read status in both
10902         gnus and server.
10903         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
10904
10905 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
10906
10907         * message.el: Don't autoload former message-utils variables.
10908         (message-strip-subject-trailing-was): Change doc string.
10909
10910         * nnweb.el: Fixes for `gnus-group-make-web-group'.
10911         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
10912         (nnweb-google-search): Add "hl=en" here.
10913         (nnweb-google-parse-1, nnweb-google-create-mapping):
10914         Don't hardcode URL.
10915
10916 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
10917
10918         * message.el (message-get-reply-headers, message-followup):
10919         Mention related variables `message-use-followup-to' and
10920         `message-use-mail-followup-to', in the information buffer.
10921
10922         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
10923         of broken groups(-beta).google.com.
10924
10925 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
10926
10927         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
10928         parameter to invoked gnus-request-move-article; remove the
10929         redundant gnus-sum-hint-move-is-internal variable; apply the marks
10930         all at once instead of once per article.
10931         (gnus-summary-remove-process-mark): Accept a list of articles as
10932         well as a single article for processing.
10933
10934         * gnus-int.el (gnus-request-move-article): Add move-is-internal
10935         parameter.
10936
10937         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
10938
10939         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
10940
10941         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
10942         parameter.
10943
10944         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
10945         parameter.
10946
10947         * nnimap.el (nnimap-request-move-article): Add move-is-internal
10948         parameter and remove the gnus-sum-hint-move-is-internal variable.
10949
10950         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
10951         parameter.
10952
10953         * nndraft.el (nndraft-request-move-article): Add move-is-internal
10954         parameter.
10955
10956         * nndiary.el (nndiary-request-move-article): Add move-is-internal
10957         parameter.
10958
10959         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
10960
10961         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
10962         parameter.
10963
10964         * nnagent.el (nnagent-request-move-article): Add move-is-internal
10965         parameter.
10966
10967 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10968
10969         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
10970         a more conservative way.
10971
10972 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10973
10974         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
10975         buffer, so it moves the window's cursor.
10976
10977 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
10978
10979         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
10980         `mm-dissect-multipart' and receive the from field as an (optional)
10981         argument from `mm-dissect-multipart'.
10982         (mm-dissect-multipart): Receive the from field as an argument and
10983         pass it on when we call `mm-dissect-buffer' on MIME parts.
10984         Fixes verification/decryption of signed/encrypted MIME parts.
10985
10986 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
10987
10988         * gnus-sum.el (gnus-summary-move-article): Set
10989         gnus-sum-hint-move-is-internal for gnus-request-move-article and
10990         whatever it calls (right now, only nnimap-request-move article
10991         respects it).
10992
10993         * nnimap.el (nnimap-request-move-article): When
10994         gnus-sum-hint-move-is-internal is set, don't do the extra
10995         nnimap-request-article.
10996
10997 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
10998
10999         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11000
11001         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11002         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11003
11004         * gnus-sum.el (gnus-summary-caesar-message):
11005         Apply `gnus-treat-article' after rotation.
11006
11007         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11008         doc string.
11009
11010 2005-02-22  Simon Josefsson  <jas@extundo.com>
11011
11012         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11013         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11014         <arne@arnested.dk>.
11015         (encrypt): Add password-cache and password-cache-expiry as group
11016         members.
11017
11018 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11019
11020         * smime.el (smime-ldap-host-list): Doc fix.
11021         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11022         cache) password.
11023         (smime-sign-region): Use it.
11024         (smime-decrypt-region): Use it.
11025         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11026         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11027         fails.
11028         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11029         certificate from DER to PEM format rather than calling openssl.
11030
11031         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11032
11033         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11034         for signing/encryption.
11035
11036         * mml.el (mml-parse-1): Use them.
11037
11038 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11039
11040         * nnrss.el (nnrss-verbose): Removed.
11041         (nnrss-request-group): Use `nnheader-message' instead.
11042
11043 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11044
11045         * nnrss.el (nnrss-verbose): New variable.
11046         (nnrss-request-group): Make it say nnrss is requesting a group.
11047
11048 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11049
11050         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11051         Handle news URL with given port correctly.
11052
11053 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11054
11055         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11056         containing special characters.
11057
11058         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11059
11060         * mml.el (mime-to-mml): Ditto.
11061
11062         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11063         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11064         (rfc2047-decode-region): Quote decoded words containing special
11065         characters when rfc2047-quote-decoded-words-containing-tspecials
11066         is non-nil.
11067
11068 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11069
11070         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11071
11072         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11073
11074 2005-02-15  Simon Josefsson  <jas@extundo.com>
11075
11076         * nnimap.el (nnimap-debug): Doc fix.
11077
11078         * imap.el (imap-debug): Doc fix.
11079
11080 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11081
11082         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11083
11084 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11085
11086         * gnus.el (spam-contents): Improve docs for spam-contents
11087         parameter in its variable incarnation.
11088
11089 2005-02-14  Simon Josefsson  <jas@extundo.com>
11090
11091         * smime-ldap.el: Use require instead of load-library for ldap.
11092         (smime-ldap-search): Indent.
11093         (smime-ldap-search-internal): Shorten line.
11094
11095         * smime.el (smime-cert-by-dns): Add doc-string.
11096         (smime-cert-by-ldap-1): Indent.
11097
11098         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11099         mml-smime-get-dns-ldap.
11100         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11101
11102 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11103
11104         * smime.el: Require smime-ldap.
11105         (smime-ldap-host-list): New variable.
11106         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11107
11108         * mml-smime.el (mml-smime-encrypt-query): New function.
11109         (mml-smime-encrypt-query): Use it.
11110
11111         * smime-ldap.el: New file.
11112
11113 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11114
11115         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11116
11117 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11118
11119         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11120         argument in doc string.  Make query for type more clear.
11121
11122 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11123
11124         * gnus.el (gnus-group-startup-message): Search for gnus images in
11125         etc/images/gnus.
11126         * mm-util.el (mm-image-load-path): Likewise.
11127         * smiley.el (smiley-data-directory): Search for smilies in
11128         etc/images/smilies.
11129
11130 2005-02-09  Kim F. Storm  <storm@cua.dk>
11131
11132         Change Emacs release version from 21.4 to 22.1 throughout.
11133         Change Emacs development version from 21.3.50 to 22.0.50.
11134
11135 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11136
11137         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11138
11139         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11140         non-Mule XEmacs as well.
11141         (mm-decompress-buffer): Signal an error intentionally if it does
11142         not decompress compressed data because auto-compression-mode is
11143         disabled.
11144
11145 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11146
11147         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11148         an ID in the registry even if it has no groups.
11149
11150 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11151
11152         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11153         merge it into mm-decompress-buffer.
11154         (gnus-mime-copy-part): Use the MIME part charset, the value which
11155         a user specified or gnus-newsgroup-charset for decoding, like
11156         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11157         save-buffer what was used.  Suggested by Kevin Ryde
11158         <user42@zip.com.au>.
11159         (gnus-mime-inline-part): Allow the name parameter as well as the
11160         filename parameter; force decompressing of compressed data; always
11161         display contents being not decoded as unibyte.
11162
11163         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11164         as well as the filename parameter.
11165
11166         * mm-util.el (mm-decompress-buffer): Merge
11167         gnus-mime-jka-compr-maybe-uncompress.
11168         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11169         of compressed data.
11170
11171 2005-02-08  Simon Josefsson  <jas@extundo.com>
11172
11173         * imap.el (imap-log): Doc fix.
11174
11175 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11176
11177         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11178         the coding cookies; decompress compressed parts.
11179
11180         * mml.el (mml-generate-mime-1): Add the charset parameter according
11181         to the value which a user specified manually or the coding cookie.
11182
11183         * mm-util.el (mm-string-to-multibyte): New function.
11184         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11185         (mm-coding-system-to-mime-charset): New function.
11186         (mm-decompress-buffer): New function.
11187         (mm-find-buffer-file-coding-system): New function.
11188
11189         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11190         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11191         parts.
11192
11193 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11194
11195         * mm-view.el (mm-display-inline-fontify): Decode a part according
11196         to the charset parameter.
11197
11198 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11199
11200         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11201         prefix arg is neither nil nor a number, as info specifies.
11202
11203 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11204
11205         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11206         timestamps.
11207
11208 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11209
11210         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11211         groups error checking and notify user.
11212
11213 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11214
11215         * message.el (message-send-mail-function): Check existence of
11216         sendmail-program first before using default value
11217         `message-send-mail-with-sendmail'.  Otherwise use more generic
11218         `smtpmail-send-it'.
11219
11220 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11221
11222         * nntp.el (nntp-request-update-info): Always return nil.
11223
11224 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11225
11226         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11227
11228 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11229
11230         * message.el (message-beginning-of-line): Change the behavior when
11231         invoked between BOL and : so that it first moves backward.
11232
11233 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11234
11235         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11236         article buffer when editing of the article is discarded.
11237         (gnus-article-prepare): Revert.
11238
11239 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11240
11241         * gnus-art.el (gnus-article-prepare):
11242         Remove message-strip-forbidden-properties from the local hook.
11243
11244 2005-01-27  Simon Josefsson  <jas@extundo.com>
11245
11246         * password.el (password-cache-add): Only start one timer per key.
11247         Reported by Derek Atkins <warlord@MIT.EDU>.
11248
11249 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11250
11251         * run-at-time.el: Removed.  It is no longer needed as
11252         timer-funcs.el in the xemacs-base package has a working version of
11253         `run-at-time'.
11254
11255         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11256
11257         * password.el: Require timer-funcs instead of run-at-time in
11258         XEmacs.
11259         Remove `password-run-at-time' macro.
11260         (password-cache-add): Use `run-at-time' instead of
11261         `password-run-at-time'.
11262
11263         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11264         Remove `nnheader-cancel-function-timers' alias,
11265         `cancel-function-timers' exists in XEmacs in timer-funcs.
11266
11267         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11268         for `run-with-idle-timer'.
11269
11270         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11271         for `run-at-time'.
11272
11273         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11274         for `with-timeout'.
11275
11276         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11277         the same as for XEmacs 21.4.
11278         No need to ignore `run-with-idle-timer', this function exists in
11279         XEmacs now in timer-funcs.el in the xemacs-base package.
11280         (dgnushack-compile): No need to delete
11281         run-at-time.el from the list of files to compile because it
11282         doesn't exist anymore.
11283
11284 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11285
11286         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11287         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11288
11289 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11290
11291         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11292         sensitively.
11293
11294 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11295
11296         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11297
11298 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11299
11300         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11301         which will be inserted according to the multibyteness of a buffer
11302         rather than the type of contents.  Suggested by ARISAWA Akihiro
11303         <ari@mbf.ocn.ne.jp>.
11304
11305         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11306         of string which old xml.el may return rather than a string.
11307
11308 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11309
11310         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11311
11312 2005-01-16  Simon Josefsson  <jas@extundo.com>
11313
11314         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11315         idn/idna.el isn't available.
11316         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11317         <michael@waxrat.com>.
11318
11319         * hashcash.el: Remove non-FSF copyright header.
11320
11321         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11322         (hashcash-generate-payment): Use it.
11323         (hashcash-generate-payment-async): Use it.
11324
11325 2005-01-15  Simon Josefsson  <jas@extundo.com>
11326
11327         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11328         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11329
11330         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11331         gnus-summary-idna-message.
11332         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11333         (gnus-summary-idna-message): New function.
11334
11335 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11336
11337         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11338         gnus-novice-user.
11339
11340 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11341
11342         * nnrss.el (nnrss-request-delete-group): Delete entries in
11343         nnrss-group-alist as well.
11344         (nnrss-save-server-data): Insert newline.
11345
11346 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11347
11348         * gnus.el (gnus-user-agent): Use list of symbols instead of
11349         symbols.  Display full version number for (S)XEmacs.  Optionally
11350         display (S)XEmacs codename.
11351
11352         * gnus-util.el (gnus-emacs-version): Update for new
11353         `gnus-user-agent'.
11354
11355         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11356         Gnus version.
11357
11358 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11359
11360         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11361         which is unreadable in some setups.
11362
11363 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11364
11365         * gnus-spec.el (gnus-update-format-specifications): Flush the
11366         group format spec cache if it doesn't support decoded group names.
11367
11368 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11369
11370         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11371         Allow to apply decay on score files matching a regexp.
11372
11373 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11374
11375         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11376         compatibility in %g and %c.
11377
11378 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11379
11380         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11381         name for only %g and %c.
11382         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
11383         of gnus-tmp-group to decoded group name.
11384         (gnus-group-make-rss-group): Exclude `/'s from group names.
11385
11386 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11387
11388         * nnrss.el (nnrss-get-encoding): Fix regexp.
11389
11390 2004-12-27  Simon Josefsson  <jas@extundo.com>
11391
11392         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
11393         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
11394         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
11395
11396 2004-12-17  Kim F. Storm  <storm@cua.dk>
11397
11398         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
11399
11400         * gnus-sum.el (gnus-summary-mode-map): Likewise.
11401
11402 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11403
11404         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
11405
11406 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11407
11408         * nnrss.el: Require rfc2047 and mml.
11409         (nnrss-file-coding-system): New variable.
11410         (nnrss-format-string): Redefine it as an inline function.
11411         (nnrss-decode-group-name): New function.
11412         (nnrss-string-as-multibyte): Remove.
11413         (nnrss-retrieve-headers): Decode group name; don't use
11414         nnrss-format-string.
11415         (nnrss-request-group): Decode group name.
11416         (nnrss-request-article): Decode group name; allow a Message-ID as
11417         well as an article number; don't use nnrss-format-string; encode a
11418         Message-ID string which may contain non-ASCII characters; use
11419         mml-to-mime to compose a MIME article.
11420         (nnrss-request-expire-articles): Decode group name.
11421         (nnrss-request-delete-group): Decode group name.
11422         (nnrss-fetch): Clarify error message.
11423         (nnrss-read-server-data): Use insert-file-contents instead of load;
11424         bind file-name-coding-system; use multibyte buffer.
11425         (nnrss-save-server-data): Bind coding-system-for-write to the
11426         value of nnrss-file-coding-system; bind file-name-coding-system;
11427         add coding cookie.
11428         (nnrss-read-group-data): Use insert-file-contents instead of load;
11429         bind file-name-coding-system; use multibyte buffer.
11430         (nnrss-save-group-data): Bind coding-system-for-write to the
11431         value of nnrss-file-coding-system; bind file-name-coding-system.
11432         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
11433         make it work with non-ASCII text.
11434         (nnrss-find-el): Make it work with old xml.el as well.
11435
11436 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11437
11438         * nnrss.el (nnrss-get-encoding): New function.
11439         (nnrss-fetch): Use unibyte buffer initially; bind
11440         coding-system-for-read while performing mm-url-insert; remove ^Ms;
11441         decode contents according to the encoding attribute.
11442         (nnrss-save-group-data): Add coding cookie.
11443         (nnrss-mime-encode-string): New function.
11444         (nnrss-check-group): Use it to encode subject and author.
11445
11446 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
11447
11448         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
11449         imaginary variable.
11450
11451 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11452
11453         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
11454         correctly even if there are wide characters.
11455
11456 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
11457
11458         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
11459         downcased symbol names; make a new cache instead of reusing
11460         bbdb-hashtable.
11461
11462 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11463
11464         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
11465         concatenating segments rather than before concatenating them.
11466         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11467
11468         * message.el (message-get-reply-headers): Bind `extra'.
11469
11470 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11471
11472         * message.el (message-extra-wide-headers): New variable.
11473         (message-get-reply-headers): Use it.
11474
11475 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11476
11477         * gnus-agent.el (gnus-agent-group-path): Decode group name.
11478         (gnus-agent-group-pathname): Ditto.
11479
11480         * gnus-cache.el (gnus-cache-file-name): Decode group name.
11481
11482         * gnus-group.el (gnus-group-make-group): Decode group name.
11483         (gnus-group-make-rss-group): Register the group data after opening
11484         the nnrss group.
11485
11486 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
11487
11488         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
11489         by expiry now get marked as read.
11490
11491 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11492
11493         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
11494
11495 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
11496
11497         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
11498         unify Latin characters in XEmacs.
11499         (mm-find-mime-charset-region): Use it.
11500
11501 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11502
11503         * gnus-util.el (gnus-delete-directory): New function.
11504
11505         * gnus-agent.el (gnus-agent-delete-group): Use it.
11506
11507         * gnus-cache.el (gnus-cache-delete-group): Use it.
11508
11509 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11510
11511         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
11512         names.
11513
11514 2004-12-16  Simon Josefsson  <jas@extundo.com>
11515
11516         * hashcash.el (hashcash-payment-alist): Fix custom :type.
11517
11518 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11519
11520         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
11521
11522         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
11523         (gnus-group-set-current-level): Decode group name.
11524
11525 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
11526
11527         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
11528         failed.
11529
11530 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11531
11532         * gnus-group.el (gnus-group-delete-group): Decode group name.
11533         (gnus-group-make-rss-group): Encode group name.
11534         (gnus-group-catchup-current): Decode group name.
11535         (gnus-group-kill-group): Decode group name.
11536
11537 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11538
11539         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
11540
11541 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11542
11543         * gnus-group.el (gnus-group-make-rss-group):
11544         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
11545
11546         * gnus-start.el (gnus-setup-news): Honor user's setting to
11547         gnus-message-archive-method.  Suggested by Lute Kamstra
11548         <lute@gnu.org>.
11549
11550 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
11551
11552         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
11553         global counterparts of the buffer-local variables.
11554
11555 2004-11-16  Romain Francoise  <romain@orebokech.com>
11556
11557         * gnus-sum.el (gnus-summary-exit): Don't clear the global
11558         counterparts of the buffer-local variables.
11559
11560 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
11561
11562         * message.el (message-forbidden-properties): Fixed typo in doc
11563         string.
11564
11565 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
11566
11567         * gnus-util.el (gnus-replace-in-string): Added doc string.
11568
11569         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
11570         to avoid problems when splitting mails with many recipients.
11571
11572 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11573
11574         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
11575         pop-to-buffer, covered by the subsequent gnus-configure-windows.
11576
11577 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
11578
11579         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
11580         if there is no hashtable in memory or file modification time is
11581         newer than cached timestamp.
11582
11583 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
11584
11585         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
11586         not-matching option.
11587
11588 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
11589
11590         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
11591         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
11592         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
11593         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
11594         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
11595         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
11596
11597 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11598
11599         * message.el (message-forward-make-body-mml): Remove headers
11600         according to message-forward-ignored-headers if a message is decoded.
11601
11602 2004-12-02  Romain Francoise  <romain@orebokech.com>
11603
11604         * message.el (message-forward-make-body-plain): Always remove
11605         headers according to message-forward-ignored-headers.
11606
11607 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
11608
11609         * spam.el (spam-summary-prepare-exit): Remove the
11610         gnus-summary-limit pop for now, it has problems with ham marks for
11611         me.
11612
11613 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
11614
11615         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
11616         correctly.
11617
11618 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
11619
11620         * format-spec.el (format-spec): Message the char.
11621
11622 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
11623
11624         * gnus-art.el (gnus-split-methods): Reformat comments.
11625
11626         * spam.el (spam-summary-prepare-exit): Remove article limits
11627         before exiting the summary buffer.
11628
11629 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11630
11631         * lpath.el: Remove bbdb-create-internal, bbdb-records,
11632         spam-BBDB-register-routine and spam-enter-ham-BBDB.
11633
11634         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
11635         order to silence the byte compiler.
11636
11637         * spam.el: Fix the way to silence the byte compiler, which
11638         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
11639         bbdb-search-simple, spam-BBDB-register-routine,
11640         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
11641         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
11642         spam-stat-buffer-is-spam, spam-stat-load,
11643         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
11644         spam-stat-save and spam-stat-split-fancy.
11645
11646 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11647
11648         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
11649         which may confuse users.
11650         (canlock-password-for-verify): Ditto.
11651
11652         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
11653
11654         * gnus-art.el (gnus-emphasis-alist): Ditto.
11655
11656         * gnus-registry.el (gnus-registry-max-entries): Ditto.
11657
11658         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
11659
11660         * gnus-start.el (gnus-save-killed-list): Ditto.
11661
11662         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
11663         (gnus-sum-thread-tree-root): Ditto.
11664         (gnus-sum-thread-tree-false-root): Ditto.
11665         (gnus-sum-thread-tree-single-indent): Ditto.
11666
11667         * message.el (message-courtesy-message): Ditto.
11668         (message-archive-note): Ditto.
11669         (message-subscribed-address-file): Ditto.
11670         (message-user-fqdn): Ditto.
11671
11672         * spam-report.el (spam-report-gmane-regex): Ditto.
11673
11674         * spam.el (spam-blackhole-good-server-regex): Ditto.
11675
11676 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11677
11678         * mml.el (mml-preview): Widen the message buffer before copying
11679         the contents to the preview buffer; sort headers before previewing.
11680
11681         * message.el (message-hidden-headers): Fix the way to avoid a bug
11682         in the `repeat' widget in Emacs 21.3 or earlier.
11683
11684 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11685
11686         * message.el (message-hidden-headers): Default to "^References:".
11687         Improve customization type.  Suggested by Reiner Steib
11688         <Reiner.Steib@gmx.de>.
11689
11690 2004-11-25  Romain Francoise  <romain@orebokech.com>
11691
11692         * message.el (message-strip-forbidden-properties): Remove check for
11693         obsolete `message-hidden' text property, hidden headers are not
11694         accessible in the buffer anymore.
11695
11696 2004-11-22  Romain Francoise  <romain@orebokech.com>
11697
11698         * message.el (message-header-format-alist): Add `From' in list
11699         so that it can be sorted.
11700         (message-fix-before-sending): Widen and sort headers before
11701         sending.
11702         (message-hide-headers): Use narrowing to hide headers by moving
11703         them to the top of the buffer and narrowing to the region
11704         underneath.
11705
11706 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11707
11708         * message.el (message-strip-forbidden-properties): Bind
11709         buffer-read-only (etc) to nil.
11710
11711 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11712
11713         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
11714         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11715
11716 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
11717
11718         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
11719
11720 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11721
11722         * dns.el (query-dns): Use sit-for to time instead of
11723         accept-process-output, since that doesn't seem to work on udp
11724         sockets.
11725
11726 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11727
11728         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
11729
11730 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
11731
11732         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
11733         doc string.  Improve doc string.
11734
11735 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11736
11737         * nntp.el (nntp-request-update-info): Return nil if
11738         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
11739         may not call gnus-activate-group which uselessly issues the GROUP
11740         commands for all nntp groups and wastes time.  Reported by Romain
11741         Francoise <romain@orebokech.com>.
11742
11743         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
11744
11745 2004-11-15  Simon Josefsson  <jas@extundo.com>
11746
11747         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
11748         headers separately.
11749         (gnus-button-openpgp): New function, inspired by Jochen Küpper
11750         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
11751
11752 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
11753
11754         * gnus-start.el (gnus-convert-old-newsrc):
11755         Assign legacy-gnus-agent to 5.10.7.
11756
11757 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11758
11759         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
11760         start of the lines.
11761
11762 2004-11-14  Magnus Henoch  <mange@freemail.hu>
11763
11764         * hashcash.el (hashcash-default-payment): Change default to 20.
11765         (hashcash-default-accept-payment): Change default to 20.
11766         (hashcash-process-alist): New variable.
11767         (hashcash-generate-payment-async): Add.
11768         (hashcash-already-paid-p): Add.
11769         (hashcash-insert-payment): Don't generate payments twice.
11770         (hashcash-insert-payment-async): Add.
11771         (hashcash-insert-payment-async-2): Add.
11772         (hashcash-cancel-async): Add.
11773         (hashcash-wait-async): Add.
11774         (hashcash-processes-running-p): Add.
11775         (hashcash-wait-or-cancel): Add.
11776         (mail-add-payment): New optional argument.  Conditionally start
11777         asynchronous calculation.
11778         (mail-add-payment-async): Add.
11779
11780         * message.el (message-send-mail): Wait for asynchronous hashcash
11781         results.  Don't clobber existing X-Hashcash headers.
11782         (message-setup-1): Call mail-add-payment-async when
11783         message-generate-hashcash is non-nil.
11784
11785 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
11786
11787         * message.el (message-use-alternative-email-as-from): Examine the
11788         From header as well; use message-make-from in order to include a
11789         user's full name.
11790
11791 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11792
11793         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
11794         default; improve customization type.
11795         (gnus-emphasis-custom-with-format): New macro.
11796         (gnus-emphasis-custom-value-to-external): New function.
11797         (gnus-emphasis-custom-value-to-internal): New function.
11798
11799 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11800
11801         * dns.el (query-dns): Resolve reverse addresses.
11802
11803 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11804
11805         * gnus-group.el (gnus-group-get-new-news): Use it.
11806
11807         * gnus-start.el (gnus-check-reasonable-setup): New function.
11808
11809 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11810
11811         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
11812         "Args out of range" error.  Reported by Arnaud Giersch
11813         <arnaud.giersch@free.fr>.
11814
11815 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
11816
11817         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
11818
11819 2004-11-04  Richard M. Stallman  <rms@gnu.org>
11820
11821         * spam.el (spam group): Add :version.
11822
11823         * pgg-def.el (pgg group): Add :version.
11824
11825 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11826
11827         * gnus-art.el (gnus-article-edit-article): Don't associate the
11828         article buffer with a draft file.  This is a temporary measure
11829         against the 2004-08-22 change to gnus-article-edit-mode.
11830
11831 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11832
11833         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
11834         (html2text-format-tags): Remove unused variable `attr'.
11835
11836 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
11837
11838         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
11839
11840         * tls.el (tls-process-connection-type, tls-success)
11841         (tls-certtool-program): Add :version.
11842
11843         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
11844         (starttls-extra-arguments, starttls-process-connection-type)
11845         (starttls-connect, starttls-failure, starttls-success): Add :version.
11846
11847         * spam-stat.el (spam-stat): Add :version.
11848
11849         * sieve.el (sieve): Add :version.
11850
11851         * sha1.el (sha1): Add :version.
11852         (sha1-use-external): Remove redundant version.
11853
11854         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
11855         (nnmail-cache-ignore-groups, nnmail-spool-hook)
11856         (nnmail-split-fancy-match-partial-words)
11857         (nnmail-split-lowercase-expanded): Add :version.
11858
11859         * nndiary.el (nndiary): Add :version.
11860
11861         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
11862
11863         * mml-sec.el (mml-default-sign-method)
11864         (mml-default-encrypt-method, mml-signencrypt-style-alist):
11865         Add :version.
11866
11867         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
11868
11869         * mm-url.el (mm-url-use-external, mm-url-program)
11870         (mm-url-arguments): Add :version.
11871
11872         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
11873         (mm-attachment-file-modes, mm-decrypt-option)
11874         (mm-w3m-safe-url-regexp): Add :version.
11875
11876         * message.el (message-cite-prefix-regexp)
11877         (message-sendmail-envelope-from, message-minibuffer-local-map)
11878         (message-user-fqdn, message-completion-alist): Add :version.
11879
11880         * gnus-win.el (gnus-configure-windows-hook)
11881         (gnus-use-frames-on-any-display): Add :version.
11882
11883         * gnus-art.el (gnus-article-address-banner-alist)
11884         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
11885         (gnus-treat-from-picon, gnus-treat-mail-picon)
11886         (gnus-treat-x-pgp-sig): Add :version.
11887
11888         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
11889         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
11890         (gnus-summary-article-delete-hook)
11891         (gnus-summary-display-while-building): Add :version.
11892
11893         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
11894         (gnus-get-top-new-news-hook): Add :version.
11895
11896         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
11897         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
11898
11899         * gnus-registry.el (gnus-registry): Add :version.
11900
11901         * gnus-spec.el (gnus-use-correct-string-widths)
11902         (gnus-make-format-preserve-properties): Add :version.
11903
11904         * gnus.el (gnus-group-charter-alist)
11905         (gnus-group-fetch-control-use-browse-url)
11906         (gnus-install-group-spam-parameters): Add :version.
11907
11908         * gnus-diary.el (gnus-diary): Add :version.
11909
11910         * gnus-delay.el (gnus-delay): Add :version.
11911
11912         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
11913         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
11914         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
11915         Add :version.
11916
11917         * gnus-agent.el (gnus-agent-max-fetch-size)
11918         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
11919         (gnus-agent-prompt-send-queue): Add :version.
11920
11921         * deuglify.el (gnus-outlook-deuglify): Add :version.
11922
11923         * html2text.el: Beautify code.  Improve doc strings.  Some
11924         checkdoc cleanup.
11925         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
11926
11927 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
11928
11929         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
11930
11931 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
11932
11933         * gnus-registry.el (gnus-registry-hashtb): Create the registry
11934         when package is loaded.
11935
11936         * spam.el (spam-summary-score-preferred-header): Add global preference
11937         for people who want to override the default SpamAssassin over
11938         Bogofilter preference (when both are set).
11939         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
11940         (spam-user-format-function-S): Check
11941         spam-summary-score-preferred-header.
11942         (spam-extra-header-to-number): Add X-Bogosity header parsing.
11943         (spam-user-format-function-S): Format the score correctly.
11944
11945 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11946
11947         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
11948         signature file.  Suggested by Manoj Srivastava
11949         <srivasta@golden-gryphon.com>.
11950
11951         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
11952         iso-2022-jp even in the Japanese language environment.
11953         Suggested by Jason Rumney <jasonr@gnu.org>.
11954
11955 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11956
11957         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
11958         use the same characters as the dummy marks; make it free from
11959         getting affected by the language environment.
11960         (gnus-summary-read-group-1): Update mark positions only when the
11961         format spec is updated.
11962
11963         * gnus-spec.el (gnus-update-format-specifications): Return a list
11964         of updated types.
11965
11966 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11967
11968         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
11969         of boundp to check if display-warning is available.
11970
11971 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
11972
11973         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
11974
11975 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11976
11977         * nnspool.el (nnspool-spool-directory): Use news-path if the
11978         news-directory variable is not bound.
11979
11980         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
11981         function instead of display-warning if it is not available.
11982
11983 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
11984
11985         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
11986         v5-10: Use `point-at-bol'.
11987
11988 2004-10-26  Simon Josefsson  <jas@extundo.com>
11989
11990         * hashcash.el: Fix URL in comment, reported by Cheng Gao
11991         <chenggao@gmail.com>.
11992
11993 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
11994
11995         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
11996         instead.
11997
11998 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
11999
12000         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12001         to remove a server from the nnimap-server-buffer-alist.
12002         (nnimap-open-connection, nnimap-close-server): Use it.
12003
12004         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12005
12006 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12007
12008         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12009         running the major-mode function.
12010
12011 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12012
12013         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12014         dummy marks in the right way.
12015
12016 2004-10-18  David Edmondson  <dme@dme.org>
12017
12018         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12019         excessively.
12020
12021 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12022
12023         * gnus-util.el (gnus-split-references): Accept a nil references
12024         string and go on blissfully.
12025
12026         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12027         cases where the references string is non-nil but has no references.
12028
12029         * encrypt.el: Add autoload tags.
12030
12031         * spam.el (spam-resolve-registrations-routine): Remove article
12032         from unregistration list too.  Reported by David Hanak
12033         <dhanak@isis.vanderbilt.edu>
12034
12035 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12036
12037         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12038         nil.  Changed custom type.
12039
12040 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12041
12042         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12043
12044         * gnus-sum.el (gnus-summary-move-article): Use it.
12045
12046 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12047
12048         * encrypt.el: Add autoload cookies.
12049
12050         * spam.el (spam-backend-article-list-property)
12051         (spam-backend-get-article-todo-list)
12052         (spam-backend-put-article-todo-list)
12053         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12054         Resolve registrations separately.
12055         (spam-register-routine): Format comments.
12056         (spam-unregister-routine, spam-register-routine): Always call with
12057         specific-articles, no default list.
12058         (spam-summary-prepare-exit): Use the spam-classifications function.
12059
12060         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12061         gnus-encrypt.el.
12062
12063         * encrypt.el: Copied from gnus-encrypt.el.
12064
12065         * gnus-encrypt.el: Commented that it's obsolete.
12066
12067 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12068
12069         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12070         (gnus-score-save): Use it.
12071
12072         * message.el (message-bury): Use `window-dedicated-p'.
12073
12074 2004-10-15  Simon Josefsson  <jas@extundo.com>
12075
12076         * pop3.el (top-level): Don't require nnheader.
12077         (pop3-read-timeout): Add.
12078         (pop3-accept-process-output): Add.
12079         (pop3-read-response, pop3-retr): Use it.
12080
12081 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12082
12083         * spam.el (spam-register-routine): Move comment.
12084         (spam-verify-bogofilter): Use 'unknown for the initial
12085         spam-bogofilter-valid state, not 'never.
12086
12087         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12088         for netrc-machine.
12089
12090         * nnimap.el (nnimap-open-connection): Use
12091         netrc-machine-user-or-password.
12092
12093 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12094
12095         * gnus-registry.el (gnus-registry-unload-hook):
12096         Set as a variable with add-hook.
12097
12098         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12099         of news-path.
12100
12101         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12102
12103         * spam.el: Delete duplicate `provide'.
12104         (spam-unload-hook): Set as a variable with add-hook.
12105
12106 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12107
12108         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12109         in the doc string.
12110
12111         * message.el (message-ignored-news-headers)
12112         (message-ignored-supersedes-headers)
12113         (message-ignored-resent-headers)
12114         (message-forward-ignored-headers): Improve custom type.
12115
12116 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12117
12118         * message.el (message-tokenize-header): Fix 2004-09-06 change
12119         which used point-min in the wrong place.
12120
12121 2004-10-12  Simon Josefsson  <jas@extundo.com>
12122
12123         * tls.el (tls-certtool-program): New variable.
12124         (tls-certificate-information): New function, based on
12125         ssl-certificate-information.
12126
12127 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12128
12129         * compface.el: Move the version of ELisp-based uncompface program
12130         to the contrib directory because of the copyright problem.
12131
12132 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12133
12134         * message.el (message-kill-buffer): Raise the current frame.
12135
12136 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12137
12138         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12139
12140         * gnus.el (message-y-or-n-p): Autoload.
12141
12142         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12143         (pop3-password-required, pop3-authentication-scheme)
12144         (pop3-leave-mail-on-server): Made customizable.
12145         (pop3): New custom group.
12146         (pop3-retr): Remove `sleep-for' statements.
12147         Suggested by Dave Love <fx@gnu.org>.
12148
12149         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12150         Windows/DOS.
12151
12152         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12153         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12154         Dave Love <fx@gnu.org>.
12155
12156         * mml.el (mml-minibuffer-read-disposition): Require match.
12157         Suggested by Dave Love <fx@gnu.org>.
12158
12159 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12160
12161         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12162         doc string.
12163
12164 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12165
12166         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12167
12168 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12169
12170         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12171         instead of calling `mm-insert-inline', to decode text/* parts
12172         before displaying them.
12173
12174 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12175
12176         * mm-uu.el (mm-uu-text-plain-type): New variable.
12177         (mm-uu-pgp-signed-extract-1): Use it.
12178         (mm-uu-pgp-encrypted-extract-1): Use it.
12179         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12180         bind mm-uu-text-plain-type with that value.
12181         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12182         mm-uu-dissect.
12183
12184 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12185
12186         * gnus-group.el (gnus-update-group-mark-positions):
12187         * gnus-sum.el (gnus-update-summary-mark-positions):
12188         * message.el (message-check-news-body-syntax):
12189         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12190         of string-as-multibyte.
12191
12192 2004-10-05  Juri Linkov  <juri@jurta.org>
12193
12194         * gnus-group.el (gnus-update-group-mark-positions):
12195         * gnus-sum.el (gnus-update-summary-mark-positions):
12196         * message.el (message-check-news-body-syntax):
12197         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12198         8-bit unibyte values to a multibyte string for search functions.
12199
12200 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12201
12202         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12203         (mm-uu-dissect-text-parts): New function.
12204
12205         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12206         dissect text parts.
12207
12208         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12209         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12210
12211         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12212
12213         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12214         gnus-current-topics instead of gnus-current-topic.
12215
12216 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12217
12218         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12219
12220 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12221
12222         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12223         where approriate.
12224
12225         * nnml.el (nnml-generate-active-info): do.
12226
12227         * nndiary.el (nndiary-generate-active-info): do.
12228
12229         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12230         (gnus-topic-move): do.
12231
12232         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12233         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12234
12235         * gnus-srvr.el (gnus-server-prepare)
12236         (gnus-server-open-all-servers): do.
12237
12238         * gnus-msg.el (gnus-summary-cancel-article)
12239         (gnus-summary-resend-message)
12240         (gnus-summary-mail-crosspost-complaint): do.
12241
12242         * gnus-move.el (gnus-change-server): do.
12243
12244         * gnus-group.el (gnus-group-unmark-all-groups)
12245         (gnus-group-set-current-level): do.
12246
12247 2004-10-04  Simon Josefsson  <jas@extundo.com>
12248
12249         * message.el (message-generate-hashcash): Doc fix.
12250
12251 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12252
12253         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12254         avoid infinite recursion via gnus-get-function.
12255
12256 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12257
12258         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12259
12260         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12261
12262         * nnmail.el (nnmail-split-history): do.
12263
12264         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12265         (nnml-request-delete-group): do.
12266
12267         * nnslashdot.el (nnslashdot-read-groups): do.
12268
12269         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12270         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12271
12272         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12273         (nnspool-sift-nov-with-sed): Use last.
12274         (nnspool-retrieve-headers-with-nov): Use mapc.
12275         (nnspool-request-newgroups): Use dolist.
12276         (nnspool-request-group): Use last.
12277
12278         * nntp.el (nntp-read-server-type): Use dolist.
12279
12280         * nnvirtual.el (nnvirtual-create-mapping)
12281         (nnvirtual-update-read-and-marked): Use dolist.
12282         (nnvirtual-convert-headers): Simplify.
12283
12284 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12285
12286         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12287         support for sync'ing tick marks.
12288
12289 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12290
12291         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12292         there's no visible header.
12293
12294 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12295
12296         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12297         necessary, pass full group name to gnus-request-set-marks.
12298
12299 2004-10-01  Simon Josefsson  <jas@extundo.com>
12300
12301         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12302         acroread.
12303
12304 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12305
12306         * spam-report.el (spam-report-gmane): Fix interactive.
12307
12308         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12309
12310         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12311         when writing file.
12312         (gnus-agent-synchronize-flags): Don't default to being
12313         interactive.
12314
12315 2004-09-30  Simon Josefsson  <jas@extundo.com>
12316
12317         * message.el (message-generate-hashcash): Add.
12318         (message-send-mail): Use it, call mail-add-payment.
12319
12320 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12321
12322         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12323
12324 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12325
12326         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12327         gnus-requst-update-info with explicit code to sync the in-memory
12328         info read flags with the marks being sync'd to the backend.
12329
12330         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12331
12332 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12333
12334         * spam.el (spam-verify-bogofilter): Add new function.
12335         (spam-check-bogofilter)
12336         (spam-bogofilter-register-with-bogofilter): Use it.
12337         (spam-verify-bogofilter): Add small fixes.
12338
12339 2004-09-28  Simon Josefsson  <jas@extundo.com>
12340
12341         * hashcash.el (hashcash-generate-payment): Revert.
12342
12343 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12344
12345         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12346         gnus-extract-references instead of gnus-split-references.
12347
12348         * gnus-util.el (gnus-extract-references): Add new function, analogous
12349         to gnus-split-references but extracts only the message-ID without
12350         anything extra.
12351
12352         * hashcash.el (hashcash-generate-payment)
12353         (hashcash-check-payment): Do the right thing if hashcash-path is
12354         nil (because the hashcash program could not be found).
12355
12356         * spam.el (spam-use-hashcash): Remove comment.
12357
12358 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12359
12360         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12361         (gnus-cache-enter-article, gnus-cache-remove-article)
12362         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12363
12364         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12365
12366         * gnus-art.el (article-hide-boring-headers)
12367         (article-translate-strings, article-display-face)
12368         (gnus-article-mime-match-handle-first)
12369         (gnus-article-highlight-headers)
12370         (gnus-article-add-buttons-to-head): do.
12371
12372 2004-09-27  Simon Josefsson  <jas@extundo.com>
12373
12374         * hashcash.el: New version, from
12375         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12376         ../contrib/.
12377
12378 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12379
12380         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12381
12382 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
12383
12384         * gnus-dup.el (gnus-dup-open): Use mapc.
12385         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
12386
12387         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
12388         Reported by Stefan Wiens <s.wi@gmx.net>.
12389
12390         * gnus.el (gnus-shutdown): Use dolist.
12391
12392         * gnus-undo.el (gnus-undo): Use mapc.
12393
12394         * nnrss.el (nnrss-generate-active): do.
12395
12396         * message.el (message-cite-original-without-signature)
12397         (message-cite-original): Use mapc.
12398         (message-do-actions, message-make-forward-subject): Use dolist.
12399
12400 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12401
12402         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
12403         deletion to remove entire duplicate line.  Fixes merged article
12404         number bug.
12405
12406 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12407
12408         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
12409         servers that are offline.  Avoids having gnus-agent-toggle-plugged
12410         first ask if you want to open a server and then, even when you
12411         responded with no, asking if you want to synchronize the server's
12412         flags.
12413         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
12414         multi-line expressions.
12415         (gnus-agent-synchronize-group-flags): New internal function.
12416         Updates marks in memory (in the info structure) AND in the
12417         backend.
12418
12419         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
12420
12421         * nnagent.el (nnagent-request-set-mark): Use
12422         gnus-agent-synchronize-group-flags, not backend's request-set-mark
12423         method, to ensure that synchronization updates marks in the
12424         backend and in the info (in memory) structure.
12425
12426 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12427
12428         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
12429         convention fully; don't miss the root article of a thread; make
12430         the X-Draft-From header with correct article numbers.
12431
12432 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
12433
12434         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
12435         unless plugged.  Disable the agent so that an open failure causes
12436         an error.
12437
12438         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
12439         Reverted 2004-09-21 change.  The backend must be opened while
12440         synchronizing flags even when the backend stores the flags
12441         locally.
12442
12443 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
12444
12445         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
12446         in `header' match.  Reported by Svend Tollak Munkejord.
12447
12448         * message.el (message-cite-original): Fix use of
12449         `message-cite-articles-with-x-no-archive'.
12450
12451 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12452
12453         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
12454         (gnus-window-to-buffer): Ditto.
12455
12456         * mml.el (mml-preview-buffer): New variable.
12457         (mml-preview): Manage window layout with gnus-buffer-configuration.
12458
12459         * gnus-msg.el (gnus-setup-message): Put article numbers into the
12460         X-Draft-From header even if those articles aren't quoted.
12461
12462 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
12463
12464         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
12465         (gnus-request-set-mark, gnus-request-update-mark): Use new
12466         g-s-t-u-l-m to decide to use backend even when unplugged.
12467
12468 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12469
12470         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
12471         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
12472
12473 2004-09-20  Simon Josefsson  <jas@extundo.com>
12474
12475         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
12476         "utf-16-le".
12477
12478 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12479
12480         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
12481
12482 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
12483
12484         * uudecode.el (uudecode-use-external): Add :version.
12485
12486         * smime.el (smime-CA-file, smime-encrypt-cipher)
12487         (smime-dns-server): Add :version.
12488
12489         * smiley.el (gnus-smiley-file-types): Add :version.
12490
12491         * sha1.el (sha1-use-external): Add :version.
12492
12493         * pgg-def.el (pgg-query-keyserver): Add :version.
12494
12495         * nnmail.el (nnmail-fancy-expiry-targets)
12496         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
12497         Add :version.
12498
12499         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
12500         (nnimap-retrieve-groups-asynchronous): Add :version.
12501         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
12502
12503         * mml.el (mml-content-disposition-parameters)
12504         (mml-insert-mime-headers-always): Add :version.
12505
12506         * mm-util.el (mm-coding-system-priorities): Add :version.
12507
12508         * mm-decode.el (mm-inline-text-html-with-images)
12509         (mm-keep-viewer-alive-types, mm-external-terminal-program)
12510         (mm-verify-option): Add :version.
12511         (mm-text-html-renderer): Change :version.
12512
12513         * message.el (message-fcc-externalize-attachments)
12514         (message-required-headers, message-draft-headers)
12515         (message-subject-trailing-was-query)
12516         (message-subject-trailing-was-ask-regexp)
12517         (message-subject-trailing-was-regexp, message-mark-insert-begin)
12518         (message-mark-insert-end, message-archive-header)
12519         (message-archive-note, message-cross-post-default)
12520         (message-cross-post-note, message-followup-to-note)
12521         (message-cross-post-note-function, message-use-mail-followup-to)
12522         (message-subscribed-address-functions)
12523         (message-subscribed-address-file, message-subscribed-addresses)
12524         (message-subscribed-regexps, message-allow-no-recipients)
12525         (message-yank-cited-prefix, message-signature-insert-empty-line)
12526         (message-hidden-headers, message-hierarchical-addresses)
12527         (message-mail-user-agent, message-use-idna)
12528         (message-valid-fqdn-regexp)
12529         (message-strip-special-text-properties, message-header-synonyms)
12530         (message-beginning-of-line, message-tab-body-function): Add :version.
12531         (message-insert-canlock, message-wide-reply-confirm-recipients):
12532         Change :version.
12533
12534         * mail-source.el (mail-source-ignore-errors): Add :group, :type
12535         and :version.
12536         (mail-source-delete-old-incoming-confirm)
12537         (mail-source-movemail-program): Add :version.
12538
12539         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
12540         (gnus-agent-cache, gnus-agent): Change :version.
12541
12542         * gnus-util.el (gnus-use-byte-compile): Change :version.
12543
12544         * gnus-sum.el (gnus-summary-make-false-root-always)
12545         (gnus-summary-default-high-score)
12546         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
12547         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
12548         (gnus-read-all-available-headers, gnus-article-emulate-mime)
12549         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
12550         (gnus-sum-thread-tree-single-indent)
12551         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
12552         (gnus-sum-thread-tree-leaf-with-other)
12553         (gnus-sum-thread-tree-single-leaf): Add :version.
12554         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
12555         (gnus-article-loose-mime): Change :version.
12556
12557         * gnus-start.el (gnus-backup-startup-file)
12558         (gnus-save-startup-file-via-temp-buffer): Add :version.
12559
12560         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
12561         (gnus-server-offline-face): Add :version.
12562
12563         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
12564
12565         * gnus-msg.el (gnus-gcc-externalize-attachments)
12566         (gnus-debug-files, gnus-debug-exclude-variables)
12567         (gnus-discouraged-post-methods): Change :version.
12568         (gnus-confirm-mail-reply-to-news)
12569         (gnus-confirm-treat-mail-like-news): Add :version.
12570
12571         * gnus-int.el (gnus-server-unopen-status): Add :version.
12572
12573         * gnus-group.el (gnus-group-jump-to-group-prompt)
12574         (gnus-large-ephemeral-newsgroup)
12575         (gnus-fetch-old-ephemeral-headers): Add :version.
12576
12577         * gnus-fun.el (gnus-x-face-directory)
12578         (gnus-convert-pbm-to-x-face-command)
12579         (gnus-convert-image-to-x-face-command)
12580         (gnus-convert-image-to-face-command): Add :version.
12581
12582         * gnus-delay.el (gnus-delay-default-hour): Add :version.
12583
12584         * gnus-cite.el (gnus-cite-blank-line-after-header)
12585         (gnus-article-boring-faces): Add :version.
12586
12587         * gnus-art.el (gnus-buttonized-mime-types)
12588         (gnus-inhibit-mime-unbuttonizing)
12589         (gnus-treat-display-face)
12590         (gnus-treat-body-boundary): Change :version.
12591         (gnus-body-boundary-delimiter, gnus-picon-databases)
12592         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
12593         (gnus-treat-date-english, gnus-treat-fold-headers)
12594         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
12595         (gnus-treat-mail-picon, gnus-treat-wash-html)
12596         (gnus-article-encrypt-protocol)
12597         (gnus-use-idna, gnus-article-over-scroll)
12598         (gnus-mime-display-multipart-alternative-as-mixed)
12599         (gnus-mime-display-multipart-related-as-mixed)
12600         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
12601         (gnus-ctan-url, gnus-button-ctan-handler)
12602         (gnus-button-handle-ctan-bogus-regexp)
12603         (gnus-button-ctan-directory-regexp)
12604         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
12605         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
12606         (gnus-button-man-level, gnus-button-emacs-level)
12607         (gnus-button-message-level, gnus-button-browse-level): Add :version.
12608
12609         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
12610         (gnus-agent-go-online): Change :version.
12611         (gnus-agent-expire-unagentized-dirs)
12612         (gnus-agent-auto-agentize-methods): Add :version.
12613
12614         * flow-fill.el (fill-flowed-display-column)
12615         (fill-flowed-encode-column): Add :version.
12616
12617         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
12618         (gnus-outlook-deuglify-unwrap-max)
12619         (gnus-outlook-deuglify-cite-marks)
12620         (gnus-outlook-deuglify-unwrap-stop-chars)
12621         (gnus-outlook-deuglify-no-wrap-chars)
12622         (gnus-outlook-deuglify-attrib-cut-regexp)
12623         (gnus-outlook-deuglify-attrib-verb-regexp)
12624         (gnus-outlook-deuglify-attrib-end-regexp)
12625         (gnus-outlook-display-hook): Add :version.
12626
12627         * binhex.el (binhex-use-external): Add :version.
12628
12629 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
12630
12631         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
12632         and `invisible'.
12633
12634 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
12635
12636         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
12637         in gnus-registry-trim.
12638
12639 2004-09-13  Simon Josefsson  <jas@extundo.com>
12640
12641         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
12642
12643         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
12644
12645         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
12646         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
12647         <yamaoka@jpl.org>.
12648         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
12649         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
12650         <yamaoka@jpl.org>.
12651
12652         * sieve.el (sieve-manage-mode): Ditto.
12653
12654 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
12655
12656         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
12657
12658 2004-09-11  Simon Josefsson  <jas@extundo.com>
12659
12660         * dns-mode.el: Add.
12661
12662         * mm-view.el (mm-display-dns-inline): Add.
12663
12664         * mm-decode.el (mm-inline-media-tests): Add text/dns.
12665         (mm-automatic-display): Ditto.
12666
12667         * mailcap.el (mailcap-mime-data): Add text/dns.
12668         (mailcap-mime-extensions): Map .soa to text/dns.
12669
12670 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
12671
12672         * gnus-art.el (article-decode-mime-words, article-babel)
12673         (gnus-article-highlight-signature, gnus-article-add-buttons)
12674         (gnus-signature-toggle): Remove unnecessary bindings of
12675         `inhibit-read-only' inherited from v5.10 merge.
12676
12677 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
12678
12679         * nntp.el (nntp): New customization group.
12680         (nntp-authinfo-file): Add customization group.
12681
12682         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
12683
12684         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
12685
12686         * gnus.el (to-address, to-list, subscribed)
12687         (large-newsgroup-initial): Ditto.
12688
12689         * flow-fill.el (fill-flowed-display-column)
12690         (fill-flowed-encode-column): Ditto.
12691
12692 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12693
12694         * message.el (message-tokenize-header, message-send-mail-with-qmail):
12695         Use point-min rather than 1.
12696         (message-send-mail): Use buffer-size rather than point-max.
12697
12698         * gnus-sum.el (gnus-summary-search-article-forward):
12699         Signal a specific `search-failed' rather than a generic `error'.
12700
12701         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
12702         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
12703         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
12704
12705 2004-09-10  Simon Josefsson  <jas@extundo.com>
12706
12707         * nndb.el (require): Remove tcp and duplicate cl.
12708
12709 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12710
12711         * gnus-agent.el (directory-files-and-attributes): Move forward.
12712
12713 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
12714
12715         * gnus-agent.el (directory-files-and-attributes): Optionally
12716         defined to support XEmacs.
12717
12718 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
12719
12720         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
12721         to avoid run-time CL dependencies.
12722         (gnus-agent-unfetch-articles): New function.
12723         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
12724         article numbers even when local .overview file is missing.
12725         (gnus-agent-read-article-number): New function.  Only accepts
12726         27-bit article numbers.
12727         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
12728         gnus-agent-read-article-number.
12729         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
12730         from backend while recognizing that article numbers in .overview
12731         must be valid.
12732         (gnus-agent-update-files-total-fetched-for): Use
12733         directory-files-and-attributes to improve performance.
12734         * gnus-int.el (gnus-request-move-article): Use
12735         gnus-agent-unfetch-articles in place of gnus-agent-expire to
12736         improve performance.
12737
12738         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
12739         some users confused by references to .newsrc when they only have a
12740         .newsrc.eld file.
12741         (gnus-convert-mark-converter-prompt)
12742         (gnus-convert-converter-needs-prompt): Fixed use of property list.
12743         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
12744         New function.  Used internally to only display 'gnus converting
12745         files' message when actually necessary.
12746
12747         * gnus-sum.el (): Removed (require 'gnus-agent) as required
12748         methods now autoloaded.
12749
12750 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12751
12752         * gnus-sum.el (gnus-summary-insert-subject): Remove list
12753         identifiers.
12754
12755 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
12756
12757         * gnus-picon.el: Fix indentation and closing parenthesis.
12758
12759 2004-09-01  Simon Josefsson  <jas@extundo.com>
12760
12761         * message.el (message-canlock-generate): Require sha1, not
12762         sha1-el.  (Can we get rid of this require altogether?  It is ugly
12763         to require within a function.  Sadly, if sha1.el isn't loaded, the
12764         let binding in m-c-g will hide the defcustom definition, which is
12765         bad.)
12766
12767         * canlock.el: Require sha1, not sha1-el.
12768
12769         * message.el: Don't autoload sha1 (there is a autoload cookie in
12770         sha1.el).
12771
12772         * sha1-el.el: Renamed to sha1.el.
12773
12774 2004-08-30  Juanma Barranquero  <lektu@terra.es>
12775
12776         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
12777
12778 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12779
12780         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
12781
12782 2004-08-30  Kim F. Storm  <storm@cua.dk>
12783
12784         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
12785
12786         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
12787         Add :group 'nnimap.
12788
12789 2004-08-30  Andreas Schwab  <schwab@suse.de>
12790
12791         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
12792         ?* and ?\;.
12793
12794         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
12795         and ?\' to symbol instead of whitespace.
12796
12797 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12798
12799         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
12800
12801         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
12802         instead of re-search-forward.
12803
12804         * gnus-uu.el (gnus-uu-save-article): Ditto.
12805         (gnus-uu-post-encode-uuencode): Ditto.
12806
12807         * html2text.el (html2text-clean-list-items): Ditto.
12808         (html2text-clean-dtdd): Ditto.
12809         (html2text-format-tags): Ditto.
12810
12811         * message.el (message-send-mail-with-sendmail): Fix regexp.
12812         (message-fill-field-general): Use search-forward instead of
12813         re-search-forward.
12814         (unbold-region): Ditto.
12815
12816         * nnrss.el (nnrss-request-article): Ditto.
12817
12818         * nnslashdot.el (nnslashdot-request-article): Ditto.
12819
12820         * nnweb.el (nnweb-gmane-wash-article): Ditto.
12821
12822         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
12823         "Unrecognized menu descriptor" error in XEmacs.
12824
12825 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12826
12827         * gnus-sum.el (gnus-read-header): Don't remove a header for the
12828         parent article of a sparse article in the thread hashtb.
12829
12830 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
12831
12832         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
12833         (nnmail-expand-newtext): Lowercase expanded entries if
12834         nnmail-split-lowercase-expanded is non-nil.
12835
12836 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12837
12838         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
12839
12840         * gnus-group.el (gnus-group-line-format-alist): Convert the value
12841         of gnus-tmp-news-method into string under XEmacs.  It will be
12842         passed to gnus-correct-length which takes only a string argument.
12843
12844 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12845
12846         * gnus-util.el (gnus-bind-print-variables): New macro.
12847         (gnus-prin1): Use it.
12848         (gnus-prin1-to-string): Use it.
12849         (gnus-pp): New function.
12850         (gnus-pp-to-string): New function.
12851
12852         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
12853         Replace pp-to-string with gnus-pp-to-string.
12854         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
12855         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
12856         * gnus-msg.el (gnus-debug): Ditto.
12857         * gnus-score.el (gnus-score-save): Ditto.
12858         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
12859         gnus-pp-to-string.
12860         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
12861         with gnus-pp.
12862         * score-mode.el (gnus-score-pretty-print): Ditto.
12863         * webmail.el (webmail-debug): Ditto.
12864
12865 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12866
12867         * gnus-art.el (article-display-face, article-display-x-face):
12868         Use buffer-read-only.
12869
12870 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12871
12872         * gnus-art.el (article-hide-list-identifiers):
12873         Bind inhibit-read-only as t.
12874
12875 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
12876
12877         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
12878
12879 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12880
12881         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
12882         (gnus-narrow-to-page): Don't assume point-min == 1.
12883         (gnus-article-edit-mode): Derive from message-mode.
12884
12885         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
12886         point-min == 1.
12887
12888         * imap.el (imap-parse-address-list, imap-parse-body-ext):
12889         Disable incorrect use of `assert'.
12890
12891         * message.el (message-mode): Set comment-start-skip.
12892
12893
12894 2004-08-22  Sam Steingold  <sds@gnu.org>
12895
12896         * pop3.el (pop3-leave-mail-on-server): New user variable.
12897         (pop3-movemail): Delete mail only when it is nil.
12898
12899 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
12900
12901         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
12902
12903         * mml.el (mml-preview): Use `pop-to-buffer'.
12904
12905         * message.el (message-goto-mail-followup-to): Insert after "To".
12906         (message-carefully-insert-headers): Add comment.
12907
12908         * gnus.el: Remove unused variable `gnus-article-check-size'.
12909
12910         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
12911
12912         * gnus-art.el (gnus-button-alist): Improve
12913         `gnus-button-handle-library' entry.
12914
12915 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
12916
12917         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
12918         downcase, since XEmacs capitalizes error messages differently.
12919
12920 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
12921
12922         * nntp.el: Add (require 'gnus) due to reference to
12923         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
12924
12925 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
12926
12927         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
12928         `mm-fill-flowed'.
12929
12930         * mm-decode.el (mm-dissect-singlepart): Check it.
12931
12932 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
12933
12934         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
12935         'imap' for netrc parsing.
12936
12937 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
12938
12939         * mailcap.el (mailcap-mime-data): Mark as risky.
12940
12941 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12942
12943         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
12944         may be included in the encoded word.
12945         (rfc2047-encode): Don't append a space if the encoded word
12946         includes close parenthesis.
12947
12948 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12949
12950         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
12951         of text within parentheses.
12952
12953 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
12954
12955         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
12956         (gnus-encrypt-write-file-contents): Make the password key the file
12957         name PLUS the cipher, not just the cipher.  Also remove failed
12958         passwords from the cache.
12959
12960 2004-08-06  Simon Josefsson  <jas@extundo.com>
12961
12962         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
12963         fix.
12964
12965 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12966
12967         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
12968         LWSP.
12969
12970 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
12971
12972         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
12973         to append in-reply-to: data to the references: header.
12974
12975         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
12976         (netrc-parse): Use gnus-encrypt.el functions.
12977
12978         * gnus-encrypt.el: Add new file for encryption support; currently
12979         does only a few GPG ciphers and an internal XOR cipher.
12980
12981         * password.el: Add comments on using password-read-and-add.
12982         (password-read-and-add): Add function to read and add the
12983         password to the cache at once.
12984
12985 2004-07-28  Simon Josefsson  <jas@extundo.com>
12986
12987         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
12988         parameter (but don't use it, for now).
12989
12990         * imap.el (imap-ssl-open): Use imap-process-connection-type,
12991         instead of hard coding to nil.
12992
12993 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12994
12995         * mm-view.el (mm-inline-image-emacs): Open lines under an image
12996         as mm-inline-image-xemacs does.
12997
12998 2004-07-26  Simon Josefsson  <jas@extundo.com>
12999
13000         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13001         Revert part of 2004-07-17 change below.
13002
13003 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13004
13005         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13006         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13007
13008 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13009
13010         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13011         quotes that actually start with ">" at the beginning of the
13012         lines.
13013
13014 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13015
13016         * rfc2047.el (rfc2047-encode-region): Fix last change.
13017         (rfc2047-encode-parameter): Remove useless concat.
13018
13019 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13020
13021         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13022         encode special characters; fix some kind of misconfigured headers;
13023         signal a real error if debug-on-quit or debug-on-error is non-nil.
13024         (rfc2047-encode-max-chars): New variable.
13025         (rfc2047-encode-1): Use it.
13026         (rfc2047-encode-parameter): New function.
13027
13028         * mml.el (mml-insert-parameter): Remove an excessive space.
13029
13030 2004-07-17  Simon Josefsson  <jas@extundo.com>
13031
13032         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13033         Kai Grossjohann <kai@emptydomain.de>.
13034         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13035         (gnus-group-make-menu-bar): Ditto.
13036
13037         * gnus-util.el (gnus-group-server): Add.
13038
13039 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13040
13041         * message.el (message-clone-locals): Clone sendmail and smtp
13042         variables.
13043
13044 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13045
13046         * rfc2047.el (rfc2047-encode-region): Fix last change.
13047
13048 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13049
13050         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13051         characters as non-special.
13052
13053 2004-07-09  Simon Josefsson  <jas@extundo.com>
13054
13055         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13056         Users will lose all flag changes made while unplugged with
13057         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13058         good default.  See numerous reports on ding mailing list.
13059
13060 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13061
13062         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13063         add generate-head-function and generate-article-function to the
13064         rfc822-forward entry.
13065         (nndoc-rfc822-forward-generate-article): New function.
13066         (nndoc-rfc822-forward-generate-head): New function.
13067
13068         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13069
13070 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13071
13072         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13073         respect display group parameter and gnus-summary-expunge-below.
13074         (gnus-articles-to-read): Remove unused reference to display group
13075         parameter.
13076
13077 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13078
13079         * nnheader.el (nnheader-uniquify-message-id): New experimental
13080         variable.
13081         (nnheader-nov-read-message-id): Use it.
13082
13083         * spam-report.el (spam-report-gmane): Add interactive.
13084
13085 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13086
13087         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13088         qp-or-base64 for the application/* types.
13089
13090 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13091
13092         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13093
13094 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13095
13096         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13097         trim value.
13098
13099 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13100
13101         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13102         New macro and function.
13103         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13104
13105 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13106
13107         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13108         after-load-alist.
13109
13110 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13111
13112         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13113         update info that isn't there.
13114
13115 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13116
13117         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13118         entry.
13119
13120 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13121
13122         * mm-view.el (mm-inline-render-with-function): Use multibyte
13123         buffer; decode html source by charset.
13124
13125         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13126
13127         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13128         Mule-UCS is loaded under XEmacs.
13129         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13130
13131 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13132
13133         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13134
13135 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13136
13137         * mm-util.el (mm-coding-system-p): Return a coding-system.
13138         (mm-mime-mule-charset-alist): Use shift_jis instead of
13139         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13140         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13141         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13142         instead of japanese-shift-jis and iso-latin-1 respectively in
13143         order to share the default value with both Emacs and XEmacs-mule.
13144         (mm-mule-charset-to-mime-charset): Make
13145         mm-coding-system-priorities effective.
13146         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13147         while predicating of candidates upon the priorities.
13148
13149 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13150
13151         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13152         gnus-uu-invert-processable.
13153
13154         * gnus.el: Autoload gnus-uu-invert-processable.
13155
13156 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13157
13158         * mm-util.el (mm-with-multibyte-buffer): New macro.
13159
13160         * rfc2047.el (rfc2047-encode-string): Use it.
13161         (rfc2047-encode-region): Move point to the end of the region after
13162         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13163
13164 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13165
13166         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13167         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13168
13169 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13170
13171         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13172         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13173         Karl Chen <quarl@nospam.quarl.org>.
13174
13175 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13176
13177         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13178         invalid addresses.
13179
13180 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13181
13182         * spam.el: Change section markers, revise TODO list.
13183         (spam-backends): Make new master list of all installed backends.
13184         (spam-summary-exit-behavior): Add new variable to determine how
13185         messages moves are done at summary exit.
13186         (spam-move-spam-nonspam-groups-only)
13187         (spam-process-ham-in-nonham-groups)
13188         (spam-process-ham-in-spam-groups): Remove variables, the
13189         spam-summary-exit-behavior variable should be used to manage this
13190         behavior.
13191         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13192         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13193         and spam-old-spam-articles.
13194         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13195         Add empty variables, placeholders for the backends they represent.
13196         (spam-set-difference): Move, unchanged.
13197         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13198         unless the user has a processor variable.
13199         (spam-classifications, spam-classification-valid-p)
13200         (spam-backend-properties, spam-backend-property-valid-p)
13201         (spam-backend-function-type-valid-p)
13202         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13203         (spam-report-articles-gmane, spam-report-articles-resend):
13204         Remove functions, they are not needed.
13205         (spam-install-backend-super, spam-backend-list)
13206         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13207         (spam-backend-function, spam-backend-ham-registration-function)
13208         (spam-backend-spam-registration-function)
13209         (spam-backend-ham-unregistration-function)
13210         (spam-backend-spam-unregistration-function)
13211         (spam-backend-statistical-p, spam-backend-mover-p)
13212         (spam-install-backend-alias, spam-install-checkonly-backend)
13213         (spam-install-mover-backend, spam-install-nocheck-backend)
13214         (spam-install-backend, spam-install-statistical-backend)
13215         (spam-install-statistical-checkonly-backend): Add backend installation
13216         support.
13217         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13218         (spam-group-processor-p): Use the new backend code and respect the
13219         summary exit behavior.
13220         (spam-mark-spam-as-expired-and-move-routine): Remove.
13221         (spam-summary-prepare): Change to use the new spam-old-articles
13222         variable.
13223         (spam-copy-or-move-routine, spam-copy-spam-routine)
13224         (spam-move-spam-routine, spam-copy-ham-routine)
13225         (spam-move-ham-routine): Add code to copy/move ham or spam.
13226         (spam-fetch-field-fast): Improve doc and code, plus allow the
13227         'number request.
13228         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13229         variables.
13230         (spam-split, spam-find-spam): Use the new backend code.
13231         (spam-registration-functions): Remove variable.
13232         (spam-unregister-routine): Add convenience wrapper.
13233         (spam-log-undo-registration, spam-register-routine)
13234         (spam-log-processing-to-registry)
13235         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13236         where possible.
13237         (spam-check-gmane-xref, spam-check-regex-headers)
13238         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13239         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13240         (spam-check-bogofilter-headers, spam-check-spamoracle)
13241         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13242         (spam-check-crm114-headers): Use the spam-split-group that
13243         spam-split prepares, no need to determine it every time.
13244
13245         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13246         to the nnheader-parse-naked-head call.
13247
13248         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13249
13250         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13251         the nnheader-nov-read-message-id call.
13252
13253 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13254
13255         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13256         gnus-activate-group twice.  Suggested by Markus Peter
13257         <warp@spin.de>.
13258
13259 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13260
13261         * gnus-art.el (gnus-article-time-format): Exchange the order of
13262         day and month in the default value; fix customization type.
13263         (article-date-ut): Use add-text-properties.
13264         (article-make-date-line): Use message-make-date instead of
13265         current-time-string.
13266
13267         * message.el (message-fetch-field): Don't use set-text-properties.
13268         (message-make-date): Simplify.
13269
13270         * messagexmas.el (message-xmas-make-date): New function.
13271         (message-xmas-redefine): Defalias message-make-date to it.
13272
13273 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13274
13275         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13276         (rfc2047-encode-region): Treat text within parentheses as special;
13277         show the original text when error has occurred.
13278
13279         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13280         already-computed method to gnus-activate-group.
13281
13282         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13283         same select-methods identical Lisp objects.
13284
13285         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13286         object when modifying the info.
13287
13288 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13289
13290         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13291         gnus-opened-servers since it has never been opened with the new
13292         configuration yet.
13293
13294 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13295
13296         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13297         arg to nnheader-generate-fake-message-id.
13298
13299 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13300
13301         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13302         number and build a fake message ID localized to a group and
13303         article number (so it's repeatable from that point on).
13304         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13305         ID format.
13306
13307         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13308         nnheader-generate-fake-message-id with the article number.
13309
13310 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13311
13312         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13313         end-of-buffer.
13314
13315 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13316
13317         * message.el (message-ignored-supersedes-headers): Add Approved.
13318
13319 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13320
13321         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13322         goto-char.
13323         (rfc2047-encode): Fold the line before encoding.
13324
13325 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13326
13327         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13328         folding -- not all headers can be folded, and this should be done
13329         by the message composition mode.  Probably.  I think.
13330
13331 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13332
13333         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13334         fast.
13335
13336         * gnus-ems.el (gnus-remove-image): Don't use
13337         message-text-with-property; remove only the image found first.
13338
13339         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13340         found first.
13341
13342 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
13343
13344         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
13345
13346 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13347
13348         * message.el (message-text-with-property): Make it fast and accept
13349         optional arguments.
13350         (message-strip-forbidden-properties): Use it.
13351         (message-fix-before-sending): Follow the m-t-w-p change.
13352
13353         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
13354
13355 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13356
13357         * gnus-art.el (article-hide-headers): Don't change the buffer
13358         mistakenly when performing mml-preview even if
13359         gnus-single-article-buffer is nil.
13360
13361 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
13362
13363         * message.el (message-expand-name-databases): New user option.
13364         (message-expand-name): Use it.
13365
13366 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
13367
13368         * spam.el (spam-report-articles-resend)
13369         (spam-report-resend-register-routine): Allow ham reporting.
13370         (spam-report-resend-register-ham-routine): Add wrapper.
13371         (spam-registration-functions): Add ham resending functions.
13372         (spam-list-of-processors): Add ham resend processor.
13373
13374         * gnus.el (ham-resend-to): Add new group parameter.
13375         (spam-process): Add ham resend option.
13376
13377         * spam-report.el (spam-report-resend): Allow reporting ham.
13378         (spam-report-resend-ham): Add wrapper.
13379
13380 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13381
13382         * message.el (message-cite-articles-with-x-no-archive): New
13383         variable.
13384         (message-cite-original): Use it.
13385
13386 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13387
13388         * message.el (message-cite-original): Respect X-No-Archive.
13389
13390 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13391
13392         * gnus-art.el (article-hide-headers): Refer to the values for
13393         gnus-ignored-headers and gnus-visible-headers in the summary
13394         buffer since a user may have set them as group parameters.
13395
13396 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
13397
13398         * assistant.el (assistant-node-name): Add convenience function.
13399         (assistant-render-text, assistant-render-node): Add error handling,
13400         plus handle multiple next nodes.
13401         (assistant-find-next-node): Comment out for now.
13402         (assistant-find-next-nodes): Add function, returns list of next
13403         nodes.
13404
13405 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
13406
13407         * mail-source.el (mail-source-directory): Fix doc-string.
13408
13409 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
13410
13411         * assistant.el (assistant-render-text, assistant-eval): Add :set
13412         widget type, which is different because it takes and returns a
13413         list.  Much hilarity ensues.
13414
13415 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
13416
13417         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
13418
13419         * gnus-group.el (gnus-group-get-new-news-this-group): Added
13420         doc-string.
13421
13422         * gnus-start.el (gnus-activate-group): Added doc-string.
13423
13424 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13425
13426         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
13427
13428 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
13429
13430         * assistant.el (assistant-render-text): Try to add a :set
13431         widget, more to come.
13432
13433         * spam.el (spam-group-spam-contents-p): Handle empty groupname
13434         strings.
13435         (spam-report-articles-resend)
13436         (spam-register-routine): Do registration iff any articles warrant
13437         it.
13438         (spam-summary-prepare-exit): Change log message for nil group
13439         destinations.
13440
13441 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
13442
13443         * spam.el (spam-report-resend-register-routine): Allow
13444         spam-report-resend-to to be a group parameter or a global value.
13445
13446 2004-05-26  Simon Josefsson  <jas@extundo.com>
13447
13448         * starttls.el: Merge with my GNUTLS based starttls.el.
13449         (starttls-gnutls-program, starttls-use-gnutls)
13450         (starttls-extra-arguments, starttls-process-connection-type)
13451         (starttls-connect, starttls-failure, starttls-success): New
13452         variables.
13453         (starttls-program, starttls-extra-args): Doc fix.
13454         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
13455         functions.
13456         (starttls-negotiate, starttls-open-stream): Check
13457         `starttls-use-gnutls' and pass on to corresponding *-gnutls
13458         function if it is set.
13459
13460 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13461
13462         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
13463         structured fields.
13464
13465 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13466
13467         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
13468
13469 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
13470
13471         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
13472         variable.
13473         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
13474         assigning the spam-mark to new messages.
13475
13476 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
13477
13478         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
13479
13480 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13481
13482         * dgnushack.el: Autoload customize-set-variable for XEmacs.
13483
13484         * rfc2047.el (rfc2047-encodable-p): Don't move point.
13485         (rfc2047-decode): Treat the ascii coding-system as raw-text by
13486         default.
13487
13488 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
13489
13490         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
13491         correct data.
13492
13493 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
13494
13495         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
13496         (spam-group-processor-p): Fix function.
13497         (spam-group-processor-multiple-p)
13498         (spam-group-spam-processor-report-gmane-p)
13499         (spam-group-spam-processor-report-resend-p)
13500         (spam-group-spam-processor-bogofilter-p)
13501         (spam-group-spam-processor-blacklist-p)
13502         (spam-group-spam-processor-ifile-p)
13503         (spam-group-ham-processor-ifile-p)
13504         (spam-group-spam-processor-spamoracle-p)
13505         (spam-group-spam-processor-crm114-p)
13506         (spam-group-ham-processor-bogofilter-p)
13507         (spam-group-spam-processor-stat-p)
13508         (spam-group-ham-processor-stat-p)
13509         (spam-group-ham-processor-whitelist-p)
13510         (spam-group-ham-processor-BBDB-p)
13511         (spam-group-ham-processor-spamoracle-p)
13512         (spam-group-ham-processor-copy-p): Remove functions with some
13513         prejudice against unneeded code.
13514         (spam-report-articles-resend)
13515         (spam-report-resend-register-routine): Allow the group/topic
13516         spam-resend-to value to override spam-report-resend-to.
13517         (spam-summary-prepare-exit): Invoke spam-group-processor-p
13518         properly now.
13519
13520         * gnus.el (spam-resend-to): Add group/topic parameter.
13521         (spam-process): Move the OBSOLETE processors to the end of the
13522         choices.
13523
13524 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
13525
13526         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
13527         with resend-to set to nil, and then ask the user if necessary.
13528         (spam-report-resend): spam-report-resend takes a list of articles, not
13529         separate article numbers.
13530
13531 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13532
13533         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
13534         addition to emacs-w3m.
13535
13536 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13537
13538         * assistant.el (assistant-authinfo-data): New function.
13539         (assistant-eval): Eval for entire assistant.
13540
13541         * netrc.el (netrc-services-file): New variable.
13542         (netrc-parse-services): New function.
13543         (netrc-find-service-name): New function.
13544         (netrc-find-service-number): New function.
13545         (netrc-port-equal): New function.
13546         (netrc-machine): Use it.
13547
13548         * nnimap.el (nnimap-open-connection): Use netrc.
13549
13550         * gnus-util.el (gnus-netrc-get): Remove aliases.
13551
13552         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
13553
13554         * assistant.el (wid-edit): Fix compilation.
13555
13556         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
13557
13558 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
13559
13560         * gnus-util.el (gnus-set-file-modes): New function.  (small
13561         patch).
13562
13563 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13564
13565         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
13566
13567         * assistant.el (assistant-render-node): Fix up rendering and
13568         read-only text.
13569         (assistant-render-node): Reset.
13570         (assistant-make-read-only): Not sticky.
13571
13572 2004-05-20  Danny Siu  <dsiu@adobe.com>
13573
13574         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
13575         centered even when gnus-auto-center-summary is t.
13576
13577 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13578
13579         * dns.el (dns-get-txt-answer): New function.
13580         (dns-read-txt): Ditto.
13581         (query-dns): Use it.
13582
13583 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13584
13585         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
13586         active for foreign groups even if the group level is higher than
13587         the specified value.
13588
13589 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13590
13591         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
13592         non-active groups.
13593
13594         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
13595
13596 2004-05-20  Magnus Henoch  <mange@freemail.hu>
13597
13598         * dns.el (dns-read-type): Add support for SVR.  (small patch)
13599
13600 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
13601
13602         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
13603         (spam-crm114-header, spam-crm114-spam-switch)
13604         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
13605         (spam-crm114-positive-spam-header)
13606         (spam-crm114-database-directory, spam-list-of-processors)
13607         (spam-group-spam-processor-crm114-p)
13608         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
13609         (spam-generic-score, spam-list-of-checks)
13610         (spam-list-of-statistical-checks, spam-registration-functions)
13611         (spam-check-crm114-headers, spam-crm114-score)
13612         (spam-check-crm114, spam-crm114-register-with-crm114)
13613         (spam-crm114-register-spam-routine)
13614         (spam-crm114-unregister-spam-routine)
13615         (spam-crm114-register-ham-routine)
13616         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
13617         asjo@koldfront.dk (Adam Sjøgren).
13618
13619         * gnus.el: Add spam-use-crm114.
13620
13621         * spam.el (spam-list-of-processors, spam-registration-functions):
13622         Add spam-use-resend.
13623         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
13624         (spam-report-articles-gmane): Add doc fix.
13625         (spam-report-articles-resend, spam-report-resend-register-routine):
13626         Add wrappers around spam-report-resend-to.
13627
13628         * spam-report.el (spam-report-resend-to, spam-report-resend):
13629         Add support for resending spam.
13630         (spam-report-gmane): Fix line length >80.
13631
13632         * gnus.el (spam-process): Add spam-use-resend.
13633
13634 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13635
13636         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
13637         number of processed spam messages.
13638         (spam-ham-copy-or-move-routine): Return the number of processed
13639         ham messages.
13640         (spam-summary-prepare-exit): Use the above values to decide
13641         whether status messages shouled be displayed.
13642
13643 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13644
13645         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
13646         `rfc2047-encoding-function-alist' in order to avoid conflicting
13647         with the old version.
13648         (rfc2047-encode-region): Concatenate words containing non-ASCII
13649         characters in structured fields; don't encode space-delimited
13650         ASCII words even in unstructured fields; don't break words at
13651         char-category boundaries.
13652         (rfc2047-encode-1): New function.
13653         (rfc2047-encode): Use it; encode text so that it occupies the
13654         maximum width within 76-column; work correctly on Q encoding for
13655         iso-2022-* charsets.
13656         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
13657         sure not to break a line just after the header name.
13658         (rfc2047-b-encode-region): Removed.
13659         (rfc2047-b-encode-string): New function.
13660         (rfc2047-q-encode-region): Removed.
13661         (rfc2047-q-encode-string): New function.
13662
13663         * mm-util.el (mm-replace-in-string): New function.
13664
13665 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13666
13667         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
13668         get it right.
13669         (gnus-inews-make-draft): Really.
13670
13671 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
13672
13673         * nnmh.el (nnmh-request-list-1): Don't check the link count
13674         before descending.  (small patch)
13675
13676 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13677
13678         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
13679         stuff.
13680
13681         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
13682         on real group name.
13683
13684         * gnus-art.el (gnus-signature-limit): Doc fix.
13685
13686         * gnus-msg.el (gnus-inews-make-draft): Quote list.
13687
13688         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
13689
13690 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
13691
13692         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
13693         isn't a string.
13694
13695 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13696
13697         * gnus-draft.el (gnus-draft-send): Bind
13698         rfc2047-encode-encoded-words.
13699
13700         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
13701         (rfc2047-encodable-p): Say that =? needs encoding.
13702         (rfc2047-encode-encoded-words): New variable.
13703
13704         * gnus-group.el (gnus-group-select-group): Doc fix.
13705
13706         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
13707
13708         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
13709         to nil.
13710
13711         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
13712
13713         * nnheader.el (nnheader-get-lines-and-char): New function.
13714
13715 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
13716
13717         * gnus-msg.el (gnus-summary-followup-with-original): Document
13718         yanking of region when active.
13719
13720 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13721
13722         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
13723         groups if the group level is higher than the specified value.
13724
13725 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
13726
13727         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
13728         (gnus-group-jump-to-group): Added prefix argument using
13729         `gnus-group-jump-to-group-prompt'.  Query before jumping to
13730         non-active group.
13731
13732         * compface.el (uncompface): Be verbose when changing
13733         `uncompface-use-external'.
13734
13735         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
13736         handle manual section.
13737
13738 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13739
13740         * gnus-art.el (gnus-button-alist): Revert previous change.
13741
13742 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
13743
13744         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
13745
13746 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13747
13748         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
13749         whether backend can accept message.
13750
13751         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
13752
13753 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
13754
13755         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
13756         Avoid creating directory when nntp-marks-is-evil is true.
13757         Reported by Reiner Steib.
13758
13759 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
13760
13761         * gnus-picon.el (gnus-picon-style): New variable.
13762         (gnus-picon-insert-glyph): Added optional `nostring' argument.
13763         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
13764         Jesper Harder <harder@ifa.au.dk>.
13765
13766 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13767
13768         * message.el (message-fill-field): Return point.
13769         (message-generate-headers): Go to end of field.
13770
13771         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
13772         stuff for non-living groups.
13773
13774 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
13775
13776         * gnus-art.el (gnus-article-followup-with-original)
13777         (gnus-article-reply-with-original): gnus-mark-active-p ->
13778         gnus-region-active-p.
13779
13780 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
13781
13782         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
13783         only when there is spam or ham to be processed.
13784
13785 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13786
13787         * mail-source.el (mail-source-delete-crash-box): Refactor.
13788         (mail-source-fetch): Use it.
13789         (mail-source-fetch-file): Ditto.
13790         (mail-source-fetch-directory): Run postscript in loop.
13791         (mail-source-fetch-pop): Delete.
13792         (mail-source-fetch-maildir): Ditto.
13793         (mail-source-fetch-imap): Ditto.
13794
13795         * imap.el (imap-authenticators): Comment out sasl.
13796
13797         * message.el (message-skip-to-next-address): New function.
13798         (message-fill-header-address): Refactor.
13799         (message-fill-address): Use it.
13800         (message-delete-address): Use it.
13801         (message-fill-header-general): Refactor.
13802         (message-fill-field-address): Rename.
13803         (message-narrow-to-field): Find the start of the header.
13804         (message-header-format-alist): Don't pre-fill.
13805         (message-fill-header): Removed.
13806         (message-insert-header): New function.
13807         (message-shorten-references): Use it.
13808
13809         * rfc2047.el (rfc2047-field-value): Strip props.
13810
13811         * mail-parse.el (mail-header-make-address): New alias.
13812
13813         * ietf-drums.el (ietf-drums-make-address): New function.
13814
13815         * imap.el: Add compiler directives.
13816
13817         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
13818
13819         * gnus-art.el (article-decode-idna-rhs): Don't use
13820         message-idna-inside-rhs-p.
13821
13822 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13823
13824         * message.el (message-idna-inside-rhs-p): Removed.
13825         (message-idna-to-ascii-rhs-1): Use proper address parsing.
13826
13827         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
13828         false positives.
13829
13830 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
13831
13832         * imap.el (imap-sasl-make-mechanisms): Use sasl.
13833
13834 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13835
13836         * nneething.el (nneething-file-name): Don't create spurious
13837         files.
13838
13839         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
13840         (gnus-inews-do-gcc): Remove sleep.
13841
13842         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
13843         part under point.
13844
13845         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
13846         (gnus-agent-regenerate-group): Using nil messages aren't valid.
13847
13848 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
13849
13850         * spam.el (spam-summary-prepare-exit): Fixed (length).
13851
13852 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13853
13854         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
13855         as expired without moving it" message when there are spam
13856         messages left.
13857
13858 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
13859
13860         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
13861         header is not nil.
13862
13863 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
13864
13865         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
13866         nntp-possibly-create-directory, not nntp-possibly-change-group.
13867         (nntp-marks-changed-p): New arg SERVER.
13868         (nntp-request-update-info): Adjust caller.
13869
13870 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
13871
13872         * nntp.el (nntp-save-marks): Pass missing arg.
13873
13874 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
13875
13876         * nntp.el: Support marks.
13877         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
13878         (nntp-marks-modtime, nntp-marks-directory): New variables.
13879         (nntp-request-set-mark, nntp-request-update-info)
13880         (nntp-possibly-create-directory, nntp-marks-changed-p)
13881         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
13882         functions.
13883
13884 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
13885
13886         * gnus-xmas.el (gnus-xmas-select-lowest-window)
13887         (gnus-xmas-redefine): Rename.
13888
13889         * gnus-score.el (gnus-score-insert-help): Use
13890         gnus-select-lowest-window.
13891
13892         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
13893         appt-select-lowest-window and rename to gnus-select-lowest-window.
13894
13895         * gnus.el: do.
13896
13897 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13898
13899         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
13900         encodings of MIME-encoded words, in order to improve
13901         interoperability with several broken MUAs.
13902
13903 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13904
13905         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
13906         tags, only when charsets are not specified in headers.
13907         (mm-inline-text-html-render-with-w3m): Ditto.
13908
13909         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
13910         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
13911
13912 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13913
13914         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
13915         instead of MIME-decoded from fields when checking
13916         `gnus-article-address-banner-alist'.
13917
13918 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
13919
13920         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
13921         description rather than subject.
13922
13923 2004-05-02  Steve Youngs  <steve@youngs.au.com>
13924
13925         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
13926
13927 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13928
13929         * gnus.el (gnus-version-number): Bump.
13930
13931 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13932
13933         * gnus.el: No Gnus v0.2 is released.
13934
13935 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13936
13937         * gnus-agent.el (gnus-agent-read-agentview): Inline
13938         gnus-uncompress-range.
13939
13940 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13941
13942         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
13943         `exec-installed-p'.
13944
13945 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13946
13947         * gnus.el (spam-process, spam-autodetect-methods): Add
13948         bsfilter and bsfilter-headers.
13949
13950         * spam.el (spam-bsfilter): New customize group.
13951         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
13952         (spam-bsfilter-header, spam-bsfilter-probability-header)
13953         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
13954         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
13955         (spam-bsfilter-database-directory): New options.
13956         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
13957         (spam-list-of-statistical-checks, spam-registration-functions):
13958         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
13959         (spam-bsfilter-score): New command.
13960         (spam-check-bsfilter-headers, spam-check-bsfilter)
13961         (spam-bsfilter-register-with-bsfilter)
13962         (spam-bsfilter-register-spam-routine)
13963         (spam-bsfilter-unregister-spam-routine)
13964         (spam-bsfilter-register-ham-routine)
13965         (spam-bsfilter-unregister-ham-routine): New functions.
13966         (spam-generic-score): Support bsfilter; Accept an optional argument
13967         to recalcurate spam score even if scoring header has already been
13968         added.
13969         (spam-bogofilter-score, spam-spamassassin-score): Accept an
13970         optional argument to recalcurate spam score even if scoring header
13971         has already been added.
13972
13973 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
13974
13975         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
13976         strings!  Reported by David D. Smith <davidsmith@acm.org>.
13977         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
13978         link is missing.
13979
13980 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
13981
13982         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
13983         (html2text-get-attr): Rewrite.
13984
13985         * message.el (message-setup-1): Remove redundant put-text-property
13986         on mail-header-separator.
13987
13988 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
13989
13990         * gnus-registry.el (gnus-registry-cache-whitespace)
13991         (gnus-registry-action, gnus-registry-spool-action)
13992         (gnus-registry-split-fancy-with-parent): Change message levels
13993         from 5 to 3 or 7, as needed.
13994
13995         * spam.el (spam-summary-prepare-exit)
13996         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
13997         (spam-split, spam-find-spam, spam-log-undo-registration)
13998         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
13999         level from 5 to 6.
14000
14001 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14002
14003         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14004         2004-03-04 change).
14005
14006 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14007
14008         * sieve-manage.el (sieve-manage-open):
14009         * nnweb.el (nnweb-insert-html):
14010         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14011         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14012         * nnspool.el (nnspool-request-group):
14013         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14014         * nnml.el (nnml-request-update-info):
14015         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14016         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14017         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14018         (nnimap-request-set-mark):
14019         * nnfolder.el (nnfolder-request-update-info):
14020         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14021         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14022         * gnus-uu.el (gnus-uu-find-articles-matching):
14023         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14024         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14025         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14026         * gnus-nocem.el (gnus-nocem-scan-groups):
14027         * gnus-int.el (gnus-start-news-server):
14028         * gnus-group.el (gnus-group-make-kiboze-group)
14029         (gnus-group-browse-foreign-server):
14030         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14031         Use mapc when appropriate.
14032
14033 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14034
14035         FIXME: Make separate entries for each person.
14036
14037         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14038         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14039         <shields@msrl.com>:
14040
14041         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14042         may need for spam sorting and scoring.
14043         (spam-user-format-function-S): Add user format function suitable for
14044         general use.
14045         (spam-article-sort-by-spam-status): Add sorting function for summary
14046         sorting.
14047         (spam-extra-header-to-number): Add function to get a score from a
14048         header.
14049         (spam-summary-score): Add function to get a numeric score from the
14050         headers.
14051         (spam-generic-score): Fix function doc, was in wrong place.
14052         (spam-initialize): Take symbols when it's run, and install the
14053         extra headers that spam-necessary-extra-headers thinks we need.
14054
14055 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14056
14057         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14058         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14059
14060 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14061
14062         * gnus-sum.el (gnus-set-global-variables)
14063         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14064         (gnus-article-get-xrefs, gnus-summary-best-group)
14065         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14066         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14067         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14068         Use with-current-buffer.
14069
14070 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14071
14072         * spam.el (spam-summary-prepare-exit): Simplify logic.
14073         (spam-fetch-article-header): Read the article header if it's not
14074         available.
14075         (spam-list-articles): Simplify logic.
14076         (spam-filelist-register-routine): Fix bug with unregister-list.
14077
14078         * gnus-registry.el: Fix comments at beginning.
14079
14080 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14081
14082         * message.el (message-cater-to-broken-inn): Remove.
14083         (message-shorten-references): Make sure the total folded length of
14084         References is shorter than 998 characters to cater to a bug in INN
14085         2.3.  Also, don't pretend that references aren't folded -- this
14086         hasn't worked for a while.
14087
14088 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14089
14090         * gnus-agent.el (gnus-agentize):
14091         gnus-agent-send-mail-real-function no longer set to current value
14092         of message-send-mail-function but rather a lambda that calls
14093         message-send-mail-function.  The change makes the agent real-time
14094         responsive to user changes to message-send-mail-function.
14095
14096 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14097
14098         * legacy-gnus-agent.el
14099         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14100         help from Florian Weimer <fw@deneb.enyo.de>
14101
14102 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14103
14104         * nnmail.el (nnmail-cache-insert): Revert last change.
14105
14106 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14107
14108         * nnmail.el (nnmail-cache-insert): Always check whether
14109         nnmail-cache-ignore-groups matches a group name.
14110
14111 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14112
14113         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14114         (spam-find-spam, spam-log-processing-to-registry)
14115         (spam-log-registered-p, spam-log-unregistration-needed-p)
14116         (spam-log-undo-registration): Use gnus-message instead of
14117         gnus-error, none of these errors are fatal.
14118
14119         * gnus-registry.el (gnus-registry-clean-empty-function)
14120         (gnus-registry-clean-empty): Remove only empty entries without
14121         extra data.
14122
14123 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14124
14125         * spam-stat.el (spam-stat-buffer-change-to-spam)
14126         (spam-stat-buffer-change-to-non-spam): Change (error) to
14127         (gnus-message 8) invocation.
14128
14129 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14130
14131         * nntp.el (nntp-via-netcat-command): New variable.
14132         (nntp-via-netcat-switches): New variable.
14133         (nntp-open-via-rlogin-and-netcat): New function.
14134         (nntp-open-connection-function): Doc fix.
14135         (nntp-telnet-command): Doc fix.
14136         (nntp-end-of-line): Doc fix.
14137         (nntp-via-rlogin-command): Doc fix.
14138         (nntp-via-user-name): Doc fix.
14139         (nntp-via-address): Doc fix.
14140
14141 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14142
14143         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14144         error in Emacs 21.1.
14145
14146 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14147
14148         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14149
14150 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14151
14152         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14153         (gnus-agent-with-refreshed-group): New macro.
14154         (gnus-agent-rename-group): New function.
14155         (gnus-agent-delete-group): New function.
14156         (gnus-agent-save-group-info): Use gnus-command-method when
14157         `method' parameter is nil.  Don't write nil entries into the
14158         active file.
14159         (gnus-agent-get-group-info): New function.
14160         (gnus-agent-fetch-articles): Use
14161         gnus-agent-update-files-total-fetched-for to increment disk space
14162         used.
14163         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14164         gnus-agent-update-view-total-fetched-for to increment disk space
14165         used.
14166         (gnus-agent-get-local): Added optional parameters to avoid calling
14167         gnus-group-real-name and gnus-find-method-for-group.
14168         (gnus-agent-set-local): Delete stored entry if either min, or max,
14169         are nil.
14170         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14171         quit, use gnus-agent-regenerate-group to record existance of any
14172         articles fetched to disk before the quit occurred.
14173         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14174         gnus-agent-update-view-total-fetched-for, and
14175         gnus-agent-update-files-total-fetched-for to decrement disk space
14176         used.
14177         (gnus-agent-retrieve-headers): Use
14178         gnus-agent-update-view-total-fetched-for to increment disk space
14179         used.
14180         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14181         with gnus-agent-update-files-total-fetched-for to decrement disk
14182         space and fresh group buffer.
14183         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14184         (gnus-agent-need-update-total-fetched-for): New variable.
14185         (gnus-agent-update-files-total-fetched-for): New function.
14186         (gnus-agent-update-view-total-fetched-for): New function.
14187         (gnus-agent-total-fetched-for): New function.
14188
14189         * gnus-cache.el (gnus-cache-save-buffers): Use
14190         gnus-cache-update-overview-total-fetched-for to change disk space
14191         used by this group.
14192         (gnus-cache-possibly-enter-article): Use
14193         gnus-cache-update-file-total-fetched-for to increment disk space
14194         used by this group.
14195         (gnus-cache-possibly-remove-article): Use
14196         gnus-cache-update-file-total-fetched-for to decrement disk space
14197         used by this group.
14198         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14199         (gnus-cache-rename-group): New function.
14200         (gnus-cache-delete-group): New function.
14201         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14202         (gnus-cache-need-update-total-fetched-for): New variable.
14203         (gnus-cache-with-refreshed-group): New macro.
14204         (gnus-cache-update-file-total-fetched-for): New function.
14205         (gnus-cache-update-overview-total-fetched-for): New function.
14206         (gnus-cache-rename-group-total-fetched-for): New function.
14207         (gnus-cache-delete-group-total-fetched-for): New function.
14208         (gnus-cache-total-fetched-for): New function.
14209
14210         * gnus-group.el: Require gnus-sum and autoload functions to
14211         resolve warnings when gnus-group.el compiled alone.
14212         (gnus-group-line-format): Documented new %F.
14213         (size of Fetched data) group line format; identifies disk space
14214         used by agent and cache.
14215         (gnus-group-line-format-alist): Defined new F format.
14216         (gnus-total-fetched-for): New function.
14217         (gnus-group-delete-group): No longer update
14218         gnus-cache-active-altered as gnus-request-delete-group now keeps
14219         the cache in sync.
14220         (gnus-group-list-active): Let the agent store a server's active
14221         list if currently plugged.
14222
14223         * gnus-int.el (gnus-request-delete-group):
14224         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14225         local disk in sync with the server.
14226         (gnus-request-rename-group):
14227         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14228         local disk in sync with the server.
14229
14230         * gnus-start.el (gnus-get-unread-articles):
14231         Cosmetic simplification to logic.
14232
14233         * gnus-util.el (gnus-rename-file): New function.
14234
14235 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14236
14237         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14238
14239 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14240
14241         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14242         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14243
14244 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14245
14246         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14247         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14248
14249 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14250
14251         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14252
14253 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14254
14255         * spam.el (spam-set-difference): Add function to replace
14256         gnus-set-difference in spam.el.
14257         (spam-summary-prepare-exit): Use spam-set-difference.
14258
14259 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14260
14261         * gnus-registry.el (gnus-registry-cache-file): Update to use
14262         gnus-dribble-directory OR gnus-home-directory OR ~.
14263         (gnus-registry-split-fancy-with-parent): Fix doc.
14264
14265 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14266
14267         * message.el (message-exchange-point-and-mark): Use
14268         message-mark-active-p.  Suggested by Jesper Harder
14269         <harder@ifa.au.dk>.
14270
14271 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14272
14273         * message.el (message-exchange-point-and-mark): Don't activate
14274         region if it was inactive.  Suggested by Hiroshi Fujishima
14275         <pooh@nature.tsukuba.ac.jp>.
14276
14277 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14278
14279         * gnus-art.el (article-display-face): Display Faces in the same
14280         order as X-Faces.
14281
14282 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14283
14284         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14285
14286 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14287
14288         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14289         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14290         (gnus-article-mime-hierarchy): Remove.
14291         (gnus-article-mime-hierarchy-next): Remove.
14292         (gnus-article-mode): Revert 2004-03-19 change.
14293         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14294         (gnus-insert-mime-button): Revert 2004-03-19 change.
14295         (gnus-mime-accumulate-hierarchy): Remove.
14296         (gnus-mime-enter-multipart): Remove.
14297         (gnus-mime-leave-multipart): Remove.
14298         (gnus-mime-display-part): Revert 2004-03-19 change.
14299         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14300
14301         * mml.el (mml-preview): Revert 2004-03-19 change.
14302
14303 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14304
14305         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14306
14307 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14308
14309         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14310         t while entering a file name using the mm-with-multibyte macro.
14311         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14312
14313         * mm-util.el (mm-with-multibyte): New macro.
14314
14315 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14316
14317         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14318         user option.
14319         (gnus-mime-multipart-functions): Doc and customization fix.
14320         (gnus-article-mime-hierarchy): New variable.
14321         (gnus-article-mime-hierarchy-next): New variable.
14322         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14323         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14324         gnus-article-mime-hierarchy-next to nil.
14325         (gnus-insert-mime-button): Show hierarchy numbers.
14326         (gnus-mime-accumulate-hierarchy): New function.
14327         (gnus-mime-enter-multipart): New function.
14328         (gnus-mime-leave-multipart): New function.
14329         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14330         (gnus-mime-display-alternative): Show hierarchy numbers.
14331
14332         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14333         gnus-article-mime-hierarchy-next to nil.
14334
14335 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14336
14337         * dns.el: Don't require gnus-xmas.
14338
14339 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14340
14341         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14342         inline PGP.
14343         (mml-menu): Disable mml-quote-region if mark is inactive.
14344
14345 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14346
14347         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
14348         when the group's active is not available.
14349
14350 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14351
14352         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
14353         error.
14354
14355 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
14356
14357         * imap.el (imap-store-password): New variable.
14358         (imap-interactive-login): Use it.
14359         Suggested by Mark Plaksin <happy@mcplaksin.org>.
14360
14361 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14362
14363         * gnus-art.el (gnus-article-read-summary-keys): Restore new
14364         window-start and hscroll to summary window.
14365
14366 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14367
14368         * gnus-start.el (gnus-convert-old-newsrc): Only write the
14369         conversion message to newsrc-dribble when an actual conversion is
14370         performed.
14371
14372 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
14373
14374         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
14375
14376 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14377
14378         * mm-decode.el (mm-complicated-handles): New function reviving
14379         former definition of mm-multiple-handles.
14380
14381         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
14382         (gnus-mime-delete-part): Use it.
14383
14384 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14385
14386         * gnus-agent.el (gnus-agent-read-local): Bind
14387         nnheader-file-coding-system to gnus-agent-file-coding-system to
14388         avoid the implicit assumption that they will always be equal.
14389         (gnus-agent-save-local): Bind buffer-file-coding-system, not
14390         coding-system-for-write, as the with-temp-file macro first prints
14391         to a buffer then saves the buffer.
14392
14393 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14394
14395         * gnus-art.el (gnus-article-edit-part): New function.
14396         (gnus-mime-save-part-and-strip): Use it; do query instead of
14397         signaling an error; don't use mm-multiple-handles.
14398         (gnus-mime-delete-part): Ditto.
14399
14400 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14401
14402         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
14403         old file versions.
14404         (gnus-group-prepare-hook): Removed function that converted list
14405         form of gnus-agent-expire-days to group properties.
14406
14407         * gnus-int.el: Autoload gnus-agent-regenerate-group.
14408         (gnus-request-accept-article): Re-indented.
14409
14410         * gnus-start.el (gnus-convert-old-newsrc): Registered new
14411         converters to handle old agent file formats.  Added logic for a
14412         "backup before upgrading warning".
14413         (gnus-convert-mark-converter-prompt): Developers can mark
14414         functions as needing (default), or not needing,
14415         gnus-convert-old-newsrc's "backup before upgrading warning".
14416         (gnus-convert-converter-needs-prompt): Tests whether the user
14417         should be protected from potentially irreversable changes by the
14418         function.
14419
14420         * legacy-gnus-agent.el: New.  Provides converters that are only
14421         loaded when gnus-convert-old-newsrc needs to call them.
14422
14423 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14424
14425         * mail-source.el (mail-source-touch-pop): Doc fix.
14426
14427         * message.el (message-smtpmail-send-it): Doc fix.
14428
14429 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
14430
14431         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
14432
14433         * nnmail.el (nnmail-split-fancy): do.
14434
14435         * gnus-kill.el (gnus-kill, gnus-execute): do.
14436
14437 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
14438
14439         * gnus-sum.el (gnus-widget-reversible-match)
14440         (gnus-widget-reversible-to-internal)
14441         (gnus-widget-reversible-to-external): New functions.
14442         (gnus-widget-reversible): New widget.
14443         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
14444
14445 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
14446
14447         * gnus-sum.el (gnus-thread-sort-functions)
14448         (gnus-article-sort-functions): Document `(not F)' items.
14449
14450 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
14451
14452         * spam.el (spam-use-gmane-xref): Add new backend.
14453         (spam-gmane-xref-spam-group): Add variable to control the name of the
14454         Gmane spam group.
14455         (spam-blackhole-servers, spam-blackhole-good-server-regex)
14456         (spam-regex-headers-spam, spam-regex-headers-ham)
14457         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
14458         (spam-list-of-checks): Add spam-use-gmane-xref to list of
14459         backends and checks.
14460         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
14461
14462         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
14463         an autodetect method.
14464
14465 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14466
14467         * gnus-int.el (gnus-request-accept-article): Inform the agent that
14468         articles are being added to a group.
14469         (gnus-request-replace-article): Inform the agent that articles
14470         need to be uncached as the cached contents are no longer valid.
14471
14472 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14473
14474         * binhex.el: Don't autoload executable-find.
14475
14476         * canlock.el: Don't autoload mail-fetch-field.
14477
14478         * dgnushack.el: Autoload c-mode for XEmacs.
14479
14480         * gnus-ems.el: Don't autoload appt-select-lowest-window.
14481
14482         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
14483         rmail-dont-reply-to and rmail-output.
14484
14485         * gnus-score.el: Don't autoload ffap-string-at-point.
14486
14487         * gnus-setup.el: Don't autoload sc-cite-original.
14488
14489         * imap.el: Don't autoload base64-decode-string,
14490         base64-encode-string and md5.
14491
14492         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
14493         and rmail-msg-restore-non-pruned-header.
14494
14495         * mm-decode.el: Don't autoload executable-find.
14496
14497         * mm-url.el: Don't autoload executable-find.
14498
14499         * mm-view.el: Don't autoload diff-mode.
14500
14501         * nndb.el: Don't autoload news-reply-mode, news-setup,
14502         cancel-timer and telnet.
14503
14504         * password.el: Don't autoload run-at-time for Emacs.
14505
14506         * sha1-el.el: Don't autoload executable-find.
14507
14508         * sieve-mode.el: Don't autoload c-mode.
14509
14510         * uudecode.el: Don't autoload executable-find.
14511
14512 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14513
14514         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
14515         (gnus-agent-possibly-alter-active): Avoid null in numeric
14516         comparison.
14517         (gnus-agent-set-local): Refuse to save null in local object table.
14518         (gnus-agent-regenerate-group): The REREAD parameter can now be a
14519         list of articles that will be marked as unread.
14520
14521 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14522
14523         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
14524
14525 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
14526
14527         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
14528         language tags.
14529
14530 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
14531
14532         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
14533         Don't bind "obarray".
14534
14535         * gnus-sum.el (gnus-thread-sort-functions): Added
14536         `gnus-thread-sort-by-most-recent-number' and
14537         `gnus-thread-sort-by-most-recent-date'.
14538         Reported by Kai Grossjohann <kai@emptydomain.de>.
14539
14540 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14541
14542         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
14543
14544 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14545
14546         * gnus-cus.el (gnus-agent-customize-category): Removed
14547         ignore-errors macro reference that required cl to be loaded at
14548         run-time.
14549
14550         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
14551         single-interval range of the form (min . max).  Previously the
14552         range had to look like ((min . max)).  Likewise, return
14553         (min . max) rather than ((min . max)).
14554         (gnus-range-map): Use gnus-range-normalize to accept
14555         single-interval range.
14556
14557         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
14558         the cache, but not the agent, now appear with their usual face.
14559
14560         * dgnushack.el (loaddir): New variable that is bound to the
14561         directory containing the dgnushack.el file. Use loaddir, rather
14562         than srcdir, to update load-path. Change lets dgnushack compile
14563         code in directories other than GNUS/lisp.
14564
14565 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14566
14567         * lpath.el: Don't bind w3m-safe-url-regexp.
14568
14569         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
14570         w3m-safe-url-regexp variable buffer-local.
14571
14572         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
14573
14574 2004-02-27  Simon Josefsson  <jas@extundo.com>
14575
14576         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
14577         gnus-group-real-prefix.
14578         (gnus-summary-move-article): Use it, instead of
14579         gnus-group-real-prefix.
14580
14581 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14582
14583         * lpath.el: Bind w3m-safe-url-regexp.
14584
14585         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
14586         w3m-safe-url-regexp variable buffer-local and set it as the value
14587         of mm-w3m-safe-url-regexp.
14588
14589         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
14590
14591         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
14592         parsing gnus-posting-styles when the message is not for replying.
14593
14594         * dgnushack.el: Autoload sgml-mode for XEmacs.
14595
14596         * nnrss.el (nnrss-opml-export): Use
14597         mm-set-buffer-file-coding-system instead of
14598         set-buffer-file-coding-system.
14599
14600 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
14601
14602         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
14603         of checkdoc.el).
14604         * nnrss.el: do.
14605         * gnus-mlspl.el: do.
14606         * gnus-ml.el: do.
14607         * gnus-srvr.el: do.
14608
14609         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
14610
14611 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
14612
14613         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
14614         Corrections to custom-manual links.
14615
14616         * gnus-art.el (gnus-article): Ditto.
14617
14618         * mm-decode.el (mime-display, mime-security): Ditto.
14619
14620 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
14621
14622         * flow-fill.el: Typo.
14623
14624 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
14625
14626         * spam-wash.el: New file.
14627
14628 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
14629
14630         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
14631
14632 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
14633
14634         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
14635         to be run with new-articles as LIST1, not LIST2.
14636         (spam-registration-functions): Add spam-use-ham-copy as a nil
14637         registration backend.
14638
14639 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
14640
14641         * spam-stat.el (spam-stat-washing-hook): New option.
14642         (spam-stat-buffer-words): Use it.
14643         (spam-stat-process-directory, spam-stat-test-directory): Use
14644         insert-file-contents-literally.
14645         (spam-stat-coding-system): New variable.
14646         (spam-stat-load, spam-stat-save): Use it.
14647
14648 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14649
14650         * spam-report.el (spam-report-plug-agent): Quote
14651         spam-report-url-to-file and spam-report-url-ping-plain.
14652
14653 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
14654
14655         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
14656         / in mailto URLs.
14657
14658 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
14659
14660         * spam-report.el (spam-report-process-queue): Fix interactive use.
14661         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
14662         (spam-report-unplug-agent): Doc fixes.
14663         (spam-report-url-ping-mm-url, spam-report-url-to-file)
14664         (spam-report-agentize, spam-report-deagentize): Autoload.
14665
14666 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14667
14668         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
14669
14670         * message.el (message-setup-fill-variables): Add mml tags to
14671         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
14672         <ajk@iu.edu>.
14673         (message-mode): Don't modify paragraph-separate there.
14674
14675 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14676
14677         * compface.el (uncompface-use-external): Default to undecided.
14678         (uncompface-use-external-threshold): New variable.
14679         (uncompface-float-time): New macro.
14680         (uncompface): Determine whether to use the external decoder if
14681         uncompface-use-external is undecided.
14682
14683 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14684
14685         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
14686         after images.
14687
14688         * gnus-art.el (gnus-mime-display-single): Remove dead code.
14689
14690 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
14691
14692         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
14693
14694         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
14695
14696         * gnus-sum.el (gnus-summary-limit-to-age)
14697         (gnus-summary-limit-children): do.
14698
14699         * gnus-int.el (gnus-request-scan): do.
14700
14701         * gnus-group.el (gnus-group-suspend): do.
14702
14703         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
14704
14705         * gnus-cite.el (gnus-cite-parse-attributions): do.
14706
14707         * gnus-agent.el (gnus-summary-set-agent-mark)
14708         (gnus-agent-regenerate-group): do.
14709
14710         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
14711
14712         * binhex.el (binhex-decode-region-internal): do.
14713
14714 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14715
14716         * gnus-fun.el (gnus-face-properties-alist): New user option.
14717         (gnus-display-x-face-in-from): Use it.
14718
14719         * gnus-art.el (article-display-face): Ditto.
14720
14721         * compface.el (uncompface-use-external): Default to nil.
14722
14723 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
14724
14725         * nntp.el (nntp-erase-buffer): New function.
14726         (nntp-retrieve-data, nntp-send-command)
14727         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
14728         (nntp-possibly-change-group): Use it.
14729
14730         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
14731         with-current-buffer.
14732
14733 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
14734
14735         * compface.el: Merge the ELisp-based uncompface program.
14736         (compface): New customization group.
14737         (uncompface-use-external): New user option.
14738         (uncompface): Call uncompface-internal if uncompface-use-external
14739         is nil.
14740         (uncompface-internal): New function.  Note that there are also
14741         some other functions and variables added for this function.
14742
14743 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
14744
14745         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
14746         if necessary.
14747
14748 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
14749
14750         * spam-report.el (spam-report-unplug-agent)
14751         (spam-report-plug-agent, spam-report-deagentize)
14752         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
14753         Add support for the Agent in spam-report: when unplugged, report to a
14754         file; when plugged, submit all the requests.
14755
14756         * spam.el (spam-register-routine): Fix message about
14757         registration.
14758
14759 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
14760
14761         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
14762         dependencies.
14763         (rfc2047-encode): Use it.
14764
14765         * gnus-art.el (gnus-button-marker-list): Move before first
14766         reference.
14767
14768         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
14769         (imap-parse-body): Fix format string mismatch.
14770
14771         * gnus-score.el (gnus-summary-increase-score): do.
14772
14773         * nnrss.el (nnrss-close): New function.
14774
14775 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
14776
14777         * nnrss.el (nnrss-make-filename): New function.
14778         (nnrss-request-delete-group, nnrss-read-server-data)
14779         (nnrss-save-server-data, nnrss-read-group-data)
14780         (nnrss-save-group-data): Use it.
14781         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
14782         (nnrss-read-server-data, nnrss-read-group-data): Use load.
14783         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
14784
14785 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
14786
14787         * mml.el (mml-compute-boundary-1): Don't uncompress files.
14788
14789 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
14790
14791         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
14792         files.
14793
14794         * message.el (message-generate-headers-first): Don't quote nil
14795         and t in docstrings.
14796
14797         * imap.el (imap-id): do.
14798
14799         * gnus-agent.el (gnus-agent-consider-all-articles)
14800         (gnus-agent-queue-mail): do.
14801
14802 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
14803
14804         * spam-report.el (spam-report-process-queue): New function.
14805         Process requests from `spam-report-requests-file'.
14806         (spam-report-process-queue): Doc fix.
14807
14808 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
14809
14810         * spam.el (spam-register-routine)
14811         (spam-log-processing-to-registry, spam-log-registered-p)
14812         (spam-log-unregistration-needed-p, spam-log-undo-registration):
14813         Change "check" to "spam-check" for semi-clarity.
14814
14815 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
14816
14817         * pop3.el: Require nnheader.
14818
14819         * mml-smime.el: Require cl.  Autoload message-fetch-field.
14820
14821         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
14822
14823         * gnus-picon.el: Require cl.
14824
14825         * gnus-fun.el: Require gnus-ems and gnus-util.
14826
14827         * gnus.el (gnus-method-to-server): Move defsubst before first use.
14828
14829         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
14830
14831         * gnus-art.el (gnus-article-edit-mode): Define before first
14832         reference.
14833
14834 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
14835
14836         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
14837         (gnus-uu-post-encoded): Use point-at-bol.
14838
14839         * gnus-topic.el (gnus-group-active-topic-p): do.
14840
14841         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
14842
14843         * gnus-group.el (gnus-group-kill-region): do.
14844
14845         * gnus-art.el (article-date-ut): do.
14846
14847         * message.el (message-fetch-field): Remove redundant
14848         case-fold-search binding.
14849         (message-narrow-to-field): Simplify.
14850
14851 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
14852
14853         * spam.el (spam-directory): Derive from `gnus-directory'.
14854
14855         * spam-report.el (spam-report-url-to-file)
14856         (spam-report-requests-file): New function and variable for offline
14857         reporting.
14858         (spam-report-url-ping-function): Add `spam-report-url-to-file'
14859         and user defined function.
14860         (spam-report-url-ping-mm-url): Remove doubled slash.
14861
14862 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
14863
14864         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
14865
14866 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
14867
14868         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
14869         format string mismatch.
14870
14871         * sieve.el (sieve-deactivate-all): do.
14872
14873         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
14874
14875         * nnlistserv.el (nnlistserv-kk-wash-article): do.
14876
14877         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
14878
14879         * mm-bodies.el (mm-7bit-chars): Don't include \r.
14880
14881 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
14882
14883         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
14884         the list of checks.
14885
14886 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
14887
14888         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
14889         padding.
14890
14891 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
14892
14893         * mm-view.el (mm-fill-flowed): New variable.
14894         (mm-inline-text): Use it.
14895
14896 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
14897
14898         * spam.el (spam-spamassassin-register-ham-routine)
14899         (spam-spamassassin-register-spam-routine): Fix function names.
14900
14901 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14902
14903         * gnus.el (gnus-tmp-grouplens): Remove.
14904         (gnus-summary-line-format): Remove grouplens.
14905
14906         * gnus-group.el (gnus-group-line-format): Ditto.
14907
14908         * gnus-spec.el (gnus-format-specs): Ditto.
14909         (gnus-update-format-specifications): Flush the group format spec
14910         cache if there's the grouplens stuff.
14911         (gnus-parse-simple-format): Replace %l with the empty string.
14912
14913 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
14914
14915         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
14916         omission.
14917
14918 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14919
14920         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
14921         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14922
14923 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
14924
14925         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
14926         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
14927         New macros and functions.
14928         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
14929         Handle > NLINK_MAX messages.
14930         * nnmaildir.el (nnmaildir-request-set-mark): Use
14931         nnmaildir--emlink-p and nnmaildir--eexist-p.
14932
14933 2004-01-25  Alex Schroeder  <alex@gnu.org>
14934
14935         * spam-stat.el (spam-stat-process-directory-age): New option.
14936         (spam-stat-process-directory): Use it.
14937
14938 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
14939
14940         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
14941         (spam-stat-save): Accept prefix argument.
14942
14943 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
14944
14945         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
14946         links" error.
14947
14948 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14949
14950         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
14951         the rest of the and/or forms.
14952
14953 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
14954
14955         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
14956         compatibility with old .newsrc.eld files.
14957
14958         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
14959
14960         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
14961
14962         * gnus-start.el (gnus-1): do.
14963
14964         * gnus-group.el (gnus-group-line-format-alist): do.
14965
14966         * gnus.el (gnus-use-grouplens, gnus-visual): do.
14967
14968         * gnus-gl.el: Remove.
14969
14970 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14971
14972         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
14973         marks consisting of a single range {for example, (3 . 5)} rather
14974         than a list of a single range { ((3 . 5)) }.
14975
14976 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
14977
14978         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
14979         with-current-buffer.
14980         (spam-stat-store-current-buffer): Use insert-buffer-substring to
14981         avoid consing a string.
14982
14983         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
14984         Remove obsolete entries for big5 and gb2312.
14985
14986 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14987
14988         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
14989         uncompressed list.
14990
14991 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
14992
14993         * spam-stat.el (spam-stat-strip-xref): New function.
14994         (spam-stat-process-directory): Use it.
14995
14996         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
14997         here -- it's done in message-fetch-field.
14998
14999 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15000
15001         * gnus-agent.el (gnus-agent-queue-mail)
15002         (gnus-agent-prompt-send-queue): New variables.
15003         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15004         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15005         "nndraft:queue" along to gnus-draft-send.  Use
15006         gnus-agent-prompt-send-queue.
15007         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15008         is "nndraft:queue".  Suggested by Gaute Strokkenes
15009         <gs234@srcf.ucam.org>
15010
15011         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15012         (agent-enable-undownloaded-faces): Added.
15013         (gnus-agent-cat-groups): Use eval-and-compile, not
15014         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15015         method of gnus-agent-cat-groups even when the buffer has been
15016         evaled.
15017         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15018         delete gnus-agent-save-active-1.
15019         (gnus-agent-save-groups): Deleted.  Identical to
15020         gnus-agent-save-active.
15021         (gnus-agent-write-active): No longer adjust agent's copy of active
15022         file as agent's adjustments are now stored in their own
15023         file.  Removed optional parameter.
15024         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15025         servers.  Add use of min/max range limits from server's local
15026         file.
15027         (gnus-agent-save-alist): Removed unused optional argument.
15028         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15029         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15030         (gnus-agent-set-local): A per-server file that keeps min/max range
15031         limits for articles known to the agent.  Provides a fast mechanism
15032         for altering many active ranges.
15033         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15034         active file (local makes it unnecessary).
15035         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15036
15037         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15038         (agent-enable-undownloaded-faces): Added.
15039
15040         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15041         disable it when sending to "nndraft:queue".
15042         (gnus-group-send-queue): Add safety check to avoid sending queue
15043         when unplugged.
15044
15045         * gnus-group.el (gnus-group-catchup): Use new
15046         gnus-sequence-of-unread-articles, not
15047         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15048         numbers of articles.  Use gnus-range-map to avoid having to
15049         uncompress the unread list.
15050         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15051         Fixed invalid ange-ftp reference.
15052
15053         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15054         (gnus-sorted-range-intersection): Intersection of two ranges
15055         without requiring that they first be uncompressed.
15056
15057         * gnus-start.el (gnus-activate-group): Unless blocked by the
15058         caller, possibly expand the active range to include both cached
15059         and agentized articles.
15060         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15061         multiple version-dependent converters.
15062         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15063         gnus-agent-save-active.
15064         (gnus-save-newsrc-file): Save dirty agent range limits.
15065
15066         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15067         gnus-agent-possibly-alter-active.
15068         (gnus-adjust-marked-articles): Faster handling of simple lists.
15069
15070 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15071
15072         * spam-stat.el (spam-stat-test-directory): New optional argument
15073         displays a list of files detected.  Suggested by Andrew Cohen
15074         <cohen@andy.bu.edu>.
15075         (spam-stat-buffer-words-with-scores): Don't narrow and change
15076         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15077
15078 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15079
15080         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15081         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15082         (spam-spamassassin-arguments)
15083         (spam-spamassassin-spam-flag-header)
15084         (spam-spamassassin-positive-spam-flag-header)
15085         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15086         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15087         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15088         (spam-list-of-processors, spam-list-of-checks)
15089         (spam-list-of-statistical-checks, spam-registration-functions)
15090         (spam-check-spamassassin-headers, spam-check-spamassassin)
15091         (spam-spamassassin-score)
15092         (spam-spamassassin-register-with-sa-learn)
15093         (spam-spamassassin-register-spam-routine)
15094         (spam-spamassassin-register-ham-routine)
15095         (spam-assassin-register-spam-routine)
15096         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15097         (spam-bogofilter-score): Fix to show article before scoring.
15098
15099 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15100
15101         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15102         default scoring function.
15103         (spam-generic-score): Call spam-spamassassin-score if
15104         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15105         spam-bogofilter-score otherwise.
15106
15107         * gnus.el (spam-process, spam-autodetect-methods): Add
15108         spamassassin and spamassassin-headers.
15109
15110 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15111
15112         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15113         Suppress unnecessary messages.
15114
15115 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15116
15117         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15118         make-hash-table.
15119
15120 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15121
15122         * canlock.el (base64-encode-string): Don't autoload it.
15123
15124 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15125
15126         * run-at-time.el: Remove useless (require 'itimer),
15127         eval-and-compile and (featurep 'xemacs).
15128
15129 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15130
15131         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15132         GROUP is a virtual group.
15133
15134 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15135
15136         * gnus.el: Autoload `message-y-or-n-p'.
15137
15138 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15139
15140         * pgg-parse.el: Remove unnecessary (require 'custom).
15141
15142         * pgg-def.el: do.
15143
15144         * nnmail.el: do.
15145
15146         * gnus-undo.el: do.
15147
15148         * gnus-picon.el: do.
15149
15150         * gnus-util.el: do.
15151
15152 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15153
15154         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15155
15156 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15157
15158         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15159         handle, as well as a list.
15160
15161         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15162         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15163         (mm-w3m-cid-retrieve): Simplify.
15164
15165 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15166
15167         * message.el (message-kill-to-signature): Allow prefix arg to
15168         specify number of lines to keep before signature.
15169
15170 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15171
15172         * message.el (message-kill-to-signature): Change docstring.
15173
15174 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15175
15176         * canlock.el: Always require sha1-el.
15177         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15178
15179         * message.el: Autoload sha1 only when compiling.
15180
15181         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15182         eudc-expand-inline for XEmacs.
15183
15184 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15185
15186         * message.el (message-canlock-generate): Require sha1-el.
15187
15188 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15189
15190         * message.el (message-expand-name): Silence the byte compiler.
15191
15192         * lpath.el: Add detect-coding-system.
15193
15194         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15195         cus-edit.
15196
15197 2004-01-13  Simon Josefsson  <jas@extundo.com>
15198
15199         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15200         Invoke gnus-score-mode.  Reported by
15201         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15202
15203         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15204         Jim Blandy <jimb@redhat.com> (tiny change).
15205
15206 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15207
15208         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15209
15210 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15211
15212         * spam.el (spam-get-article-as-string): Update to use
15213         gnus-request-article-this-buffer, much simpler.
15214         (spam-get-article-as-buffer): Remove.
15215
15216 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15217
15218         * message.el (message-expand-name): Use EUDC if the user uses that.
15219
15220 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15221
15222         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15223         character for the encoding to avoid consing a string.
15224
15225         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15226         unnecessarily.
15227
15228         * mm-util.el (mm-replace-chars-in-string): Remove.
15229
15230         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15231         of mm-replace-chars-in-string.
15232
15233 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15234
15235         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15236
15237         * mm-util.el (mm-subst-char-in-string): Support inplace.
15238
15239         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15240         a new string in every iteration.  Use shy groups.
15241
15242 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15243
15244         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15245         * gnus-soup.el (gnus-soup-group-brew):
15246         * gnus-msg.el (gnus-put-message):
15247         * gnus-move.el (gnus-group-move-group-to-server):
15248         * gnus-kill.el (gnus-batch-score):
15249         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15250         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15251         (gnus-group-update-group, gnus-group-read-group)
15252         (gnus-group-make-group, gnus-group-make-help-group)
15253         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15254         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15255         (gnus-group-sort-by-unread, gnus-group-catchup)
15256         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15257         (gnus-group-yank-group, gnus-group-set-info)
15258         (gnus-group-list-groups):
15259         * gnus.el (gnus-generate-new-group-name):
15260         * gnus-delay.el (gnus-delay-send-queue):
15261         * nnvirtual.el (nnvirtual-catchup-group):
15262         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15263         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15264         (gnus-group-prepare-topics, gnus-topic-check-topology):
15265         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15266         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15267         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15268         (gnus-group-make-articles-read):
15269         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15270         (gnus-group-change-level, gnus-kill-newsgroup)
15271         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15272         (gnus-get-unread-articles, gnus-make-articles-unread)
15273         (gnus-make-ascending-articles-unread): Use accessor
15274         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15275         to get group information for improved readability.
15276
15277
15278 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15279
15280         * gnus-art.el (article-decode-mime-words, article-babel)
15281         (gnus-article-highlight-signature, gnus-article-add-buttons)
15282         (gnus-signature-toggle): Use gnus-with-article-buffer.
15283
15284         * gnus-art.el (gnus-article-highlight-headers)
15285         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15286
15287         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15288         (gnus-article-set-globals, gnus-request-article-this-buffer)
15289         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15290         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15291         (gnus-mime-display-alternative): Use with-current-buffer.
15292
15293 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15294
15295         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15296         also under 80 char limit, and call gnus-error if needed.
15297         (spam-fetch-article-header): Fix - it was a
15298         buffer-local variable (gnus-newsgroup-data).
15299         (spam-find-spam): Use spam-generate-fake-headers, forget about
15300         spam-insert-fake-headers.
15301         (spam-insert-fake-headers): Remove.
15302
15303 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15304
15305         * deuglify.el (gnus-article-outlook-unwrap-lines)
15306         (gnus-outlook-rearrange-article)
15307         (gnus-outlook-repair-attribution-outlook)
15308         (gnus-outlook-repair-attribution-block)
15309         (gnus-outlook-repair-attribution-other): Remove redundant
15310         save-excursion.
15311
15312 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15313
15314         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15315         (spam-fetch-field-subject-fast)
15316         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15317         (spam-fetch-article-header): Add functions to deal with Gnus
15318         internals for fast retrieval of article header data.
15319         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15320
15321 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15322
15323         * pop3.el (pop3-md5): Remove.
15324         (pop3-apop): Replace pop3-md5 with md5.
15325
15326         * mm-bodies.el: base64 is always built-in.
15327
15328         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15329         with-current-buffer.
15330
15331 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15332
15333         * canlock.el (canlock-insert-header): Remove excessive grouping in
15334         regexp.
15335
15336         * gnus-sum.el (gnus-summary-read-document): Ditto.
15337
15338         * gnus-uu.el (gnus-uu-part-number): Ditto.
15339
15340         * html2text.el (html2text-remove-tags): Ditto.
15341         (html2text-format-tags): Ditto.
15342         (html2text-format-single-elements): Ditto.
15343
15344         * mml.el (mml-parse-1): Ditto.
15345
15346 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15347
15348         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
15349
15350         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
15351
15352         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
15353
15354         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
15355
15356 2003-11-15  Simon Josefsson  <jas@extundo.com>
15357
15358         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
15359         (pgg-gpg-lookup-key): Use regexp match instead of
15360         split-string (split-string is different between emacs 21.2 and
15361         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
15362
15363 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15364
15365         * gnus-art.el (gnus-mime-view-all-parts)
15366         (gnus-article-part-wrapper, gnus-article-view-part): Use
15367         with-current-buffer.
15368
15369 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15370
15371         * spam.el (spam-disable-spam-split-during-ham-respool)
15372         (spam-spamoracle-database, spam-cache-lookups)
15373         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
15374         (spam-group-ham-mark-p, spam-group-spam-mark-p)
15375         (spam-group-ham-marks, spam-group-spam-marks)
15376         (spam-group-spam-contents-p, spam-group-ham-contents-p)
15377         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
15378         also add spam-use-blackholes to the statistical checks.
15379         (spam-fetch-field-fast): Add interface to fetching fields, may
15380         become a macro.
15381         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
15382         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
15383         (spam-insert-fake-headers): Fake an article when needed.
15384         (spam-find-spam): Fake article when possible.
15385         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
15386         (spam-check-bogofilter-headers): Use message-fetch-field instead
15387         of nnmail-fetch-field.
15388
15389 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
15390
15391         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
15392
15393 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15394
15395         * spam.el (spam-split): Do not require spam-use-CHECK to be
15396         enabled if that check is passed to spam-split explicitly; also
15397         fix so 'spam doesn't get converted to spam-split-group when
15398         spam-split-symbolic-return is t.
15399         (spam-find-spam): Find registrations of the article and use those
15400         instead of re-running spam-split to find the spam/ham
15401         classification of the article.
15402         (spam-log-processing-to-registry, spam-log-registered-p)
15403         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15404         Use gnus-error instead of gnus-message.
15405         (spam-log-registration-type): Add function to determine the
15406         classification of a message based on registry entries; will
15407         return nil if both 'spam and 'ham are found.
15408         (spam-check-BBDB): Expand all the BBDB macros here so we can have
15409         a reasonably fast local cache without the loading errors.
15410         (spam-cache-lookups): Set to t by default.
15411         (spam-find-spam): Don't try to guess spam-cache-lookups.
15412         (spam-enter-whitelist, spam-enter-blacklist): Clear the
15413         spam-caches entry.
15414         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
15415         caching of whitelist/blacklist entries.
15416         (spam-check-whitelist, spam-check-blacklist): Invoke
15417         spam-from-listed-p with a type, not a cache variable.
15418         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
15419
15420 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
15421
15422         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
15423
15424         * nnmail.el (nnmail-split-fancy): do.
15425
15426         * mml.el (mml-parse): do.
15427
15428         * gnus-score.el (gnus-enter-score-words-into-hashtb)
15429         (gnus-score-adaptive): do.
15430
15431 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15432
15433         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
15434         (gnus-mime-button-map): Don't set keymap parent.
15435         (gnus-button-ctan-directory-regexp): Use shy grouping.
15436         (gnus-prev-page-map): Don't set keymap parent.
15437         (gnus-prev-page-map): Remove duplicated one.
15438         (gnus-next-page-map): Don't set keymap parent.
15439         (gnus-mime-security-button-map): Ditto.
15440
15441         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
15442         version number.
15443
15444         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
15445
15446 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15447
15448         * canlock.el (canlock-sha1-function): Remove.
15449         (canlock-sha1-function-for-verify): Remove.
15450         (canlock-openssl-program): Remove.
15451         (canlock-openssl-args): Remove.
15452         (canlock-ignore-errors): Remove.
15453         (canlock-sha1-with-openssl): Remove.
15454         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
15455         (canlock-verify): Don't use canlock-ignore-errors.
15456
15457         * sha1-el.el (sha1-string-external): Make it can return a string
15458         in binary form.
15459         (sha1-region-external): Ditto.
15460         (sha1-string-internal): Ditto.
15461         (sha1-region-internal): Ditto.
15462         (sha1-region): Ditto.
15463         (sha1-string): Ditto.
15464         (sha1): Ditto.
15465
15466 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15467
15468         * spam.el (spam-report-articles-gmane): New command.
15469
15470 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15471
15472         * gnus.el: Don't make unnecessary *Group* buffer when loading.
15473
15474         * run-at-time.el (run-at-time-saved): Remove.
15475         (run-at-time): Doc fix.
15476
15477 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
15478
15479         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
15480         (gnus-summary-limit-map): Add it.
15481         (gnus-summary-make-menu-bar): do.
15482
15483 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
15484
15485         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
15486         Make attempt at some caching support (done for BBDB only now).
15487         (spam-find-spam): Set spam-cache-lookups if there are more than 2
15488         addresses to be checked.
15489         (spam-clear-cache-BBDB): Add function, to be invoked by
15490         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
15491         (spam-check-BBDB): Check and use the caches, if
15492         spam-cache-lookups is on, remove superfluous (provide).
15493
15494 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
15495
15496         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
15497
15498 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
15499
15500         * run-at-time.el (run-at-time-saved): Move to after the definition
15501         of `run-at-time'.
15502
15503         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
15504
15505 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15506
15507         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
15508         mm-w3m-local-map-property.
15509
15510         * mm-view.el (mm-w3m-mode-map): Remove.
15511         (mm-w3m-local-map-property): Remove.
15512         (mm-inline-text-html-render-with-w3m): Don't use
15513         mm-w3m-local-map-property.
15514
15515 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15516
15517         * run-at-time.el: New file.
15518
15519         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
15520         under Emacs.
15521
15522         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
15523         of gnus-set-text-properties.
15524
15525         * gnus-uu.el (gnus-uu-save-article): Ditto.
15526
15527         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
15528
15529         * gnus-cite.el (gnus-cite-parse): Ditto.
15530
15531         * gnus-art.el (gnus-button-push): Use set-text-properties instead
15532         of gnus-.
15533
15534         * gnus-xmas.el (run-at-time): Require run-at-time.
15535
15536         * gnus.el: Changed calls to nnheader-run-at-time and
15537         password-run-at-time throughout to use run-at-time directly.
15538
15539         * password.el: Removed definition of run-at-time.
15540
15541         * nnheaderxm.el: Remove definition of run-at-time.
15542
15543 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
15544
15545         * mml.el (mml-minibuffer-read-disposition): Show attachment type
15546         in prompt.
15547
15548 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
15549
15550         * messagexmas.el (message-xmas-redefine): Alias
15551         `message-make-caesar-translation-table' to
15552         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
15553         version.
15554
15555         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
15556         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
15557         `gnus-xmas-set-text-properties'.
15558         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
15559         `gnus-xmas-completing-read'.
15560         (gnus-xmas-completing-read): Removed.
15561         (gnus-xmas-open-network-stream): Removed.
15562
15563         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
15564         XEmacs version.
15565
15566         * dns.el (dns-make-network-process): Use `open-network-stream'
15567         instead of `gnus-xmas-open-network-stream'.
15568
15569         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
15570
15571         * .cvsignore: Add auto-autoloads.el, custom-load.el.
15572
15573 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
15574
15575         * gnus-art.el (gnus-mime-display-alternative)
15576         (gnus-insert-mime-button, gnus-insert-mime-security-button)
15577         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
15578         Don't use gnus-local-map-property.
15579
15580         * gnus-util.el (gnus-local-map-property): Remove.
15581
15582         * mm-view.el (mm-view-pkcs7-decrypt): Replace
15583         gnus-completing-read-maybe-default with completing-read.
15584
15585         * gnus-util.el (gnus-completing-read): do.
15586         (gnus-completing-read-maybe-default): Remove.
15587
15588 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
15589
15590         * password.el: Only autoload `run-at-time' if not XEmacs.
15591         Only autoload the itimer functions if XEmacs.
15592
15593 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15594
15595         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
15596         XEmacsen.
15597
15598         * dgnushack.el: Autoload executable-find for XEmacs.
15599
15600 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
15601
15602         * gnus-art.el (gnus-read-string): Remove.
15603         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
15604         read-string.
15605
15606 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
15607
15608         * netrc.el: Autoload password-read.
15609         (netrc): Add configuration group.
15610         (netrc-encoding-method, netrc-openssl-path): Add
15611         variables for encoding and decoding of files with symmetric
15612         ciphers.
15613         (netrc-encode): Add assistant function to encode a file with
15614         netrc-encoding-method.
15615         (netrc-parse): Add interactive parameter, added optional
15616         decoding if netrc-encoding-method is non-nil but otherwise
15617         behavior is standard.
15618         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
15619         Do s/encode/encrypt/ everywhere.
15620
15621         * spam.el: Remove executable-find autoload.
15622
15623 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
15624
15625         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
15626
15627         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
15628
15629 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
15630
15631         * gnus-art.el (gnus-treat-ansi-sequences)
15632         (article-treat-ansi-sequences): New variable and function.
15633         Suggested by Dan Jacobson <jidanni@jidanni.org>.
15634
15635         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
15636         Use it.
15637
15638 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
15639
15640         * mm-util.el (mm-quote-arg): Remove.
15641
15642         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
15643         shell-quote-argument.
15644
15645         * gnus-uu.el (gnus-uu-command): do.
15646
15647         * gnus-sum.el (gnus-summary-insert-pseudos): do.
15648
15649         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
15650         with make-char.
15651
15652         * mm-util.el (mm-make-char): Remove.
15653
15654         * mml.el (mml-mode): Replace gnus-add-minor-mode with
15655         add-minor-mode.
15656
15657         * gnus-undo.el (gnus-undo-mode): do.
15658
15659         * gnus-topic.el (gnus-topic-mode): do.
15660
15661         * gnus-sum.el (gnus-dead-summary-mode): do.
15662
15663         * gnus-start.el (gnus-slave-mode): do.
15664
15665         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
15666
15667         * gnus-ml.el (gnus-mailing-list-mode): do.
15668
15669         * gnus-gl.el (gnus-grouplens-mode): do.
15670
15671         * gnus-draft.el (gnus-draft-mode): do.
15672
15673         * gnus-dired.el (gnus-dired-mode): do.
15674
15675         * gnus-ems.el (gnus-add-minor-mode): Remove.
15676
15677         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
15678         Replace gnus-char-width with char-width.
15679
15680         * gnus-ems.el (gnus-char-width): Remove.
15681
15682         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
15683         Replace gnus-char-width with char-width.
15684
15685         * gnus-ems.el (gnus-char-width): Remove.
15686
15687         * spam-stat.el (with-syntax-table): Remove with-syntax-table
15688         definition.
15689         Remove Emacs 20 hash table compatibility code.
15690
15691         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
15692         20 compatibility code.
15693
15694         * spam.el (spam-point-at-eol): Replace with point-at-eol.
15695
15696         * smime.el (smime-point-at-eol): Replace with point-at-eol.
15697
15698         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
15699         with point-at-{eol,bol}.
15700
15701         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
15702
15703         * imap.el (imap-point-at-eol): Replace with point-at-eol.
15704
15705         * flow-fill.el (fill-flowed-point-at-bol)
15706         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
15707
15708         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
15709         Replace with point-at-{eol,bol} throughout all files.
15710
15711 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15712
15713         * ntlm.el (ntlm-string-as-unibyte): New macro.
15714         (ntlm-build-auth-response): Use it.
15715
15716         Remove Emacs 20 stuff:
15717         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
15718         (butlast, mapc, remove): Remove the compiler macros.
15719         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
15720         of delq and copy-sequence.
15721         * gnus-art.el (popup-menu): Remove the compiler macro.
15722         * nnmail.el (nnmail-split-fancy): Don't support customizing with
15723         Emacs 20.
15724
15725 2004-01-05  Simon Josefsson  <jas@extundo.com>
15726
15727         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
15728         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
15729         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
15730         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
15731         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
15732         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
15733         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
15734         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
15735         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
15736         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
15737         ntlm-string-permute, string-lshift into ntlm-string-lshift,
15738         string-xor into ntlm-string-xor.  Suggested by
15739         Jesper Harder <harder@myrealbox.com>.
15740
15741         * ntlm.el: Don't include poem.
15742
15743         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
15744         Jesper Harder <harder@myrealbox.com>.
15745
15746         * sasl-ntlm.el, ntlm.el, md4.el: New files.
15747
15748         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
15749         probably breaks emacs with DL patch, but do we care? Is anyone
15750         still using the DL stuff?)
15751
15752         * sieve-manage.el: Use the password package.
15753         (sieve-manage-read-passwd): Remove.
15754         (sieve-manage-interactive-login): Use password.  Re-add
15755         condition-case around loop.
15756
15757         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
15758         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
15759         the password package.
15760
15761 2003-02-19  Simon Josefsson  <jas@extundo.com>
15762
15763         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
15764         token.
15765
15766 2002-08-07  Simon Josefsson  <jas@extundo.com>
15767
15768         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
15769         (sieve-manage-authenticators):
15770         (sieve-manage-authenticator-alist): Add some SASL mechs.
15771         (sieve-sasl-auth): New function.
15772         (sieve-manage-cram-md5-auth):
15773         (sieve-manage-plain-auth): Rewrite using SASL library.
15774         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
15775         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
15776         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
15777         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
15778
15779 2004-01-05  Simon Josefsson  <jas@extundo.com>
15780
15781         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
15782         New files.
15783
15784 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15785
15786         * gnus-group.el (gnus-no-groups-message): Update.
15787
15788         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
15789
15790 2003-11-09  Simon Josefsson  <jas@extundo.com>
15791
15792         * imap.el: Support for ID IMAP extension (RFC 2971).
15793         (imap-local-variables): Add imap-id.
15794         (imap-id): New variable.
15795         (imap-id): New function.
15796         (imap-parse-response): Parse untagged ID response.
15797         * nnimap.el (nnimap-id): New variable.
15798         (nnimap-open-connection): Use it.
15799
15800 2003-12-28  Simon Josefsson  <jas@extundo.com>
15801
15802         * gnus-score.el (gnus-score-edit-all-score): New.
15803         * gnus-group.el (gnus-group-score-map): Bind it to W e.
15804
15805 2004-01-04  Simon Josefsson  <jas@extundo.com>
15806
15807         * password.el: Add.
15808
15809 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
15810
15811         * dns.el (dns-query-types): Fix typo.
15812         (dns-query-types): New function.
15813         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
15814         PTR and SOA replies, see RFC 1035.
15815
15816 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15817
15818         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
15819
15820         * Moved to Changelog.2.
15821
15822 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15823
15824         * gnus.el (gnus-version-number): Bump version.
15825
15826 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15827
15828         * gnus.el: No Gnus v0.1 is released.
15829
15830 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15831
15832         * gnus.el: No Gnus v0.0 is released.
15833
15834 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15835
15836         * gnus.el (gnus-version-number): Bump.
15837         (gnus-version): No.
15838
15839 See ChangeLog.2 for earlier changes.
15840
15841     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
15842       Free Software Foundation, Inc.
15843
15844   This file is part of GNU Emacs.
15845
15846   GNU Emacs is free software: you can redistribute it and/or modify
15847   it under the terms of the GNU General Public License as published by
15848   the Free Software Foundation, either version 3 of the License, or
15849   (at your option) any later version.
15850
15851   GNU Emacs is distributed in the hope that it will be useful,
15852   but WITHOUT ANY WARRANTY; without even the implied warranty of
15853   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15854   GNU General Public License for more details.
15855
15856   You should have received a copy of the GNU General Public License
15857   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
15858
15859 ;; Local Variables:
15860 ;; coding: utf-8
15861 ;; fill-column: 79
15862 ;; add-log-time-zone-rule: t
15863 ;; End: