mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil, assuming that...
[gnus] / lisp / ChangeLog
1 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2
3         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
4         assuming that article displaying or another mml-preview may be
5         interrupted for an error or for the like.
6
7         * shr.el (shr-get-background): Fix argument name.
8
9 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10
11         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
12
13         * gnus-sum.el (gnus-summary-include-articles): New function.
14
15         * message.el (message-goto-body): called-interactively-p needs a
16         parameter, so use `any'.
17
18         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
19         clear marks before moving, since they're synced from the Gnus side
20         first.
21
22         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
23         (gnus-summary-move-article): Copy over all marks before moving, so that
24         IMAP doesn't think a new article has arrived.
25
26 2010-11-24  Julien Danjou  <julien@danjou.info>
27
28         * shr.el (shr-insert-background-overlay): Fix typo.
29         (shr-render-td): Copy the background before rendering.
30
31         * shr-color.el (shr-color-visible): Fix docstring.
32
33         * shr.el (shr-tag-table): Add bgcolor support.
34         (shr-render-td): Add bgcolor support.
35         (shr-get-background): Add.
36         (shr-insert-foreground-overlay): Use shr-get-background.
37
38         * message.el (message-goto-body): Use called-interactively-p.
39         (message-in-body-p): message-goto-body returns point.
40
41 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
42
43         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
44         Fixes something or other in Emacs 23, and is backwards compatible.
45
46         * message.el (message-goto-body): Remove the <#secure special-casing,
47         which is too special.
48
49         * shr.el (shr-parse-style): Drop !important from styles.
50
51 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
52
53         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
54         this function to return incorrect results when calling it with an
55         explicit article argument different from
56         (gnus-summary-article-number).
57
58 2010-11-24  Julien Danjou  <julien@danjou.info>
59
60         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
61         (shr-tag-body): Add background support.
62         (shr-descend): Add background support.
63         (shr-tag-title): Add.
64
65         * shr-color.el (shr-color-visible): Really return original background
66         if fixed.
67
68 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
69
70         * shr.el (shr-color-check): Protect against non-existant colour names.
71
72 2010-11-24  Julien Danjou  <julien@danjou.info>
73
74         * color-lab.el: Require 'cl when compiling.
75
76         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
77
78         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
79         matched part.
80
81         * color-lab.el: Fix all expt calls to use float type.
82
83 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
84
85         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
86         expression to shr-color-check as is.
87
88         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
89
90         * color-lab.el: Add coding cookie.
91         (float-pi): Use eval-and-compile.
92
93         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
94         compiled for Emacsen having no `libxml-parse-html-region' support.
95
96 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
97
98         * shr.el (shr-insert-color-overlay): Split stuff like
99         "#444444 !important" to find the real colour.
100         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
101         parse <font color="red"> entries.
102
103 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
104
105         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
106         point when parsing headers.
107
108         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
109         is positioned properly when parsing headers.
110
111 2010-11-23  Julien Danjou  <julien@danjou.info>
112
113         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
114
115         * shr-color.el (shr-color->hexadecimal): Add support for color names.
116
117         * shr.el (shr-parse-style): Replace \n with space in style parsing.
118
119         * shr-color.el (shr-color-hsl-to-rgb-fractions): Use
120         shr-color-hue-to-rgb.
121         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
122
123 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
124
125         * shr.el (shr-color->hexadecimal): Autoload.
126         (shr-descend): Add color to all tags.
127
128 2010-11-22  Julien Danjou  <julien@danjou.info>
129
130         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
131         shr-color->hexadecimal.
132
133         * shr-color.el (shr-color->hexadecimal): Add converting functions for
134         RGB() or HSL() color representation.
135
136         * shr.el (shr-tag-font): Add.
137         (shr-tag-color-check): New function to get better colors.
138         (shr-tag-insert-color-overlay): Factorize code between tag-font and
139         tag-span.
140
141         * shr-color.el: New file.
142
143         * color-lab.el: New file.
144
145         * gnus-art.el (gnus-url-mailto): Do not downcase args.
146
147 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
148
149         * nnir.el: Fix typo in comments.
150         (nnir-run-imap): Simplify code. No need to reverse artlist.
151         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
152
153 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
154
155         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
156
157         * nnimap.el (nnimap-get-capabilities): Refactor out.
158         (nnimap-open-connection): Re-request capabilities after STARTTLS.
159
160 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
161
162         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
163         appearing when `mm-uu-hide-markers' is nil.
164
165 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
166
167         * nnimap.el (nnimap-unselect-group): Make into its own function.
168         (nnimap-request-rename-group): Unselect group before renaming.
169         This had gotten lost somewhere.
170         (nnimap-request-accept-article): Keep track of examined groups, and
171         unselect the group before APPENDing to read-only groups.
172         (nnimap-request-move-article): Clear flags before moving so that they
173         can be re-set later.
174
175 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
176
177         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
178         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
179
180 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
181
182         * gnus-art.el (gnus-mime-display-single)
183         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
184         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
185         parameter.
186
187 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
188
189         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
190         (shr-table-vertical-line): New variable.
191         (shr-insert-table): Use it.
192
193 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
194
195         * gnus-html.el (gnus-html-wash-images): Don't display images if
196         gnus-inhibit-images is non-nil; register displayer for cid images.
197         (gnus-html-display-image): Work for cid image.
198         (gnus-html-insert-image): Allow arguments.
199         (gnus-html-put-image): Inhibit read-only.
200         (gnus-html-prefetch-images): Don't prefetch images if
201         gnus-inhibit-images is non-nil.
202
203 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
204
205         * shr.el (shr-put-image): Break lines when inserting big pictures.
206
207 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
208
209         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
210         sender, thanks Katsumi Yamaoka.
211
212 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
213
214         * nnir.el (nnir-run-imap): Reverse the article list for each group
215         rather than the whole list.
216
217 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
218
219         * shr.el (shr-image-displayer): Protect function against non-existent
220         image source.
221
222         * gnus-art.el (gnus-inhibit-images): New user option.
223         (gnus-mime-display-single): Don't display image if it is non-nil.
224
225         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
226         gnus-inhibit-images.
227
228         * shr.el (shr-image-displayer): New function.
229         (shr-tag-img): Use it.
230
231 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
232
233         * mml2015.el (mml2015-epg-sign): Use From header.
234
235 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
236
237         * gnus-html.el (gnus-html-wash-images): Register a displayer.
238
239         * gnus-util.el (gnus-find-text-property-region): Return markers.
240
241         * shr.el (shr-tag-img): Put a displayer in the text property.
242
243         * gnus-util.el (gnus-find-text-property-region): New utility function.
244
245         * gnus-html.el (gnus-html-display-image): Make the alt optional.
246         (gnus-html-show-images): Remove.
247
248         * gnus-art.el (gnus-article-show-images): New, more general function.
249
250         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
251         image url text properties.
252
253         * shr.el: Ditto.
254
255         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
256         gnus-agent-auto-agentize-methods is set.  Which it isn't.
257
258 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
259
260         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
261         work for two or more articles.
262
263 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
264
265         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
266         divide an image that's in an html article to two or more when washing
267         non-ASCII characters in alt text of it.
268
269 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
270
271         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
272         smime-decrypt-region using function argument.
273         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
274
275         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
276
277         * smime.el (smime-decrypt-region): Catch it.
278
279 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
280
281         * smime.el (smime-mode-map): Move initialization into declaration.
282         (gnus-run-mode-hooks): Don't autoload.
283         (smime-mode): Use define-derived-mode.
284
285 2010-11-11  Glenn Morris  <rgm@gnu.org>
286
287         * smime.el (from): Restrict declaration to XEmacs.
288
289         * nnir.el (gnus-group-topic-name): Autoload.
290
291 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
292
293         * shr.el (shr-insert): Don't break long line if it is because of
294         kinsoku-bol characters in the line end.
295
296 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
297
298         * nnir.el (nnir-request-move-article): Fix to provide original group
299         and subject.
300         (nnir-warp-to-article): Don't fail on articles whose headers haven't
301         been retrieved.
302
303         * gnus-sum.el (gnus-summary-move-article): Use original group and
304         subject for virtual articles such as those in an nnir summary buffer.
305
306 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
307
308         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
309         least 21.5).
310
311         * smime.el (from): Declare it again for XEmacs.
312
313 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
314
315         * message.el (message-resend): Don't disable encoding unless it's
316         already encoded.
317
318         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
319         low-numbered articles.
320
321 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
322
323         * rfc2047.el (rfc2047-syntax-table): Simplify.
324
325         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
326
327         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
328         set-char-table-range for XEmacs.
329
330 2010-11-10  Glenn Morris  <rgm@gnu.org>
331
332         * time-date.el (time-to-seconds): Always an alias on Emacs,
333         never a real function.
334         (with-no-warnings): Remove compat stub, now unused.
335         (time-less-p): Doc fix.
336         (time-to-number-of-days): Simplify.
337
338         * smime.el (from): Remove unused declaration.
339
340         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
341         (gnus-float-time): On Emacs, always an alias.
342
343         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
344         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
345
346 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
347
348         * dgnushack.el: Don't use ignore-errors in the top level form since it
349         is unavailable in XEmacs even if cl is loaded.
350
351         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
352
353 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
354
355         * shr.el (browse-url-mailto): Autoload.
356
357         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
358
359         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
360         regexp doesn't need quoting.
361
362 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
363
364         * message.el (message-subject-trailing-was-ask-regexp)
365         (message-subject-trailing-was-regexp): Match was: in addition to was.
366
367 2010-11-09  Glenn Morris  <rgm@gnu.org>
368
369         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
370         (nnbabyl-check-mbox): Use point-at-bol.
371
372 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
373
374         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
375
376         * message.el (message-mailto): New function.
377         (message-mailto): Should accept other parameters.
378         (message-mailto): Remove since it duplicates browse-url-mailto
379         functionality.
380
381 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
382
383         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
384         methods.
385         (gnus-read-active-file): Ditto.
386
387         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
388         ": " from the prompt.
389         (gnus-group-make-group): Ditto.
390
391 2010-11-07  Glenn Morris  <rgm@gnu.org>
392
393         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
394         (gnus-bookmark-kill-line): Use point-at-eol.
395
396 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
397
398         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
399         asterisks in From header.
400
401 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
402
403         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
404         string to avoid making the From headers syntactically invalid.
405
406         * message.el (message-send-mail): Don't insert courtesy messages if the
407         message already has List-Post and List-ID messages.
408
409 2010-11-06  Glenn Morris  <rgm@gnu.org>
410
411         * gnus-art.el (gnus-treat-article): Give dynamic local variables
412         `condition', `type', `length' a prefix.
413         (gnus-treat-predicate): Update for above name changes.
414
415 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
416
417         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
418         binding.  Handled by `gnus-summary-refer-thread' instead.
419         (nnir-warp-to-article): New backend function.
420
421         * nnimap.el (nnimap-request-thread): Force dependency updating.
422
423         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
424         (gnus-summary-refer-thread): Rework to improve thread-referral.
425
426         * gnus-int.el (gnus-warp-to-article): New function.
427
428         * gnus-sum.el (gnus-summary-article-map): Bind it.
429
430 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
431
432         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
433         gnus-summary-refer-thread.
434
435         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
436         headers.
437         (gnus-summary-limit-include-thread): Prevent articles in thread from
438         being cut in gnus-cut-threads.
439         (gnus-summary-refer-thread): Limit retrieved headers to those in
440         thread.
441
442 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
443
444         * message.el (message-send-mail): Use the value of
445         message-courtesy-message from the message buffer.
446
447         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
448
449         * shr.el (shr-browse-url): Implement mailto: URLs.
450
451         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
452         "raw".
453
454         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
455         if it's already selected.
456
457         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
458
459 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
460
461         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
462         to measure the length and truncate alt text.
463
464 2010-11-03  Glenn Morris  <rgm@gnu.org>
465
466         * nndiary.el (nndiary-generate-nov-databases-1)
467         (nndiary-generate-active-info): Rename dynamic variable `files' to
468         something less generic.
469
470 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
471
472         * nnir.el (nnir-request-move-article): Call the underlying backend to
473         move articles from nnir.
474
475 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
476
477         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
478
479 2010-11-02  Julien Danjou  <julien@danjou.info>
480
481         * nnir.el: Remove wais support.
482
483 2010-11-02  Glenn Morris  <rgm@gnu.org>
484
485         * gnus-html.el: Reorder requirements to quieten compiler.
486
487 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
488
489         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
490         properly for XEmacs as well.
491         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
492         (gnus-article-natural-long-line-p): Use window-width rather than
493         frame-width.
494
495 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
496
497         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
498         (nnir-read-parms): Don't modify query.
499         (nnir-run-query): Add ability to search topic on current line.
500         (nnir-get-active): Clean up.
501
502 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
503
504         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
505         degenerate articles.
506
507         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
508         (gnus-print-buffer): Just print the buffer as is, without any copying
509         to a buffer and then re-highlighting.
510
511         * nnimap.el (nnimap-request-group): Store the new updated info.
512         (nnimap-request-group): Select the group when we don't know whether it
513         exists or not.
514
515         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
516         groups.
517
518         * gnus-group.el (gnus-group-find-new-groups): Display all the new
519         groups.
520
521         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
522         groups.
523
524         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
525         long-lines case by only filling the long lines.
526
527         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
528         (bug #7311).
529
530 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
531
532         * shr.el: No need to declare `declare-function' since shr.el is for
533         only Emacsen that provide `libxml-parse-html-region'.
534
535         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
536         effective only in a file it is referred to.
537
538 2010-11-01  Glenn Morris  <rgm@gnu.org>
539
540         * mm-util.el (gnus-completing-read): Autoload.
541         (mm-read-coding-system): Simplify Emacs definition.
542
543         * nnmail.el (gnus-activate-group):
544         * nnimap.el (gnutls-negotiate):
545         * nntp.el (netrc-parse): Fix declarations.
546
547 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
548
549         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
550         string-match-p in Emacs >=23.
551
552         * gnus-msg.el (gnus-configure-posting-styles)
553         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
554
555 2010-11-01  Glenn Morris  <rgm@gnu.org>
556
557         * nnir.el (declare-function): Add compat stub.
558         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
559         (nnir-run-gmane): Require 'mm-url.
560
561         * mm-util.el (mm-string-to-multibyte): Simplify.
562
563         * shr.el (declare-function): Add compat stub.
564         (url-cache-create-filename): Declare.
565         (mm-disable-multibyte, widget-convert-button): Autoload.
566
567         * smime.el (ldap-search): Declare.
568         (smime-cert-by-ldap-1): Require ldap on Emacs.
569
570         * nnimap.el: Require nnmail, and gnus-sum when compiling.
571         (nnimap-keepalive): Use gnus-float-time.
572
573         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
574         (mail-source-delete-crash-box): Use gnus-float-time.
575
576         * gnus-dired.el (gnus-completing-read): Autoload.
577
578         * mm-view.el (gnus-rescale-image): Autoload.
579
580         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
581
582         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
583
584         * sieve-manage.el: Require 'cl when compiling.
585
586         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
587         (gnus-iswitchb-completing-read): Require iswitchb.
588         (gnus-select-frame-set-input-focus): Silence compiler.
589
590 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
591
592         * message.el (message-subject-trailing-was-query): Change default to t,
593         since I think that's what most people want.
594
595         * nnimap.el (nnimap-request-accept-article): Erase buffer before
596         appending for easier debugging.
597         (nnimap-wait-for-connection): Take a regexp.
598         (nnimap-request-accept-article): Wait for the continuation line before
599         sending anything unless we're streaming.
600
601         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
602         leave the header washing to take place.
603
604 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
605
606         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
607         regular expression match and replace in posting styles.
608
609 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
610
611         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
612         an entire server.
613         (nnir-get-active): New function.
614         (nnir-run-imap): Use it.
615         (nnir-run-gmane): Who knew, gmane search returns an article score!
616
617         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
618         server on the current line with nnir.
619
620 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
621
622         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
623         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
624         left edge.
625         (gnus-article-foldable-buffer): Skip past the prefix when determining
626         raggedness.
627
628         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
629         the raw article, and change `C-u g' to show the article without doing
630         treatments.
631
632         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
633         on to `gnus-treat-article'.
634         (gnus-inhibit-article-treatments): New variable.
635
636         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
637
638         * gnus-art.el (gnus-treatment-function-alist): Have
639         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
640         (gnus-treat-fill-long-lines): Change default to fill all text/plain
641         sections.
642
643         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
644         parameter.
645         (gnus-article-fill-cited-long-lines): New function.
646         (gnus-article-fill-cited-article): Allow filling only long sections.
647
648         * shr.el (shr-find-fill-point): Don't break lines between punctuation
649         and non-punctuation (like after the apostrophe in "'We").
650
651         * gnus-sum.el (gnus-summary-select-article): Make sure
652         gnus-original-article-buffer is alive.
653
654         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
655         reflect the order they're in in the digest.
656
657         * gnus.el (gnus-group-startup-message): Move point to the start of the
658         buffer.
659
660         * nnimap.el (nnimap-capability): New function.
661         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
662         is set.
663
664 2010-10-31  David Engster  <dengste@eml.cc>
665
666         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
667         conform with changes to gnus-completing-read.
668
669 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
670
671         * shr.el (shr-tag-img): Output "*" instead of "[img]".
672
673 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
674
675         * nnir.el: Move defvar, defcustom around to keep file organized
676         and keep byte-compiler quiet.
677         (nnir-read-parms): Accept search-engine as arg.
678         (nnir-run-query): Pass search-engine as arg.
679         (nnir-search-engine): Remove.
680
681 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
682
683         * shr.el (shr-generic): The text nodes should be text, not :text.
684
685         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
686         later in the file.
687
688 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
689
690         * nnir.el: General clean up.  Allow searching with multiple engines.
691         Allow separate extra-parameters for each engine.
692         Batch queries when possible.
693         (nnir-imap-default-search-key,nnir-method-default-engines):
694         Add customize interface.
695         (nnir-run-gmane): New engine.
696         (nnir-engines): Use it.  Qualify all prompts with engine name.
697         (nnir-search-engine): Remove global variable.
698         (nnir-run-hyrex): Restore for now.
699         (nnir-extra-parms,nnir-search-history): New variables.
700         (gnus-group-make-nnir-group): Use them.
701         (nnir-group-server): Remove in favor of gnus-group-server.
702         (nnir-request-group): Avoid searching twice.
703         (nnir-sort-groups-by-server): New function.
704
705 2010-10-30  Julien Danjou  <julien@danjou.info>
706
707         * gnus-group.el: Remove gnus-group-fetch-control.
708
709         * gnus-start.el (gnus-find-new-newsgroups):
710         Remove gnus-check-first-time-used.
711
712         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
713
714 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
715
716         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
717         set on groups that don't have \* permanentflags.
718
719 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
720
721         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
722         control the background color.
723         (shr-tag-img): Ignore very small web bug type images.
724         (shr-put-image): Add help-echo alt texts to the images.
725         (shr-tag-video): Show the video poster image.
726
727 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
728
729         * shr.el (shr-table-depth): New variable.
730         (shr-tag-table-1): Only insert the images after the top-level table.
731
732         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
733
734         * gnus-util.el (gnus-list-memq-of-list): New function.
735
736         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
737         selected.
738         (nnimap-unsplittable-articles): New slot.
739         (nnimap-new-articles): Use it.
740
741 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
742
743         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
744         move to the previous line on `M-g'.
745
746 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
747
748         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
749         *-request-group, which seems unnecessary.
750
751         * nnimap.el (nnimap-quote-specials): Function copied over from
752         imap.el.
753         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
754         they support that.  Suggested by Tom Regner.
755
756 2010-10-29  Julien Danjou  <julien@danjou.info>
757
758         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
759         defalias.
760         (gnus-summary-delete-marked-with): Remove obsolete defalias.
761
762         * gnus.el: Remove `gnus-nntp-service' variable.
763         (gnus-secondary-servers): Make obsolete.
764         (gnus-nntp-server): Make obsolete.
765
766         * gnus-start.el (gnus-1): Remove x-splash calls.
767
768         * gnus-ems.el (gnus-x-splash): Remove.
769
770         * gnus.el (gnus-group-startup-message): Simplify/update code.
771
772         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
773         definition.
774
775         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
776         capability before doing anything.
777         (gnus-group-insert-group-line): Remove useless
778         gnus-group-remove-excess-properties.
779
780 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
781
782         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
783
784 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
785
786         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
787         config after reselecting.
788
789 2010-10-28  Julien Danjou  <julien@danjou.info>
790
791         * shr.el (shr-put-image): Use point even if only inserting text.
792         (shr-put-image): Save excursion when inserting alt text on non-graphic
793         display, so the behaviour is the same when we are on a graphic display.
794
795         * nnir.el (nnir-run-swish-e): Remove hyrex support.
796
797 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
798
799         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
800         (gnus-mime-copy-part): Check coding system, not charset.
801         (gnus-mime-view-part-externally): Never remove part.
802         (gnus-mime-view-part-internally): Don't remove part here.
803         (gnus-article-part-wrapper): Make sure MIME tag is visible.
804         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
805         multipart/alternative.
806
807         * mm-decode.el (mm-display-part): Take optional arg `force'.
808
809 2010-10-26  Julien Danjou  <julien@danjou.info>
810
811         * gnus-group.el (gnus-group-default-list-level): Add this function to
812         compute the default list level.
813         (gnus-group-default-list-level): Add possibility to use a function.
814
815 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
816
817         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
818
819         * gnus-group.el (gnus-group-completing-read)
820         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
821         gnus-replace-in-string.
822
823 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
824
825         * shr.el (shr-tag-div): Add.
826
827         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
828
829 2010-10-25  Julien Danjou  <julien@danjou.info>
830
831         * gnus-util.el: Remove `gnus-with-local-quit'.
832
833         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
834
835 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
836
837         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
838         the original article buffer.
839
840 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
841
842         * nnimap.el (nnimap-request-head): New function.
843         (nnimap-request-move-article): Try to be slighly faster by not
844         requesting the entire message when moving.
845         (nnimap-transform-headers): Don't bug out on bodiless articles.
846         (nnimap-send-command): Have no outstanding messages if the IMAP server
847         doesn't support streaming.
848         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
849
850 2010-10-24  Julien Danjou  <julien@danjou.info>
851
852         * message.el (message-default-headers): Fix type.
853
854 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
855
856         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
857         prefetching images.
858
859         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
860         backend for unknown groups.  This is mainly useful for nnimap groups.
861
862         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
863         group isn't covered by the agent.
864
865 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
866
867         * nnir.el (nnir-method-default-engines): New variable.
868         (nnir-run-query): Use it.
869         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
870         (gnus-summary-nnir-goto-thread): Change group if needed.
871
872         * gnus-group.el (gnus-group-group-map): Add key binding for
873         gnus-group-make-nnir-group.
874
875 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
876
877         * shr.el (shr-tag-object): Add.
878
879         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
880         original article buffer live.
881         (gnus-summary-select-article-buffer):
882         Mention gnus-widen-article-buffer.
883
884 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
885
886         * shr.el (shr-tag-strong): Add.
887
888 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
889
890         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
891         group names.  They mess up the group buffer badly.
892
893         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
894
895         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
896         instead of the summary one.
897
898 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
899
900         * mml.el (mml-preview): Work properly when editing article.
901
902         * gnus-start.el (gnus-read-active-file-1): Don't add method to
903         gnus-have-read-active-file if it's already been in.
904
905 2010-10-22  Tom Tromey  <tromey@redhat.com>
906
907         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
908         gnus-group-completing-read.
909
910 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
911
912         * message.el (message-mode-map): Don't bind M-; to comment region, to
913         allow the global comment-dwim to work.
914
915 2010-10-21  Julien Danjou  <julien@danjou.info>
916
917         * message.el (message-setup-1): Allow message-default-headers to be a
918         function.
919
920 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
921
922         * shr.el (shr-tag-table): Simplify.
923
924 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
925
926         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
927         to avoid trying to snarf invalid stuff.
928
929         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
930
931         * gnus.el (gnus-message-archive-group): Quote value.
932         (gnus-message-archive-group): Mark as changed.
933
934         * shr.el (shr-add-font): Don't put the font properties on the newline
935         or the indentation.
936
937         * message.el (message-fix-before-sending): Change options when sending
938         non-printable characters.
939
940         * gnus.el (gnus-message-archive-method): Change the default to
941         monthly outgoing groups.
942
943         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
944         that have gotten new numbers.
945
946         * nnimap.el (nnimap-request-replace-article): New function.
947
948 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
949
950         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
951         (nnrss-request-article): Don't use special html washing code.
952
953 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
954
955         * shr.el (shr-tag-table): Remove useless nconc.
956
957 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
958
959         * gnus-art.el (article-wash-html): Simplify and remove the charset
960         stuff.  Use the normal html rendering code instead of the special html
961         washing code.
962
963         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
964         `gnus-w3m' symbols.
965         (mm-text-html-washer-alist): Remove.
966
967         * mm-decode.el (mm-inline-text-html-renderer): Remove.
968         (mm-inline-media-tests): Remove use.
969         (mm-text-html-renderer): Change default to the `shr' symbol.
970
971         * mm-view.el (mm-inline-text-html): Remove use.
972
973         * gnus-art.el (gnus-blocked-images): New function.  Allow the
974         `gnus-blocked-images' to be a function.
975         (gnus-article-wash-function): Remove.
976
977 2010-10-20  Julien Danjou  <julien@danjou.info>
978
979         * spam.el (spam-list-of-processors): Mark as obsolete.
980
981         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
982         (nnimap-insert-partial-structure): Fix boundary detection.
983
984 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
985
986         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
987         run file-truename on remote files.  This can be expensive and even
988         prevent one from editing drafts if some unrelated buffer has a stale
989         connection.
990
991 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
992
993         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
994         kinsoku-eol regardless of shr-kinsoku-shorten.
995         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
996         (shr-tag-table): Support caption, thead, and tfoot.
997
998 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
999
1000         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
1001         lines.
1002         (shr-save-contents): New command and keystroke.
1003
1004         * nndoc.el (nndoc-type-alist): Add git support.
1005         (nndoc-git-type-p): New function.
1006         (nndoc-transform-git-article): Ditto.
1007         (nndoc-transform-git-headers): Ditto.
1008         (nndoc-transform-git-headers): Generate Subject headers.
1009
1010         * shr.el (shr-parse-style): New function.
1011         (shr-tag-span): Ditto.
1012
1013         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
1014         to `G G' to avoid collisions.
1015
1016 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1017
1018         * shr.el: Load kinsoku if necessary.
1019         (shr-kinsoku-shorten): New internal variable.
1020         (shr-find-fill-point): Make kinsoku shorten text line if
1021         shr-kinsoku-shorten is bound to non-nil.
1022         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
1023         shr-indentation too when testing if table is wider than frame width.
1024         (shr-insert-table): Use `string-width' instead of `length' to measure
1025         text width.
1026         (shr-insert-table-ruler): Make sure indentation is done at bol.
1027
1028 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1029
1030         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
1031         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
1032         undecoded network data.
1033
1034 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1035
1036         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
1037         name in the mode line spec so that the mode line menu works
1038         (bug #2431).
1039
1040         * message.el (message-get-reply-headers): If we're fed `to-address',
1041         then always use that.
1042
1043         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
1044         aren't so wide as to need to switch off the edit menu.
1045
1046         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
1047         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
1048
1049         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
1050         `M-g'.
1051         (nnimap-update-info): Update flags/read marks even if \* isn't part of
1052         the permanent marks.
1053
1054 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
1055
1056         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
1057         Splitting according to references/in-reply-to obeys the ignore-groups
1058         variable, while splitting by sender and subject do not.
1059
1060 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1061
1062         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
1063         alist, so that we can look for non-Unicode chars.
1064         (article-translate-strings): Allow both character and string maps.
1065
1066 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1067
1068         * shr.el (shr-insert): Don't insert space behind a wide character
1069         categorized as kinsoku-bol, or between characters both categorized as
1070         nospace.
1071
1072 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
1073
1074         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
1075         headers to gnus-newsgroup-headers.
1076
1077 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1078
1079         * shr.el (shr-tag-img): Don't align images -- since we're not
1080         rescaling, this often leads to ugly displays.
1081
1082 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
1083
1084         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
1085         duplicates.
1086
1087 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
1088
1089         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
1090         call.
1091
1092 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1093
1094         * gnus.el: Autoload gnus-html-show-images.
1095
1096         * nnimap.el: Use nnheader-message throughout.
1097
1098         * shr.el (shr-tag-img): Ignore images with no data.
1099
1100 2010-10-15  Julien Danjou  <julien@danjou.info>
1101
1102         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
1103         a possibility to disable format=flow encoding when using hard newlines.
1104
1105 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1106
1107         * shr.el (shr-insert): Remove space inserted before or after a
1108         breakable character or at the beginning or the end of a line.
1109         (shr-find-fill-point): Do kinsoku; find the second best point or give
1110         it up if there's no breakable point.
1111
1112 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1113
1114         * nnimap.el (nnimap-open-connection): Message when opening connection
1115         for debugging purposes.
1116
1117         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
1118         on every setup buffer call to allow this to change from article to
1119         article.
1120
1121         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
1122         buffers where we have a wide table.
1123
1124 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
1125
1126         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
1127         uses *-request-thread.
1128
1129 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1130
1131         * nnimap.el (nnimap-open-connection): Remove %s from openssl
1132         incantation, which is no longer valid.
1133
1134 2010-10-14  Julien Danjou  <julien@danjou.info>
1135
1136         * shr.el: Fix defcustom type (char -> character).
1137
1138 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1139
1140         * nnimap.el (nnimap-open-connection): tls-program should be a list of
1141         programs.
1142
1143 2010-10-14  Julien Danjou  <julien@danjou.info>
1144
1145         * shr.el (shr-tag-a): Use url-link as widget type.
1146
1147         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
1148         `gnus-group-get-icon'.
1149
1150 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1151
1152         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
1153         This should make server editing work better.
1154
1155         * shr.el (shr-find-fill-point): Don't inloop on indented text.
1156
1157         * tls.el (tls-program): Remove spurious %s from openssl.
1158
1159         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
1160         (nnimap-parse-flags): Fix regexp.
1161
1162         * shr.el (shr-find-fill-point): Use a filling algorithm that should
1163         probably work for CJVK text, too.
1164
1165         * nnimap.el (nnimap-extend-tls-programs): Remove.
1166         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
1167
1168         * tls.el (tls-starttls-switches): Remove starttls hack.
1169         (open-tls-stream): Ditto.
1170         (tls-find-starttls-argument): Ditto.
1171
1172 2010-10-13  Julien Danjou  <julien@danjou.info>
1173
1174         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
1175         responses.
1176
1177 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1178
1179         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
1180
1181         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
1182         anything in Emacs.
1183
1184         * shr.el (shr-current-column): Remove buggy and unnecessary function.
1185
1186 2010-10-13  Julien Danjou  <julien@danjou.info>
1187
1188         * shr.el (shr-width): Make shr-width a defcustom with default to
1189         fill-column.
1190         (shr-tag-img): Use shr-width rather than fill-column.
1191
1192 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1193
1194         * dgnushack.el (byte-optimize-apply)
1195         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
1196
1197         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
1198         position when (X-)Faces exist.
1199         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
1200         avatars when called interactively.
1201
1202 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1203
1204         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
1205         gnus-article-x-face-too-ugly is bound.
1206
1207 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1208
1209         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
1210
1211         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
1212         mailbox that doesn't exist.
1213
1214 2010-10-12  Julien Danjou  <julien@danjou.info>
1215
1216         * shr.el (shr-tag-img): Encode URL properly when retrieving.
1217         (shr-get-image-data): Encode URL properly when fetching from cache.
1218         (shr-tag-img): Use aligned-to spaces to align correctly images.
1219
1220         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
1221         before inserting the Gravatar.
1222
1223         * shr.el (shr-tag-img): Add align attribute support for <img>.
1224
1225 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1226
1227         * gnus-gravatar.el (gnus-art): Require.
1228
1229         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
1230         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
1231         Remove long obsoleted functions.
1232
1233 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1234
1235         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
1236
1237         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
1238
1239         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
1240         gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
1241         hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
1242         mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
1243         mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
1244         nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
1245         sieve-manage.el, smime.el, spam.el: Fix comment for declare-function.
1246
1247 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1248
1249         * nnimap.el (nnimap-request-rename-group): Select group read-only
1250         before renaming it.
1251
1252         * shr.el (shr-insert): Fix up the white space only regexp.
1253
1254         * nnimap.el (nnimap-transform-split-mail): Not all articles have
1255         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
1256
1257         * shr.el (shr-current-column): New function.
1258         (shr-find-fill-point): New function.
1259
1260 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1261
1262         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
1263         numbers.
1264
1265 2010-10-11  Julien Danjou  <julien@danjou.info>
1266
1267         * shr.el (shr-hr-line): Add.
1268         (shr-tag-hr): Use shr-hr-line to specify which character to use to
1269         display hr lines.
1270         (shr-max-columns): Do not change state to nil if we just inserting
1271         spaces.
1272
1273 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1274
1275         * gnus-topic.el (gnus-topic-read-group): If after the last group,
1276         select the last group.
1277
1278 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
1279
1280         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
1281
1282 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
1283
1284         * dig.el (dig-mode-map): Declare and define in one step.
1285
1286 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1287
1288         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
1289         for Gnus.
1290         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
1291         (nnimap-update-qresync-info): Mark \Seen articles as read.
1292
1293         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
1294         non-variable, too.
1295
1296         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
1297         available.
1298         (nnimap-update-info): Rely more on the current active than the param
1299         active to avoid marking articles as read too much.
1300
1301         * auth-source.el (auth-source-create): Use (user-login-name) for the
1302         user name default.
1303
1304         * nnimap.el (nnimap-update-info): If the server doesn't return any
1305         useful info, just use the previous info.
1306         (nnimap-update-info): Prefer old info over start-article.
1307         (nnimap-update-qresync-info): Finish implementing QRESYNC.
1308
1309 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
1310
1311         * nnir.el (autoload): Clean up autoloads.
1312         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
1313         Use key rather than value.
1314         (nnir-imap-search-other): New variable.
1315         (nnir-read-parm): Use it.
1316         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
1317         (gnus-summary-nnir-goto-thread): Modify to work with imap.
1318
1319 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1320
1321         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
1322         the process, too.
1323
1324 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1325
1326         * spam.el (gnus-summary-mode-map): Bind to "$".
1327         Suggested by Russ Allbery.
1328
1329         * shr.el: Rework the way things are indented by <li> slightly.
1330
1331         * gnus.el (gnus-group-set-parameter): Fix typo.
1332
1333         * nnimap.el: Start implementing QRESYNC support.
1334
1335 2010-10-09  Julien Danjou  <julien@danjou.info>
1336
1337         * nnir.el (nnir-engines): Fix too many arguments.
1338
1339 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1340
1341         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
1342         group is the "last", so that the backends like nnfolder actually save
1343         their folders.
1344
1345         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
1346         try to use that for the tls stream.
1347         (nnimap-retrieve-group-data-early): Rework the marks code to heed
1348         UIDVALIDITY and find out which groups are read-only and not.
1349         (nnimap-get-flags): Use the same marks parsing code as the rest of
1350         nnimap.
1351
1352 2010-10-09  Julien Danjou  <julien@danjou.info>
1353
1354         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
1355
1356         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
1357         retrieving gravatars.
1358
1359         * shr.el (shr-table-corner): Add.
1360         (shr-table-line): Add.
1361         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
1362
1363 2010-10-08  Julien Danjou  <julien@danjou.info>
1364
1365         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
1366
1367 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
1368
1369         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
1370
1371         * gnus-sum.el (gnus-mark-article-as-unread)
1372         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
1373         (gnus-summary-set-bookmark): Use it.
1374
1375         * gnus-msg.el (gnus-setup-message): Use it.
1376
1377         * gnus-demon.el (gnus-demon-remove-handler): Use it.
1378
1379         * gnus.el (gnus-group-remove-parameter): Use it.
1380
1381         * gnus-group.el (gnus-group-make-web-group): Use it.
1382
1383         * gnus-demon.el (gnus-demon-remove-handler): Use it.
1384
1385         * nnregistry.el: Update docs to mention manual.
1386
1387         * gnus-registry.el: Update docs to mention nnregistry.el.
1388         (gnus-registry-initialize): Don't install nnregistry refer method
1389         automatically.
1390         (gnus-registry-install-nnregistry): Remove it.
1391
1392 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1393
1394         * shr.el (shr-insert): Don't insert double spaces.
1395
1396 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1397
1398         * gnus-gravatar.el (gnus-treat-from-gravatar)
1399         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
1400         called interactively.
1401
1402         * gnus-art.el (gnus-mime-view-part-externally)
1403         (gnus-mime-view-part-internally): Make predicate function passed to
1404         gnus-mime-view-part-as-type assume argument is a mime type, not a list
1405         of a mime type.
1406
1407         * shr.el (shr-table-widths): Don't use cl function `reduce'.
1408
1409 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1410
1411         * shr.el (require): Require cl when compiling.
1412         (shr-tag-hr): New function.
1413
1414         * nnimap.el (nnimap-update-info): Remove double setting of high.
1415         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
1416         This makes nnimap work properly on Courier again.
1417
1418         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
1419         the variable for backwards compatability.
1420
1421         * mm-decode.el (mm-save-part): If given a non-directory result, expand
1422         the file name before using to avoid setting mm-default-directory to
1423         nil.
1424
1425         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
1426         bidning gnus-agent variables.
1427
1428         * shr.el (shr-render-td): Use a cache for the table rendering function
1429         to avoid getting an exponential rendering behaviour in nested tables.
1430         (shr-insert): Rework the line-breaking algorithm.
1431         (shr-insert): Don't leave trailing spaces.
1432         (shr-insert-table): Also insert empty TDs.
1433         (shr-tag-blockquote): Ensure paragraphs after </ul>.
1434
1435 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1436
1437         * gnus-sum.el (gnus-number): Rename from `number'.
1438         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
1439         (gnus-summary-limit-children): Update uses correspondingly.
1440
1441 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1442
1443         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
1444         (gnus-gravatar-transform-address): Don't show avatars of people of
1445         which mail addresses match gnus-gravatar-too-ugly.
1446
1447 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1448
1449         * shr.el (shr-table-widths): Expand TD elements to fill available
1450         space.
1451
1452 2010-10-07  Julien Danjou  <julien@danjou.info>
1453
1454         * nnimap.el (nnimap-request-rename-group): Add this method.
1455
1456 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1457
1458         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
1459         name from XEmacs' function-arglist.
1460
1461         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
1462         gravatar under XEmacs.
1463
1464 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
1465
1466         * auth-source.el: Update docs with TODO items.
1467
1468         * gnus-sync.el: Update docs to explain state and plans.
1469
1470         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
1471         Hooks for mark updates.
1472         (gnus-request-set-mark, gnus-request-update-mark): Use them.
1473
1474         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
1475         hooks with arguments, which is needed for mark update hooks.
1476
1477 2010-10-06  Julien Danjou  <julien@danjou.info>
1478
1479         * gnus.el (gnus-expand-group-parameter): Only return and act on what
1480         was matched.
1481
1482         * sieve-manage.el: Update example in `Commentary'.
1483
1484         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
1485
1486         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
1487         not 2000.
1488         (sieve-manage-authenticate): Re-add function.
1489
1490 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1491
1492         * shr.el (shr-insert): Get 'space transition right.
1493         (shr-render-td): Only delete space at the end of the TD.
1494
1495         * nnimap.el (nnimap-open-connection): Prepare to support
1496         open-gnutls-stream.
1497
1498         * shr.el: Rearrange function order to be more logical.
1499
1500 2010-10-06  Julien Danjou  <julien@danjou.info>
1501
1502         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
1503         (nnrss-discover-feed): Remove 404 URL in docstring.
1504
1505         * nnir.el: Fix Swish-E URL.
1506         Fix Namazu URL.
1507
1508         * message.el (message-change-subject): Remove 404 URL in a comment.
1509
1510 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1511
1512         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
1513         called interactively.
1514
1515         * gnus-util.el (gnus-remove-if): Allow hash table.
1516         (gnus-remove-if-not): New function.
1517
1518         * gnus-art.el (gnus-mime-view-part-as-type)
1519         * gnus-score.el (gnus-summary-score-effect)
1520         * gnus-sum.el (gnus-read-move-group-name):
1521         Replace remove-if-not with gnus-remove-if-not.
1522
1523         * gnus-group.el (gnus-group-completing-read):
1524         Regard collection as a hash table if it is not a list.
1525
1526 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1527
1528         * shr.el (shr-render-td): Allow blank/missing <TD>s.
1529
1530         * shr.el: Document the table-rendering algorithm.
1531
1532 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1533
1534         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
1535         for Emacsen having no `libxml-parse-html-region' support.
1536
1537 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1538
1539         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
1540         invalid URLs.
1541
1542         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
1543         line-broken.
1544         (shr-tag-img): Ignore image fetching errors.
1545         (shr-overlays-in-region): Compute overlay positions correctly.
1546
1547         * mm-decode.el (mm-shr): Require shr.
1548
1549         * gnus-art.el (gnus-blocked-images): Move variable here.
1550
1551         * shr.el (shr-insert-table): Bind free variable.
1552
1553         * mm-decode.el (mm-shr): Bind shr-content-function.
1554
1555         * shr.el (shr-content-function): New variable.
1556
1557         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
1558         added for symmetry.
1559
1560         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
1561
1562         * gnus-group.el (gnus-group-make-group): Doc fix.
1563
1564         * nnimap.el (nnimap-request-newgroups): Return success.
1565
1566         * shr.el (shr-find-elements): New function.
1567         (shr-tag-table): Put all the images after the table.
1568         (shr-tag-table): Really inhibit images inside the table.
1569         (shr-collect-overlays): Copy over overlays from the TD elements to the
1570         main document.
1571
1572         * mm-decode.el (mm-shr): Bind shr-blocked-images to
1573         gnus-blocked-images.
1574
1575 2010-10-05  Julien Danjou  <julien@danjou.info>
1576
1577         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
1578
1579         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
1580         (gnus-html-maximum-image-size): Add this function.
1581         (gnus-html-put-image): Use gnus-html-maximum-image-size.
1582
1583         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
1584         server-value of the capability is nil.
1585
1586 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1587
1588         * shr.el (shr-tag-em): Add <EM> tag.
1589
1590 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
1591
1592         * sieve-manage.el (sieve-manage-default-stream): Make default stream
1593         customizable.
1594
1595         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
1596         handing broken links to browse-url.
1597
1598 2010-10-05  Julien Danjou  <julien@danjou.info>
1599
1600         * gnus-util.el (gnus-emacs-completing-read)
1601         (gnus-iswitchb-completing-read): Use autoload rather than require.
1602
1603 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1604
1605         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
1606         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
1607         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
1608         iswitchb-temp-buflist for XEmacs.
1609
1610         * gnus-util.el (gnus-completing-read-function): Exclude
1611         gnus-icompleting-read and gnus-ido-completing-read from candidates for
1612         XEmacs since iswitchb.el is very old and ido.el is unavailable in
1613         XEmacs.
1614
1615         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
1616         not to use `delete-dups' that is unavailable in XEmacs 21.4.
1617
1618         * gnus-html.el: Don't require help-fns under XEmacs.
1619         (gnus-html-schedule-image-fetching): Work for XEmacs.
1620
1621         * mm-decode.el (mm-shr): Decode contents by charset.
1622
1623 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1624
1625         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
1626         unknown.
1627
1628         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
1629         (shr-get-image-data): Ensure against the cache file missing.
1630
1631         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
1632         for data.
1633
1634         * spam-report.el (spam-report-url-ping-plain): Don't query about
1635         killing the process.
1636
1637         * shr.el (shr-render-td): Protect against too-wide text.
1638
1639 2010-10-04  Julien Danjou  <julien@danjou.info>
1640
1641         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
1642         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
1643
1644         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
1645         retrieved.
1646
1647 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1648
1649         * shr.el (browse-url): Require.
1650         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
1651         lines.
1652         (shr-show-alt-text, shr-browse-image): New commands.
1653         (shr-browse-url, shr-copy-url): New commands.
1654
1655         * gnus-sum.el (gnus-widen-article-window): New variable.
1656         (gnus-summary-select-article-buffer): Use it.
1657
1658         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
1659         without @ signs.
1660
1661 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1662
1663         * nnir.el (nnir-run-imap): Remove spurious space in search string.
1664
1665 2010-10-04  Julien Danjou  <julien@danjou.info>
1666
1667         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
1668         for XEmacs.
1669
1670 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1671
1672         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
1673
1674         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
1675         (nnimap-close-server): Implement.
1676
1677         * dgnushack.el (iswitchb): Require to shut up the compiler.
1678
1679         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
1680         (shr-insert): Tweak line breaking.
1681         (shr-insert): Handle <pre> better.
1682         (shr-tag-li): Get <li> indentation right.
1683         (shr-tag-li): Get <li> indentation even righter.
1684         (shr-tag-blockquote): Ensure paragraph start.
1685         (shr-make-table): Tweak table generation.
1686         (shr-make-table): Fix typo.
1687
1688         * shr.el: Implement table rendering.
1689
1690 2010-10-04  Julien Danjou  <julien@danjou.info>
1691
1692         * gnus-html.el (gnus-html-put-image): Fix resize image code.
1693
1694 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1695
1696         * shr.el (shr-insert): Use string anchors instead of line anchors.
1697
1698 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1699
1700         * shr.el: Add headings.
1701         (shr-ensure-paragraph): Actually work.
1702         (shr-tag-li): Make <ul> prettier.
1703         (shr-insert): Get white space at the beginning/end of elements right.
1704         (shr-tag-p): Collapse subsequent <p>s.
1705         (shr-ensure-paragraph): Don't insert double line feeds after blank
1706         lines.
1707         (shr-insert): \t is also space.
1708         (shr-tag-s): Fix "s" tag name function.
1709         (shr-tag-s): Fix face prop name.
1710
1711 2010-10-03  Julien Danjou  <julien@danjou.info>
1712
1713         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
1714
1715         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
1716         gnus-window-inside-pixel-edges.
1717
1718         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
1719         gnus-ems.
1720
1721         * mm-view.el (mm-inline-image-emacs): Support image resizing.
1722
1723         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
1724         function.
1725
1726         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
1727         resize choice.
1728
1729 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1730
1731         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
1732         beginning of the buffer.
1733
1734         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
1735         article buffer again.
1736
1737         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
1738
1739         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
1740         when it's at the start of the buffer.
1741
1742         * shr.el (shr-tag-blockquote): Convert name.
1743         (shr-rescale-image): Use the right image-size variant.
1744
1745         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
1746         buffer isn't shown, then select the current article first instead of
1747         bugging out.
1748         (gnus-summary-select-article-buffer): Show both the article and summary
1749         buffers again.
1750
1751         * shr.el (shr-fontize-cont): Protect against regions with no text.
1752         Rename tag functions to shr-tag-* for enhanced security.
1753         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
1754
1755 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
1756
1757         * shr.el (shr-insert):
1758         * pop3.el (pop3-movemail):
1759         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
1760         loaded.
1761
1762 2010-10-03  Glenn Morris  <rgm@gnu.org>
1763
1764         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
1765
1766         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
1767
1768         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
1769
1770         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
1771
1772         * gnus-util.el (gnus-make-local-hook): Simplify.
1773
1774 2010-10-02  Julien Danjou  <julien@danjou.info>
1775
1776         * gnus-util.el (gnus-iswitchb-completing-read): New function.
1777         (gnus-ido-completing-read): New function.
1778         (gnus-emacs-completing-read): New function.
1779         (gnus-completing-read): Use gnus-completing-read-function.
1780         Add gnus-completing-read-function.
1781
1782 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1783
1784         * shr.el (shr-insert-document): Autoload.
1785         (shr-img): Be silent.
1786         (shr-insert): Add a newline after every picture before text.
1787         (shr-add-font): Use overlays for combining faces.
1788         (shr-insert): Pass upwards the text start point.
1789
1790         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
1791         possible.
1792         (mm-shr): New function.
1793
1794 2010-10-02  Julien Danjou  <julien@danjou.info>
1795
1796         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
1797         should go backward.
1798
1799 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
1800
1801         * shr.el (shr): Fix typo in provide call.
1802
1803 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1804
1805         * shr.el: New file.
1806
1807         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
1808
1809         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
1810         completing read.
1811
1812 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1813
1814         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
1815         we're being queried about.  Suggested by Dan Jacobson.
1816
1817         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
1818         Suggested by Jason Eisner.
1819
1820         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
1821         table, too.  Suggested by Stefan Wiens.
1822         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
1823         the table unnecessary.  Suggested by Stefan Wiens.
1824
1825         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
1826         longer needed, and probably doesn't work either, as pointed out by
1827         Stefan Wiens.
1828         (gnus-summary-exit): Remove call to the clearing function.
1829         (gnus-summary-exit-no-update): Ditto.
1830
1831         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
1832         instead of gnus-eval-in-buffer-window to avoid popping up frames.
1833         Reported by Stefan Monnier.
1834         (gnus-summary-save-in-rmail): Ditto.
1835
1836         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
1837         article buffer, instead of both the article buffer and the summary
1838         buffer.  Sort of suggested by Dan Jacobson.
1839
1840         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
1841
1842         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
1843         Suggested by Dan Jacobson.
1844
1845         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
1846         documentation clearer.
1847
1848         * message.el (message-shorten-references): Comment on the number "21".
1849         Suggested by Stefan Monnier.
1850
1851         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
1852         Suggested by Dan Jacobson.
1853
1854         * gnus.el (gnus-large-newsgroup):
1855         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
1856
1857         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
1858         externalize attachments.  Bug reported by Steve Wen.
1859
1860         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
1861         really message anything to the user.
1862
1863         * nnmail.el (nnmail-article-group): Allow using the fancy split method
1864         directly.
1865
1866         * nnimap.el (nnimap-request-group): Low higher than high to signal no
1867         messages in empty groups.
1868
1869 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
1870
1871         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
1872         non-UIDNEXT group.
1873
1874 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1875
1876         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
1877         not the value from the collection.
1878
1879         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
1880         values.  This sometimes happens on some groups that have no info.
1881         (nnimap-request-newgroups): New function.
1882
1883 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
1884
1885         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
1886         check into `gnus-registry-initialize'.
1887         (gnus-registry-initialize): Ditto.
1888         Fix and extend header docs.
1889
1890 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1891
1892         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
1893         regexp backtrace overflows.
1894
1895         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
1896         for starttls that tls.el implements; i.e. openssl.
1897
1898         * tls.el (tls-starttls-switches): Give up on using starttls with
1899         gnutls-cli.
1900         (tls-program): Add --insecure to be consistent with the defaults from
1901         openssl s_client.  Now all three commands are insecure.
1902
1903 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1904
1905         * lpath.el: Bind completion-styles-alist for XEmacs.
1906
1907         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
1908         (gravatar-create-image): New function that's an alias to
1909         gnus-xmas-create-image, gnus-create-image, or create-image.
1910         (gravatar-data->image): Use it.
1911
1912 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
1913
1914         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
1915         install the nnregistry refer method.
1916         (gnus-registry-install-hooks): Use it.
1917         (gnus-registry-unfollowed-groups): Add nnmairix to the default
1918         unfollowed groups.
1919
1920 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
1921
1922         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
1923         expanding threads.
1924
1925 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1926
1927         * nnir.el: Use the server names without suffixes (bug #7009).
1928
1929         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
1930         unencrypted to STARTTLS, if possible.
1931
1932 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1933
1934         * message.el (message-ignored-supersedes-headers): Strip Injection-*
1935         headers before superseding.
1936
1937 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1938
1939         * nnrss.el (nnrss-use-local): Add documentation.
1940
1941         * nnimap.el (nnimap-extend-tls-programs): New function.
1942         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
1943         (nnimap-wait-for-connection): Accept the greeting from the stupid
1944         output from openssl s_client -starttls, too.
1945
1946         * tls.el (tls-starttls-switches): New variable.
1947         (tls-find-starttls-argument): Use it.
1948         (open-tls-stream): Ditto.
1949
1950         * netrc.el (netrc-credentials): Return the value of the "default" entry.
1951         (netrc-machine): Ditto.
1952
1953         * nnimap.el (nnimap-find-article-by-message-id): Really return the
1954         article number.
1955         (nnimap-split-fancy): New variable.
1956         (nnimap-split-incoming-mail): Use it.
1957
1958         * nntp.el (nntp-server-list-active-group): Document.
1959
1960         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
1961         SELECT to get the message-id.
1962
1963         * mail-source.el (mail-sources): Remove webmail support.
1964         (defvar): Ditto.
1965         (mail-source-fetcher-alist): Ditto.
1966         (mail-source-fetch-webmail): Remove.
1967
1968         * webmail.el: Remove -- doesn't seem relevant any more.
1969
1970         * gnus.el: Fix up make-obsolete-variable declarations throughout.
1971
1972         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
1973         the \r.
1974
1975 2010-09-30  Julien Danjou  <julien@danjou.info>
1976
1977         * gnus-agent.el (gnus-agent-add-group): Fix call to
1978         gnus-completing-read.
1979
1980 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1981
1982         * nndoc.el (nndoc-retrieve-groups): New function.
1983
1984         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
1985         `default', use nnmail-split-methods.
1986         (nnimap-request-article): Downcase the NILs so that they are nil.
1987
1988         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
1989         symbol.
1990
1991         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
1992         code, since if the user has requested network, that's what they ought
1993         to get.
1994         (nnimap-request-set-mark): Erase the buffer before issuing commands.
1995         (nnimap-split-rule): Mark as obsolete.
1996
1997         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
1998         New variable.
1999
2000         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
2001         correct slot, too.
2002
2003 2010-09-29  Julien Danjou  <julien@danjou.info>
2004
2005         * gnus.el (gnus-local-domain): Declare variable obsolete.
2006
2007         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
2008         Fix history computing.
2009         (gnus-ido-completing-read): Require ido.
2010
2011 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2012
2013         * gnus-registry.el: Don't prompt on load, which makes it impossible to
2014         build Gnus.
2015
2016         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
2017         when interpreting the structures.
2018         (nnimap-request-accept-article): Add \r\n to the lines to make this
2019         work with Cyrus.
2020
2021         * nndraft.el (nndraft-request-expire-articles): Use the group name
2022         instead if "nndraft".  Fix found by Nils Ackermann.
2023
2024 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
2025
2026         * nnregistry.el: Add.
2027
2028 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2029
2030         * nnmail.el (group, group-art-list, group-art):
2031         Remove unneeded directives.
2032
2033 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2034
2035         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
2036         (mm-mime-charset)
2037         * rfc2047.el (rfc2047-syntax-table)
2038         * utf7.el (utf7-utf-16-coding-system): Comment fix.
2039
2040         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
2041         rather than `insert-file-contents' and `eval-region'.
2042
2043         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
2044         construction.
2045
2046         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
2047
2048         * time-date.el: No need to require cl for Emacs 21.
2049
2050 2010-09-29  Julien Danjou  <julien@danjou.info>
2051
2052         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
2053         replacement of `gnus-gravatar-relief' to mimic
2054         `gnus-faces-properties-alist'.
2055         Add :version property.
2056
2057 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2058
2059         * mail-source.el (mail-source-report-new-mail)
2060         * message.el (message-default-mail-headers)
2061         * mm-decode.el (mm-valid-image-format-p): Comment fix.
2062
2063         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
2064
2065 2010-09-28  Julien Danjou  <julien@danjou.info>
2066
2067         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
2068         mail-address contains the same string as real-name.
2069
2070         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
2071         non-blank in header, otherwise it'll get stripped.
2072
2073         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
2074         real-name, and then for mail address rather than doing : or , search.
2075
2076 2010-09-27  Julien Danjou  <julien@danjou.info>
2077
2078         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
2079         right completing-read function.
2080         (gnus-use-ido): New variable
2081         (gnus-completing-read-with-default): Remove.
2082         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
2083         (gnus-agent-add-group):
2084         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
2085         * mm-view.el (mm-view-pkcs7-decrypt):
2086         * mm-util.el (mm-codepage-setup):
2087         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
2088         * mml-smime.el (mml-smime-openssl-sign-query):
2089         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
2090         (mml-insert-multipart):
2091         * gnus-msg.el (gnus-summary-yank-message):
2092         * gnus-int.el (gnus-start-news-server):
2093         * mm-decode.el (mm-interactively-view-part):
2094         * gnus-dired.el (gnus-dired-attach):
2095         * gnus.el (gnus-read-method):
2096         * gnus-bookmark.el (gnus-bookmark-jump):
2097         * gnus-art.el (gnus-mime-view-part-as-type)
2098         (gnus-mime-action-on-part, gnus-article-encrypt-body):
2099         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
2100         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
2101         * nnmairix.el (nnmairix-create-server-and-default-group)
2102         (nnmairix-update-groups, nnmairix-get-server)
2103         (nnmairix-backend-to-server, nnmairix-goto-original-article)
2104         (nnmairix-get-group-from-file-path):
2105         * nnrss.el (nnrss-find-rss-via-syndic8):
2106         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
2107         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
2108         (gnus-group-browse-foreign-server):
2109         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
2110         (gnus-summary-execute-command, gnus-summary-respool-article)
2111         (gnus-read-move-group-name):
2112         * gnus-score.el (gnus-summary-increase-score)
2113         (gnus-summary-score-effect):
2114         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
2115
2116 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2117
2118         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
2119         x-focus-frame.
2120
2121         * nnimap.el (auth-source-forget-user-or-password)
2122         (auth-source-user-or-password): Autoload.
2123
2124         * message.el (message-from-style, message-interactive)
2125         (message-cite-prefix-regexp, message-sendmail-envelope-from)
2126         (message-yank-prefix, message-indentation-spaces, message-signature)
2127         (message-signature-file): Add comment.
2128
2129 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2130
2131         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
2132         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
2133         new articles.
2134
2135         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
2136         parts.
2137         (nnimap-request-article): Work with the t setting, too.
2138
2139         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
2140         that you don't get flashes of other buffers.
2141         (gnus-summary-show-complete-article): Intern before setting.
2142
2143 2010-09-27  David Engster  <dengste@eml.cc>
2144
2145         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
2146         well as HEADERS.
2147         (nnmairix-retrieve-headers): Provide new argument for the above.
2148
2149 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2150
2151         * gnus-sum.el (gnus-summary-move-article): Don't alter
2152         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
2153         group.
2154
2155         * nnimap.el (nnimap-update-info): Don't destructively alter active.
2156
2157         * message.el (message-cite-prefix-regexp): Revert my last edit.
2158
2159         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
2160         variable instead of the Gnus variable.
2161
2162         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
2163
2164         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
2165
2166         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
2167         since some servers don't like it.
2168         (nnimap-open-connection): Forget credentials if the server says the
2169         password was wrong.
2170         (nnimap-parse-line): Protect against invalid data.
2171
2172         * gnus-sum.el (gnus-summary-move-article): Add comment.
2173         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
2174         nothing alters it while scanning for new messages.
2175
2176         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
2177         which may or may not help.
2178         (nnimap-open-connection): If we're doing a stream connection, and then
2179         discover we're on a STARTTLS-capable server, then open a STARTTLS
2180         connection instead.
2181
2182 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2183
2184         * nnimap.el (utf7): Require.
2185
2186         * message.el (message-cite-prefix-regexp): Remove "}" from citation
2187         prefix.
2188
2189 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
2190
2191         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
2192
2193 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2194
2195         * nnimap.el (nnimap-request-accept-article): Message the error on
2196         error.
2197
2198 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2199
2200         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
2201
2202 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2203
2204         * nndoc.el (nndoc-request-list): Return success always.
2205
2206         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
2207         `fetch-old' -- we only want to fetch the articles we've requested.
2208         The rest are in the agent, probably.
2209         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
2210         disappeared server" to something low.  It's not important.
2211
2212         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
2213         arrived before the FETCH data.
2214
2215         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
2216         target here, because we don't know the Gnus name of the group.
2217
2218         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
2219         for the correct group.
2220
2221         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
2222
2223         * gnus.el (gnus): Give a final warning after startup.
2224
2225         * gnus-util.el (gnus-action-message-log): New variable.
2226         (gnus-message): Use it.
2227         (gnus-final-warning): New function.
2228
2229         * nnimap.el (nnimap-open-connection): Record the greeting.
2230         (nnimap): Add greeting.
2231
2232 2010-09-26  Julien Danjou  <julien@danjou.info>
2233
2234         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
2235         arguments.
2236         (gnus-html-wash-images): Fix spec computing to include start/end.
2237
2238         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
2239
2240 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2241
2242         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
2243         deletion.
2244         (nnimap-retrieve-headers): Don't select the group, because that's
2245         already done by nnimap-possibly-change-group.
2246
2247         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
2248         (gnus-picon-transform-address): Use it.
2249
2250         * mail-source.el (mail-source-value): Revert previous patch.
2251
2252         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
2253         on failure.
2254         (nnimap-open-connection): Look up both virtual and physical server name
2255         credentials.
2256
2257         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
2258
2259 2009-02-07  Dave Love  <fx@gnu.org>
2260
2261         * tls.el (open-tls-stream): Don't query killing process.
2262
2263 2009-02-08  Dave Love  <fx@gnu.org>
2264
2265         * gnus-win.el (gnus-window-to-buffer-helper)
2266         (gnus-all-windows-visible-p): Function needn't be a symbol.
2267
2268         * mail-source.el (mail-source-value): Function needn't be a symbol.
2269
2270 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2271
2272         * message.el (message-cite-prefix-regexp): Remove } from the cite
2273         prefix.
2274
2275         * gnus-art.el (gnus-treatment-function-alist): Do picons before
2276         highlight again, so that the highlight is correct.
2277
2278         * gnus-picon.el (gnus-picon): Remove again.
2279         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
2280
2281         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
2282         doing the header highlightling, so that the background colour of the
2283         picon is correct.
2284
2285         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
2286         (gnus-picon): Ditto.
2287         (gnus-picon): Reinstate.  The background colour for picons is white.
2288         (gnus-picon-insert-glyph): Make the background white.
2289
2290         * nnml.el (nnml-open-nov): Don't return dead buffers.
2291
2292         * auth-source.el (auth-source-create): Query the user for whether to
2293         store the credentials.
2294
2295         * netrc.el (netrc-store-data): New function.
2296
2297         * auth-source.el (auth-source-user-or-password): Use the existing auth
2298         sources, if any, for creation.
2299
2300         * gnus.el (gnus-group-fast-parameter): Return the last matching
2301         parameter instead of the first matching parameter.
2302
2303 2010-09-26  Julien Danjou  <julien@danjou.info>
2304
2305         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
2306
2307 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2308
2309         * mml2015.el (mml2015-use): Remove gpg support.
2310
2311         * mml1991.el (mml1991-function-alist): Remove gpg function.
2312         (mml1991-gpg-sign): Remove.
2313
2314 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
2315
2316         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
2317         (gnus-browse-unsubscribe-current-group): Document it.
2318         (gnus-browse-unsubscribe-group): Use it.
2319
2320 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2321
2322         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
2323         address to the To list for easier response.
2324
2325         * gnus.el (gnus-play-startup-jingle): Remove.
2326         (gnus-splash): Don't play jingle.
2327         (gnus): Silence gnus-load message.
2328
2329         * gnus-art.el (gnus-treat-play-sounds): Remove.
2330
2331         * gnus.el (gnus-play-jingle): Remove audio support.
2332
2333         * gnus-cus.el (gnus-score-customize): Remove audio reference.
2334
2335         * earcon.el: Remove -- no users.
2336
2337         * gnus-audio.el: Remove -- no users of this package.
2338
2339         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
2340
2341         * gnus-start.el (gnus-setup-news): Remove nocem support.
2342
2343         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
2344
2345         * gnus.el (gnus-use-nocem): Remove.
2346
2347         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
2348         Remove.
2349
2350         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
2351         uses NoCeM any more.
2352
2353         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
2354         (gnus-button-ctan-handler): Ditto.
2355         (gnus-button-handle-ctan-bogus-regexp): Ditto.
2356         (gnus-button-ctan-directory-regexp): Ditto.
2357         (gnus-button-handle-ctan): Ditto.
2358         (gnus-button-tex-level): Ditto.
2359         (gnus-button-alist): Remove CTAN stuff.
2360
2361 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2362
2363         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
2364         nnimap-streaming test.
2365
2366         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
2367         servers twice.
2368
2369         * nnimap.el (nnimap-open-connection): Add more error reporting when
2370         nnimap fails early.
2371
2372         * nnheader.el (nnheader-get-report-string): New function.
2373         (nnheader-get-report): Use it.
2374
2375         * gnus-int.el (gnus-check-server): Say what the error was when opening
2376         failed.
2377
2378         * nnimap.el (nnimap-wait-for-response): Search further when we're not
2379         using streaming.
2380
2381 2010-09-25  Julien Danjou  <julien@danjou.info>
2382
2383         * gnus-html.el (gnus-html-rescale-image): Use our defalias
2384         gnus-window-inside-pixel-edges.
2385
2386 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2387
2388         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
2389
2390         * mm-decode.el (mm-save-part): Allow saving to other directories the
2391         normal Emacs way.
2392
2393         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
2394         Suggested by Jay Berkenbilt.
2395
2396         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
2397         there isn't a single byte.
2398
2399         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
2400         just do it.  It doesn't really seem to matter what the user responds
2401         here, I think, so it's just a confusing question.
2402
2403         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
2404         non-streaming case.
2405
2406         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
2407         (gnus-article-encrypt-body): Use it.
2408
2409         * gnus-sum.el (gnus-summary-show-complete-article): New command and
2410         keystroke.
2411
2412         * nnimap.el (nnimap-find-wanted-parts-1):
2413         Use gnus-fetch-partial-articles.
2414
2415         * gnus-art.el (gnus-fetch-partial-articles): New variable.
2416
2417         * nnimap.el (nnimap-insert-partial-structure): New function.
2418         (nnimap-get-partial-article): New function.
2419         (nnimap-request-article): Use it.
2420         (nnimap-wait-for-response): Return whether the wait was successful.
2421         (nnimap-finish-retrieve-group-infos): Don't do anything if the
2422         retrieval wasn't successful.
2423         (nnimap-retrieve-group-data-early): Allow throttling servers.
2424         (nnimap-streaming): New variable.
2425         (nnimap-fetch-partial-articles): Remove.
2426
2427         * mm-decode.el (mm-with-part): Protect against killed buffers.
2428
2429         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
2430         for prettier summary display.
2431
2432 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
2433
2434         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
2435
2436 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2437
2438         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
2439         apparently third-party libraries depend on it.
2440
2441         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
2442         before starting negotiation.
2443
2444         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
2445         privacy reasons.
2446         (gnus-treat-mail-gravatar): Ditto.
2447
2448         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
2449         buffer when inserting images.  Inserting text into the headers, for
2450         instance, can make them invalid.
2451
2452 2010-09-25  Julien Danjou  <julien@danjou.info>
2453
2454         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
2455         variables.
2456
2457         * nnheader.el: Remove useless variables news-reply-yank-from and
2458         news-reply-yank-message-id.
2459
2460         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
2461         variables.
2462
2463         * mml1991.el: Remove useless mml1991-verbose.
2464
2465         * gnus.el: Remove useless variable gnus-use-generic-from.
2466         Remove obsolete variable gnus-topic-indentation.
2467
2468         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
2469
2470         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
2471
2472         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
2473
2474         * gnus-group.el: Remove useless gnus-group-icon-cache.
2475         Remove useless gnus-ephemeral-group-server.
2476
2477         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
2478
2479         * mml2015.el: Remove useless mml2015-verbose.
2480
2481         * mml-smime.el: Remove useless mml-smime-verbose.
2482
2483         * gnus.el: Remove useless gnus-local-domain.
2484
2485         * gnus-gravatar.el (gnus-gravatar-transform-address):
2486         Use gnus-gravatar-size.
2487
2488         * gnus-art.el: Remove useless gnus-treat-translate.
2489
2490 2010-09-24  Julien Danjou  <julien@danjou.info>
2491
2492         * gnus-sum.el: Add support for Gravatars.
2493
2494         * gnus-art.el: Add support for Gravatars.
2495
2496         * gnus-gravatar.el: Add this file.
2497
2498         * gravatar.el: Add this file.
2499
2500 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2501
2502         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
2503
2504         * gnus-group.el (gnus-group-fetch-faq): Remove.
2505
2506         * gnus.el (gnus-group-faq-directory): Remove.
2507
2508         * gnus-group.el (gnus-group-fetch-charter): Remove.
2509
2510         * gnus.el (gnus-group-charter-alist): Remove.
2511
2512         * gnus-group.el (gnus-group-archive-directory): Remove.
2513         (gnus-group-recent-archive-directory): Ditto.
2514         (gnus-group-make-archive-group): Remove.
2515
2516         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
2517
2518         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
2519         use the same article number for all the cached articles.
2520
2521         * nnimap.el (nnimap-command): Register the last command time so
2522         that we can use it for idling NOOPs.
2523         (nnimap-open-connection): Start the keeplive timer.
2524         (nnimap-make-process-buffer): Store all the process buffers.
2525         (nnimap-keepalive): New function.
2526
2527         * starttls.el (starttls-open-stream): Add autoload cookie.
2528
2529 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2530
2531         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
2532         handling.
2533
2534 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2535
2536         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
2537         its data structures.
2538
2539         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
2540         instead of the cl.el copy-list.
2541         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
2542         equalp.
2543
2544 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2545
2546         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
2547         and tool-bar-local-item-from-menu.
2548
2549         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
2550         mode-line-highlight face for Emacs.
2551
2552         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
2553         loading gnus-sum.elc; fix comment for canlock-verify.
2554         (gnus-article-jump-to-part): Use read-number.
2555         (gnus-insert-mime-button, gnus-insert-mime-security-button):
2556         Remove Emacs pre-21 compatible code for help-echo.
2557         (gnus-article-next-page-1): No need to adjust the number of lines.
2558         (gnus-article-describe-bindings): Always use help-buffer.
2559
2560         * gnus-audio.el (gnus-audio-inline-sound)
2561         * gnus-cus.el (gnus-custom-mode)
2562         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
2563
2564         * gnus-sum.el (gnus-remove-overlays): Doc fix.
2565
2566         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
2567         compatible code.
2568
2569 2010-09-24  Glenn Morris  <rgm@gnu.org>
2570
2571         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
2572         visiting the fcc file in rmail-mode.
2573
2574         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
2575
2576 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2577
2578         * nnir.el: Silence the byte compiler.
2579
2580         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
2581         alias to browse-url-url-encode-chars if any.
2582         (gnus-html-encode-url): Use it.
2583
2584 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2585
2586         * gnus-start.el (gnus-use-backend-marks): New variable.
2587         (gnus-get-unread-articles-in-group): Use it.
2588
2589         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
2590         makeover.
2591
2592 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
2593
2594         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
2595
2596 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2597
2598         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
2599         Remove.
2600         (gnus-setup-news-hook):
2601         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
2602
2603         * gnus-int.el (gnus-request-update-info): Protect against backends not
2604         having the function.
2605
2606         * nnimap.el (nnimap-stream): Mention starttls.
2607         (nnimap-open-connection): Add starttls support.
2608
2609 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
2610
2611         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
2612
2613 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2614
2615         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
2616         BODYSTRUCTUREs.
2617         (nnimap-transform-headers): Unfold quoted {42} headers.
2618
2619         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
2620         the info.
2621         (gnus-get-unread-articles): Only call updatep on backends that support
2622         it.
2623
2624         * nnweb.el (nnweb-request-update-info): NOOP.
2625
2626         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
2627
2628         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
2629         since it only deals with marks.
2630
2631         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
2632         gnus-request-marks, and make a new gnus-request-update-info.
2633
2634         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
2635         the active instead of the high number, which is usually too low.
2636
2637 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
2638
2639         * netrc.el (netrc-parse): Remove encrypt.el mentions.
2640         * encrypt.el: Remove.
2641
2642 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2643
2644         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
2645         server in symbolic form.
2646
2647         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
2648
2649 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2650
2651         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
2652         (nnimap-update-info): Fix up code slightly.
2653
2654         * gnus-int.el (gnus-open-server): Add tracing for performance
2655         debugging.
2656
2657         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
2658         (gnus-group-insert-group-line): Pass the real group name so that it
2659         gets the right data.
2660
2661         * gnus-start.el (gnus-get-unread-articles): Don't have
2662         `gnus-get-unread-articles-in-group' update info, since that can be
2663         really slow and doesn't seem to be needed?
2664
2665 2010-09-22  Dan Christensen  <jdc@uwo.ca>
2666
2667         * time-date.el (date-to-time): Try using parse-time-string first before
2668         using the slower timezone-make-date-arpa-standard.
2669
2670 2010-09-22  Julien Danjou  <julien@danjou.info>
2671
2672         * gnus-group.el (gnus-group-insert-group-line):
2673         Call gnus-group-highlight-line.
2674         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
2675         default hook list.
2676         (gnus-group-update-eval-form): Add new function.
2677         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
2678         (gnus-group-get-icon): Use gnus-group-update-eval-form.
2679
2680 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2681
2682         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
2683         immediate, then expire all articles.
2684         (nnimap-update-info): Fix off-by-one errors.
2685         (nnimap-flags-to-marks): Would return no marks lists for group with no
2686         flags.  Instead return the other data.
2687
2688 2010-09-22  Julien Danjou  <julien@danjou.info>
2689
2690         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
2691         Only return an icon.
2692         (gnus-group-insert-group-line): Compute icon to return.
2693
2694         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
2695         (gnus-html-image-fetched): Only cache if
2696         gnus-html-image-automatic-caching is set.
2697         (gnus-html-image-fetched): Check for errors.
2698
2699 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2700
2701         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
2702         once per method on `g'.  This ensures that backends like nnfolder don't
2703         open all their folders.
2704
2705         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
2706         (nnimap-request-list): Nix out group in the correct buffer.
2707         (nnimap-parse-flags): Implement by using `read' instead of
2708         hand-parsing.
2709         (nnimap-flags-to-marks): Pass on permanent-flags.
2710         (nnimap-make-process-buffer): Record the server name.
2711         (nnimap-parse-flags): Fix typo.
2712         (nnimap-request-scan): Run split on the server in general, not just a
2713         single group.
2714
2715         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
2716         parameter, and propagate this downwards.
2717
2718         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
2719         since EXAMINE changes it on the server.
2720
2721         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
2722         this command might take a while.
2723
2724 2010-09-22  Julien Danjou  <julien@danjou.info>
2725
2726         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
2727         harmful if you have 2 images side-by-side, they can't be properly
2728         update on text deletion.  Using text-property is safer here.
2729         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
2730         data.
2731
2732 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2733
2734         * nnimap.el (nnimap-expunge-inbox): Remove.
2735         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
2736         (nnimap-expunge): Flip default to t.
2737
2738         * gnus.el (gnus-method-to-server): Don't push things to the cache
2739         unless it's unique.
2740         (gnus-server-to-method): Ditto.
2741
2742 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2743
2744         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
2745
2746 2010-09-22  Julien Danjou  <julien@danjou.info>
2747
2748         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
2749         get the start of data.
2750         (gnus-html-encode-url): Add this function to encode special chars in
2751         URL.
2752         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
2753         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
2754
2755         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
2756         default.
2757         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
2758
2759         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
2760         images alt-text.
2761         (gnus-html-put-image): Put alt-text as help-echo.
2762
2763 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2764
2765         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
2766         * mm-util.el (mm-decompress-buffer)
2767         * nnir.el (nnir-run-find-grep)
2768         * pop3.el (pop3-list): Use 3rd arg of split-string.
2769
2770         * time-date.el (format-seconds): Comment fix.
2771
2772         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
2773         and byte-optimize-form-code-walker.
2774         (dgnushack-make-auto-load): Don't advise make-autoload.
2775
2776         * lpath.el: Remove Emacs 21 stuff.
2777
2778 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2779
2780         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
2781         outside the active range.  Suggested by Dan Christensen.
2782
2783         * gnus-start.el (gnus-get-unread-articles): Get the extended method
2784         slightly later to avoid double-getting it.
2785
2786         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
2787         previous patch.
2788
2789         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
2790
2791 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
2792
2793         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
2794
2795 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2796
2797         * gnus-int.el (gnus-open-server): Give a better error message in the
2798         "go offline" case.
2799
2800         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
2801         marks for nnimap, which is seldom the right thing to do.
2802
2803         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
2804         (gnus-same-method-different-name): New function.
2805
2806         * nnimap.el (parse-time): Require.
2807
2808         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
2809         method in the presence of many similar methods.
2810
2811         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
2812
2813         * nnimap.el (nnimap-find-expired-articles): Don't refer to
2814         nnml-inhibit-expiry.
2815
2816         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
2817         find out whether methods are equal.
2818
2819         * nnimap.el (nnimap-find-expired-articles): New function.
2820         (nnimap-process-expiry-targets): New function.
2821         (nnimap-request-move-article): Request the article before looking at
2822         what the Message-ID is.  Fix found by Andrew Cohen.
2823         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
2824
2825         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
2826         for oldness in addition to being a predicate.
2827
2828         * nnimap.el (nnimap-request-group): When we have zero articles, return
2829         the right data to Gnus.
2830         (nnimap-request-expire-articles): Only delete articles immediately if
2831         the target is 'delete.
2832
2833         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
2834         method, this would bug out.
2835
2836         * gnus-group.el (gnus-group-expunge-group): Rename from
2837         gnus-group-nnimap-expunge, and implemented as a normal interface
2838         function.
2839
2840         * gnus-int.el (gnus-request-expunge-group): New function.
2841
2842         * nnimap.el (nnimap-request-create-group): Implement.
2843         (nnimap-request-expunge-group): New function.
2844
2845 2010-09-21  Julien Danjou  <julien@danjou.info>
2846
2847         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
2848         (gnus-html-cache-expired): Add new function.
2849         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
2850         wethever we should display image for fetch it.
2851         Compute alt-text earlier to pass it to the fetching function too.
2852         (gnus-html-schedule-image-fetching): Change function argument to only
2853         get one image at a time, not a list.
2854         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
2855         cache.
2856         (gnus-html-get-image-data): New function to retrieve image data from
2857         cache.
2858         (gnus-html-put-image): Change buffer argument to use image data rather
2859         than file, and place image above region rather than inserting a new
2860         one.  Do not take alt-text as argument, since it's useless now: we place
2861         the image above alt-text.
2862         (gnus-html-prune-cache): Remove.
2863         (gnus-html-show-images): Start to fetch image when we find one, do not
2864         push into a temporary list.
2865         (gnus-html-prefetch-images): Only fetch image if they have expired.
2866         (gnus-html-browse-image): Fix, use 'gnus-image-url.
2867         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
2868
2869 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2870
2871         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
2872
2873 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2874
2875         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
2876         spec inser "*" if the group isn't active instead of 0.
2877
2878         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
2879         opening the server.
2880         (nnimap-request-delete-group): Implement group deletion.
2881         (nnimap-transform-headers): Return the size of the entire message in
2882         the Bytes header, not just the size of the first part.
2883         (nnimap-request-move-article): When moving an article from nnimap,
2884         request the article first so the accepting form has an article to
2885         accept.  Reported by Dan Christensen.
2886         (nnimap-command): Make sure that the error message doesn't error out.
2887
2888 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
2889
2890         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
2891         we haven't requested anything.
2892
2893 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2894
2895         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
2896         "".  Fix found by Andrew Cohen.
2897
2898         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
2899         instead of -encode-string.
2900
2901 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2902
2903         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
2904
2905         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
2906         by mm-subst-char-in-string.
2907
2908 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2909
2910         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
2911         waiting for the connection string.
2912
2913         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
2914         arriving.
2915
2916         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
2917         bogus characters.  This allows selecting certain Gmail groups.
2918
2919         * nnimap.el (nnimap-find-wanted-parts-1): New function.
2920         (nnimap-fetch-partial-articles): New variable.
2921         (nnimap-open-connection): When looking for credentials, also use the
2922         nnimap-server-port.
2923         (nnimap-request-article): Return the group/article number, so that Gnus
2924         `^' works as expected.
2925         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
2926
2927         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
2928         comments.
2929         (gnus-methods-sloppily-equal): New function.
2930         (gnus): When using the development version of Gnus, load the gnus-load
2931         file.
2932
2933         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
2934         `gnus-open-server' on each method before trying to scan them etc.
2935         This ensures that all the backend parameters are set correctly.
2936
2937         * nnimap.el (nnimap-authenticator): New variable.
2938         (nnimap-open-connection): Allow anonymous login.
2939         (nnimap-transform-headers): The chars header is called Chars not Bytes.
2940         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
2941
2942         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
2943         patch, found by Knut Anders Hatlen.
2944
2945 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
2946
2947         * gnus-agent.el (gnus-agent-batch-confirmation)
2948         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
2949         to gnus-message.
2950         * gnus-art.el (gnus-article-describe-briefly): Likewise.
2951         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
2952         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
2953         * gnus-int.el (gnus-open-server): Likewise.
2954         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
2955         (gnus-score-check-syntax): Likewise.
2956         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
2957         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
2958         Likewise.
2959         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
2960
2961 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2962
2963         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
2964         calling conventions so that prefetch doesn't bug out.
2965
2966 2010-09-19  Julien Danjou  <julien@danjou.info>
2967
2968         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
2969         rather than `subst-char-in-region' in order to be able to replace ASCII
2970         char by UTF-8 ones.
2971
2972         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
2973         than curl.
2974         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
2975         the right URL and ALT text on images.
2976         (gnus-html-wash-tags): Fix tag case.
2977         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
2978         (gnus-article-html): Add -o display_ins_del=2 option.
2979         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
2980
2981 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2982
2983         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
2984         the extra mail headers, which sometimes seem to happen for unknown
2985         reasons.
2986
2987         * mail-parse.el (mail-header-encode-parameter): Define as
2988         rfc2045-encode-string instead of as rfc2231-encode-string, since some
2989         (or most, perhaps?) mail readers don't understand the latter, but do
2990         understand the former.
2991
2992         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
2993         to nil, so that no methods are automatically agentized.  I think this
2994         is probably what most users want.
2995
2996         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
2997         from url-retrieve, for instance about invalid URLs.
2998
2999         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
3000         groups that have no articles.
3001         (nnimap-request-article): Check that we really got an article when we
3002         requested one.
3003
3004         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
3005         doesn't exist.
3006
3007         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
3008         nntp buffer so the agent can save it.
3009         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
3010         that CRLF doesn't get translated to \n.
3011         (nnimap-open-connection): Don't make 'shell commands only send \n.
3012
3013 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3014
3015         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
3016         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
3017         Update var name.
3018         (nnml-generate-nov-file): Use dolist.
3019         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
3020         Use with-current-buffer.
3021
3022 2010-09-18  Julien Danjou  <julien@danjou.info>
3023
3024         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
3025         parallel.
3026
3027 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3028
3029         * nnimap.el (nnimap-update-info): When doing partial marks update, get
3030         the range update right.
3031         (nnimap-request-group): Don't make `M-g' bug out on group with no
3032         marks.
3033         (nnoo): Require, so that other packages can require nnimap.
3034         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
3035         command we're looking for.  This helps when the server sends more
3036         responses after we've gotten everything we expected.
3037         (nnimap): Add a `newlinep' field to keep track of end-of-line
3038         conventions.
3039         Don't send CRLF to things that don't want it.
3040         (nnimap-request-accept-article): Ditto.
3041
3042 2010-09-18  Julien Danjou  <julien@danjou.info>
3043
3044         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
3045         than curl to retrieve images.
3046
3047 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3048
3049         * nnimap.el (nnimap-update-info): Extend the info so that we can set
3050         the marks.
3051         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
3052         (nnimap-wait-for-connection): New function.
3053         (nnimap-open-connection): If we have PREAUTH, don't query for login
3054         credentials.
3055         (nnimap-update-info): Fix off-by-one error when concatenating ranges
3056         when doing a partial update.
3057
3058 2010-09-18  Julien Danjou  <julien@danjou.info>
3059
3060         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
3061         tags.
3062
3063 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3064
3065         * nnimap.el (nnimap-credentials): New function.
3066         (nnimap-open-connection): Use the new function to look for credentials
3067         also on the numeric equivalents of "imap" and "imaps".
3068
3069         * gnus-start.el (gnus-activate-group): Send the info to
3070         gnus-request-group.
3071
3072         * nnimap.el (nnimap-request-group): Have the "check" version of the
3073         function parse flags and update the info, so that a `M-g' get a total
3074         resync of all flags from the group.
3075
3076         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
3077         to allow backends to alter the info on group selection.  Also alter all
3078         the backend -request-group functions to take the parameter.
3079
3080         * nnimap.el (nnimap-store-info): New function.
3081         (nnimap-update-info): Store the info for later usage.
3082         (nnimap-request-group): Use the stored info for the dont-check case, so
3083         that we don't retrieve all marks when we enter a group.
3084
3085         * nnimap.el: Use deffoo instead of defun for interface functions.
3086
3087         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
3088         update the group info.  This makes the nndraft groups, for instance, go
3089         back to their old behaviour.
3090
3091         * gnus-sum.el (gnus-select-newsgroup): Indent.
3092
3093         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
3094         in.
3095         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
3096         nothing.
3097
3098         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
3099         from methods that are denied.
3100
3101         * gnus-int.el (gnus-method-denied-p): New function.
3102
3103         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
3104         store the password instead of netrc.
3105         (nnimap-open-connection): Don't error out when we can't make a
3106         connections.
3107
3108         * auth-source.el (auth-source-create): In the password prompt, say what
3109         we're querying for.  Also prompt for user name if that hasn't been
3110         given.
3111
3112         * nnimap.el (nnimap-with-process-buffer): Remove.
3113
3114 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3115
3116         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
3117         method when we're reading from the agent.
3118
3119         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
3120
3121         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
3122         that's probably most useful for users.
3123
3124         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
3125         "failed" all the time.
3126
3127         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
3128         ...)) with (with-current-buffer ... ).
3129
3130         * nntp.el (nntp-open-server): Return whether the open was successful or
3131         not.
3132
3133         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
3134         select an unread unseen article first.
3135
3136         * nnimap.el (nnimap-open-connection): If the user doesn't have a
3137         /etc/services, supply some sensible port defaults.
3138
3139         * dgnushack.el: Define netrc-credentials.
3140
3141 2010-09-17  Julien Danjou  <julien@danjou.info>
3142
3143         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
3144
3145 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
3146
3147         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
3148         doesn't have any parameters.
3149
3150 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3151
3152         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
3153         only upcased checks.
3154
3155         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
3156
3157         * nnimap.el (nnimap-open-shell-stream): New function.
3158         (nnimap-open-connection): Use it.
3159         (nnimap-transform-headers): Get the number of lines in each message.
3160         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
3161         number of lines.
3162         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
3163         problem.
3164
3165         * utf7.el (utf7-encode): Autoload.
3166
3167         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
3168         to allow the mail splitting to not return a default group.  This is
3169         useful for nnimap, which will leave unmatched mail in the inbox.
3170
3171         * nnimap.el: Rewritten.
3172
3173         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
3174         nnimap usage.
3175
3176         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
3177         if the move is internal, so that nnimap can do fast internal moves.
3178
3179         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
3180         data.
3181         (gnus-read-active-for-groups): Support finishing the early retrieval of
3182         data.
3183
3184         * gnus-range.el (gnus-range-nconcat): New function.
3185
3186         * gnus-int.el (gnus-finish-retrieve-group-infos)
3187         (gnus-retrieve-group-data-early): New functions.
3188
3189 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3190
3191         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
3192         (nnrss-retrieve-groups):
3193         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
3194         (pop3-quit): Use with-current-buffer.
3195
3196 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3197
3198         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
3199         instead of nnheader-accept-process-output.
3200
3201         * dgnushack.el (dgnushack-compile): Add comment.
3202
3203         * lpath.el: No need to fbind propertize for XEmacs 21.4.
3204
3205         * gnus-html.el (gnus-html-schedule-image-fetching)
3206         (gnus-html-prefetch-images): Replace process-kill-without-query by
3207         gnus-set-process-query-on-exit-flag.
3208
3209 2010-09-16  Romain Francoise  <romain@orebokech.com>
3210
3211         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
3212
3213 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3214
3215         * gnus-registry.el (gnus-registry-install-shortcuts): The second
3216         parameter to unintern is mandatory-ish in Emacs 24.
3217
3218         * gnus-html.el (gnus-html-schedule-image-fetching)
3219         (gnus-html-prefetch-images): Check for curl before using it.
3220
3221         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
3222         depend on curl, which isn't essential.
3223
3224         * imap.el: Revert back to version
3225         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
3226         seem problematic.
3227
3228 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
3229
3230         * gnus-registry.el (gnus-registry-install-shortcuts):
3231         Explicitly pass `obarray' to `unintern' to avoid a warning.
3232
3233 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3234
3235         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
3236         change.
3237
3238         * nnrss.el (nnrss-request-list): Remove this function and related
3239         functions, including the moreover stuff.
3240
3241 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3242
3243         * nnrss.el (nnrss-retrieve-groups): New function.
3244
3245 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
3246
3247         * .dir-locals.el: Add no-byte-compile cookie.
3248
3249 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3250
3251         * time-date.el (format-seconds): Comment fix.
3252
3253         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
3254         for back end that doesn't support request-scan.
3255
3256 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3257
3258         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
3259         then do request scans from the backends.
3260
3261         * netrc.el (netrc-credentials): New conveniency function.
3262
3263         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
3264         avoid running a hook per line, since this takes a lot of time,
3265         profiling shows.
3266         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
3267         directly if gnus-visual-p is true.
3268
3269 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3270
3271         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
3272         groups; replace mapcar with dolist which is a bit faster; pass groups
3273         info to gnus-read-active-file-1.
3274         (gnus-read-active-file-1): Scan only specified groups if the new
3275         optional arg `infos' is given.
3276
3277 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3278
3279         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
3280
3281         * pop3.el (pop3-movemail): Remove.
3282         (pop3-streaming-movemail): Rename to pop3-movemail.
3283
3284         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
3285         don't restrict end-tag searches to the end of the line.
3286
3287 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3288
3289         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
3290         articles of every unchecked group to t, which means unknown since the
3291         server has never been opened.
3292
3293 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3294
3295         * gnus-html.el (gnus-html-show-alt-text): New command.
3296         (gnus-html-browse-image): Ditto.
3297         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
3298         to browse the image directly.
3299         (gnus-html-wash-tags): Search for images first, so that <a><img> works
3300         better.
3301
3302         * gnus-async.el (gnus-async-article-callback):
3303         Call `gnus-html-prefetch-images' unconditionally.
3304
3305         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
3306         before feeding URLs to curl.
3307
3308 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3309
3310         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
3311         internal images as deletable by `W D D'.
3312
3313         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
3314         (gnus-async-article-callback): Fix typo.
3315
3316 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3317
3318         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
3319         current line to work around bugs in the output from w3m.
3320
3321         * gnus-async.el (gnus-async-article-callback): Always prefetch images
3322         for groups that want that.
3323
3324         * nntp.el (nntp-wait-for-string): Supply a timeout for
3325         accept-process-output to ensure progress.
3326
3327         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
3328         level to get unread articles from, then use that for foreign groups,
3329         too.
3330
3331         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
3332         confuses the rest of the function.
3333
3334         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
3335         for the methods that support -retrieve-groups, too.
3336
3337         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
3338
3339 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3340
3341         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
3342         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
3343
3344         * pop3.el: Require cl when compiling.
3345         (pop3-number-of-responses): Search for "+OK", not "+OK ".
3346
3347 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3348
3349         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
3350         that aren't going to be activated.
3351         (gnus-get-unread-articles): Fix up the last commit.
3352
3353         * gnus-html.el (gnus-article-html): Allow calling without specifying
3354         the handle.  In that case, dissect the buffer first.
3355
3356         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
3357
3358         * nnimap.el (nnimap-open-connection): Revert the change that would look
3359         into authinfo for imaps instead of imap.
3360
3361         * gnus-start.el (gnus-activate-group): Take an optional parameter to
3362         say that you don't want to call gnus-request-group with don-check, but
3363         do check the reponse.  This is for virtual groups only.
3364         (gnus-get-unread-articles): Count the archive groups as secondary, so
3365         that they're activated the same way as before.
3366
3367         * imap.el (imap-message-map): Removed optional buffer parameter, since
3368         no callers use it.
3369         (imap-message-get): Ditto.
3370         (imap-message-put): Ditto.
3371         (imap-mailbox-map): Ditto.
3372         (imap-mailbox-put): Ditto.
3373         (imap-mailbox-get): Ditto.
3374         (imap-mailbox-get): Revert last change for this function.
3375
3376         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
3377         case-insensitively.
3378         (nnimap-debug): Remove.
3379
3380         * imap.el (imap-fetch-safe): Removed function, and altered all callers
3381         to use `imap-fetch' instead.  According to the comments, this should be
3382         safe, since all other IMAP clients use the 1:* syntax.
3383         (imap-enable-exchange-bug-workaround): Removed.
3384         (imap-debug): Removed -- doesn't seem very useful.
3385
3386         * mail-source.el (mail-source-fetch): Don't message if we're fetching
3387         mail from a file, and the file doesn't exist.
3388
3389         * imap.el (imap-log): New convenience function used throughout instead
3390         of repeating the same code all over the place.
3391
3392         * pop3.el (pop3-streaming-movemail): Return t for success.
3393
3394         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
3395         .authinfo if we're using ssl connection.
3396
3397         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
3398         already have if we're in a main Gnus `g' run.
3399
3400         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
3401
3402 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3403
3404         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
3405
3406         * nnmh.el (nnmh-request-list-1): Bind `file'.
3407
3408         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
3409         alias to set-process-query-on-exit-flag or process-kill-without-query.
3410         (pop3-open-server): Use it.
3411
3412 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3413
3414         * mail-source.el (mail-source-delete-crash-box): Always move the crash
3415         box to the Incoming file.  Fixes mistake in previous checkin.
3416
3417         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
3418         request loop (for debugging purposes) removed.
3419
3420         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
3421         culprit is more visible.
3422         (nnml-save-incremental-nov, nnml-open-incremental-nov)
3423         (nnml-add-incremental-nov): New functions to do "incremental" nov
3424         updates, where we just append to the end of the existing nov files
3425         without reading/writing them in full.
3426
3427         * mail-source.el (mail-source-delete-crash-box): Really only check the
3428         incoming files once in a while.
3429
3430         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
3431
3432         * mail-source.el (mail-source-delete-crash-box): Only check the
3433         incoming files for deletion once per day to save a lot of file
3434         accesses.
3435
3436         * pop3.el (pop3-logon): Fix up unbound variable typo.
3437
3438         * mail-source.el (pop3-streaming-movemail): Autoload.
3439
3440         * pop3.el (pop3-streaming-movemail):
3441         Respect pop3-leave-mail-on-server.
3442
3443         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
3444         retrieval.
3445
3446         * pop3.el (pop3-process-filter): Remove unused function.
3447         (pop3-streaming-movemail, pop3-send-streaming-command)
3448         (pop3-wait-for-messages, pop3-write-to-file)
3449         (pop3-number-of-responses): New functions for streaming pop3
3450         retrieval.
3451
3452         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
3453         come from no known methods.
3454         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
3455         list.
3456
3457         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
3458         message sizes.
3459         (pop3-movemail): Use erase-buffer instead of looping and deleting
3460         regions, which seems rather odd.
3461
3462         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
3463         file once per `g' run.
3464
3465         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
3466         directories.  This makes the draft queue directory work.
3467
3468         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
3469         data from the backends, so that we only request the list of groups from
3470         each method once.  This should speed things up considerably.
3471
3472         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
3473         detect that it's not implemented.
3474
3475         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
3476         we actually do recurse down into the tree, but don't stat all leaf
3477         nodes.
3478
3479         * gnus-html.el (gnus-html-show-images): If there are no images to show,
3480         then say so instead of bugging out.
3481
3482         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
3483         files exist before trying to read them.
3484
3485         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
3486         around <pre_int>.
3487
3488         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
3489
3490         * nnmh.el (nnmh-request-list-1): Optimize for speed.
3491
3492 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3493
3494         * mm-util.el (mm-image-load-path): Just return the image directories,
3495         not all directories in the path in addition to the image directories.
3496         (mm-image-load-path): Maintain a cache of the image directories so that
3497         the `g' command in Gnus doesn't have to stat dozens of directories each
3498         time.
3499
3500         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
3501         (gnus-html-wash-tags): Add a new `i' command to insert images.
3502         (gnus-html-insert-image): New command and keystroke.
3503         (gnus-html-redisplay-with-images): New command and keystroke.
3504         (gnus-html-show-images): Rename command.
3505         (gnus-html-wash-tags): Remove more white space before <pre_int> image
3506         spacers.
3507         (gnus-html-wash-tags): Decode entities at the end, so that entities
3508         inside the tags don't mess up the rest of the "parsing".
3509
3510         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
3511         so that nnimap methods aren't agentized by default.  There's apparently
3512         many problems related to agent/imap behaviour.
3513
3514         * gnus-art.el (gnus-article-copy-string): New command and key binding.
3515
3516         * gnus-html.el: Doc fix.
3517
3518 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3519
3520         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
3521         specifier-spec-list for Emacs 21.
3522
3523         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
3524         glyph-width and glyph-height instead of display-graphic-p and
3525         image-size; make avoidance of displaying small images work for XEmacs.
3526
3527         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
3528         for XEmacs.
3529
3530         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
3531         of symbol that holds plist data.
3532         (gnus-process-plist): Remove plist of process after getting it.
3533
3534 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3535
3536         * message.el (message-generate-hashcash): Change default to
3537         'opportunistic if hashcash is installed.
3538
3539         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
3540         (gnus-html-put-image): Only call image-size once, since it's somewhat
3541         time-consuming on remote X servers.
3542
3543 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3544
3545         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
3546         type on data, not a file name.
3547
3548         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
3549         window-pixel-edges for Emacs 21.
3550
3551         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
3552         decoded contents.
3553         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
3554
3555 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3556
3557         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
3558         group line format, since it isn't very interesting.
3559
3560         * gnus-agent.el (gnus-agent-short-article),
3561         (gnus-agent-long-article): Increase values for these two variables,
3562         since most people are likely to have more network connection and
3563         storage than before.
3564
3565         * gnus.el (gnus-refer-article-method): Change default to 'current.
3566         When referring an article, the common behaviour is to refer it from the
3567         current select method, not the native select method.  The chances of
3568         the native select method having the message in question is rather slim
3569         these days.
3570
3571         * gnus-sum.el (gnus-auto-select-subject): Change default to
3572         `unseen-or-unread'.  I think it's likely that most people want to
3573         select an unseen article over a previously seen, but unread one.
3574
3575         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
3576         means that in the article buffer none of the minor mode elements will
3577         be shown, usually, and this is not desirable in most cases.
3578
3579         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
3580         that commands like `d' (and the like) go to the next line in the
3581         buffer, instead of the next unread article.  I think this is the
3582         behaviour that is most natural for most users.
3583         (gnus-single-article-buffer): Change default to nil, so that people can
3584         have as many article buffers open as they have summary buffer.  I think
3585         this is the most natural way for the groups to behave.
3586
3587         * message.el (message-generate-new-buffers): Change default to
3588         `unsent', so that all new message buffers start their names with the
3589         string "*unsent", and it's easier to find the buffers if you move from
3590         them.
3591
3592 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3593
3594         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
3595         small.  They're probably tracking images.
3596         (gnus-html-wash-tags): Remove all <pre_int> place holders.
3597         (gnus-html-rescale-image): Yet another try at getting the image sizing
3598         right.
3599
3600         * nntp.el (nntp-request-set-mark): Refuse to do marks if
3601         nntp-marks-file-name is nil.
3602
3603 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3604
3605         * gnus-html.el (gnus-html-wash-tags)
3606         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
3607         Better logging.
3608
3609 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3610
3611         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
3612
3613         * gnus-html.el (gnus-html-wash-tags): Check the value of
3614         gnus-blocked-images in the summary buffer.
3615
3616 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3617
3618         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
3619
3620 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3621
3622         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
3623         like "a", it seems like.
3624         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
3625         since it needs to be picked from the correct buffer.
3626
3627         * nnwfm.el: Remove.
3628
3629         * nnlistserv.el: Remove.
3630
3631 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3632
3633         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
3634         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
3635
3636 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3637
3638         * nnkiboze.el: Remove.
3639
3640         * nndb.el: Remove.
3641
3642         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
3643         alt text.
3644         (gnus-html-rescale-image): Try to get the rescaling logic right for
3645         images that are just wide and not tall.
3646
3647         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
3648         overshadow variable bindings.
3649
3650 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3651
3652         * gnus-html.el (gnus-html-wash-tags)
3653         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
3654         Add extra logging.
3655
3656 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3657
3658         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
3659         (gnus-max-image-proportion): New variable.
3660         (gnus-html-rescale-image): New function.
3661         (gnus-html-put-image): Rescale images.
3662
3663 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3664
3665         Fix up some byte-compiler warnings.
3666         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
3667         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
3668         (gnus-article-fill-cited-article, gnus-article-hide-citation)
3669         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
3670         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
3671         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
3672         (gnus-group-update-group): Use save-excursion and with-current-buffer.
3673
3674 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3675
3676         * gnus-html.el (gnus-article-html): Decode contents by charset.
3677
3678 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3679
3680         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
3681         (gnus-html-frame-width, gnus-blocked-images)
3682         * message.el (message-prune-recipient-rules): Add custom version.
3683         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
3684
3685         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
3686         functions.
3687
3688         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
3689         gnus-process-get.
3690
3691 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
3692
3693         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
3694         instead of lsub directly.
3695
3696 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3697
3698         * nnwarchive.el: Remove.
3699
3700         * gnus-soup.el: Remove.
3701
3702         * nnsoup.el: Remove.
3703
3704         * nnultimate.el: Remove.
3705
3706         * gnus-html.el (gnus-blocked-images): New variable.
3707
3708         * message.el (message-prune-recipients): New function.
3709         (message-prune-recipient-rules): New variable.
3710
3711         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
3712         guess whether a long line is natural text or not.
3713
3714         * gnus-html.el (gnus-html-schedule-image-fetching):
3715         Use gnus-process-plist and friends for compatibility.
3716
3717 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3718
3719         * gnus-html.el: Require packages that define macros used in this file.
3720         (gnus-article-mouse-face): Declare to silence byte-compiler.
3721         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
3722         process-get.
3723         (gnus-html-put-image): Use plist-get to avoid getf.
3724         (gnus-html-prefetch-images): Use with-current-buffer.
3725
3726 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3727
3728         * gnus-ems.el: Provide compatibility functions for
3729         gnus-set-process-plist.
3730
3731         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
3732         header-line-format for XEmacs 21.4.
3733
3734         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
3735         * gnus.el (gnus-valid-select-methods)
3736         * message.el (message-send-mail-partially-limit)
3737         * mm-decode.el (mm-text-html-renderer)
3738         * mml.el (mml-insert-mime-headers-always)
3739         * smiley.el (smiley-regexp-alist): Bump custom version.
3740
3741 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3742
3743         * gnus-html.el: require mm-url.
3744         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
3745         with the url to `url'.
3746         (gnus-html-wash-tags): Support cid: URLs/images.
3747
3748 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3749
3750         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
3751         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
3752         bindings, as they aren't useful at all.  `w' is moved to `W w'.
3753
3754         * gnus-move.el: Remove file, since it doesn't really work.
3755
3756         * gnus-html.el (gnus-article-html): Tell w3m that the input is
3757         UTF-8.  This seems to fix problems with some German web feeds.
3758
3759         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
3760         at the top so that the proper colours are applied.
3761
3762         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
3763         don't have dots in their names.
3764
3765         * gnus-art.el (gnus-article-view-part): Doc fix.
3766
3767         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
3768         XEmacs-compatible.
3769         (gnus-html-put-image): Don't do images on non-graphic displays.
3770
3771         * nnslashdot.el: Remove this unused backend.
3772
3773         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
3774         actions.
3775         (gnus-undo-register-1): Revert last change.
3776
3777         * gnus-group.el (gnus-group-completing-read): Protect against not
3778         having completion-styles bound.
3779
3780         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
3781         make broken recipients happier.
3782
3783         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
3784
3785         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
3786         point parameter.
3787
3788         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
3789
3790         * gnus-group.el (gnus-group-completing-read): Add 'substring to
3791         completion-styles for group selection.
3792
3793 2009-02-04  Andreas Schwab  <schwab@suse.de>
3794
3795         * gnus-score.el (gnus-score-string): Fix regex for matching extra
3796         headers and regexp-quote the match if necessary.
3797
3798 2009-03-24  Miles Bader  <miles@gnu.org>
3799
3800         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
3801         the blinking smiley.
3802
3803 2009-03-24  Simon Josefsson  <simon@josefsson.org>
3804
3805         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
3806         blink smiley.
3807
3808 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3809
3810         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
3811         where the dribbel file lives exists.
3812
3813         * message.el (message-send-mail-partially-limit): Change the default to
3814         nil, since most people don't want this.
3815
3816         * mm-url.el (mm-url-decode-entities): Also decode entities like
3817         &#x3212.
3818
3819 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
3820
3821         * gnus-sum.el (gnus-summary-idna-message):
3822         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
3823         Hyperlink urls in docstrings with URL `...'.
3824
3825 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
3826
3827         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
3828         functions.
3829
3830 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3831
3832         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
3833         say what the mouseover text should be.
3834
3835         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
3836         version of the mm-w3m-safe-url-regexp variable to only download images
3837         in the groups where we want that to happen.
3838
3839         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
3840
3841         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
3842         easier debugging.
3843         (gnus-article-beginning-of-window): Add kludge to allow spacing past
3844         big pictures in the article buffer.
3845
3846         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
3847         gnus-article-html.
3848         (mm-text-html-renderer): gnus-article-html needs curl in addition to
3849         w3m.
3850
3851         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
3852
3853 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3854
3855         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
3856         which doesn't exist.
3857
3858         * message.el (message-inhibit-ecomplete): New variable to allow some
3859         function to inhibit ecomplete address storage.
3860         (message-resend): Disable ecomplete message storage when resending
3861         messages.
3862
3863         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
3864
3865 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3866
3867         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
3868         Save excursion while copying, moving, and deleting articles in order to
3869         prevent the cursor from jumping to unforeseen place.
3870
3871 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3872
3873         * lpath.el: No need to bind bookmark-current-buffer,
3874         bookmark-yank-point and bookmark-make-record-function.
3875
3876 2010-08-17  Glenn Morris  <rgm@gnu.org>
3877
3878         * gnus-sync.el: Require gnus components whose functions are used.
3879
3880         * gnus-art.el (bookmark-make-record-function):
3881         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
3882         Declare for compiler.
3883
3884         * mm-url.el (mml-compute-boundary): Autoload.
3885
3886 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3887
3888         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
3889
3890 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
3891
3892         Typo fix "hoo4a" -> "hook".
3893
3894         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
3895
3896 2010-08-14  Glenn Morris  <rgm@gnu.org>
3897
3898         * gnus-sync.el (gnus-sync): Fix defgroup version.
3899
3900 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
3901
3902         Doc fixes and keep unknown groups (ammended for nunion bug fix).
3903
3904         * gnus-sync.el: Fix docs.
3905         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
3906         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
3907
3908 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
3909
3910         Optimizations for gnus-sync.el.
3911
3912         * gnus-sync.el: Add docs about gnus-sync-backend
3913         possibilities.
3914         (gnus-sync-save): Remove unnecessary message.
3915         (gnus-sync-read): Optimize and show what groups were skipped.
3916
3917 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
3918
3919         Minor bug fixes for gnus-sync.el.
3920
3921         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
3922         Don't read the sync on get-new-news.
3923
3924         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
3925         quiet.
3926
3927         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
3928         (fix typo).
3929
3930 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
3931
3932         Make saving and restoring of hidden threads work with overlays.
3933         Patch applied by Ted Zlatanov.
3934
3935         * gnus-sum.el (gnus-hidden-threads-configuration)
3936         (gnus-restore-hidden-threads-configuration): Update to deal with text
3937         properties, rather than searching for a magic character.
3938
3939 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
3940
3941         New gnus-sync.el library for synchronization of marks.
3942
3943         * gnus-sync.el: New library for synchronization of marks.
3944
3945         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
3946         renamed from `gnus-registry-grep-in-list'.
3947
3948         * gnus-registry.el (gnus-registry-follow-group-p):
3949         Use `gnus-grep-in-list'.
3950
3951         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
3952
3953 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3954
3955         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
3956         determining charset of text fails.
3957
3958 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3959
3960         * nnmail.el (nnmail-get-new-mail-1): Revert.
3961
3962         * nnml.el (nnml-active-number): Make sure names of newly created groups
3963         in nnml-group-alist are encoded.
3964
3965 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3966
3967         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
3968         containing non-ASCII characters in active file for nnml back end.
3969
3970 2010-07-24  David Engster  <dengste@eml.cc>
3971
3972         * mml-smime.el (mml-smime-epg-verify): Also accept the older
3973         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
3974
3975 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
3976
3977         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
3978         tag (Bug#6654).
3979
3980 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3981
3982         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
3983         the article buffer, not the summary buffer.
3984
3985 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3986
3987         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
3988         Emacs 23 as well.
3989
3990 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3991
3992         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
3993         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
3994
3995 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3996
3997         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
3998         Patch applied by Karl Fogel.
3999
4000         * gnus-sum.el (gnus-summary-bookmark-make-record):
4001         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
4002
4003 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4004
4005         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
4006         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
4007         C-w still not working correctly from Article buffers; Thierry's
4008         patch to fix that will be applied after this.
4009
4010         * gnus-art.el (bookmark-make-record-function): New local variable.
4011
4012         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
4013         article buffer.
4014         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
4015
4016 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
4017
4018         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
4019         on changes in bookmark.el.
4020
4021 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4022
4023         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
4024         `no-log' instead of message not to log prompt string.
4025
4026 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
4027
4028         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
4029         the *other* type of HTML form submission.
4030
4031 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
4032
4033         * auth-source.el (auth-source-pick): If choice does not contain a
4034         questioned keyword, set the check to t.
4035
4036 2010-06-12  Romain Francoise  <romain@orebokech.com>
4037
4038         * gnus-util.el (gnus-date-get-time): Move up before first use.
4039
4040 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4041
4042         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
4043         (gnus-article-edit-part): Bind it to make last part that is substituted
4044         or deleted visible.
4045         (gnus-mime-display-single): Buttonize part of which id equals to
4046         gnus-mime-buttonized-part-id.
4047
4048 2010-06-10  Dan Christensen  <jdc@uwo.ca>
4049
4050         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
4051         (gnus-dd-mmm): Use gnus-date-get-time.
4052         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
4053         simplify logic.
4054         (gnus-summary-limit-to-age): Use gnus-date-get-time.
4055         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
4056
4057 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
4058
4059         * auth-source.el (top): Autoload `secrets-list-collections',
4060         `secrets-create-item', `secrets-delete-item'.
4061         (auth-sources): Fix tag string.
4062         (auth-get-source, auth-source-retrieve, auth-source-create)
4063         (auth-source-delete): New defuns.
4064         (auth-source-pick): Rewrite in order to avoid 2 passes.
4065         (auth-source-forget-user-or-password): New parameter USERNAME.
4066         (auth-source-user-or-password): New parameters CREATE-MISSING and
4067         DELETE-EXISTING.  Retrieve password interactively, if needed.
4068
4069 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
4070
4071         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
4072         deleting unused directories when gnus-expert-user is t.
4073
4074 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4075
4076         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
4077         for each temp file when gnus-article-browse-delete-temp is ask.
4078
4079 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4080
4081         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
4082         Lisp calls to delete-backward-char by calls to delete-char.
4083
4084 2010-05-20  Kevin Ryde  <user42@zip.com.au>
4085
4086         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
4087
4088 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
4089
4090         * password-cache.el (password-cache-remove): Fix docstring.
4091
4092 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4093
4094         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
4095         article unless decoding article to be saved.
4096
4097 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4098
4099         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
4100         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
4101         generated within the mm-with-unibyte-current-buffer macro.
4102
4103 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4104
4105         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
4106         to nil when we're in a mml-preview buffer and no group is selected.
4107
4108 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
4109
4110         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
4111         when catching the `C-g'.  Reported by "Leo".
4112
4113 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4114
4115         * message.el (message-forward-make-body-plain)
4116         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
4117         multibyte-string-p.
4118
4119         * lpath.el: Revert.
4120
4121 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4122
4123         * message.el (message-forward-make-body-mml): Assume original message
4124         is multibyte string; error on unibyte.
4125         (message-forward-make-body-plain): Ditto; don't add excessive newline
4126         in body end.
4127
4128         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
4129
4130 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
4131
4132         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
4133         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
4134
4135 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4136
4137         * mm-extern.el (mm-extern-url): Don't use
4138         mm-with-unibyte-current-buffer.
4139         (mm-extern-cache-contents): Use with-current-buffer instead of
4140         save-excursion + set-buffer.
4141
4142 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4143
4144         * mm-util.el (mm-emacs-mule): Remove.
4145
4146 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
4147
4148         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
4149         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
4150         change.
4151
4152 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4153
4154         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
4155         bind the default value of enable-multibyte-characters to nil.
4156
4157 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4158
4159         * message.el (message-forward-make-body-plain)
4160         (message-forward-make-body-mml):
4161         Don't use mm-with-unibyte-current-buffer.
4162
4163 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4164
4165         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
4166
4167 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
4168
4169         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
4170         (Bug#5592).
4171
4172 2010-05-07  Julien Danjou  <julien@danjou.info>
4173
4174         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
4175         it to mm-pipe-part.
4176
4177         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
4178         it is given.
4179
4180 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4181
4182         * binhex.el (binhex-decode-region-internal)
4183         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
4184         (dns-query)
4185         * nnweb.el (nnweb-gmane-search)
4186         * pgg-parse.el (pgg-parse-armor)
4187         * pgg.el (pgg-verify-region)
4188         * sha1.el (sha1-string-external)
4189         * uudecode.el (uudecode-decode-region-internal)
4190         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
4191         XEmacs.
4192
4193         * gnus-art.el (gnus-article-browse-html-parts)
4194         * gnus-group.el (gnus-read-ephemeral-gmane-group)
4195         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
4196         make-temp-file.
4197
4198         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
4199         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
4200         compiling.
4201
4202         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
4203         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
4204         XEmacs when compiling.
4205
4206         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
4207         gnus-pick-mode-off-hook for XEmacs when compiling.
4208         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
4209         gnus-binary-mode-off-hook for XEmacs when compiling.
4210
4211         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
4212         Return nil if char-charset is not available.
4213
4214         * imap.el (imap-disable-multibyte)
4215         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
4216         macros.
4217
4218         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
4219         instead of encode-coding-string.
4220
4221         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
4222         'xemacs) instead of mm-emacs-mule to switch function definitions.
4223         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
4224
4225         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
4226         bind temporary-file-directory for XEmacs;
4227         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
4228         timer-set-function for XEmacs 21.4 and SXEmacs;
4229         bind timer-list for XEmacs 21.4 and SXEmacs;
4230         fbind char-charset and find-charset-region for non-Mule XEmacs;
4231         fbind decode-coding-region, decode-coding-string, detect-coding-region,
4232         encode-coding-region and encode-coding-string for XEmacs having no
4233         file-coding feature.
4234
4235 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
4236
4237         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
4238
4239 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4240
4241         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
4242         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
4243
4244 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
4245
4246         * mm-util.el (mm-decompress-buffer): Use `delete-file';
4247         alias `jka-compr-delete-temp-file' no longer exists.
4248
4249 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4250
4251         Use define-minor-mode in Gnus where applicable.
4252         * mml.el (mml-mode): Use define-minor-mode.
4253         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
4254         (gnus-undo-mode): Use define-minor-mode.
4255         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
4256         (gnus-dead-summary-mode): Use define-minor-mode.
4257         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
4258         Initialize in declaration.
4259         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
4260         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
4261         (gnus-mailing-list-mode): Use define-minor-mode.
4262         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
4263         (gnus-draft-mode): Use define-minor-mode.
4264         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
4265         (gnus-dired-mode): Use define-minor-mode.
4266
4267 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
4268
4269         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
4270         handles on recursive mml-to-mime translation and check them for
4271         boundary delimiter collisions.  Reported by Greg Troxel.
4272
4273 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4274
4275         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
4276
4277 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4278
4279         * mm-util.el (mm-find-buffer-file-coding-system):
4280         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
4281
4282 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
4283
4284         * message.el (message-generate-headers): Record insertion of optional
4285         headers as well.  Otherwise the check to prevent repeated insertion of
4286         optional headers is a no-op.
4287
4288 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
4289
4290         * smime.el: Don't mention CVS.
4291
4292         * nnrss.el (nnrss-fetch): Don't mention CVS.
4293
4294         * nnir.el: Don't mention CVS.
4295
4296 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4297
4298         * gnus-sum.el (gnus-summary-bookmark-make-record):
4299         Add `location' field.
4300
4301 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4302
4303         * lpath.el: Fbind bookmark-default-handler,
4304         bookmark-get-bookmark-record, bookmark-make-record-default,
4305         bookmark-prop-get for Emacs <23 and XEmacs.
4306
4307 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4308
4309         * gnus-sum.el: Add bookmark declarations to silence the compiler.
4310         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
4311         Use with-current-buffer to silence the byte-compiler.
4312         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
4313         bother to require `gnus'.
4314         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
4315
4316 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4317
4318         * gnus-sum.el (gnus-summary-bookmark-make-record)
4319         (gnus-summary-bookmark-jump): New functions.
4320         (gnus-summary-mode): Setup bookmark support.
4321
4322 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
4323
4324         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
4325         if set.
4326
4327 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4328
4329         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
4330         gnus-article-browse-html-save-cid-image; make it work recursively for
4331         forwarded messages as well.
4332         (gnus-article-browse-html-parts): Work when prefix arg is given.
4333         (gnus-article-browse-html-article): Doc fix.
4334
4335 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
4336
4337         * message.el (message-default-mail-headers):
4338         (message-default-headers): Carry the value mail-default-headers over
4339         into message-default-mail-headers, rather than message-default-headers.
4340
4341 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
4342
4343         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
4344         charset.
4345
4346         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
4347         charset into the <meta> tag when the article is encoded to utf-8.
4348
4349 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4350
4351         * gnus-art.el (gnus-article-browse-delete-temp-files):
4352         Delete directories as well.
4353         (gnus-article-browse-html-parts): Work for images that do not specify
4354         file names; delete temp directory when quitting; insert header at the
4355         right place; use file: scheme for image files.
4356
4357 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
4358
4359         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
4360         (gnus-article-browse-html-parts): Use it to make temporary cid image
4361         files in addition to html file so that browser may display them.
4362
4363 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
4364
4365         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
4366
4367 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4368
4369         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
4370
4371 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
4372
4373         * auth-source.el (auth-sources): Change default to be simpler.
4374         Explain about Secret Service API sources.  Improve Customize options.
4375         (auth-source-pick): Change to accept any number of search parameters.
4376         Implement fallbacks iteratively, not recursively.  Add scoring on the
4377         second pass and sort by score.  Call Secret Service API when needed.
4378         (auth-source-user-or-password): Use it.  Call Secret Service API
4379         directly when needed to get the user name and the password.
4380
4381 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
4382
4383         * message.el (message-interactive): Doc fix.
4384         (message-qmail-inject-args): Reflow.
4385         (message-kill-to-signature): Fix typo in docstring.
4386
4387         * smiley.el (smiley-buffer): Fix typo in docstring.
4388
4389 2010-03-24  Glenn Morris  <rgm@gnu.org>
4390
4391         * mail-source.el (gnus-message): Declare.
4392         (mail-source-delete-old-incoming): Require gnus-util.
4393
4394 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4395
4396         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
4397
4398         * message.el (ecomplete-setup): Autoload it for Emacs <23.
4399
4400         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
4401         password-cache's default if it is not bound.
4402         (mml-secure-passphrase-cache-expiry): Default to 16 that is
4403         password-cache-expiry's default if it is not bound.
4404
4405         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
4406         available in Emacs 21.
4407
4408         * lpath.el: Suppress compiler warnings for:
4409         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
4410         XEmacs;
4411         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
4412         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
4413         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
4414
4415 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
4416
4417         * auth-source.el (auth-sources): Fix up definition so extra parameters
4418         are always inline.
4419
4420 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
4421
4422         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
4423         wasn't updated after mismatch.  Clear cached mailbox info correctly
4424         when uidvalidity changes.
4425         (nnimap-group-prefixed-name): New function to avoid some code
4426         duplication.
4427         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
4428         (nnimap-request-group): Use it.
4429         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
4430         (nnimap-update-unseen): Significantly improved speed of Gnus startup
4431         with many imap folders.  This is done by caching the group status from
4432         the imap server persistently in a group parameter `imap-status'.  (This
4433         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
4434         but not persistently, so every Gnus startup was still very slow.)
4435
4436 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
4437
4438         * assistant.el (assistant-render-text): Run `widget-setup' and don't
4439         delete the extra newline.  Otherwise editing of :string and :number
4440         types don't work.
4441
4442 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4443
4444         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
4445         secrets.el dependency.
4446         (auth-sources): Add optional user name.  Add secrets.el configuration
4447         choice (unused right now).
4448
4449 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4450
4451         * gnus-sum.el (gnus-summary-make-menu-bar):
4452         Let `gnus-registry-install-shortcuts' fill in the functions.
4453
4454         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
4455         warnings.
4456         (gnus-registry-misc-menus): Variable to hold registry mark menus.
4457         (gnus-registry-install-shortcuts): Populate and use it in a
4458         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
4459
4460 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
4461
4462         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
4463         In-place substitutions for the group name encoding/decoding.
4464         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
4465         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
4466         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
4467         (nnimap-update-unseen, nnimap-request-list)
4468         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
4469         (nnimap-request-set-mark, nnimap-split-to-groups)
4470         (nnimap-split-articles, nnimap-request-newgroups)
4471         (nnimap-request-create-group, nnimap-request-accept-article)
4472         (nnimap-request-delete-group, nnimap-request-rename-group)
4473         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
4474         `encoded-mbx' for consistency.
4475         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
4476         variable `imap-current-mailbox'.
4477
4478         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
4479         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
4480
4481 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
4482
4483         * pop3.el (pop3-display-message-size-flag): Display message size byte
4484         counts during POP3 download.
4485         (pop3-movemail): Use it.
4486         (pop3-list): Implement listing of available messages.
4487
4488 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
4489
4490         * nnir.el (nnir-get-article-nov-override-function): New function to
4491         override the normal NOV retrieval.
4492         (nnir-retrieve-headers): Use it.
4493
4494 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
4495
4496         * auth-source.el (netrc-machine-user-or-password): Autoload.
4497
4498 2010-03-19  Glenn Morris  <rgm@gnu.org>
4499
4500         Stop message.el from loading about 40 libraries it doesn't always need.
4501         The general approach is to autoload rather than require, and to
4502         require in the specific functions rather than the file.  (Bug#5642)
4503
4504         * gmm-utils.el: Don't require wid-edit.
4505         (widget-create-child-value, widget-convert, widget-default-get):
4506         Autoload.
4507
4508         * gnus-util.el: Don't require time-date, netrc.
4509         (message-fetch-field, gnus-group-name-decode): Declare rather than
4510         autoloading.
4511         (gnus-fetch-field): Require message.
4512         (gnus-decode-newsgroups): Require gnus-group.
4513
4514         * ietf-drums.el: Don't require time-date.
4515
4516         * message.el: Don't require hashcash, canlock, ecomplete.
4517         Do require mail-utils.  Require nnheader only when compiling.
4518         (smtpmail-default-smtp-server): Remove declaration.
4519         (message-send-mail-function): Check smtpmail-default-smtp-server
4520         is bound rather than requiring smtpmail.
4521         (message-auto-save-directory, message-insert-signature):
4522         Use expand-file-name rather than nnheader-concat.
4523         (nnheader-insert-file-contents): Autoload.
4524         (hashcash-wait-async): Declare.
4525         (message-send-mail): Only call gnus-setup-posting-charset if
4526         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
4527         (message-send-mail-with-sendmail): Require sendmail.
4528         (canlock-password, canlock-password-for-verify): Declare.
4529         (message-canlock-password): Require canlock.
4530         (nnheader-get-report): Autoload.
4531         (gnus-setup-posting-charset): Declare.
4532         (message-send-news): Require gnus-msg.
4533         (message-make-references, message-make-in-reply-to): Use mail-header-id
4534         rather than the alias mail-header-message-id.
4535         (ecomplete-add-item, ecomplete-save): Declare.
4536         (message-put-addresses-in-ecomplete): Require ecomplete.
4537         (ecomplete-display-matches): Autoload.
4538
4539         * mm-decode.el: Don't require mailcap, gnus-util.
4540         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
4541         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
4542         Autoload.
4543         (mailcap-mime-extensions): Declare.
4544
4545         * mm-encode.el: Don't require mailcap.
4546         (mailcap-extension-to-mime): Autoload.
4547
4548         * mml-sec.el: Don't require password-cache.
4549
4550         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
4551         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
4552         (mml-minibuffer-read-type): Require mailcap.
4553         (mml-preview): Require gnus-msg.
4554
4555         * mml1991.el: Require password-cache.
4556         (password-cache-expiry): Remove declaration.
4557
4558         * mml2015.el: Require password-cache.
4559         (password-cache-expiry): Remove declaration.
4560
4561         * nneething.el (mailcap): Require mailcap.
4562
4563         * nnheader.el (declare-function): Add compatibility stub.
4564         (message-remove-header): Declare rather than autoload.
4565         (nnheader-replace-header): Require message.
4566
4567         * nnimap.el (declare-function): Add compatibility stub.
4568         (netrc-parse, netrc-machine-user-or-password): Declare.
4569         (nnimap-open-connection): Require netrc.
4570
4571         * nntp.el (declare-function): Add compatibility stub.
4572         (netrc-parse, netrc-machine, netrc-get): Declare.
4573         (nntp-send-authinfo): Require netrc.
4574
4575         * rfc2047.el: Don't require qp.
4576         (quoted-printable-encode-region, quoted-printable-decode-string):
4577         Autoload.
4578
4579         * sieve-mode.el: Don't require easymenu.
4580         (easy-menu-add-item): Autoload it.
4581
4582         * spam-stat.el (time-to-number-of-days): Autoload it.
4583
4584 2010-03-19  Glenn Morris  <rgm@gnu.org>
4585
4586         * password-cache.el (password-cache, password-cache-expiry): Autoload.
4587
4588 2010-03-18  Glenn Morris  <rgm@gnu.org>
4589
4590         * hashcash.el (declare-function): Remove duplicate definition.
4591
4592 2010-03-17  Kevin Ryde  <user42@zip.com.au>
4593
4594         * mml.el (mml-read-tag): Unquote values with `read' to reverse
4595         prin1 in mml-insert-tag (just stripping the quotes gave wrong
4596         value if any backslash escapes).
4597
4598 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4599
4600         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
4601         if it is available.  (bug#5647)
4602
4603         * lpath.el: Suppress compiler warning for coding-system-from-name for
4604         Emacs 21 and XEmacs.
4605
4606 2010-03-14  Juri Linkov  <juri@jurta.org>
4607
4608         * hmac-def.el:
4609         * hmac-md5.el:
4610         * netrc.el: Fix keywords.
4611
4612 2010-02-26  Glenn Morris  <rgm@gnu.org>
4613
4614         * message.el (message-send-mail-function): Change the default, so that
4615         it inherits from a customized send-mail-function.  (Bug#5643)
4616
4617 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4618
4619         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
4620         shell-command-to-string signals an error (bug#5299).
4621
4622 2010-02-24  Glenn Morris  <rgm@gnu.org>
4623
4624         * message.el (message-smtpmail-send-it)
4625         (message-send-mail-with-mailclient): Doc fixes.
4626
4627 2010-02-16  Glenn Morris  <rgm@gnu.org>
4628
4629         * message.el (message-default-mail-headers): Change the default value
4630         to ease the transition from mail-mode to message-mode.  (Bug#5555)
4631
4632 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4633
4634         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
4635         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
4636
4637 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
4638
4639         * time-date.el (date-to-time): Doc fix (Bug#5408).
4640
4641 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
4642
4643         * message.el (message-mail): Just pass yank-action on to message-setup.
4644         (message-setup): Handle (FUN . ARGS) form of yank-action.
4645         (message-with-reply-buffer, message-widen-reply)
4646         (message-yank-original): Handle non-buffer values of
4647         message-reply-buffer (Bug#4080).
4648         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
4649
4650 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
4651
4652         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
4653         Fix typo in docstring.
4654
4655 2010-01-08  Jason Rumney  <jasonr@gnu.org>
4656
4657         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
4658         response.
4659
4660 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4661
4662         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
4663
4664         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4665
4666         * message.el (message-check-news-header-syntax): Protect against a
4667         string that `rfc822-addresses' returns when parsing fails.
4668
4669 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4670
4671         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
4672         (gnus-previous-char-property-change): New functions.
4673
4674         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
4675
4676 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
4677
4678         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
4679         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
4680
4681 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
4682
4683         * message.el (message-exchange-point-and-mark): Rework last change to
4684         avoid using optional arg of exchange-point-and-mark, for backward
4685         compatibility.
4686
4687 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
4688
4689         * message.el (message-exchange-point-and-mark):
4690         Call exchange-point-and-mark with an argument rather than setting
4691         mark-active by hand (Bug#5175).
4692
4693 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4694
4695         * nntp.el (nntp-service-to-port): Work for service expressed with
4696         numeric string; replace [:digit:] with [0-9] for XEmacs.
4697
4698 2009-12-17  Glenn Morris  <rgm@gnu.org>
4699
4700         * gnus-group.el (gnus-bug-group-download-format-alist):
4701         Change emacs entry to debbugs.gnu.org.  Bump :version.
4702
4703 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
4704
4705         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
4706
4707 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
4708
4709         * message.el (message-info): Explain why we use `Info-goto-node'.
4710
4711 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4712
4713         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
4714
4715 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4716
4717         * message.el (message-completion-in-region): New compatibility function.
4718         (message-expand-group): Use it.
4719
4720 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4721
4722         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
4723         with no unread article should be listed if the 2nd arg `predicate' is
4724         given.
4725
4726 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4727
4728         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
4729
4730 2009-11-29  Juri Linkov  <juri@jurta.org>
4731
4732         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
4733         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
4734         on `gnus-recenter'.  (Bug#4698, Bug#4981)
4735
4736 2009-11-26  Kevin Ryde  <user42@zip.com.au>
4737
4738         * sha1.el (sha1-string-external): default-directory "/" in case
4739         otherwise non-existent.  process-connection-type pipe for touch of
4740         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
4741
4742 2009-11-25  Kevin Ryde  <user42@zip.com.au>
4743
4744         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
4745         it's comms related and sgml-mode.el has "comm" on that basis too.
4746
4747 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4748
4749         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
4750         containing tspecial characters if they have been already quoted.
4751
4752 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4753
4754         * dns-mode.el (auto-mode-alist): Purecopy string.
4755
4756 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4757
4758         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
4759
4760 2009-10-24  Glenn Morris  <rgm@gnu.org>
4761
4762         * gnus-art.el (help-xref-stack-item): Define for compiler.
4763
4764 2009-10-21  Kevin Ryde  <user42@zip.com.au>
4765
4766         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
4767
4768 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4769
4770         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
4771
4772 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4773
4774         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
4775         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
4776
4777 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4778
4779         * gnus.el (gnus-overlay-get): New alias to overlay-get.
4780         (gnus-overlays-in): New alias to overlays-in.
4781
4782         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
4783         gnus-overlay-get, and gnus-delete-overlay.
4784         (gnus-summary-show-thread): Make it work as well for systems in which
4785         next-single-char-property-change is not available.
4786         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
4787
4788         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
4789         (gnus-overlay-get): New alias to extent-property.
4790         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
4791
4792         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
4793         SXEmacs.
4794
4795         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
4796         SXEmacs.
4797
4798 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
4799
4800         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
4801
4802 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
4803
4804         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
4805         and XEmacs that don't have `remove-overlays'.
4806
4807 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4808
4809         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
4810         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
4811         selective display.  Use overlays instead.
4812
4813 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
4814
4815         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
4816
4817 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
4818
4819         * spam-stat.el (spam-stat-load): Fix typo in message.
4820
4821 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
4822
4823         * dig.el (dig-invoke): Fix typo in docstring.
4824         (query-dig): Reflow docstring.
4825
4826 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
4827
4828         * gnus-art.el (gnus-article-encrypt-body):
4829         * message.el (message-check-recipients):
4830         * mm-util.el (mm-codepage-setup):
4831         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
4832         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
4833
4834 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
4835
4836         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
4837         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
4838         keys from the menu if mm-{sign,encrypt}-option is 'guided.
4839         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
4840         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
4841
4842 2009-09-21  Kevin Ryde  <user42@zip.com.au>
4843
4844         * dig.el: Add "Keywords: comm", as per net-utils.el.
4845
4846 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4847
4848         * dig.el (dig-mode): Use define-derived-mode.
4849
4850 2009-09-19  Glenn Morris  <rgm@gnu.org>
4851
4852         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
4853
4854 2009-09-18  Glenn Morris  <rgm@gnu.org>
4855
4856         * gnus-diary.el (gnus-diary-check-message):
4857         * message.el (message-insert-formatted-citation-line):
4858         * nnbabyl.el (top-level):
4859         * nndiary.el (nndiary-schedule):
4860         Fix typos in condition-case handlers.
4861
4862 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4863
4864         * gnus-art.el (gnus-article-edit-part): Work for the buffer
4865         configuration that provides the sole article window in a frame;
4866         position point correctly after deleting a part.
4867
4868 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
4869
4870         * spam.el (spam-unregister-on-reregister): Add boolean variable.
4871         (spam-resolve-registrations-routine): Use it to unregister articles
4872         that change status.
4873
4874 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4875
4876         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
4877         with XEmacs.
4878         (parse-time-string-chars): Use it.
4879
4880 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
4881
4882         * imap.el (imap-interactive-login): Better messages.
4883         (imap-open): Fix bug with renamed buffer on reconnect.
4884         (imap-authenticate): Add buffer-local imap-last-authenticator variable
4885         for easier debugging and cleaner code.  On successful (guessed based on
4886         server capabilities) secondary authentication, set imap-state
4887         correctly.
4888         (imap-last-authenticator): Define imap-last-authenticator as a variable
4889         to avoid warnings.
4890
4891 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4892
4893         * nnrss.el (nnrss-request-article): Remove binding of
4894         default-enable-multibyte-characters that has gotten needless by
4895         the 2007-07-13 change in rfc2047-encode-message-header.
4896
4897         * mml.el (mml-insert-multipart): Error on the message header.
4898         (mml-insert-part): Error on the message header; position point at
4899         the end of a MIME tag.
4900
4901 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4902
4903         * time-date.el (autoload): Expand define-obsolete-function-alias into
4904         defalias and make-obsolete for old Emacsen that Gnus supports.
4905         (with-no-warnings): Define it for old Emacsen.
4906         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
4907         is available.
4908         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
4909         float-time is available; suppress compile warning for time-to-seconds.
4910
4911         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
4912         (gnus-float-time): Alias to float-time if it exists.
4913
4914         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
4915         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
4916         float-time is available; suppress compile warning for time-to-seconds.
4917
4918         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
4919         XEmacs.
4920
4921 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
4922
4923         * imap.el (imap-message-map): Docstring fix.
4924
4925 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4926
4927         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
4928         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
4929         Add the optional argument `encoding' that overrides the default.
4930
4931         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
4932         mm-encode-buffer.
4933
4934 2009-09-04  Glenn Morris  <rgm@gnu.org>
4935
4936         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
4937         mm-disable-multibyte, rather than default-enable-multibyte-characters.
4938         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
4939         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
4940         * mm-util.el (mm-with-unibyte-current-buffer)
4941         (mm-find-buffer-file-coding-system):
4942         * yenc.el (yenc-decode-region): Use default-value rather than
4943         default-enable-multibyte-characters.
4944
4945 2009-09-03  Glenn Morris  <rgm@gnu.org>
4946
4947         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
4948         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
4949         than default-enable-multibyte-characters.
4950
4951 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
4952
4953         * gnus-art.el (gnus-article-read-summary-keys):
4954         Fix gnus-buffer-configuration's value temporarily used.
4955
4956 2009-09-02  Glenn Morris  <rgm@gnu.org>
4957
4958         * gnus-util.el (gnus-float-time): New function.
4959         * gnus-delay.el (gnus-delay-article):
4960         * gnus-sum.el (gnus-thread-latest-date):
4961         * gnus-util.el (gnus-user-date): Use gnus-float-time.
4962         * nnspool.el (nnspool-request-newgroups):
4963         Use gnus-float-time rather than time-to-seconds.
4964         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
4965
4966         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
4967         (gnus-header-subject-face, gnus-header-newsgroups-face)
4968         (gnus-header-name-face, gnus-header-content-face):
4969         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
4970         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
4971         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
4972         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
4973         (gnus-cite-face-11):
4974         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
4975         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
4976         (gnus-server-closed-face, gnus-server-denied-face)
4977         (gnus-server-offline-face):
4978         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
4979         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
4980         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
4981         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
4982         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
4983         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
4984         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
4985         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
4986         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
4987         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
4988         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
4989         (gnus-summary-selected-face, gnus-summary-cancelled-face)
4990         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
4991         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
4992         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
4993         (gnus-summary-high-undownloaded-face)
4994         (gnus-summary-low-undownloaded-face)
4995         (gnus-summary-normal-undownloaded-face)
4996         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
4997         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
4998         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
4999         (gnus-splash-face):
5000         * message.el (message-header-to-face, message-header-cc-face)
5001         (message-header-subject-face, message-header-newsgroups-face)
5002         (message-header-other-face, message-header-name-face)
5003         (message-header-xheader-face, message-separator-face)
5004         (message-cited-text-face, message-mml-face):
5005         * sieve-mode.el (sieve-control-commands-face)
5006         (sieve-action-commands-face, sieve-test-commands-face)
5007         (sieve-tagged-arguments-face):
5008         * spam.el (spam-face):
5009         Mark face aliases with "-face" in the name as obsolete.
5010
5011 2009-09-01  Glenn Morris  <rgm@gnu.org>
5012
5013         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
5014         than goto-line.
5015
5016 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5017
5018         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
5019         Don't move point if the command is invoked inside the message header.
5020
5021 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5022
5023         * imap.el (imap-send-command): Simplify.
5024         (imap-wait-for-tag): point-max -> buffer-size.
5025
5026 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5027
5028         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
5029         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
5030         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
5031         * nnir.el (nnir-swish-e-index-file):
5032         * gnus-sum.el (gnus-summary-delete-marked-as-read)
5033         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
5034         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
5035         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
5036         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
5037         (gnus-treat-display-xface): Add Emacs version of obsolescence.
5038
5039 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5040
5041         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
5042         Don't save excursion.
5043
5044 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5045
5046         * nnheader.el (nnheader-find-file-noselect):
5047         * mm-util.el (mm-insert-file-contents):
5048         Use (default-value 'major-mode) instead of default-major-mode.
5049
5050 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5051
5052         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
5053
5054 2009-08-26  Glenn Morris  <rgm@gnu.org>
5055
5056         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
5057         than placing in files.el.
5058
5059 2009-08-25  Glenn Morris  <rgm@gnu.org>
5060
5061         * nnir.el (top-level): Don't require cl at run-time.
5062         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
5063         Replace cl-function substitute with gnus-replace-in-string.
5064         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
5065         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
5066         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
5067         simplified expansions.
5068
5069 2009-08-25  Kevin Ryde  <user42@zip.com.au>
5070
5071         * dig.el (dig): Add autoload cookie.
5072
5073 2009-08-22  Glenn Morris  <rgm@gnu.org>
5074
5075         * gnus-art.el (gnus-button-patch): Use forward-line rather than
5076         goto-line.
5077
5078 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
5079
5080         * parse-time.el (parse-time-string-chars): Save match data.
5081
5082 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
5083
5084         * parse-time.el (parse-time-string-chars): Compute using character
5085         classes, to handle non-ascii characters (Bug#3190).
5086
5087 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5088
5089         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
5090
5091         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
5092         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
5093         (gnus-mm-display-part, gnus-mime-display-single)
5094         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
5095         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
5096
5097         * gnus-sum.el
5098         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
5099         (gnus-summary-move-article): Add expirable mark to articles copied or
5100         moved to group that has auto-expire turned on if the option is non-nil.
5101
5102 2009-07-24  Glenn Morris  <rgm@gnu.org>
5103
5104         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
5105         Fix typo.  (Bug#3903)
5106
5107 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5108
5109         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
5110         gnus-article-read-summary-keys rather than gnus-summary-edit-article
5111         that should not be used for draft articles.
5112         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
5113         that has no concern in minor mode keys.
5114         (gnus-article-summary-command, gnus-article-summary-command-nosave):
5115         Abolish.
5116
5117 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5118
5119         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
5120         article without making inquiry to a user for unknown encoding.
5121
5122         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
5123         (nnmaildir--scan): Assume i-node and device number that file-attributes
5124         returns might be cons-cell.
5125
5126         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
5127
5128         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
5129
5130 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
5131
5132         * auth-source.el: Remove docs now in auth.texi.  Don't use
5133         `gnus-message' for logging.  Add new variables `auth-source-debug' and
5134         `auth-source-hide-passwords' and use them.
5135
5136 2009-07-15  Glenn Morris  <rgm@gnu.org>
5137
5138         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
5139
5140 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5141
5142         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
5143         excessive whitespace from the default values of title and description.
5144
5145 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5146
5147         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
5148         mail-fetch-field to fetch Content-Description header in order to
5149         exclude newlines.
5150
5151 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
5152
5153         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
5154         format used by GnuPG 2.0.11.
5155
5156 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5157
5158         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
5159         to deleted part.
5160
5161 2009-05-30  David Engster  <dengste@eml.cc>
5162
5163         * nnmairix.el: Remove old documentation in the commentary block.
5164         (nnmairix-request-group): Do not update active file for nnml back ends.
5165         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
5166         end so that overview files are ignored.
5167         (nnmairix-update-groups): Make updating the groups more robust by using
5168         marks.
5169         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
5170         with dollar characters in message-id.
5171
5172 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
5173
5174         * spam.el: Use dns-query instead of query-dns.  Was renamed on
5175         2008-12-25 in dns.el.
5176
5177 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5178
5179         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
5180         could happen if the text is only composed of spaces and/or tabs.
5181
5182 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
5183
5184         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
5185         when sending a queued message to avoid extra mml tags.
5186
5187 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5188
5189         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
5190
5191 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5192
5193         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
5194         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
5195         rmail-toggle-header for XEmacs;
5196         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
5197
5198 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5199
5200         * gnus-dired.el: Remove autoload for gnus-setup-message.
5201         (gnus-dired-attach): Fake this-command value to prevent Gnus from
5202         displaying Gnus logo; always use compose-mail.
5203
5204 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5205
5206         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
5207
5208 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5209
5210         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
5211         (gnus-nocem-issuers): List currently active issuers; fix custom type.
5212         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
5213         available.
5214         (gnus-nocem-epg-verify): New function.
5215
5216 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
5217
5218         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
5219
5220 2009-02-15  Glenn Morris  <rgm@gnu.org>
5221
5222         * gnus-util.el (rmail-insert-rmail-file-header)
5223         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
5224         autoloads.
5225         (rmail-default-rmail-file): Remove unnecessary declaration.
5226         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
5227
5228 2009-02-14  Glenn Morris  <rgm@gnu.org>
5229
5230         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
5231         variable (only used in gnus-util, which declares it anyway).
5232         (rmail-output-to-rmail-file): Remove autoload of deleted function,
5233         which was only needed by gnus-art (changed to not use it any more).
5234         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
5235         only used in gnus-util, which autoloads it itself.
5236         (rmail-update-summary): Fix autoload.
5237
5238         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
5239         rather than rmail-output-to-rmail-file.
5240
5241 2009-02-07  Glenn Morris  <rgm@gnu.org>
5242
5243         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
5244         autoload of function that no longer exists.
5245         (rmail-toggle-header): Declare.
5246         (message-forward-rmail-make-body): Handle mbox Rmail.
5247
5248 2009-01-31  Glenn Morris  <rgm@gnu.org>
5249
5250         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
5251         2009-01-09 change.
5252
5253 2009-01-31  Dave Love  <fx@gnu.org>
5254
5255         * imap.el (imap-fetch-safe): Bind debug-on-error.
5256         (imap-debug): Add imap-fetch-safe.
5257
5258 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
5259
5260         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
5261         (auth-source-forget-all-cached): New convenience function.
5262         (auth-source-user-or-password): Accept list of modes or a single mode.
5263
5264         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
5265         auth-source modes.
5266
5267         * netrc.el (netrc-machine-user-or-password): Use list of
5268         auth-source modes.
5269
5270         * nnimap.el (nnimap-open-connection): Use list of
5271         auth-source modes.
5272
5273         * nntp.el (nntp-send-authinfo): Use list of
5274         auth-source modes.
5275
5276 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
5277
5278         * auth-source.el: Update docs to reflect epa-file-enable is to be used
5279         now.
5280
5281 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5282
5283         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
5284         coding system in XEmacs; add a workaround for XEmacs.
5285
5286         * lpath.el: Fbind coding-system-aliasee.
5287
5288 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5289
5290         * mm-util.el (mm-coding-system-priorities): Protect against nil value
5291         of current-language-environment.
5292
5293 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
5294
5295         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
5296         available at runtime.
5297
5298 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5299
5300         * gnus-art.el (article-date-ut): Fix end point of narrowing.
5301
5302 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
5303
5304         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
5305         the greatest positive fixnum value doesn't work under an XEmacs with
5306         bignum support; use the most-positive-fixnum constant instead,
5307         available since Emacs 21.1 with cl and XEmacs 21.1.
5308
5309 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5310
5311         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
5312         XEmacs gets not to work.
5313
5314 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5315
5316         * mm-util.el (mm-coding-system-priorities): Allow the value like
5317         "Japanese (UTF-8)" of current-language-environment.
5318
5319 2009-01-09  Glenn Morris  <rgm@gnu.org>
5320
5321         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
5322         with last-command-event.
5323
5324 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
5325
5326         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
5327         in the doc string.
5328
5329         * message.el (message-fix-before-sending): Amend comment.
5330
5331 2009-01-08  Dave Love  <fx@gnu.org>
5332
5333         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
5334
5335 2009-01-07  David Engster  <dengste@eml.cc>
5336
5337         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
5338         simplified server definitions by converting it via
5339         gnus-server-to-method.
5340
5341 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5342
5343         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
5344         parameter's operands.
5345
5346 2009-01-06  David Engster  <dengste@eml.cc>
5347
5348         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
5349         primary select method (for gnus-group-mark-article-as-read).
5350
5351 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
5352
5353         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
5354         `(gnus)Face', not `(gnus)X-Face'.
5355
5356 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5357
5358         * mm-util.el (mm-ucs-to-char): New function.
5359
5360         * mm-url.el (mm-url-decode-entities): Use it.
5361
5362         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
5363         unicode-to-char.
5364
5365 2009-01-05  Dave Love  <fx@gnu.org>
5366
5367         * time-date.el: Require cl for `declare'.
5368
5369 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
5370
5371         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
5372         Dave Love.
5373
5374 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
5375
5376         * message.el (message-fix-before-sending): Add `eight-bit' to
5377         illegible-text check.
5378
5379 2009-01-03  Michael Olson  <mwolson@gnu.org>
5380
5381         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
5382         `headers' is nil.  This can occur if the IMAP server does not have
5383         permissions to read messages from a folder, but can write new messages
5384         to the folder.
5385         (nnimap-request-article-part): Do not insert `data' if it is nil.
5386
5387         * imap.el (imap-parse-fetch): Courier can insert spurious blank
5388         characters which will confuse `read', so skip past them.
5389
5390 2009-01-01  Dave Love  <fx@gnu.org>
5391
5392         * imap.el (imap-string-to-integer): Fix typo.
5393         (imap-fetch-safe): New function.
5394         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
5395
5396         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
5397
5398         * imap.el (imap-process-connection-type, imap-debug, imap-open):
5399         (imap-parse-greeting): Fix doc strings.
5400         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
5401         (imap-parse-flag-list): Make messages unique.
5402         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
5403
5404         * nnimap.el: Fix author email.
5405         (nnimap-split-rule): Add FIXME comment.
5406         (nnimap-debug): Fix doc string.
5407
5408 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5409
5410         * dns.el (dns-set-servers): Check "Address".  Fix typo.
5411
5412 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
5413
5414         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
5415         nslookup if resolv.conf isn't available.
5416         (dns-query): Rename from query-dns.
5417         (dns-query-cached): Rename from query-dns-cached.
5418
5419 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5420
5421         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
5422         overlay-arrow-position and overlay-arrow-string buffer-local; no need
5423         to check if those variables exist (first appeared in Emacs 18.50).
5424
5425 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5426
5427         * mm-util.el (mm-line-number-at-pos): New function.
5428
5429         * spam-report.el (spam-report-process-queue): Use it.
5430
5431 2008-12-24  David Engster  <dengste@eml.cc>
5432
5433         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
5434         parameters that haven't existed as variables as buffer-local variables.
5435
5436 2008-12-23  Dave Love  <fx@gnu.org>
5437
5438         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
5439         cadar.
5440
5441         * sieve-manage.el (sieve-manage-starttls-p): Rename from
5442         imap-starttls-p.
5443         (sieve-manage-starttls-open): Rename from imap-starttls-open.
5444
5445 2008-12-22  Dave Love  <fx@gnu.org>
5446
5447         * imap.el: Fix author email.  Doc fixes.
5448         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
5449         reply.
5450
5451 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
5452
5453         * spam-report.el (spam-report-gmane-max-requests): New constant.
5454         (spam-report-gmane-wait): New variable.
5455         (spam-report-gmane-ham, spam-report-gmane-spam)
5456         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
5457         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
5458         the server.
5459
5460         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
5461         Add explanations.
5462
5463         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
5464         nnheader-accept-process-output and nnheader-read-timeout if available.
5465         (pop3-movemail): Use it.
5466
5467         * message.el (message-check-news-body-syntax): Fix signature check if
5468         there's an attachment.
5469
5470 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
5471
5472         * mm-util.el: Add comments to the mm- emulating functions.
5473
5474 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
5475
5476         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
5477         Reported by Stephen Berman <stephen.berman@gmx.net>.
5478
5479 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5480
5481         * mm-util.el (mm-substring-no-properties): New function.
5482         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
5483         (mm-special-display-p): Enable those lambda forms to be byte compiled.
5484         (mm-string-to-multibyte): Doc fix.
5485
5486         * mml.el (mml-attach-file): Use mm-substring-no-properties.
5487
5488 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
5489
5490         * mml.el (mml-attach-file): Strip text properties from file name.
5491         (Bug#1574)
5492
5493 2008-12-16  Glenn Morris  <rgm@gnu.org>
5494
5495         * mm-util.el (mm-charset-override-alist): Declare for compiler.
5496
5497 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5498
5499         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
5500         knows since the charset specified might be a bogus alias that
5501         mm-charset-synonym-alist provides.
5502
5503 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
5504
5505         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
5506         "ISO_8859-1".
5507
5508         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
5509
5510 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5511
5512         * mm-util.el (mm-charset-eval-alist):
5513         Define it before mm-charset-to-coding-system.
5514         (mm-charset-to-coding-system): Add optional argument `silent';
5515         define it before mm-charset-override-alist.
5516         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
5517         default value if it can be used in Emacs currently running;
5518         silence mm-charset-to-coding-system.
5519
5520 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5521
5522         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
5523         `allow-override' which says whether to use `mm-charset-override-alist'.
5524         (rfc2047-decode-encoded-words): Use it.
5525
5526         * mm-util.el (mm-charset-override-alist): Fix custom type;
5527         add `(gb2312 . gbk)' to choices.
5528
5529 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5530
5531         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
5532         fast.
5533
5534         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
5535
5536         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
5537
5538 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
5539
5540         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
5541         on links.
5542
5543         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
5544
5545 2008-12-03  Lute Kamstra  <lute@gnu.org>
5546
5547         * sha1.el: Remove leading * from docstrings of defcustoms,
5548         deffaces, defconsts and defuns.
5549
5550 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5551
5552         * message.el (message-idna-to-ascii-rhs-1): Protect against local
5553         users' addresses that don't have domain parts.
5554         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
5555         rather than message-narrow-to-head since there will be the message
5556         header separator.
5557
5558 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5559
5560         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
5561         since the result is inserted in a unibyte buffer anyway.
5562         (nnimap-demule-use-string-to-multibyte): Remove.
5563         (nnimap-demule): Alias it to mm-string-to-multibyte.
5564
5565 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
5566
5567         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
5568         variable for debugging bug#464 and bug#1174.
5569         (nnimap-demule): Use it.
5570
5571 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
5572
5573         * gnus-score.el (gnus-score-find-trace): Handle default score in total
5574         score calculation correctly.
5575
5576 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5577
5578         * message.el (message-send-mail): Just set the buffer to unibyte
5579         rather than use mm-with-unibyte-current-buffer which does a lot more.
5580         (message-send-mail-partially): Don't bother with
5581         mm-with-unibyte-current-buffer since it's already been made unibyte by
5582         message-send-mail.
5583
5584 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
5585
5586         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
5587
5588 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
5589
5590         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
5591
5592 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5593
5594         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
5595         require itself and to remove `with-no-warnings'.
5596
5597 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
5598
5599         * starttls.el (starttls-any-program-available): Get the name of the
5600         available TLS layer program.
5601         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
5602         well as the host name in the "opening" message.
5603
5604         * auth-source.el (auth-source-cache, auth-source-do-cache)
5605         (auth-source-user-or-password): Cache passwords and logins by default,
5606         allow override with `auth-source-do-cache'.
5607         (auth-source-forget-user-or-password): Allow users to remove cache
5608         entries if needed.
5609
5610 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
5611
5612         * md4.el (md4-buffer): Fix typo in docstring.
5613         (md4, md4-64): Doc fixes.
5614         (md4-pack-int32): Reflow docstring.
5615
5616 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5617
5618         * ietf-drums.el (ietf-drums-remove-comments): Localize second
5619         condition-case to only the forward-sexp call.
5620
5621 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5622
5623         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
5624         quotes contained.  Make it more robust regardless by an extra
5625         condition-case wrapper.
5626
5627 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5628
5629         * lpath.el: No need to fbind codepage-setup for Emacs 23.
5630
5631 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5632
5633         * nnml.el (nnml-request-expire-articles): Check if the function set to
5634         `nnmail-expiry-target' returns the symbol `delete'.
5635
5636         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
5637
5638         * nnmail.el (nnmail-expiry-target): Fix custom type.
5639
5640 2008-10-02  Glenn Morris  <rgm@gnu.org>
5641
5642         * mm-util.el (mm-codepage-setup): Tweak codepage error.
5643         Silence compiler warning.
5644
5645 2008-10-01  Magnus Henoch  <mange@freemail.hu>
5646
5647         * tls.el (open-tls-stream): Show the actual command being
5648         executed, instead of the format string.
5649
5650 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5651
5652         * lpath.el: Fbind codepage-setup for Emacs 23.
5653
5654 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
5655
5656         * mml.el (mml-menu): Don't assume mml2015 is bound.
5657
5658 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5659
5660         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
5661         exists.
5662
5663 2008-09-27  Glenn Morris  <rgm@gnu.org>
5664
5665         * gnus-util.el (mail-header-remove-comments): Autoload it.
5666
5667 2008-09-27  Andreas Schwab  <schwab@suse.de>
5668
5669         * gnus-util.el (gnus-split-references): Strip comments.
5670         (gnus-parent-id): Likewise.
5671
5672 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
5673
5674         * message.el (message-confirm-send): Fix version.
5675
5676 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5677
5678         * message.el (message-idna-to-ascii-rhs-1): Use
5679         mail-extract-address-components rather than mail-header-parse-addresses
5680         that is an alias by default to ietf-drums-parse-addresses that does not
5681         support non-ASCII names in headers' contents.
5682
5683 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5684
5685         * message.el (message-confirm-send): Fix variable documentation to
5686         avoid the "y/n" wording.
5687
5688 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
5689
5690         * message.el (message-set-auto-save-file-name): Save to a different
5691         filename so multiple messages (especially drafts) can be recovered.
5692
5693 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
5694
5695         * message.el (message-confirm-send): Add appropriate version.
5696
5697 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
5698
5699         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
5700         defvar.
5701
5702 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
5703
5704         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
5705         (mm-pkcs7-enveloped-magic): Ditto.
5706
5707 2008-09-17  Simon Josefsson  <simon@josefsson.org>
5708
5709         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
5710         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
5711
5712 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
5713
5714         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
5715         default, it's better.
5716
5717 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
5718
5719         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
5720         summary line gnus-number property and ignore them (with a warning
5721         message).
5722
5723 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5724
5725         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
5726         macro caddr in the interactive form since it won't be expanded.
5727
5728 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5729
5730         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
5731         `charset'; fix name of function called recursively.
5732         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
5733
5734 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5735
5736         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
5737         (gnus-mime-set-charset-parameters): New function.
5738         (gnus-mime-view-part-as-charset): Use it to correctly display part
5739         specifying wrong charset.
5740
5741 2008-09-08  David Engster  <dengste@eml.cc>
5742
5743         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
5744         in completing-read for back end server.
5745
5746 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
5747
5748         * message.el (message-confirm-send): New variable to confirm sending a
5749         message.
5750         (message-send): Use it.
5751
5752 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
5753
5754         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
5755
5756 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5757
5758         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
5759
5760 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
5761
5762         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
5763         prevent tracking too many groups.
5764         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
5765         Use it.
5766
5767 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
5768
5769         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
5770         moving point to the bottom of the window in order to avoid recentering.
5771
5772 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5773
5774         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
5775
5776         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
5777         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
5778         (gnus-article-beginning-of-window): Fix calculation.
5779
5780 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5781
5782         * gnus-msg.el (gnus-summary-supersede-article)
5783         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
5784         value of gnus-newsgroup-charset to decode non-MIME encoded text in
5785         message header.
5786
5787 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
5788
5789         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
5790         pending output coming after the status change.
5791
5792 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
5793
5794         * message.el:
5795         * gnus-start.el:
5796         * gnus-registry.el: Remove VMS support.
5797
5798 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5799
5800         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
5801         macro.
5802         (rfc2104-hash): Use it.
5803
5804 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
5805
5806         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
5807         (gnus-summary-sort-by-most-recent-date): New commands.
5808         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
5809         and menu entries.
5810
5811 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5812
5813         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
5814         don't redisplay article for raw contents; remove plural articles stuff.
5815
5816         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
5817         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
5818         on gnus-summary-save-article; display results properly.
5819
5820 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5821
5822         * lpath.el: No need to fbind ns-focus-frame.
5823
5824 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5825
5826         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
5827
5828 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5829
5830         * gnus-art.el (gnus-summary-save-in-pipe):
5831         Consider gnus-save-all-headers.
5832
5833 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
5834
5835         * gnus-util.el (ns-focus-frame): Remove declaration.
5836         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
5837         like x.
5838
5839 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
5840
5841         * rfc2104.el (rfc2104-zero): Delete defconst.
5842         (rfc2104-hex-alist): Likewise.
5843         (rfc2104-hex-to-int): Delete func.
5844         (rfc2104-hexstring-to-bitstring): Likewise.
5845         (rfc2104-nybbles): New defconst.
5846         (rfc2104-hash): Rewrite for speed.
5847
5848 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5849
5850         * tls.el (open-tls-stream): Make it work with the 2nd argument
5851         BUFFER that is a string but does not exist as a buffer object, as
5852         mentioned in the doc-string.
5853
5854 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5855
5856         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
5857         SXEmacs.
5858
5859 2008-07-16  Glenn Morris  <rgm@gnu.org>
5860
5861         * gnus-util.el (ns-focus-frame): Declare for compiler.
5862
5863 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5864
5865         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
5866         set as a group parameter.
5867         (gnus-summary-save-in-pipe): Work when it is called independently.
5868         (gnus-summary-pipe-to-muttprint): Don't modify
5869         gnus-summary-pipe-output-default-command.
5870
5871 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5872
5873         * message.el (message-send-mail-with-sendmail):
5874         Display the error message.
5875
5876 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5877
5878         * gnus-art.el (gnus-default-article-saver):
5879         Add gnus-summary-save-in-pipe to choices.
5880         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
5881         gnus-summary-pipe-output-default-command as the default command.
5882         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
5883         instead of gnus-last-shell-command.
5884
5885         * gnus-sum.el (gnus-summary-pipe-output-default-command):
5886         New user option.
5887         (gnus-summary-muttprint-program): Mention the value will be changed.
5888         (gnus-summary-save-article): Force showing of all headers.
5889         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
5890
5891 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
5892
5893         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
5894
5895 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
5896
5897         * nnimap.el (nnimap-id):
5898         * sieve-manage.el (sieve-manage-open): Doc fixes.
5899
5900 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
5901
5902         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
5903         if available.
5904
5905 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5906
5907         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
5908
5909         * nnkiboze.el (nnkiboze-generate-group):
5910         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
5911
5912         * nnmairix.el: Require CL.
5913
5914 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5915
5916         * dgnushack.el: Autoload get-display-table and put-display-table for
5917         XEmacs 21.5.
5918
5919         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
5920         21.4 and SXEmacs.
5921
5922 2008-06-15  David Engster  <dengste@eml.cc>
5923
5924         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
5925
5926 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
5927
5928         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
5929         New macros that expand to an `aset'/`aref' call under Emacs, and to a
5930         runtime choice under XEmacs.
5931
5932         * gnus-sum.el (gnus-summary-set-display-table):
5933         Use `gnus-put-display-table', `gnus-get-display-table',
5934         `gnus-set-display-table' for the display table, instead of `aset'.
5935
5936         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
5937         Use `gnus-put-display-table', `gnus-get-display-table',
5938         `gnus-set-display-table' for the display table.
5939
5940 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
5941
5942         * nnmairix.el: Add autoloads.
5943
5944 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
5945
5946         * nnmairix.el (nnmairix-delete-recreate-group)
5947         (nnmairix-update-and-clear-marks): Fix error messages.
5948
5949 2008-06-14  David Engster  <dengste@eml.cc>
5950
5951         * nnmairix.el: Upgrade to version 0.6.
5952         (nnmairix-group-toggle-propmarks-this-group)
5953         (nnmairix-group-toggle-readmarks-this-group)
5954         (nnmairix-group-delete-recreate-this-group)
5955         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
5956         (nnmairix-remove-tick-mark-original-article): New commands.
5957         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
5958         (nnmairix-propagate-marks-to-nnmairix-groups)
5959         (nnmairix-only-use-registry, nnmairix-allowfast-default)
5960         (nnmairix-marks-cache, nnmairix-version-output): New variables.
5961         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
5962         functions needed for marks propagation and manipulation of read marks.
5963         (nnmairix-update-groups): New function.
5964         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
5965         (nnmairix-determine-original-group-from-registry)
5966         (nnmairix-determine-original-group-from-path)
5967         (nnmairix-get-group-from-file-path, nnmairix-map-range)
5968         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
5969         New helper functions.
5970         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
5971         keystrokes for new commands.
5972         (nnmairix-delete-and-create-on-change): Doc string cleanup.
5973         (nnmairix-request-group): Check allow-fast group parameter.
5974         (nnmairix-request-create-group): Set allow-fast group parameter if
5975         nnmairix-allowfast-default is set.
5976         (nnmairix-close-group): Propagate marks upon closing if needed.
5977         (nnmairix-group-toggle-threads-this-group): Use new.
5978         nnmairix-group-toggle-parameter helper function.
5979         (nnmairix-search): Better check for empty search result.
5980         (nnmairix-goto-original-article): Use new helper functions for
5981         determining original article.
5982         (nnmairix-show-original-article): Make sure message-id is in brackets.
5983         (nnmairix-call-mairix-binary): Change variable name.
5984         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
5985         helper function.
5986         (nnmairix-widget-toggle-activate): Fix doc string.
5987
5988 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5989
5990         * nnir.el: Require edmacro when compiling with XEmacs.
5991         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
5992         available in Emacs 21.
5993
5994 2008-06-11  Glenn Morris  <rgm@gnu.org>
5995
5996         * gnus-util.el (x-focus-frame):
5997         * gnus.el (image-size):
5998         * mm-decode.el (image-size): Declare.
5999
6000         * gnus-picon.el (declare-function): Add compat definition.
6001         (image-size): Declare.
6002
6003         * gnus-group.el (tool-bar-map):
6004         * gnus-sum.el (tool-bar-map): Define for compiler.
6005
6006         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
6007
6008         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
6009
6010         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
6011         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
6012         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
6013         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
6014         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
6015         * sieve-manage.el, spam-report.el, spam.el:
6016         Remove unnecessary eval-and-compile of autoloads.
6017
6018 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
6019
6020         * auth-source.el: Precise Tramp doc.
6021
6022 2008-06-07  Glenn Morris  <rgm@gnu.org>
6023
6024         * nnmairix.el: Remove unnecessary eval-when-compile.
6025
6026 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6027
6028         * lpath.el: Fbind propertize for XEmacs 21.4.
6029
6030 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
6031
6032         * nnir.el: Move here from ../contrib.
6033
6034 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6035
6036         * gnus-util.el (gnus-read-shell-command): New function.
6037         * mm-decode.el (mm-pipe-part):
6038         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
6039
6040 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6041
6042         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
6043
6044 2008-06-03  Glenn Morris  <rgm@gnu.org>
6045
6046         * pop3.el (nnheader-accept-process-output): Autoload it.
6047
6048 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6049
6050         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
6051         are not 2-digit hexadecimal characters that follow `%'s.
6052
6053 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6054
6055         * message.el (message-bogus-recipient-p): Fix type in doc string.
6056         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
6057         (message-bogus-addresses): Rename from message-bogus-address-regexp.
6058         Improve custom options.
6059         (message-bogus-recipient-p): Adjust accordingly.
6060
6061 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
6062
6063         * parse-time.el (parse-time-months, parse-time-weekdays): Add
6064         long-form month and day names.
6065
6066 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6067
6068         * dgnushack.el: Autoload debug, eudc-expand-inline and
6069         pgg-snarf-keys-region for XEmacs.
6070
6071         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
6072
6073         * nnmairix.el: Require edmacro when compiling with XEmacs.
6074
6075 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
6076
6077         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
6078         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
6079
6080 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
6081
6082         * auth-source.el: Add more docs.
6083
6084         * netrc.el (netrc-machine): Always match if the port is not given.
6085
6086 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6087
6088         * nnheader.el (nnheader-read-timeout): Change the default timeout from
6089         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
6090         retrieval faster in some cases, but might make CPU usage larger.
6091         If this has any bad side effects, we might revert this change.
6092
6093         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
6094         seems to make mail retrieval much, much faster.
6095         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
6096         unconditionally.
6097
6098         * gnus-draft.el (gnus-group-send-queue):
6099         Bind message-send-mail-partially-limit to nil to avoid being prompted.
6100
6101 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
6102
6103         * mml.el (mml-attach-buffer): Prompt for `disposition'.
6104
6105         * message.el (message-bogus-address-regexp): Fix and improve custom
6106         type.
6107         (message-setup-hook): Add message-check-recipients as custom option.
6108
6109 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
6110
6111         * message.el (message-cite-function): Remove bogus autoload which crept
6112         in during merge from v5-10.
6113
6114 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
6115
6116         * nnimap.el (nnimap-open-connection): Fix login/password bug.
6117
6118         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
6119
6120         * auth-source.el: Preliminary Tramp docs.
6121         (auth-sources): Change the default auth-sources to use
6122         EPA .gpg files.
6123
6124 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
6125
6126         * nntp.el: Autoload `auth-source-user-or-password'.
6127         (nntp-send-authinfo): Use it.
6128
6129         * nnimap.el: Autoload `auth-source-user-or-password'.
6130         (nnimap-open-connection): Use it.
6131
6132         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
6133         for the gnus-message function.
6134         (auth-source-user-or-password): Use it.
6135
6136 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6137
6138         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
6139         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
6140         (rfc2104-hash): Use it.
6141
6142 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
6143
6144         * gnus-art.el (gnus-article-toggle-truncate-lines):
6145         Don't use `iff' in docstring.
6146
6147 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
6148
6149         * gnus-registry.el: Adjusted copyright dates and added a keyword.
6150
6151         * gnus-util.el (gnus-extract-address-component-name)
6152         (gnus-extract-address-component-email): Convenience functions around
6153         `gnus-extract-address-components'.
6154
6155         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
6156         Use `gnus-extract-address-component-email' to fix bug of comparing full
6157         sender name to `user-mail-address'.
6158
6159 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
6160
6161         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
6162         catch/throw to optimize.
6163         (gnus-registry-find-keywords): Just use member to find a keyword.
6164
6165 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6166
6167         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
6168         is current before calling gnus-server-prepare.
6169         (gnus-server-setup-buffer, gnus-server-update-server)
6170         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
6171
6172 2008-05-04  Juri Linkov  <juri@jurta.org>
6173
6174         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
6175         (mailcap-file-default-commands): Use mailcap-replace-in-string
6176         instead of replace-regexp-in-string, and mailcap-delete-duplicates
6177         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
6178
6179 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
6180
6181         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
6182
6183 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6184
6185         * gnus.el: Bump version to 0.11.
6186
6187 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6188
6189         * gnus.el: No Gnus v0.10 is released.
6190
6191 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6192
6193         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
6194         hooks.
6195         (gnus-update-read-articles): Speed up non-marks-using users.
6196         (gnus-use-marks): Define gnus-use-marks.
6197         (gnus-propagate-marks): Rename variable to something more sensible.
6198
6199 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
6200
6201         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
6202         (gmm-image-load-path-for-library): Fix typos in docstrings.
6203         (gmm-message): Reflow docstring.
6204
6205 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
6206
6207         * mail-source.el (mail-source-set-1, mail-source-bind):
6208         Move auth-source code out of the macro to clean it up and fix bugs.
6209
6210 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
6211
6212         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
6213         by sender if it's equal to user-mail-address, it's likely to be
6214         useless.
6215
6216         * mail-source.el (mail-source-bind): Don't use user or password if they
6217         are not bound.  Unintern them if they are nil.  Don't use server unless
6218         it's bound, and default it to empty string otherwise.
6219
6220 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
6221
6222         * mail-source.el: Load auth-source.el.
6223         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
6224         get user name or password, if auth-sources is set up.
6225
6226         * gnus-registry.el (gnus-registry-split-strategy): New variable for
6227         strategy of splitting with parent.
6228         (gnus-registry-split-fancy-with-parent)
6229         (gnus-registry-post-process-groups): Use it and fix prior
6230         bug (returning a list as the split result).
6231
6232         * auth-source.el (auth-sources): Remove server parameter.
6233         (auth-source-pick, auth-source-user-or-password)
6234         (auth-source-user-or-password-imap)
6235         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6236         (auth-source-user-or-password-sftp)
6237         (auth-source-user-or-password-smtp): Remove server parameter.
6238
6239 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
6240
6241         * smime.el (smime-sign-region, smime-encrypt-region)
6242         (smime-decrypt-region):
6243         Remove redundant calls to `generate-new-buffer-name'.
6244
6245 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
6246
6247         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
6248         Don't use QP for message/rfc822.
6249         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
6250
6251 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6252
6253         * sieve-manage.el (sieve-string-bytes): Remove.
6254         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
6255         correct byte-length only if the process's coding-system is the same as
6256         the one used internally by Emacs to represent strings.
6257
6258 2008-04-22  Juri Linkov  <juri@jurta.org>
6259
6260         * mailcap.el (mailcap-file-default-commands): New function.
6261
6262 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
6263
6264         * message.el (message-signature-separator, message-cite-function):
6265         Change custom version.
6266
6267 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
6268
6269         * tls.el (tls-program): Add -ign_eof argument to call the openssl
6270         commands.
6271         (tls-checktrust): Ditto.
6272
6273 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
6274
6275         * mm-decode.el (mm-display-external): Make temp file read-only.
6276
6277 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
6278
6279         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
6280         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
6281         `C-c C-f d'.
6282
6283 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
6284
6285         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
6286
6287 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
6288
6289         * gnus.el: Bump version to 0.9.
6290
6291 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
6292
6293         * gnus.el: No Gnus v0.8 is released.
6294
6295 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6296
6297         * mail-source.el (mail-source-value):
6298         Prefer fboundp to functionp so it works with macros as well.
6299
6300 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6301
6302         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6303         Fix last change in case the element is not even a symbol.
6304
6305 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6306
6307         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6308         Prefer fboundp to functionp so it works with macros as well.
6309
6310 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
6311
6312         * auth-source.el: Add docs.
6313         (auth-sources): Modify format to support server.
6314         (auth-source-pick, auth-source-user-or-password)
6315         (auth-source-user-or-password-imap)
6316         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6317         (auth-source-user-or-password-sftp)
6318         (auth-source-user-or-password-smtp): Add server parameter.
6319
6320 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
6321
6322         * gnus-registry.el: Initialize the registry when gnus-registry-install
6323         is t.
6324
6325 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6326
6327         * compface.el (uncompface): Make buffer unibyte.
6328
6329 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6330
6331         * mail-source.el (mail-source-value):
6332         Prefer fboundp to functionp so it works with macros as well.
6333
6334 2008-04-05  Glenn Morris  <rgm@gnu.org>
6335
6336         * gnus-ems.el (mm-disable-multibyte): Autoload it.
6337
6338 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6339
6340         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
6341         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
6342
6343         * nnheader.el (nnheader-init-server-buffer): Change buffer's
6344         multibyteness after rather than before erasing it.
6345
6346         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
6347         mm-with-multibyte.
6348         (gnus-request-article-this-buffer): Make sure the proper decoding is
6349         used if gnus-original-article-buffer happens to be unibyte.
6350
6351         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
6352         default-enable-multibyte-characters.
6353
6354         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
6355         default-enable-multibyte-characters.
6356
6357         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
6358
6359         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
6360
6361 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6362
6363         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6364         Fix last change in case the element is not even a symbol.
6365
6366 2008-04-02  Simon Josefsson  <simon@josefsson.org>
6367
6368         * imap.el (imap-enable-exchange-bug-workaround): New variable.
6369         (imap-message-copyuid-1): Use it.
6370         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
6371         J. Williams in
6372         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
6373
6374         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
6375         imap-enable-exchange-bug-workaround.
6376         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
6377
6378 2008-04-01  Simon Josefsson  <simon@josefsson.org>
6379
6380         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
6381         a 100 byte status-checks into a 2-3MB transfer for each group.
6382         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
6383         to enable bug workaround or not.
6384         (nnimap-find-minmax-uid): Only enable workaround conditionally.
6385
6386 2008-03-31  Glenn Morris  <rgm@gnu.org>
6387
6388         * message.el (mml2015-use): Declare for compiler.
6389         (message-info): Require mml2015 when appropriate.
6390
6391 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6392
6393         * Makefile.in (EMACS_COMP): Quote directory name that might contain
6394         whitespace.
6395
6396 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6397
6398         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
6399         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
6400         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
6401         (nntp-service-to-port): New function.
6402         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
6403         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
6404         (nntp-open-netcat-stream): New function.
6405         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
6406
6407 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
6408
6409         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
6410
6411 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6412
6413         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
6414
6415 2008-03-28  Magnus Henoch  <mange@freemail.hu>
6416
6417         * dns.el (dns-write): Use set-buffer-multibyte.
6418
6419 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
6420
6421         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
6422
6423 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6424
6425         * message.el (message-signature-separator): Change default.
6426         Improve custom type.
6427         (message-cite-function): Change default to
6428         message-cite-original-without-signature.
6429
6430         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
6431         toggle.
6432
6433         * message.el (message-check-news-body-syntax): Fix signature check.
6434         (message-setup-1): Mark buffer as unmodified _after_ running
6435         message-setup-hook and handling message-alternative-emails.
6436         (message-shorten-references): Be more strict when building list of
6437         valid references to comply with GNKSA.
6438
6439         * gnus-group.el (gnus-read-ephemeral-bug-group)
6440         (gnus-read-ephemeral-debian-bug-group)
6441         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
6442
6443         * message.el (message-info): Don't use booleanp which isn't supported
6444         in Emacs 21 and XEmacs.
6445
6446 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
6447
6448         * gnus-group.el (gnus-gmane-group-download-format): Rename from
6449         gnus-group-gmane-group-download-format.
6450         (gnus-group-read-ephemeral-gmane-group): Rename from
6451         gnus-group-read-ephemeral-gmane-group.
6452         (gnus-read-ephemeral-gmane-group-url): Rename from
6453         gnus-group-read-ephemeral-gmane-group-url.
6454         (gnus-bug-group-download-format-alist): New variable.
6455         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
6456         (gnus-read-ephemeral-emacs-bug-group): New commands.
6457
6458 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
6459
6460         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
6461         (gnus-visible-headers): Improve custom type.
6462
6463 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
6464
6465         * mml.el (mml-menu): Add workarounds for XEmacs.
6466
6467         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
6468         X-Boundary header.
6469
6470         * message.el (message-simplify-recipients): Fix previous commit.
6471
6472 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6473
6474         * mm-util.el (mm-set-buffer-multibyte): New function.
6475         * mm-decode.el (mm-copy-to-buffer): Use it.
6476
6477         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6478         Prefer fboundp to functionp so it works with macros as well.
6479
6480 2008-03-19  Glenn Morris  <rgm@gnu.org>
6481
6482         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
6483         Accidentally removed in the sync process with Emacs.
6484
6485 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
6486
6487         * message.el (message-alter-recipients-discard-bogus-full-name):
6488         New function.
6489         (message-alter-recipients-function): New variable.
6490         (message-get-reply-headers): Use it.
6491         (message-replace-header): New helper function.
6492         (message-recipients-without-full-name): New variable.
6493         (message-simplify-recipients): New command.
6494
6495         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
6496
6497         * message.el (message-info): Handle EasyPG manual.
6498
6499         * mml.el (mml-menu): Add entry for EasyPG.
6500
6501 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
6502
6503         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
6504         parameter.
6505
6506         * message.el (message-disassociate-draft): Specify drafts group name
6507         fully.
6508
6509 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
6510
6511         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
6512         Eliminate unnecessary duplicates from the match list.
6513
6514 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6515
6516         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
6517
6518         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
6519
6520         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
6521         args of `how-many' of which the XEmacs version doesn't take; declare
6522         Info-index-next as function.
6523
6524 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
6525
6526         * gnus-score.el (gnus-score-headers): Fix handling of
6527         gnus-inhibit-slow-scoring.
6528
6529         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
6530         string.
6531         (gnus-button-url-regexp): Improve handling of parenthesis.
6532         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
6533         (gnus-button-handle-info-keystrokes): Handle index entries.
6534
6535 2008-03-15  Glenn Morris  <rgm@gnu.org>
6536
6537         * parse-time.el (parse-time-string): Simplify.
6538
6539 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6540
6541         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
6542         Incoming* files.
6543
6544 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
6545
6546         * auth-source.el (auth-sources): Rename from auth-source-choices.
6547         (auth-source-pick): Use it.
6548
6549 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6550
6551         * binhex.el (binhex-decode-region-internal):
6552         * uudecode.el (uudecode-decode-region-internal):
6553         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
6554         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
6555         setting default-enable-multibyte-characters.
6556
6557 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
6558
6559         * auth-source.el (auth-source-protocols)
6560         (auth-source-protocols-customize, auth-source-choices): Add and
6561         modified variable customizations and defaults.
6562         (auth-source-pick, auth-source-user-or-password)
6563         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
6564         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6565         (auth-source-user-or-password-sftp)
6566         (auth-source-user-or-password-smtp): Use new variables and provide an
6567         interface to netrc.el.
6568
6569 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6570
6571         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
6572         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
6573         Make sure the nntp port to specify is a string.
6574
6575 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6576
6577         * nntp.el: Use with-current-buffer.
6578         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
6579         dubious mm-with-unibyte-current-buffer.
6580         (nntp-with-open-group-function): New function extracted from
6581         nntp-with-open-group macro.
6582         (nntp-with-open-group): Use the function, so it's easier to debug.
6583         Add indentation and debugging info.
6584         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
6585         Recommend the use of the netcat alternatives.
6586
6587         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
6588         Avoid mm-string-as-multibyte as well.
6589
6590         * nnweb.el (nnweb-insert-html):
6591         Remove use of nnheader-string-as-multibyte.
6592
6593         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
6594         (nnheader-string-as-multibyte): Remove.
6595
6596         * mm-view.el: Use inhibit-read-only.
6597         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
6598         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
6599         or unibyte-string.
6600
6601         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
6602         (mm-uu-yenc-extract): Use with-current-buffer.
6603
6604         * gnus-soup.el (gnus-soup-send-packet): Don't use
6605         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
6606
6607         * nnmh.el: Use with-current-buffer.
6608         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
6609         mm-string-as-multibyte on the output of mm-encode-coding-string.
6610
6611         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
6612         (nnimap-request-move-article): Use with-current-buffer.
6613
6614         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
6615         inserting the handle-buffer's text, so the implicit multibyte->unibyte
6616         conversion uses string-make-unibyte rather than string-as-unibyte.
6617
6618         * gnus-msg.el: Use with-current-buffer.
6619
6620         * message.el (message-ignored-resent-headers): Add "Delivered-To".
6621
6622 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
6623
6624         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
6625         string for caching if it is 'PIN.
6626
6627 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6628
6629         * lpath.el: Consider the case without Emacs/W3.
6630
6631 2008-03-08  Glenn Morris  <rgm@gnu.org>
6632
6633         * time-date.el (date-to-time, time-subtract, time-add)
6634         (safe-date-to-time): Doc fixes.
6635
6636 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
6637
6638         * mail-source.el (mail-source-delete-old-incoming-confirm):
6639         Change default to nil.
6640         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
6641
6642 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6643
6644         * lpath.el: Rearrange.
6645
6646         * gnus-art.el (gnus-narrow-to-page): Position point properly.
6647         (gnus-article-goto-prev-page): Work for articles having ^L's.
6648
6649         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
6650
6651         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
6652
6653 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
6654
6655         * gnus-bookmark.el: Adjust for renames in bookmark.el.
6656         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
6657         (gnus-bookmark-jump): Adjust some variable names.
6658
6659 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
6660
6661         * auth-source.el: New package.
6662         (auth-source-choices): Add customization entry point variable.
6663
6664         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
6665         bug.
6666
6667 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
6668
6669         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
6670         (gnus-registry-initialize, gnus-registry-install-p): Use it.
6671         (gnus-registry-install-shortcuts): Rename from
6672         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
6673         the `gnus-registry-mark-map' keymap dynamically from
6674         `gnus-registry-marks'.  The generated functions update the summary line
6675         when a registry mark is added or deleted, and will call
6676         `gnus-registry-install-p' (see the comments in the code).
6677         (gnus-registry-user-format-function-M): Use concat intelligently.
6678
6679         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
6680         the registry mark functions.
6681
6682 2008-03-05  Glenn Morris  <rgm@gnu.org>
6683
6684         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
6685         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
6686         gnus-art.
6687         (top-level): No need to load own source when compiling.
6688
6689 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
6690
6691         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
6692         Suggested by <chris.anderton@zetnet.co.uk>.
6693
6694 2008-03-04  Glenn Morris  <rgm@gnu.org>
6695
6696         * gnus-sum.el (top-level): No need to require gnus when compiling,
6697         since unconditionally required near start of file.
6698         (gnus-summary-display-while-building): Move definition before use.
6699
6700 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
6701
6702         * gnus-registry.el (gnus-registry-user-format-function-M):
6703         Add formatting function.
6704
6705 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
6706
6707         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
6708         with plists.
6709         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
6710         Use new format.
6711
6712 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6713
6714         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
6715         `where-is-internal' that returns a range of key sequences.
6716
6717 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6718
6719         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
6720
6721         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
6722         (gnus-summary-jump-to-group): Consider windows on other displayed
6723         frames as well.  Similar changes might be needed elsewhere, but that's
6724         the one I've bumped into during my use.
6725
6726         * nndoc.el (nndoc-oe-dbx-type-p):
6727         * gnus-msg.el (gnus-debug):
6728         * gnus-group.el (gnus-update-group-mark-positions):
6729         Use mm-string-to-multibyte.
6730
6731 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
6732
6733         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
6734         doesn't handle NotDashEscaped.
6735
6736         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
6737         (mml-dnd-attach-options): Fix typo in custom choice.
6738
6739         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
6740         Change nndoc-article-type to mbox.
6741         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
6742
6743         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
6744         to nil, instead of html2text.
6745
6746         * imap.el (imap-debug): Add `imap-ping-server'.
6747
6748         * gnus-bookmark.el: Add FIXMEs.
6749
6750         * message.el (message-form-letter-separator)
6751         (message-send-form-letter-delay): New variables.
6752         (message-send-form-letter): Use them.  New command to send form
6753         letters.  Requested by Uwe Siart.
6754         (message-send-mail-function): Doc fix.  Add "Other" custom option.
6755
6756 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
6757
6758         * Update copyright years.
6759
6760 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
6761
6762         Sync from EMACS_22_BASE.
6763
6764         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
6765
6766 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
6767
6768         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
6769         empty author.
6770
6771 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
6772
6773         * gnus-registry.el (gnus-registry-marks): Add variable for
6774         customization of marks and their appearance.
6775         (gnus-registry-read-mark): Use it.
6776         (gnus-registry-do-marks): Add utility function to loop through
6777         `gnus-registry-marks'.
6778         (gnus-registry-install-shortcuts-and-menus): Add function to install
6779         shortcuts and menus.
6780         (gnus-registry-initialize): Use it.
6781         (gnus-registry-default-mark): Clarify documentation.
6782
6783 2008-02-29  Glenn Morris  <rgm@gnu.org>
6784
6785         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
6786         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
6787         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
6788         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
6789         Change defcustom :version from 23.0 to 23.1.
6790
6791 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
6792
6793         * gnus-registry.el (gnus-registry-follow-group-p)
6794         (gnus-registry-post-process-groups): Add functions to aid registry
6795         splitting and improve logging.  Clarify behavior in function
6796         documentation.
6797         (gnus-registry-split-fancy-with-parent): Use them.
6798
6799 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6800
6801         * gnus-art.el: Use with-current-buffer.
6802
6803 2008-02-27  David Engster  <dengste@eml.cc>
6804
6805         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
6806         Express real group name in the response.
6807
6808 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6809
6810         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
6811         (nnmairix-last-server, nnmairix-current-server): Defvar them.
6812         (nnmairix-goto-original-article): Defvar gnus-registry-install and
6813         autoload gnus-registry-fetch-group when compiling.
6814         (nnmairix-request-group-with-article-number-correction):
6815         Remove unreferenced argument passed to nnmairix-call-backend.
6816
6817 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
6818
6819         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
6820         (mm-uu-extract): Improve face for low color ttys.
6821         Reported by Sascha Wilde.
6822
6823 2008-02-27  Glenn Morris  <rgm@gnu.org>
6824
6825         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
6826         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
6827         variables to defconsts.  Convert comments to doc-strings.
6828         (nnmairix-last-server, nnmairix-current-server): Convert from free
6829         variables to defvars.  Convert comments to doc-strings.
6830         (gnus-registry-fetch-group): Autoload.
6831         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
6832         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
6833         (nnmairix-widget-build-editable-fields): Use car cddr rather than
6834         caddr.
6835         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
6836         nnmairix-request-group-with-article-number-correction call.
6837         (nnmairix-fast, nnmairix-group): New, less general names, for free
6838         variables passed from nnmairix-request-group to
6839         nnmairix-request-group-with-article-number-correction.  Declare.
6840         (nnmairix-request-group-with-article-number-correction):
6841         Use nnmairix-fast, nnmairix-group rather than fast, group.
6842
6843 2008-02-26  David Engster  <dengste@eml.cc>
6844
6845         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
6846         version 0.5.
6847
6848 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
6849
6850         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
6851         instead of making an extra function call.  Don't add the current group
6852         to articles only when they have the group.  Use
6853         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
6854         Reported by David <de_bb@arcor.de>.
6855
6856 2008-02-24  Miles Bader  <miles@gnu.org>
6857
6858         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
6859         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
6860         (mm-find-mime-charset-region):
6861         * mm-bodies.el (mm-encode-body):
6862         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
6863
6864 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6865
6866         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
6867         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
6868
6869 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
6870
6871         * mail-source.el (mail-source-delete-incoming): Change default.
6872         Supplement doc string.
6873
6874         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
6875
6876 2008-02-14  Glenn Morris  <rgm@gnu.org>
6877
6878         * time-date.el (format-seconds): New function.
6879
6880 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
6881
6882         * nnmail.el (nnmail-message-id-cache-file): Derive from
6883         `gnus-home-directory'.
6884
6885 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
6886
6887         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
6888         Document negative prefix.
6889
6890         * gnus-group.el (gnus-group-read-group): Document negative prefix.
6891
6892 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6893
6894         * message.el (message-unsent-separator): Add the Exim bounce
6895         separator.
6896
6897 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
6898
6899         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
6900         list.
6901         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
6902         recipient/signer list.
6903
6904 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6905
6906         * Makefile.in (datarootdir): Define.
6907         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
6908         name that might contain whitespace.
6909
6910 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
6911
6912         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
6913         fbound (Emacs 23 unicode), signal an error.
6914
6915 2008-02-08  Glenn Morris  <rgm@gnu.org>
6916
6917         * gnus-art.el (pgg-display-output-buffer): Declare as function.
6918
6919 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
6920
6921         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
6922         ports to the calls to `netrc-machine-user-or-password' in addition to
6923         "imap" and "imaps".
6924
6925 2008-02-01  Zhang Wei  <id.brep@gmail.com>
6926
6927         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
6928
6929         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
6930
6931 2008-02-01  Kenichi Handa  <handa@m17n.org>
6932
6933         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
6934         rfc2104-hexstring-to-bitstring and changed to return a byte list.
6935         (rfc2104-hash): Convert the result of concat to unibyte string.
6936
6937 2008-02-01  Dave Love  <fx@gnu.org>
6938
6939         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
6940         coding-system-for-read.
6941         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
6942
6943 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
6944
6945         * gnus.el (gnus-group-startup-message): Add `find-image' call before
6946         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
6947         <hanche@math.ntnu.no>.
6948
6949 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6950
6951         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
6952
6953         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
6954
6955 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
6956
6957         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
6958         * message.el (message-beginning-of-line): Use featurep instead of bound
6959         tests in order to resolve conditionals at compile time.
6960
6961 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
6962
6963         * mail-source.el (mail-sources): Add `group' choice.
6964
6965         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
6966         parameter `in-group' to control into which group the articles go.
6967         Add treatment of `group' mail-source.
6968
6969 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6970
6971         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
6972
6973         * mm-decode.el (mm-dissect-buffer): Decode description.
6974
6975         * mml.el (mml-to-mime): Encode message header first.
6976
6977 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6978
6979         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
6980         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
6981
6982         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
6983         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
6984
6985 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
6986
6987         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
6988
6989 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6990
6991         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
6992         prefix keys.
6993         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
6994         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
6995         gnus-xmas.el.
6996
6997         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
6998         (gnus-xmas-article-describe-bindings): New function.
6999         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
7000         gnus-xmas-article-describe-bindings.
7001
7002         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
7003
7004 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
7005
7006         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
7007         Add new variables for article mark management.
7008         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
7009         list of extra data entries which, when present, will indicate that the
7010         article ID should not be trimmed from the registry.
7011         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
7012         functions.
7013         (gnus-registry-read-mark): New function to read a mark name from the
7014         user.
7015         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
7016         (gnus-registry-set-article-mark-internal): New functions to add and
7017         remove marks.
7018         (gnus-registry-get-article-marks): New function to show the marks for
7019         an article, or retrieve them for further use.
7020
7021 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7022
7023         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
7024         keys when no argument is given.
7025
7026 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
7027
7028         * imap.el (imap-ping-server): New variable.
7029         (imap-opened): On add extra ping if imap-ping-server is non-nil.
7030         (imap-ping-server): Minor doc string fixes.
7031
7032 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7033
7034         * imap.el (imap-ping-server): New function.
7035         (imap-opened): Call imap-ping-server.
7036
7037 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
7038
7039         * gnus-sum.el (gnus-article-sort-by-random)
7040         (gnus-thread-sort-by-random): Fix doc strings.
7041         Reported by jidanni@jidanni.org.
7042
7043 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7044
7045         * gnus-art.el (gnus-article-describe-bindings): New function.
7046         (gnus-article-read-summary-keys): Use it.
7047         (gnus-article-mode-map): Bind `C-h b' to it.
7048
7049 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7050
7051         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
7052         XEmacs.
7053         (gnus-article-describe-key, gnus-article-describe-key-briefly):
7054         Protect against non-character events.
7055
7056         * lpath.el: Fbind map-keymap for Emacs 21.
7057
7058 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
7059
7060         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
7061         New command.
7062         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
7063         instead of END.  Change name of the temp file.
7064         (gnus-group-gmane-group-download-format): Add doc string.  Make it
7065         customizable.
7066
7067 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7068
7069         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
7070         bind `S W' to gnus-article-wide-reply-with-original; set default
7071         binding to gnus-article-read-summary-send-keys.
7072         (gnus-article-read-summary-keys): Fix the order of keys; display
7073         continuation keys correctly in the echo area; describe bindings
7074         correctly when keys end with `C-h'.
7075         (gnus-article-read-summary-send-keys): New function.
7076         (gnus-article-describe-key, gnus-article-describe-key-briefly):
7077         Work for gnus-article-read-summary-send-keys; display continuation keys
7078         correctly in the echo area.
7079         (gnus-article-reply-with-original): Ignore prefix argument.
7080         (gnus-article-wide-reply-with-original): New function.
7081
7082         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
7083         Emacs 21.
7084
7085 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7086
7087         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
7088         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
7089
7090 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
7091
7092         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
7093         (gnus-group-read-ephemeral-gmane-group): New command.
7094
7095 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
7096
7097         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
7098
7099 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
7100
7101         * message.el (message-send-mail-function): Increase custom version.
7102
7103         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
7104         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
7105
7106 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
7107
7108         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
7109         for the cases where imap-authenticate is called with a nil buffer
7110         parameter.
7111
7112 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7113
7114         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
7115         html parts correctly; support forwarded messages.
7116         (gnus-article-browse-html-article): Remove work buffers.
7117
7118         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
7119         compiling.
7120         (netrc-bound-and-true-p): New macro.
7121         (netrc-parse): Use it instead of bound-and-true-p that is not available
7122         in XEmacs 21.4.
7123
7124 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
7125
7126         * gnus-registry.el (gnus-registry-mark-article)
7127         (gnus-registry-article-marks): Add functionality to mark articles
7128         through the Gnus registry.
7129
7130         * encrypt.el: Clarify documentation for the new pgg method.
7131         (encrypt-file-alist): Add PGG option.
7132         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
7133         functionality.  Abstract password key and messaging to external
7134         functions.
7135         (encrypt-password-key, encrypt-get-passphrase-if-needed)
7136         (encrypt-message-method-and-cipher): Add new convenience external
7137         functions.
7138         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
7139         (encrypt-pgg-process-buffer): Add PGG functionality glue.
7140
7141         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
7142         (netrc-parse): Use encrypt-file-alist to determine if
7143         encrypt-find-model or encrypt-insert-file-contents should be used.
7144
7145         * encrypt.el: Clarify documentation.  Load password-cache or
7146         password, whichever one is found first, instead of autoloading.
7147
7148 2007-12-19  Glenn Morris  <rgm@gnu.org>
7149
7150         * mml.el (message-options-set, message-narrow-to-head)
7151         (message-in-body-p, message-mail-p, message-encode-message-body):
7152         Autoload.
7153         (message-remove-header, message-narrow-to-headers-or-head)
7154         (message-subscribed-p, message-make-mail-followup-to)
7155         (message-position-on-field, message-news-p)
7156         (message-options-set-recipient, message-generate-headers)
7157         (message-sort-headers): Declare as functions.
7158
7159 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
7160
7161         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
7162         convention in doc string.
7163
7164 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7165
7166         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
7167         title to html parts.
7168         (gnus-article-browse-html-article): Pass message header to it.
7169
7170         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
7171
7172 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
7173
7174         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
7175         or password compatible with XEmacs.
7176
7177 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
7178
7179         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
7180         format document.
7181         (gnus-mime-delete-part): Don't write description line if empty.
7182         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
7183
7184 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
7185
7186         * gnus-sum.el (gnus-summary-mark-unread-as-read)
7187         (gnus-summary-mark-read-and-unread-as-read)
7188         (gnus-summary-mark-current-read-and-unread-as-read)
7189         (gnus-summary-mark-unread-as-ticked): Doc fix.
7190         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
7191
7192 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
7193
7194         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
7195         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
7196
7197 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
7198
7199         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
7200         yes-or-no-p.
7201
7202 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7203
7204         * mm-decode.el (mm-add-meta-html-tag): New function.
7205         (mm-save-part-to-file, mm-pipe-part): Use it.
7206
7207         * gnus-art.el (gnus-article-browse-delete-temp-files):
7208         Use gnus-y-or-n-p instead of y-or-n-p.
7209         (gnus-article-browse-html-parts): Work with message/external-body; use
7210         mm-add-meta-html-tag.
7211
7212 2007-12-11  Glenn Morris  <rgm@gnu.org>
7213
7214         * gnus-cache.el: Require gnus-sum not just when compiling.
7215
7216         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
7217
7218         * gnus-int.el (gnus-server-opened, gnus-status-message):
7219         Move definitions before use.
7220
7221         * mm-decode.el: Require gnus-util.
7222         (mm-remove-part): Only call delete-annotation on XEmacs.
7223
7224         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
7225
7226         * nnmail.el: Require gnus-int.
7227
7228         * spam.el: Move `require's before `eval-when-compile's.
7229
7230         * gnus-ems.el (gnus-alive-p):
7231         * gnus-fun.el (message-goto-eoh):
7232         * gnus-util.el (gnus-group-name-decode):
7233         * mail-source.el (gnus-compress-sequence):
7234         * message.el (Info-goto-node, format-spec):
7235         * mm-bodies.el (message-options-get):
7236         * mm-decode.el (mm-view-pkcs7):
7237         * mm-util.el (gmm-write-region):
7238         * mml-smime.el (mml-compute-boundary)
7239         (gnus-completing-read-with-default):
7240         * mml.el (widget-button-press, gnus-make-hashtable):
7241         * mml1991.el (mm-decode-content-transfer-encoding)
7242         (mm-encode-content-transfer-encoding)
7243         (message-options-get, message-options-set):
7244         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
7245         * nnfolder.el (gnus-request-group):
7246         * nnheader.el (ietf-drums-unfold-fws):
7247         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
7248         * smime.el (gnus-run-mode-hooks):
7249         * spam-stat.el (gnus-message): Autoload.
7250
7251         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
7252         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
7253         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
7254         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
7255         Add declare-function compatibility definition.
7256
7257         * gnus-cache.el (nnvirtual-find-group-art):
7258         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
7259         (gnus-add-image, gnus-add-wash-type):
7260         * gnus-group.el (nnkiboze-score-file):
7261         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
7262         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
7263         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
7264         (message-tokenize-header, gnus-get-buffer-create)
7265         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
7266         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
7267         * gnus.el (gnus-group-decoded-name):
7268         * mail-source.el (imap-capability):
7269         * mm-bodies.el (message-options-set):
7270         * mm-decode.el (gnus-configure-windows):
7271         * mm-extern.el (message-goto-body):
7272         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
7273         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
7274         (epg-sub-key-validity, message-options-set):
7275         * mml.el (widget-event-point, gnus-configure-windows):
7276         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
7277         * mml2015.el (epg-check-configuration, epg-configuration)
7278         (message-options-set):
7279         * nndb.el (nndb-request-article):
7280         * nnfolder.el (gnus-request-create-group):
7281         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
7282         * nnmaildir.el (gnus-group-mark-article-read):
7283         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
7284         * rfc1843.el (message-fetch-field):
7285         * spam.el (gnus-extract-address-components):
7286         Declare as functions.
7287
7288 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7289
7290         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
7291
7292         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
7293
7294         * lpath.el: Fbind run-mode-hooks for Emacs 21;
7295         bind show-trailing-whitespace for XEmacs.
7296
7297 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
7298
7299         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
7300         new no-op macro for backward compatibility.
7301
7302         * imap.el (imap-string-to-integer): New function.
7303
7304 2007-12-09  Glenn Morris  <rgm@gnu.org>
7305
7306         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
7307
7308         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
7309         * message.el, mm-view.el, sieve-manage.el, smime.el:
7310         Add declare-function compatibility definition.
7311
7312         * gnus-art.el (w3-region, w3m-region, Info-menu):
7313         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
7314         * gnus-sum.el (gnus-get-predicate):
7315         * gnus-util.el (mm-append-to-file, w32-focus-frame):
7316         * message.el (mail-abbrev-in-expansion-header-p):
7317         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
7318         (w3m-detect-meta-charset, w3m-region):
7319         * sieve-manage.el (password-read, password-cache-add)
7320         (password-cache-remove):
7321         * smime.el (password-read-and-add): Declare as functions.
7322
7323 2007-12-08  David Kastrup  <dak@gnu.org>
7324
7325         * gnus-sum.el (gnus-summary-simplify-subject-query):
7326         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
7327         `message'.
7328
7329 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7330
7331         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
7332         it to bind idna-program, installation-directory, defined-colors, and
7333         face-attribute for XEmacs of the version that compiles defcustom forms.
7334
7335 2007-12-07  Glenn Morris  <rgm@gnu.org>
7336
7337         * gnus-art.el (article-make-date-line): Revert previous change.
7338
7339 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
7340
7341         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
7342
7343 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
7344
7345         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
7346         Call gnus-add-to-range ranges only once with a prepared article-list.
7347
7348 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
7349
7350         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
7351         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
7352         group names with backslashes.
7353         Reported by Tassilo Horn <tassilo@member.fsf.org>.
7354
7355 2007-12-06  Deepak Goel  <deego3@gmail.com>
7356
7357         * gnus-art.el (article-make-date-line):
7358         * gnus-start.el (gnus-load):
7359         * pop3.el (pop3-read-response): Fix buggy call to `error'.
7360
7361 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7362
7363         * gnus-art.el (gnus-use-idna)
7364         * gnus-start.el (gnus-site-init-file)
7365         * message.el (message-use-idna)
7366         * mm-uu.el (mm-uu-hide-markers)
7367         * smiley.el (smiley-style): Revert changes that suppress warnings.
7368
7369 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7370
7371         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
7372         specify charset to html source.
7373         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
7374
7375 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7376
7377         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
7378         idna-program in order to suppress byte compile warning issued by XEmacs
7379         that came to byte compile the default value section of defcustom forms
7380         recently.
7381
7382         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
7383         value of installation-directory.
7384
7385         * message.el (message-use-idna): Don't directly refer to the value of
7386         idna-program.
7387
7388         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
7389
7390         * smiley.el (smiley-style): Don't directly call face-attribute.
7391
7392 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
7393
7394         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
7395
7396         * gnus-dired.el: Reduce Gnus dependencies.
7397         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
7398         Don't require.  Use autoloads instead.
7399         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
7400         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
7401         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
7402         (gnus-dired-mode): Adjust doc string.
7403         (gnus-dired-mail-mode): New variable.
7404         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
7405         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
7406         (gnus-dired-mail-buffers): New function.  Return mail or message
7407         composition buffers.
7408         (gnus-dired-attach): Use it.
7409         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
7410         NO-DECODE.
7411         (gnus-dired-print): Use `gnus-print-buffer' depending on
7412         `gnus-dired-mail-mode'.
7413
7414 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7415
7416         * rfc2047.el (rfc2047-encoded-word-regexp)
7417         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
7418         explaining what regexp patterns are for.
7419
7420 2007-12-04  Glenn Morris  <rgm@gnu.org>
7421
7422         * password.el: Move to password-cache.el.
7423
7424         * mml1991.el (password-read, password-cache-add, password-cache-remove):
7425         * mml2015.el (password-read, password-cache-add, password-cache-remove):
7426         * mml-smime.el (password-read, password-cache-add)
7427         (password-cache-remove):
7428         No need to autoload, since mml-sec requires password.
7429
7430         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
7431         * message.el (gnus-extract-address-components):
7432         * mml-smime.el (gnus-extract-address-components): Define for compiler.
7433
7434         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
7435         password.
7436
7437 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
7438
7439         * mailcap.el: Reduce dependencies.
7440         (mail-header-parse-content-type): Autoload.
7441         (mailcap-delete-duplicates): New alias.
7442         (mailcap-mime-info): Add optional argument NO-DECODE.
7443         (mailcap-mime-types): Use mailcap-delete-duplicates.
7444
7445         * message.el (message-ignored-supersedes-headers): Add "X-ID".
7446
7447 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
7448
7449         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
7450         (imap-parse-status): Upcase status-att for servers that sends them
7451         lower-case (e.g., MS Exchange 2007).
7452
7453 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7454
7455         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
7456         function.
7457
7458         * gnus-uu.el (gnus-uu-decode-yenc): New command.
7459         (gnus-uu-yenc-article): New function.
7460
7461         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
7462
7463         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
7464
7465 2007-12-02  Glenn Morris  <rgm@gnu.org>
7466
7467         * binhex.el (binhex): New custom group.
7468         (binhex-decoder-program, binhex-decoder-switches)
7469         (binhex-use-external): Move to the binhex custom group.
7470
7471         * uudecode.el (uudecode): New custom group.
7472         (uudecode-decoder-program, uudecode-decoder-switches)
7473         (uudecode-use-external): Move to the uudecode custom group.
7474
7475         * netrc.el (top-level): Don't load `encrypt' features.
7476         (netrc-parse): Don't use encrypt.
7477         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
7478
7479         * encrypt.el: Remove file.
7480
7481 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
7482
7483         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
7484         matches on patches.
7485
7486         * gnus-art.el (gnus-article-browse-html-article):
7487         Mention `mm-text-html-renderer' in the doc string.
7488
7489         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
7490         string.  Add comments.
7491
7492         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
7493         if rhs is ASCII.
7494
7495 2007-12-01  Glenn Morris  <rgm@gnu.org>
7496
7497         * mail-source.el (top-level): Require format-spec before
7498         eval-when-compile.
7499
7500 2007-11-30  Glenn Morris  <rgm@gnu.org>
7501
7502         * encrypt.el: Require password, rather than autoloading password-read.
7503
7504 2007-11-29  Glenn Morris  <rgm@gnu.org>
7505
7506         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
7507         (sasl-make-client, sasl-next-step, sasl-step-data)
7508         (sasl-step-set-data): Declare as functions.
7509
7510 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
7511
7512         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
7513
7514 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
7515
7516         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
7517         certs should be verified and what is to be done in the event of a
7518         verification failure.
7519
7520         * gnus.el (gnus-method-to-server): Add an optional parameter so the
7521         caller can indicate whether the cache should be disregarded for this
7522         call.  This way the result of the call is reproducible at all times and
7523         can be considered a canonical server name for the supplied method.
7524         (gnus-agent-method-p): Canonicalize server names by pushing their
7525         method through `gnus-method-to-server' using the no-cache argument.
7526
7527         * gnus-srvr.el (gnus-server-insert-server-line):
7528         Call `gnus-method-to-server' with `no-cache' argument.
7529
7530         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
7531         gnus-agent-possibly-synchronize-flags as this should be called when the
7532         server is actually being opened.
7533         (gnus-agent-possibly-synchronize-flags)
7534         (gnus-agent-possibly-synchronize-flags-server): Move check for the
7535         flags file of an agentized server to the latter function.
7536
7537         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
7538         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
7539         after a connection has been established successfully.
7540
7541 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7542
7543         * gnus-art.el (article-display-face): Force to display face if called
7544         interactively; check if gnus-article-x-face-too-ugly matches author.
7545         (article-display-x-face): Display face even if From header is missing
7546         as article-display-face does.
7547
7548 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
7549
7550         * hashcash.el (message-narrow-to-headers-or-head)
7551         (message-fetch-field, message-goto-eoh)
7552         (message-narrow-to-headers): Declare as functions.
7553
7554 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
7555
7556         * mail-source.el (mail-sources): Default to fetch from file for
7557         compatibility with default of nnmail-spool-file.
7558
7559 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7560
7561         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
7562         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
7563         to look for encoded word that should be encoded again.
7564         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
7565         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
7566         encoding pattern.
7567         (rfc2047-decode-region): Switch strict regexp and loose one according
7568         to rfc2047-allow-irregular-q-encoded-words.
7569
7570 2007-11-25  Romain Francoise  <romain@orebokech.com>
7571
7572         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
7573
7574 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
7575
7576         * tls.el (tls-program): Provide more custom choices from
7577         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
7578         (tls-process-connection-type, tls-success): Remove "*" in doc string.
7579
7580 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7581
7582         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
7583         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
7584
7585         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
7586         `nnmail-spool-file'.
7587
7588         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
7589         `nnmail-spool-file'.
7590
7591         * gnus-move.el (gnus-change-server): Ditto.
7592
7593         * gnus-kill.el (gnus-batch-score): Ditto.
7594
7595         * gnus-cache.el (gnus-jog-cache): Ditto.
7596
7597         * gnus-msg.el (gnus-summary-reply):
7598         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
7599
7600 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7601
7602         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
7603         version.  Minor improvement to doc strings.
7604         (tls-program): Add comment.
7605
7606 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
7607
7608         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
7609         (tls-checktrust): New variable.  Check if GNU TLS complained about a
7610         mismatch between the hostname provided in the certificate and the name
7611         of the host connnecting to.
7612         (open-tls-stream): Use them.  Check certificates against trusted root
7613         certificates.
7614
7615 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7616
7617         * gnus-cache.el (gnus-cache-generate-nov-databases):
7618         Use nnml-generate-nov-databases-directory instead of
7619         nnml-generate-nov-databases-1.
7620
7621 2007-11-24  Glenn Morris  <rgm@gnu.org>
7622
7623         * message.el (message-tool-bar-retro): Update for rename
7624         mail_send.xpm->mail-send.xpm.
7625
7626 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
7627
7628         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
7629         `smime-ldap-search' for Emacs 22 and up.
7630
7631 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7632
7633         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
7634
7635         * message.el (message-send-mail-function): Fix error convention.
7636         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
7637         (message-widen-reply, message-send-mail, message-talkative-question)
7638         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
7639         (message-clone-locals, message-send-news): Use with-current-buffer.
7640         (message-insert-or-toggle-importance): Remove unused var `valid'.
7641         (message-make-references): Remove unused var `new-references'.
7642         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
7643
7644 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
7645
7646         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
7647         (spam-split-symbolic-return-positive): Reflow docstring.
7648         (spam-backends, spam-summary-exit-behavior)
7649         (spam-mark-ham-unread-before-move-from-spam-group)
7650         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
7651         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
7652         (spam-clear-cache, spam-backend-check, spam-install-backend)
7653         (spam-install-statistical-backend, spam-list-of-processors)
7654         (spam-group-processor-p, spam-split, spam-bogofilter-score)
7655         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
7656         (spam-check-crm114, spam-initialize, spam-unload-hook):
7657         Fix typos in docstrings.
7658
7659 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7660
7661         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
7662         been checked if they have never been read and those group levels are
7663         higher than the one that a user specified.
7664
7665 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7666
7667         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
7668         foreign groups unless a group level is specified by a user.
7669         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
7670
7671 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
7672
7673         * message.el (message-send-mail-function): Require sendmail.
7674
7675 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
7676
7677         * message.el (message-send-mail-function): Check for smtpmail too.
7678
7679         * utf7.el (utf7-encode, utf7-decode): Use coding system
7680         `utf-7'/`utf-7-imap' from utf-7.el' if available.
7681
7682         * message.el (message-send-mail-function): New function.
7683         (message-send-mail-function): Set default using
7684         message-send-mail-function.  Adjust doc string.
7685         (message-send-mail-with-mailclient): New function.
7686
7687 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
7688
7689         * smime.el (from):
7690         * rfc2047.el (message-posting-charset):
7691         * qp.el (mm-use-ultra-safe-encoding):
7692         * pop3.el (parse-time-months):
7693         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
7694         * nnml.el (files):
7695         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
7696         (jka-compr-compression-info-list, ange-ftp-path-format)
7697         (efs-path-regexp):
7698         * nndiary.el (files):
7699         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
7700         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
7701         (epg-digest-algorithm-alist, inhibit-redisplay)
7702         (password-cache-expiry):
7703         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
7704         (pgg-output-buffer, password-cache-expiry):
7705         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
7706         (efs-path-regexp):
7707         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
7708         (inhibit-redisplay):
7709         * mm-uu.el (file-name, start-point, end-point, entry)
7710         (gnus-newsgroup-name, gnus-newsgroup-charset):
7711         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
7712         (latin-unity-ucs-list):
7713         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
7714         (mm-uu-binhex-decode-function):
7715         * message.el (gnus-message-group-art, gnus-list-identifiers)
7716         (rmail-enable-mime-composing, gnus-local-organization)
7717         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
7718         (gnus-read-active-file, facemenu-add-face-function)
7719         (facemenu-remove-face-function, gnus-article-decoded-p)
7720         (tool-bar-mode):
7721         * mail-source.el (display-time-mail-function):
7722         * gnus-util.el (nnmail-pathname-coding-system)
7723         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
7724         (gnus-original-article-buffer, gnus-user-agent)
7725         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
7726         (xemacs-codename, sxemacs-codename, emacs-program-version):
7727         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
7728         * gnus-start.el (gnus-agent-covered-methods)
7729         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
7730         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
7731         (gnus-newsgroup-headers, gnus-group-list-mode)
7732         (gnus-group-mark-positions, gnus-newsgroup-data)
7733         (gnus-newsgroup-unreads, nnoo-state-alist)
7734         (gnus-current-select-method, mail-sources)
7735         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
7736         (nnmail-spool-file, gnus-cache-active-hashtb):
7737         * gnus-mh.el (mh-lib-progs):
7738         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
7739         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
7740         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
7741         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
7742         (gnus-group-buffer):
7743         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
7744         (font-lock-set-defaults):
7745         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
7746         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
7747         (gnus-summary-post-menu, total-parts, type, condition, length):
7748         * gnus-agent.el (gnus-agent-read-agentview):
7749         * flow-fill.el (show-trailing-whitespace):
7750         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
7751         eval-and-compile wrappers for byte compiler pacifiers.
7752
7753         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
7754         (mm-display-inline-fontify): Check for featurep 'xemacs not
7755         extent-list.
7756
7757         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
7758         itimer-list.
7759         (mm-create-image-xemacs): Only do something for XEmacs.
7760         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
7761
7762         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
7763
7764         * gnus-registry.el (gnus-adaptive-word-syntax-table):
7765         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
7766
7767 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
7768
7769         * nnimap.el (nnimap-split-download-body):
7770         * gnus-demon.el (gnus-demon):
7771         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
7772
7773 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7774
7775         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
7776         New macros.
7777         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
7778         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
7779         copy data from unibyte buffer to multibyte current buffer.
7780         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
7781         to copy data from unibyte current buffer to multibyte buffer.
7782         (nntp-make-process-buffer): Make process buffer unibyte.
7783
7784         * pop3.el (pop3-open-server): Fix typo in Lisp code.
7785
7786 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
7787
7788         * pop3.el (pop3-open-server): Accept and process data more robustly at
7789         connexion start to avoid spurious "POP SSL connexion failed" errors.
7790
7791 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7792
7793         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
7794         read group names.
7795
7796 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
7797
7798         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
7799
7800 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7801
7802         * nnmail.el (nnmail-parse-active): Make group names unibyte.
7803         (nnmail-save-active): Use a unibyte buffer when saving active file,
7804         which may contain non-ASCII group names.
7805
7806         * nnml.el (nnml-request-group): Decode group names in messages.
7807
7808 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
7809
7810         * message.el (message-citation-line-function)
7811         (message-insert-formatted-citation-line): Fix spelling of
7812         `message-insert-formated-citation-line'.
7813
7814 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
7815
7816         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
7817
7818 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7819
7820         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
7821         nnmail-pathname-coding-system.
7822
7823         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
7824         that a user enters; decode group names in messages.
7825
7826         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
7827
7828 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
7829
7830         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
7831
7832         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
7833
7834         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
7835         risky local variable.
7836
7837         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
7838
7839 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
7840
7841         * encrypt.el: Improve documentation to fix function name typo.
7842         Reported by Daiki Ueno <ueno@unixuser.org>.
7843
7844 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7845
7846         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
7847         even if the point is not in the last page of an article.
7848         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
7849         back to the previous page.
7850
7851 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
7852
7853         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
7854
7855 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7856
7857         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
7858
7859 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7860
7861         * message.el (message-check-news-body-syntax):
7862         Avoid mm-string-as-multibyte.
7863         (message-hide-headers): Don't assume (point-min)==1.
7864
7865 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
7866
7867         * message.el (message-remove-blank-cited-lines): Fix if remove is
7868         given.
7869         (message-bogus-address-regexp): New variable.
7870         (message-bogus-recipient-p): New function.
7871         (message-check-recipients): New command.
7872         (message-syntax-checks): Add `bogus-recipient'.
7873         (message-fix-before-sending): Add `bogus-recipient'.
7874
7875         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
7876         (gnus-treat-body-boundary): Don't test window-system.
7877
7878 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
7879
7880         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
7881
7882 2007-10-28  Miles Bader  <miles@gnu.org>
7883
7884         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
7885         at compile-time too.
7886
7887 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
7888
7889         * gnus-msg.el (gnus-message-setup-hook):
7890         Add `message-remove-blank-cited-lines' to options.
7891
7892 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
7893
7894         * message.el (message-remove-blank-cited-lines): New function.
7895         Suggested by Karl Plästerer.
7896
7897 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7898
7899         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
7900         mapc.
7901
7902         * imap.el (imap-open): Replace mapcar called for effect with mapc.
7903         (top-level): Use mapc to set functions to be traced for debugging.
7904
7905         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
7906         called for effect with while loop.
7907
7908         * message.el (message-talkative-question): Replace mapcar called for
7909         effect with mapc.
7910
7911         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
7912         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
7913         called for effect with dolist.
7914
7915         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
7916
7917         * nndiary.el: Use dolist instead of mapcar to add diary headers to
7918         gnus-extra-headers and nnmail-extra-headers.
7919
7920         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
7921         called for effect with dolist.
7922         (top-level): Use mapc to set functions to be traced for debugging.
7923
7924         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
7925         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
7926         dolist.
7927
7928         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
7929         Replace mapcar called for effect with mapc.
7930         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
7931         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
7932         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
7933         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
7934
7935         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
7936         remove-if that's a cl function.
7937
7938         * webmail.el (webmail-debug): Replace mapcar called for effect with
7939         dolist.
7940
7941         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
7942         with mapc.
7943
7944 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7945
7946         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
7947         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
7948         with while loop.
7949
7950         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
7951         functions from article-* functions.
7952         (gnus-multi-decode-header): Replace mapcar called for effect with
7953         dolist.
7954
7955         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
7956         (gnus-bookmark-show-details): Replace mapcar called for effect with
7957         while loop.
7958
7959         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
7960         called for effect with while loop.
7961
7962         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
7963         with dolist.
7964
7965         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7966         Replace mapcar called for effect with dolist.
7967
7968         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
7969
7970         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
7971         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
7972         Replace mapcar called for effect with dolist.
7973         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
7974         mapc.
7975
7976         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
7977         Replace mapcar called for effect with dolist.
7978         (gnus-topic-list): Replace mapcar called for effect with mapc.
7979
7980         * gnus.el: Use mapc instead of mapcar to add autoloads.
7981
7982 2007-10-23  Richard Stallman  <rms@gnu.org>
7983
7984         * gnus-group.el (gnus-group-highlight): Mark as risky.
7985
7986 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7987
7988         * gnus.el (gnus-server-to-method): Return method found first in
7989         gnus-newsrc-alist.
7990
7991         * gnus-art.el (gnus-article-highlight-signature)
7992         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
7993         button overlay without the front stickiness.
7994
7995 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
7996
7997         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
7998         overview buffer needed a catch to receive its throw.
7999         (gnus-agent-flush-cache): Declare as interactive to make this function
8000         easier to use.
8001
8002 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
8003
8004         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
8005         `next-line'.
8006
8007 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8008
8009         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
8010         exclude address matching message-dont-reply-to-names.
8011
8012 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8013
8014         * gnus-util.el (gnus-string<): New function.
8015
8016         * gnus-sum.el (gnus-article-sort-by-author)
8017         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
8018
8019 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8020
8021         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
8022         the frame-focus tag is set in gnus-buffer-configuration.
8023
8024 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8025
8026         * gnus-art.el (gnus-article-add-button): Make a button overlay without
8027         the front stickiness.
8028
8029 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8030
8031         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
8032         url pattern; remove duplicate one.
8033         (gnus-article-extend-url-button): New function.
8034         (gnus-article-add-buttons): Use it.
8035         (gnus-button-push): Use concatenated url that it makes.
8036
8037 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
8038
8039         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
8040
8041 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8042
8043         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
8044         Don't hardcode point-min==1.
8045
8046 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
8047
8048         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
8049         Fix comment about "iso8859-1".
8050
8051 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
8052
8053         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
8054         ones returned from the verify-function.
8055
8056         * mm-uu.el (mm-uu-pgp-signed-extract-1):
8057         Call mml2015-extract-cleartext-signature if extraction failed.
8058
8059 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
8060
8061         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
8062         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
8063         failed.
8064
8065 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
8066
8067         * Relicense "GPLv2 or later" files to "GPLv3 or later".
8068
8069 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
8070
8071         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
8072         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
8073         recommends to use EasyPG instead of PGG.
8074
8075         * pgg.el: Revert to revision 6.23.2.16.
8076
8077         * pgg-def.el: Revert to revision 6.6.2.14.
8078
8079         * pgg-gpg.el: Revert to revision 6.23.2.34.
8080
8081 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
8082
8083         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
8084         to mark a thread as expirable.  Add variable `hide' to handle hiding of
8085         thread for both the null and zero (kill/expire thread) universal prefix
8086         cases.
8087         (gnus-summary-expire-thread): Add new function to expire a thread,
8088         using gnus-summary-kill-thread.
8089         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
8090         shortcuts for gnus-summary-expire-thread.
8091         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
8092         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
8093
8094 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
8095
8096         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
8097         extras value, so an extras entry can be deleted.
8098         (gnus-registry-delete-extra-entry): Use it.
8099         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
8100         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
8101         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
8102         storage through the gnus-registry, and provide an appropriate API for
8103         it.
8104
8105 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8106
8107         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
8108         Suggested by Leo <sdl.web@gmail.com>.
8109
8110         * gnus.el: Do.
8111
8112 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8113
8114         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
8115         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
8116
8117         * gnus-agent.el (gnus-agent-fetch-headers): Do.
8118
8119         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
8120         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
8121
8122 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8123
8124         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
8125         newline.
8126         (nnmbox-request-accept-article): Don't change article in source buffer;
8127         narrow to header to use message-fetch-field rather than
8128         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
8129         (nnmbox-request-replace-article): Quote lines that'll be misidentified
8130         as delimiters; make sure article ends with newline.
8131         (nnmbox-delete-mail): Correct last position of article to be deleted;
8132         ignore X-Gnus-Newsgroup header in article body.
8133         (nnmbox-save-mail): Quote lines looking like delimiters at the right
8134         positions; make sure article ends with newline.
8135
8136         * message.el (message-display-abbrev): Don't infloop when a user
8137         inserts SPC in the beginning of header.
8138
8139         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
8140         coding-system-for-read and coding-system-for-write for XEmacs having no
8141         file-coding feature.
8142
8143         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
8144
8145 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
8146
8147         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
8148         list of groups not followed by default.  Fix type to be regexp.
8149         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
8150
8151 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
8152
8153         * hmac-def.el (define-hmac-function): Switch from old-style to
8154         new-style backquotes.
8155
8156         * md4.el (md4-make-step): Likewise.
8157
8158 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8159
8160         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
8161         raw-text coding system when saving .newsrc file, which may contain
8162         non-ASCII group names.
8163
8164 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8165
8166         * gnus-cus.el (gnus-score-extra): New widget.
8167         (gnus-score-extra-convert): New function.
8168         (gnus-score-customize): Use it for Extra.
8169
8170 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
8171
8172         * mml2015.el (mml2015-extract-cleartext-signature): New function.
8173         (mml2015-mailcrypt-clear-verify): Use it.
8174         (mml2015-gpg-clear-verify): Use it.
8175         (mml2015-pgg-clear-verify): Use it.
8176         (mml2015-epg-clear-verify): Replace the current part with the output
8177         from GnuPG; don't extract the plaintext by itself.
8178
8179         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
8180         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
8181         mml2015-clear-verify-function; don't touch the armor headers or
8182         dash-escaped text here.
8183
8184 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8185
8186         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
8187         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
8188         parts, or application/octet-stream as a last resort.
8189         (gnus-mime-view-part-as-type): Don't toggle display.
8190         (gnus-mime-view-part-as-charset): Don't turn off display before
8191         querying charset.
8192
8193         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
8194         stuff to undisplayer function in Emacs.
8195         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
8196
8197         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
8198         text/calendar parts.
8199
8200 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8201
8202         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
8203         decoding text/calendar parts.
8204
8205         * message.el (message-forward-make-body-mime): Always mark body as
8206         having no illegible text; remove signed-or-encrypted argument.
8207         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
8208
8209         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
8210         (mml-generate-mime-1): Don't encode body if it is specified to be in
8211         raw form; don't make buffer be unibyte when inserting multibyte string.
8212
8213 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8214
8215         * sha1.el: Fix up comment style.
8216         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
8217         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
8218
8219         * hex-util.el: Fix up comment style.
8220         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
8221
8222         * gnus-salt.el: Use with-current-buffer.
8223         (gnus-pick-setup-message): Fix long-standing typo.
8224
8225 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8226
8227         * imap.el (imap-logout-timeout): New variable.
8228         (imap-logout, imap-logout-wait): New functions.
8229         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
8230
8231         * nnimap.el (nnimap-logout-timeout): New server variable.
8232         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
8233         nnimap-logout-timeout.
8234
8235         * gnus-art.el (gnus-article-summary-command-nosave)
8236         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
8237
8238 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8239
8240         * gnus.el (gnus-maximum-newsgroup): New variable.
8241
8242         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
8243         according to gnus-maximum-newsgroup.
8244
8245         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
8246         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
8247         Limit the range of articles according to gnus-maximum-newsgroup.
8248
8249 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
8250
8251         * gnus-art.el (gnus-sticky-article): Fix problems described in
8252         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
8253         Don't perform gnus-configure-windows here; reuse existing sticky
8254         article buffer.
8255
8256         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
8257         it doesn't exist in gnus-article-mode.
8258
8259 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8260
8261         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
8262         (gnus-agent-decoded-group-name): New function.
8263         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
8264         (gnus-agent-expire-group-1): Use it; decode group name in messages.
8265
8266 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
8267
8268         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
8269         Add binding for gnus-sticky-article.
8270         (gnus-summary-exit): Don't kill sticky article buffers.
8271
8272         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
8273         article buffer.
8274         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
8275         (gnus-kill-sticky-article-buffers): New commands.
8276
8277 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8278
8279         * nntp.el (nntp-xref-number-is-evil): New server variable.
8280         (nntp-find-group-and-number): If it is non-nil, don't trust article
8281         numbers in the Xref header.
8282
8283 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8284
8285         * gnus-agent.el (gnus-agent-read-group): New function.
8286         (gnus-agent-flush-group, gnus-agent-expire-group)
8287         (gnus-agent-regenerate-group): Use it.
8288         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
8289         nnmail-pathname-coding-system.
8290
8291 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8292
8293         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
8294
8295         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
8296         that are unread as unread, and also as selected so that information of
8297         marks having been changed by a user may be updated when exiting group.
8298
8299 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
8300
8301         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
8302
8303 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8304
8305         * gnus-art.el (gnus-mime-display-single): Pass part number that is
8306         calculated ignoring signature parts to gnus-treat-article.
8307
8308 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8309
8310         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
8311         a point here in order to keep the window start.
8312         (gnus-insert-mime-security-button): Make a button overlay without the
8313         front stickiness.
8314         (gnus-mime-display-security): Goto the end of a button.
8315
8316         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
8317
8318 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8319
8320         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
8321         group-name-at-point.
8322         (gnus-group-completing-read): New function that offers decoded
8323         non-ASCII group names for completion.
8324         (gnus-fetch-group, gnus-group-read-ephemeral-group)
8325         (gnus-group-jump-to-group, gnus-group-make-group-simple)
8326         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
8327         (gnus-group-fetch-control): Use it.
8328         (gnus-fetch-group): Use group-name-at-point for the initial value
8329         rather than the default value; use gnus-alive-p.
8330
8331         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
8332         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
8333         (gnus-summary-post-news): Use gnus-group-completing-read.
8334
8335         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
8336         (gnus-read-move-group-name): Decode group name for completion.
8337
8338 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
8339
8340         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
8341         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
8342         Yamaoka slightly modified the code).
8343
8344 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8345
8346         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
8347         (nnmail-split-incoming): Bind it.
8348
8349         * nnml.el (nnml-group-name-charset): New function.
8350         (nnml-decoded-group-name): Use it; don't decode group name if
8351         nnmail-group-names-not-encoded-p is non-nil.
8352         (nnml-encoded-group-name): New function.
8353         (nnml-group-pathname): Inline nnml-decoded-group-name.
8354         (nnml-request-expire-articles): Decode group name in message.
8355         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
8356         nnmail-pathname-coding-system.
8357         (nnml-save-mail, nnml-active-number): Work with decoded group names and
8358         not decoded ones according to nnmail-group-names-not-encoded-p.
8359         (nnml-generate-active-info): Use nnml-encoded-group-name.
8360
8361 2007-08-08  Glenn Morris  <rgm@gnu.org>
8362
8363         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
8364         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
8365         doc-strings and comments.
8366
8367 2007-07-25  Glenn Morris  <rgm@gnu.org>
8368
8369         * Relicense all FSF files to GPLv3 or later.
8370
8371 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8372
8373         * gnus-sum.el (gnus-summary-move-article):
8374         Make gnus-summary-respool-article work.
8375
8376 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
8377
8378         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
8379         string.
8380
8381 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
8382
8383         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
8384         that should be ignored when comparing distant RSS articles with local
8385         ones.
8386         (nnrss-make-hash-index): New function.  Create a hash index according
8387         to the ignored fields.
8388         (nnrss-check-group): Use it.
8389
8390 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8391
8392         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
8393
8394         * gnus-art.el (article-decode-group-name): Decode Xref header too.
8395
8396         * gnus-group.el (gnus-group-make-group): Encode group name here unless
8397         the new optional argument ENCODED is non-nil.
8398         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
8399         coding system for encoding group name.
8400         (gnus-group-make-rss-group): Pass un-encoded group name to
8401         gnus-group-make-group.
8402         (gnus-group-set-info): Tell gnus-group-make-group that group name is
8403         encoded.
8404
8405         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
8406         Encode group name to which articles are moved or copied.
8407         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
8408         coding system for encoding Newsgroup, Followup-To and Xref headers.
8409
8410         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
8411         marks; use nnheader-file-coding-system to write a file.
8412         (nnagent-retrieve-headers): Bind file-name-coding-system to
8413         nnmail-pathname-coding-system.
8414
8415         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
8416
8417         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
8418         (nnml-request-article, nnml-request-create-group)
8419         (nnml-request-rename-group, nnml-find-id)
8420         (nnml-possibly-change-directory, nnml-possibly-create-directory)
8421         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
8422         (nnml-save-marks): Use nnml-group-pathname instead of
8423         nnmail-group-pathname.
8424
8425         (nnml-request-create-group, nnml-request-expire-articles)
8426         (nnml-request-move-article, nnml-request-delete-group)
8427         (nnml-deletable-article-p, nnml-possibly-create-directory)
8428         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
8429         (nnml-open-marks): Bind file-name-coding-system to
8430         nnmail-pathname-coding-system.
8431
8432         (nnml-request-article): Pass server argument to nnml-find-group-number.
8433         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
8434         Pass server argument to nnml-possibly-create-directory.
8435         (nnml-request-accept-article): Pass server argument to
8436         nnml-active-number and nnml-save-mail.
8437         (nnml-find-group-number): Pass server argument to nnml-find-id.
8438         (nnml-request-update-info): Pass server argument to
8439         nnml-marks-changed-p.
8440
8441         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
8442         (nnml-save-mail, nnml-active-number): Add server argument.
8443
8444         (nnml-request-delete-group): Warn if group is missing.
8445         (nnml-get-nov-buffer): Decode group name.
8446         (nnml-generate-active-info): Encode group name.
8447         (nnml-open-marks): Decode group name in messages.
8448
8449 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8450
8451         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
8452         if it is not specified.
8453         (gnus-article-pipe-part, gnus-article-save-part)
8454         (gnus-article-interactively-view-part, gnus-article-copy-part)
8455         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
8456         (gnus-article-inline-part, gnus-article-save-part-and-strip)
8457         (gnus-article-replace-part, gnus-article-delete-part)
8458         (gnus-article-view-part-as-type): Pass raw prefix argument to
8459         gnus-article-part-wrapper.
8460
8461 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8462
8463         * gnus-agent.el (gnus-agent-save-active):
8464         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
8465
8466         * gnus-cache.el (gnus-cache-save-buffers)
8467         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
8468         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
8469         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
8470         (gnus-cache-braid-nov, gnus-cache-braid-heads)
8471         (gnus-cache-generate-active, gnus-cache-rename-group)
8472         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
8473         (gnus-cache-update-overview-total-fetched-for):
8474         Bind file-name-coding-system to nnmail-pathname-coding-system.
8475         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
8476         New variables.
8477         (gnus-cache-decoded-group-name): New function.
8478         (gnus-cache-file-name): Use it.
8479         (gnus-cache-generate-active): Use non-decoded group name for active.
8480
8481         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
8482         right place.
8483         (gnus-write-active-file): Don't break non-ASCII group names.
8484
8485         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
8486         nnmail-pathname-coding-system.
8487
8488         * lpath.el: Bind default-file-name-coding-system,
8489         file-name-coding-system and language-info-alist for XEmacs.
8490
8491         * gnus-uu.el (gnus-uu-decode-save): Typo.
8492
8493 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8494
8495         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
8496
8497 2007-07-14  David Kastrup  <dak@gnu.org>
8498
8499         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
8500         finishing actions if we did not edit the article.
8501
8502 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8503
8504         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
8505         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
8506         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
8507         (gnus-agent-flush-group, gnus-agent-flush-cache)
8508         (gnus-agent-fetch-headers, gnus-agent-load-alist)
8509         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
8510         (gnus-agent-retrieve-headers, gnus-agent-request-article)
8511         (gnus-agent-regenerate-group)
8512         (gnus-agent-update-files-total-fetched-for)
8513         (gnus-agent-update-view-total-fetched-for):
8514         Bind file-name-coding-system to nnmail-pathname-coding-system.
8515         (gnus-agent-group-pathname): Don't encode file names by
8516         nnmail-pathname-coding-system.
8517         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
8518         coding-system-for-write instead of buffer-file-coding-system to
8519         gnus-agent-file-coding-system.
8520
8521         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
8522         Decode group name.
8523
8524         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
8525
8526         * gnus-start.el (gnus-update-active-hashtb-from-killed)
8527         (gnus-read-newsrc-el-file): Make group names unibyte.
8528
8529         * nnmail.el (nnmail-group-pathname): Don't encode file names by
8530         nnmail-pathname-coding-system.
8531
8532         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
8533         (nnrss-request-delete-group): Bind file-name-coding-system to
8534         nnmail-pathname-coding-system.
8535         (nnrss-read-server-data, nnrss-read-group-data):
8536         Bind file-name-coding-system correctly.
8537         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
8538
8539         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
8540         (nntp-server-to-method-cache): New variable.
8541         (nntp-group-pathname): New function that decodes non-ASCII group names.
8542         (nntp-possibly-create-directory, nntp-marks-changed-p)
8543         (nntp-save-marks, nntp-open-marks): Use it.
8544         (nntp-possibly-create-directory, nntp-open-marks):
8545         Bind file-name-coding-system to nnmail-pathname-coding-system.
8546         (nntp-open-marks): Decode group names when bootstrapping marks.
8547
8548         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
8549         Newsgroups and Folowup-To headers.
8550
8551 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8552
8553         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
8554         (gnus-server-closed-face, gnus-server-denied-face)
8555         (gnus-server-offline-face): Remove variable.
8556         (gnus-server-font-lock-keywords): Use faces that are not aliases.
8557
8558         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
8559         of modifying message-stack directly for XEmacs.
8560
8561         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
8562         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
8563         if the coding-system argument is nil for XEmacs.
8564
8565         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
8566         mm-charset-override-alist.
8567
8568         * rfc2047.el: Don't require base64; require rfc2045 for the function
8569         rfc2045-encode-string.
8570         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
8571         to quote the parameter value.
8572
8573 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8574
8575         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
8576         form in gnus-group-name-charset-method-alist.
8577
8578         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
8579         overrides the default layout edit-form.
8580
8581         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
8582
8583         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
8584
8585 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8586
8587         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
8588         as unfetched articles.
8589
8590 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
8591
8592         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
8593
8594 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8595
8596         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
8597         original back end that keeps marks in the local system.
8598
8599 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8600
8601         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
8602         arg of pop-to-buffer for XEmacs.
8603         (gnus-article-read-summary-keys): Ditto; don't restore window
8604         configuration if summary command ends up with neither article buffer
8605         nor summary buffer; describe bindings if summary keys end with C-h.
8606
8607 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8608
8609         * message.el (message-fix-before-sending): Skip raw message part to be
8610         forwarded while checking illegible text.
8611         (message-forward-make-body-mime, message-forward-make-body):
8612         Mark signed or encrypted raw message as having no illegible text.
8613
8614 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8615
8616         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
8617         (gnus-message-with-timestamp-1): New macro.
8618         (gnus-message-with-timestamp): New function.
8619         (gnus-message): Use them.
8620
8621         * nnheader.el (nnheader-message): Use them.
8622
8623 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
8624
8625         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
8626         .newsrc.eld file.
8627
8628 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8629
8630         * gnus-agent.el (gnus-agent-fetch-headers)
8631         (gnus-agent-retrieve-headers):
8632         Bind gnus-decode-encoded-address-function to identity.
8633
8634         * nntp.el (nntp-send-xover-command): Recognize an xover command is
8635         available also when the server returns simply a dot.
8636
8637         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
8638
8639 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8640
8641         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
8642
8643 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8644
8645         * gnus-ems.el (gnus-x-splash): Make it work.
8646
8647         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
8648         from being used.
8649
8650         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
8651
8652 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8653
8654         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
8655         4th and the 5th arguments.
8656
8657         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
8658         the front stickiness.
8659         (gnus-article-summary-command-nosave): Correct the order of the
8660         arguments passed to pop-to-buffer.
8661         (gnus-article-read-summary-keys): Ditto; make it work properly when the
8662         summary command ends up with the article buffer.
8663
8664         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
8665         the same faces.
8666
8667 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
8668
8669         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
8670
8671 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
8672
8673         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
8674         * gnus-sum.el (gnus-summary-highlight):
8675         * pgg.el (pgg-sign-region, pgg-sign):
8676         * mail-source.el (mail-source-delete-old-incoming-confirm):
8677         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
8678
8679 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8680
8681         * gnus-art.el (gnus-mime-view-part-externally)
8682         (gnus-mime-view-part-internally): Fix predicate function passed to
8683         completing-read.
8684
8685         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
8686
8687         * gnus.el (gnus-update-message-archive-method): Add :version.
8688
8689 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8690
8691         * gnus.el (gnus-update-message-archive-method): New variable.
8692
8693         * gnus-start.el (gnus-setup-news): Update saved "archive" method
8694         according to gnus-message-archive-method if
8695         gnus-update-message-archive-method is non-nil.
8696
8697 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8698
8699         * gnus-sum.el (gnus-summary-limit-to-address): New function.
8700         Suggested by Loic Dachary <loic@dachary.org>.
8701         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
8702
8703 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8704
8705         * message.el (message-pop-to-buffer): Add switch-function argument.
8706         (message-mail): Pass switch-function argument to it.
8707
8708 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
8709
8710         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
8711         Improve doc string.
8712
8713 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8714
8715         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
8716         (gnus-header-content)
8717         * gnus-cite.el (gnus-cite-10)
8718         * gnus-srvr.el (gnus-server-closed)
8719         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
8720         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
8721         (gnus-group-mail-3-empty, gnus-group-mail-low)
8722         (gnus-group-mail-low-empty, gnus-splash)
8723         * message.el (message-header-to, message-header-cc)
8724         (message-header-subject, message-header-other, message-header-name)
8725         (message-header-xheader, message-separator, message-cited-text)
8726         (message-mml): Lighten colors of faces used for dark background.
8727
8728 2007-05-24  Simon Josefsson  <simon@josefsson.org>
8729
8730         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
8731         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
8732
8733 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8734
8735         * message.el (message-narrow-to-headers-or-head):
8736         Ignore mail-header-separator in the body.
8737
8738 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8739
8740         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
8741         same as window size.
8742
8743 2007-05-22  Kevin Ryde  <user42@zip.com.au>
8744
8745         * message.el (message-font-lock-keywords): Use message-header-xheader
8746         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
8747         ahead of the anything pattern, to get it recognised.
8748
8749 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8750
8751         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
8752         spam.el loads uses it in the compiled defadvice form.
8753
8754 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
8755
8756         * gnus-sum.el (gnus-articles-to-read)
8757         (gnus-summary-insert-old-articles): Don't truncate group name for
8758         `read-string'.
8759
8760         * gnus-util.el (gnus-limit-string): Delete this function.
8761
8762         * gnus-sum.el (gnus-simplify-subject-fully):
8763         Use `truncate-string-to-width' instead.
8764
8765 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
8766
8767         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
8768         Tell if, on summary exit, the next group has to be selected.
8769         (gnus-summary-exit): Use it.
8770
8771 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
8772
8773         * gnus-art.el (gnus-article-mode): Fix comment about displaying
8774         non-break space.
8775
8776 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8777
8778         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
8779         Check if group is not a directory.
8780         (nnfolder-request-expire-articles): Don't delete articles if the target
8781         group is not available.
8782
8783         * nnml.el (nnml-request-create-group): Properly check if group is not a
8784         file.
8785         (nnml-request-expire-articles): Don't delete articles if the target
8786         group is not available.
8787
8788         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
8789         Don't quote characters that are within parentheses.
8790
8791 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8792
8793         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
8794         (gnus-handle-ephemeral-exit): Select article according to it.
8795
8796 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
8797
8798         * message.el (message-insert-formated-citation-line): Remove newline.
8799         (message-citation-line-format): Add final \n here so that the user can
8800         avoid a blank line.
8801
8802 2007-05-03  Dan Christensen  <jdc@uwo.ca>
8803
8804         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
8805         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
8806         Update lanl/arXiv support.
8807
8808 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
8809
8810         * gnus.el: Bump version number.
8811
8812 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8813
8814         * gnus.el (gnus-version-number): Bump version.
8815
8816 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
8817
8818         * gnus.el: No Gnus v0.6 is released.
8819
8820 2007-04-27  Didier Verna  <didier@xemacs.org>
8821
8822         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
8823         * gmm-utils.el (gmm-regexp-concat): ... here.
8824         * message.el: Don't require 'gnus-util.
8825         (message-dont-reply-to-names): Handle name change above.
8826         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
8827
8828 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8829
8830         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
8831         since the initial value varies according to the system.
8832
8833 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8834
8835         * mm-util.el (mm-charset-synonym-alist): Defcustom.
8836
8837 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
8838
8839         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
8840
8841 2007-04-24  Didier Verna  <didier@xemacs.org>
8842
8843         Improve the type of gnus-ignored-from-addresses.
8844         * gnus-util.el (gnus-orify-regexp): New function.
8845         * message.el (gnus-util): Require it.
8846         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
8847         * gnus-sum.el (gnus-ignored-from-addresses): New function.
8848         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
8849
8850 2007-04-24  Didier Verna  <didier@xemacs.org>
8851
8852         * gnus-sum.el:
8853         * gnus-utils.el: Fix some trailing whitespaces.
8854
8855 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8856
8857         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
8858         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
8859         article's Message-ID; refer parent article in summary buffer.
8860
8861         * message.el (message-bounce): Call mime-to-mml.
8862
8863         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
8864         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
8865         optimize and/or forms properly.
8866
8867 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
8868
8869         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
8870         URL.
8871
8872 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8873
8874         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
8875
8876 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8877
8878         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
8879         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
8880         displayed of multipart/alternative part if it is invoked from summary
8881         buffer.
8882
8883         * mm-view.el (mm-inline-text-html-render-with-w3m)
8884         (mm-inline-text-html-render-with-w3m-standalone)
8885         (mm-inline-render-with-function): Use mail-parse-charset by default.
8886
8887 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
8888
8889         * parse-time.el (parse-time-string-chars): Check if CHAR
8890         is less than the length of parse-time-syntax.
8891
8892 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8893
8894         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
8895         from gnus-newsgroup-processable.
8896
8897 2007-04-16  Didier Verna  <didier@xemacs.org>
8898
8899         * gnus-msg.el (gnus-configure-posting-styles):
8900         Handle message-signature-directory properly with :file syntax.
8901         Reported by "Leo".
8902
8903 2007-04-11  Didier Verna  <didier@xemacs.org>
8904
8905         New user option: message-signature-directory.
8906         * gnus-msg.el (gnus-configure-posting-styles): Support it.
8907         * message.el (message-insert-signature): Ditto.
8908         * message.el (message-signature-file): Doc update.
8909         * message.el (message-signature-directory): New.
8910
8911 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8912
8913         * gnus-msg.el (gnus-inews-yank-articles):
8914         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
8915
8916 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8917
8918         * message.el (message-yank-original): Make sure cited text ends with
8919         newline; don't exchange point and mark.
8920
8921 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
8922
8923         * tls.el (open-tls-stream): Properly handle case where there
8924         is no associated buffer.
8925
8926 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
8927
8928         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
8929         message-yank-original, make sure (< mark TEXT point).
8930
8931 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8932
8933         * message.el (message-fill-column): New variable.
8934         (message-mode): Use it.  Add comment on a possible new hook.
8935
8936         * nnmail.el (nnmail-spool-file): Mark as obsolete.
8937         (nnmail-get-new-mail): Reformat.
8938
8939         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
8940
8941         * gmm-utils.el: Fix Commentary.
8942         (gmm-tool-bar-from-list): Fix typo in doc string.
8943
8944 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
8945
8946         * message.el (message-yank-original): Don't switch point and mark
8947         unnecessarily to put point and mark as documented.
8948
8949 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8950
8951         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
8952         from the message heads.
8953
8954 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
8955
8956         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
8957         article buffer does not have a window.  This may not be the best
8958         solution but is certainly better than setting the start of the null,
8959         that is the current, window.
8960
8961 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
8962
8963         * gnus-draft.el (gnus-draft-setup-hook): New hook.
8964         (gnus-draft-setup): Run it.
8965
8966         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
8967         gnus-score-fast-scoring.  Allow regexp.
8968         (gnus-score-headers): Use it.
8969
8970         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
8971         XEmacs.
8972
8973         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
8974         string.
8975         (gnus-button-alist): Also catch `<f1> k ...'.
8976         (gnus-treat-display-x-face): Fix doc string.
8977
8978 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8979
8980         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
8981         evaluation of gnus-extended-version to ensure correct generation of the
8982         User-Agent header when message-generate-headers-first is used.
8983
8984 2007-03-24  Simon Josefsson  <simon@josefsson.org>
8985
8986         * hashcash.el (hashcash-generate-payment-async): Don't crash if
8987         hashcash-path is nil.  Don't call callback with incorrect number of
8988         parameters if val is 0.
8989
8990 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8991
8992         * message.el (message-required-news-headers):
8993         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
8994
8995 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
8996
8997         * tls.el (open-tls-stream): In handshake-waiting loop,
8998         don't wait more if there is output available to process.
8999
9000 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
9001
9002         * tls.el (tls-program): Doc fix.
9003
9004 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9005
9006         * message.el (message-generate-new-buffers): Change the meaning of the
9007         nil value; add `standard' to the choices; treat t as `unique'; improve
9008         doc string.
9009         (gnus-select-frame-set-input-focus): Autoload.
9010         (message-buffer-name): Search for the existing message buffer if
9011         message-generate-new-buffers is nil or `standard'; treat the value t of
9012         message-generate-new-buffers as `unique'.
9013         (message-pop-to-buffer): Raise the frame already displaying the message
9014         buffer; clear the echo area after querying.
9015         (message-setup): Pass the `continue' argument to compose-mail.
9016         (message-mail): Prefer `switch-function' if it is given; search for the
9017         existing message buffer if the `continue' argument is non-nil; pass
9018         continue and switch-function arguments to compose-mail by way of
9019         message-setup.
9020         (message-mail-other-window): Adjust argument of message-setup.
9021         (message-mail-other-frame): Ditto.
9022
9023 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9024
9025         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
9026         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
9027         to turn font-lock on when turning gnus-message-citation-mode on.
9028
9029 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
9030
9031         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
9032         (mml-smime-function-alist): New variable; add epg as the backend.
9033         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
9034         mml-smime- functions instead.
9035         * mm-view.el: Require smime.
9036
9037 2007-03-05  Didier Verna  <didier@xemacs.org>
9038
9039         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
9040         instead of just inheritance for posting styles.
9041         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
9042
9043 2007-02-24  Chris Moore  <dooglus@gmail.com>
9044
9045         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
9046         * pgg-pgp.el (pgg-pgp-encrypt-region):
9047         * pgg-gpg.el (pgg-gpg-encrypt-region):
9048         Check pgg-encrypt-for-me if no other recipients.
9049
9050 2007-02-24  John Paul Wallington  <jpw@pobox.com>
9051
9052         * tls.el (tls-certtool-program): Fix custom type.
9053
9054 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9055
9056         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
9057         and point-at-eol instead of line-(beginning|end)-position.
9058
9059         * assistant.el (assistant-parse-buffer): Ditto.
9060
9061         * netrc.el (netrc-parse-services): Ditto.
9062
9063 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
9064
9065         * mml2015.el (mml2015-epg-find-usable-key): New function.
9066         (mml2015-epg-sign): Use it.
9067         (mml2015-epg-encrypt): Use it.
9068
9069 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9070
9071         * message.el (message-make-in-reply-to): Quote name containing
9072         non-ASCII characters.  It will make the RFC2047 encoder cause an error
9073         if there are special characters.  Reported by NAKAJI Hiroyuki
9074         <nakaji@jp.freebsd.org>.
9075
9076 2007-02-27  Didier Verna  <didier@xemacs.org>
9077
9078         Include the group parameters as well as the topic ones in the
9079         inheritance filter process.
9080         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
9081         argument GROUP-PARAMS-LIST.
9082         * gnus-topic.el (gnus-group-topic-parameters): Use it.
9083
9084 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9085
9086         * nntp.el (nntp-never-echoes-commands)
9087         (nntp-open-connection-functions-never-echo-commands): New variables.
9088         (nntp-send-command): Use them.
9089
9090 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
9091
9092         * mml2015.el (mml2015-epg-verify): Simplify.
9093
9094 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9095
9096         * mml.el (mml-content-disposition-alist): New user option.
9097         (mml-content-disposition): New function.
9098         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
9099         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
9100
9101 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
9102
9103         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
9104         verification.
9105
9106 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9107
9108         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
9109         articles posted in the last 24 hours.
9110
9111 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
9112
9113         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
9114
9115 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
9116
9117         * nntp.el (nntp-send-command): Don't wait for echoes when
9118         nntp-open-ssl-stream is used.
9119
9120 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9121
9122         * gnus-cite.el (gnus-test-font-lock-add-keywords)
9123         (gnus-message-add-citation-keywords)
9124         (gnus-message-remove-citation-keywords): Remove.
9125         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
9126         directly, make the variables in font-lock-defaults buffer-local, add
9127         gnus-message-citation-keywords to them and then update the value of
9128         font-lock-keywords.
9129
9130 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9131
9132         * message.el (message-cite-original-1): Don't call
9133         gnus-article-highlight-citation.
9134
9135         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
9136         citations; fix line count.
9137
9138 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9139
9140         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
9141         (gnus-message-add-citation-keywords)
9142         (gnus-message-remove-citation-keywords): Use it; fix the emulating
9143         versions of font-lock-add-keywords and font-lock-remove-keywords to
9144         work with XEmacs correctly.
9145
9146 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9147
9148         * gnus-cite.el (gnus-cite-face-list): Set the values of
9149         gnus-message-max-citation-depth and gnus-message-citation-keywords.
9150         (gnus-message-max-citation-depth): Use defvar rather than defconst.
9151         (gnus-message-cite-prefix-regexp): New variable.
9152         (gnus-message-search-citation-line): Use it; protect against long
9153         citation prefix; fill match data with nil rather than 0 for XEmacs; set
9154         the 0th match data for Emacs.
9155         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
9156         (gnus-message-add-citation-keywords): Append keywords rather than
9157         prepending; emulate font-lock-add-keywords if it is not available.
9158         (gnus-message-remove-citation-keywords):
9159         Emulate font-lock-remove-keywords if it is not available.
9160
9161         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
9162
9163         * message.el (message-cite-prefix-regexp): Set the value of
9164         gnus-message-cite-prefix-regexp.
9165
9166 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9167
9168         * nnweb.el (nnweb-google-parse-1): Update parser.
9169
9170 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
9171
9172         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
9173
9174 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9175
9176         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
9177         regexp.
9178
9179 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9180
9181         * uudecode.el (uudecode-string-to-multibyte): New function emulating
9182         string-to-multibyte.
9183         (uudecode-decode-region-internal): Use it.
9184
9185         * lpath.el: Fbind string-as-multibyte for XEmacs.
9186
9187 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9188
9189         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
9190         Fix custom choice.
9191
9192         * gnus-art.el (gnus-signature-limit): Fix custom choice.
9193
9194 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
9195
9196         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
9197
9198         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
9199         `write-region' to respect `mm-inhibit-file-name-handlers'.
9200
9201 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
9202
9203         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
9204         Use gnus-home-directory instead of "~/" or "$HOME".
9205
9206 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
9207
9208         * encrypt.el (encrypt-insert-file-contents): Add better prompt
9209         to mention filename.
9210         Add comments at beginning regarding usage.
9211         (encrypt-write-file-contents): Change interactive so a string is
9212         acceptable.  If the file has no associated model, show an error instead
9213         of a nonsense prompt.
9214
9215 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
9216
9217         * spam.el (spam-bsfilter-ham-switch): Fix typo.
9218         Thanks to Yoshihiko Yamada for kind notification of this typo.
9219
9220 2007-01-12  Kenichi Handa  <handa@m17n.org>
9221
9222         * uudecode.el (uudecode-decode-region-internal): Make it work in a
9223         multibyte buffer.
9224
9225 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
9226
9227         * gnus-score.el (gnus-score-fast-scoring): New variable.
9228         (gnus-score-headers): Use it.
9229
9230         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
9231
9232         * message.el (message-cite-original-1):
9233         Call gnus-article-highlight-citation if requested.
9234         (message-make-from): Allow name and address as optional arguments.
9235
9236         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
9237
9238         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
9239         bugs to doc string.
9240         (gnus-button-alist): Add mid\\|message-id.
9241         (gnus-button-fetch-group): Extend for use in
9242         `browse-url-browser-function'.
9243         (gnus-button-url-regexp): Try to catch paired parentheses like in
9244         Wikipedia URLs.
9245
9246         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
9247         Suggested by Simon Krahnke <overlord@gmx.li>.
9248
9249 2007-01-13  Romain Francoise  <romain@orebokech.com>
9250
9251         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
9252         Update copyright.
9253
9254 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
9255
9256         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
9257
9258 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
9259
9260         * gnus-registry.el (gnus-registry-unfollowed-groups)
9261         (gnus-registry-split-fancy-with-parent): Fix documentation.
9262
9263 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9264
9265         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
9266         from nnweb groups.
9267
9268 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9269
9270         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
9271         Xref urls.  Erase buffer before requesting head.
9272
9273         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
9274
9275 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
9276
9277         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
9278         customizable.
9279
9280 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
9281
9282         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
9283         no signing key is found.
9284         (mml2015-epg-encrypt): Ask user whether to skip or abort if
9285         no encrypting and/or signing key is found.
9286
9287 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
9288
9289         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
9290
9291 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9292
9293         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
9294         headers read from disk with the ones newly found in the current search.
9295         This should no longer cause problems, because the article numbers in
9296         Gmane's `nov.php' output are ignored since the previous change.
9297
9298 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9299
9300         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
9301
9302 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9303
9304         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
9305         replace-regexp-in-string; bind url-version; fbind display-images-p and
9306         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
9307         find-face and set-itimer-function for Emacs; bind itimer-list for
9308         Emacs.
9309
9310         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
9311
9312 2007-01-01  Romain Francoise  <romain@orebokech.com>
9313
9314         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
9315
9316 2006-12-31  Steve Youngs  <steve@sxemacs.org>
9317
9318         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
9319         `define-minor-mode' macro definition expanded properly.
9320         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
9321         exclude it there.
9322
9323         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
9324         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
9325         `fboundp' test.
9326         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
9327         This is OK to autoload in (S)XEmacs now.
9328
9329 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9330
9331         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
9332         keystroke.
9333         (gnus-summary-limit-to-singletons): Fix typo.
9334
9335         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
9336         else fails.
9337
9338 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9339
9340         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
9341         docstring.
9342
9343         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
9344         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
9345         (gnus-summary-insert-dormant-articles): Fix typo in message.
9346
9347 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
9348
9349         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
9350         nil for XEmacs.
9351         (gnus-message-citation-mode): Don't autoload in XEmacs.
9352
9353         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
9354
9355 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
9356
9357         * nnimap.el (nnimap-expunge-search-string):
9358         Mention nnimap-search-uids-not-since-is-evil in docstring.
9359
9360 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
9361
9362         * spam.el: Revert to make-obsolete-variable because
9363         define-obsolete-variable-alias is not supported in Emacs 21.
9364
9365         * spam.el (spam-ifile-path, spam-ifile-database-path)
9366         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
9367         make-obsolete-variable.
9368         (spam-bsfilter-path, spam-bsfilter-program)
9369         (spam-spamassassin-path, spam-spamassassin-program)
9370         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
9371         Don't use "path" inappropriately.
9372         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
9373         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
9374         variable names.
9375
9376 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
9377
9378         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
9379         summary buffer.
9380
9381         * password.el (password-cache-remove): Use clear-string to burn
9382         password, if available.
9383
9384 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
9385
9386         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
9387
9388         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
9389
9390         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
9391         (gnus-message-highlight-citation): Move defcustom here from
9392         gnus-cite.el.
9393         (gnus-message-citation-mode): Autoload.
9394
9395         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
9396         checks to make it compile with XEmacs.
9397         (gnus-message-citation-mode): New minor mode.
9398         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
9399         (gnus-message-highlight-citation): New variables.
9400         (gnus-message-search-citation-line)
9401         (gnus-message-add-citation-keywords)
9402         (gnus-message-remove-citation-keywords)
9403         (turn-on-gnus-message-citation-mode)
9404         (turn-off-gnus-message-citation-mode): New functions.
9405
9406 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
9407
9408         * gnus-cite.el: Enable highlighting of different citation levels in
9409         message-mode.
9410
9411 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
9412
9413         * message.el (message-make-fqdn): Fix comment.
9414         (message-bogus-system-names): Add ".local".
9415
9416         * spam.el (spam-ifile-path, spam-ifile-program)
9417         (spam-ifile-database-path, spam-ifile-database)
9418         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
9419         Don't use "path" inappropriately.
9420         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
9421         strings.
9422         (spam-check-ifile, spam-ifile-register-with-ifile)
9423         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
9424         Use new variable names.
9425
9426         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
9427         (gnus-treat-display-smileys): Simplify using
9428         gnus-image-type-available-p.
9429
9430         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
9431         available.
9432
9433         * gnus-xmas.el (gnus-xmas-image-type-available-p):
9434         Use `display-images-p' if available.
9435
9436 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9437
9438         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
9439         one after turning on the buffer's multibyteness instead of decoding
9440         them directly in the unibyte buffer that causes unexpected conversion
9441         in Emacs 23 (unicode).
9442
9443 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9444
9445         * message.el (message-generate-hashcash): Fix custom type.
9446
9447 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
9448
9449         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
9450
9451 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
9452
9453         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
9454         disconnect icons.  Add help text.
9455
9456 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
9457
9458         * spam.el (spam-extra-header-to-number): CRM114 spam score is
9459         negated to be consistent with the others we handle.
9460
9461 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9462
9463         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
9464         version of gnus-summary-buffer to something, so that we can use two
9465         article buffers at the same time.
9466
9467 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
9468
9469         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
9470         trigger all the extra headers.
9471         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
9472         sorting.
9473
9474 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9475
9476         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
9477         solid groups.
9478
9479 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
9480
9481         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
9482
9483 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
9484
9485         * legacy-gnus-agent.el: Add Copyright notice.
9486
9487 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
9488
9489         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
9490
9491 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9492
9493         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
9494
9495         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
9496         to make it work reliably in CVS Emacs.
9497         (gnus-summary-limit-strange-charsets-predicate)
9498         (gnus-summary-limit-to-predicate): New functions.
9499
9500 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
9501
9502         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
9503         specifying array size.
9504         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
9505         array if it is too small.
9506         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
9507         (gnus-sort-threads-loop): New function.
9508
9509 2006-12-06  Chris Moore  <dooglus@gmail.com>
9510
9511         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
9512         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
9513
9514 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
9515
9516         * mm-url.el (mm-url-predefined-programs): Call curl with correct
9517         options.
9518
9519 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9520
9521         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
9522         DOS-ing the recipient.
9523
9524         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
9525         the headers when creating the mapping to avoid mismappings.
9526         (nnweb-gmane-create-mapping): Always nix out old mapping.
9527
9528 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9529
9530         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
9531         and mm-verify-option to never.
9532
9533 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9534
9535         * message.el (message-signed-or-encrypted-p): New function.
9536         (message-forward-make-body): Use it.
9537
9538         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
9539         Replace encode-coding-string with mm-encode-coding-string.
9540
9541 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9542
9543         * nneething.el (nneething-decode-file-name):
9544         Replace decode-coding-string with mm-decode-coding-string.
9545
9546         * gnus-int.el (gnus-open-server): Say failed server's name.
9547
9548 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9549
9550         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
9551         strings to a single string.  Quote `errors-file-name'.
9552         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
9553         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
9554         Adjust calls.  Use `shell-quote-argument'.
9555
9556 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
9557
9558         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
9559         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
9560
9561         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
9562         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
9563         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
9564         (gnus-group-make-directory-group, gnus-group-transpose-groups):
9565         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
9566         (gnus-subscribe-newsgroup, gnus-1):
9567         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
9568         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
9569         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
9570         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
9571
9572 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9573
9574         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
9575         keystroke.
9576         (gnus-summary-limit-to-bodies): Implement headersp.
9577
9578 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9579
9580         * dns.el (query-dns): Protect against "Process dns deleted" strings.
9581
9582 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9583
9584         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
9585
9586 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9587
9588         * message.el (message-generate-hashcash): Expand range of values to
9589         include `opportunistic'.
9590         (message-send-mail): Use it.
9591
9592 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9593
9594         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
9595         and comment it.
9596
9597         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
9598
9599 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
9600
9601         * gnus-util.el (gnus-extract-address-components): Improve comment.
9602
9603 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9604
9605         * gnus-util.el (gnus-extract-address-components): Work with address in
9606         which the name portion contains @.
9607
9608         * lpath.el: Fbind custom-autoload.
9609
9610 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
9611
9612         * gnus.el (gnus-start): Move custom group up.
9613         (gnus-select-method): Don't autoload, but make it available for
9614         `customize-variable'.
9615         (gnus-getenv-nntpserver): Don't autoload.
9616
9617 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
9618
9619         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
9620
9621 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
9622
9623         * message.el (message-sendmail-extra-arguments): New variable.
9624         (message-send-mail-with-sendmail): Use it.
9625
9626 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9627
9628         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
9629         mm-with-unibyte-current-buffer to make string unibyte.
9630
9631         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
9632         mm-string-as-multibyte.
9633
9634 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
9635
9636         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
9637         Reported by Werner Koch <wk@gnupg.org>.
9638
9639 2006-11-14  Daiki Ueno  <ueno@p360>
9640
9641         * mml2015.el: Autoload epa-select-keys when compiling.
9642
9643 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
9644
9645         * mml2015.el (mml2015-epg-sign): Save the signing keys in
9646         message-options.
9647         (mml2015-epg-encrypt): Save the recipient keys in message-options.
9648
9649 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
9650
9651         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
9652         EasyPG (< 0.0.6).
9653         (mml2015-always-trust): New user option.
9654         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
9655         prompt.
9656
9657 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9658
9659         * nntp.el (nntp-authinfo-force): New variable.
9660         (nntp-send-authinfo): Use it.
9661
9662 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
9663
9664         * message.el (message-strip-subject-encoded-words): Allow _not_ to
9665         decode encoded words.  Improve prompt.  Add comment about forwarding.
9666         (message-replacement-char): Move up.
9667
9668 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
9669
9670         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
9671         instead of gnus-intersection because arguments of gnus-sorted-nunion
9672         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
9673
9674 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
9675
9676         * message.el (message-strip-subject-encoded-words): Reformat prompt.
9677         (message-simplify-subject-functions):
9678         Enable message-strip-subject-encoded-words by default.
9679
9680 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
9681
9682         * message.el (message-strip-subject-encoded-words): New function.
9683         (message-simplify-subject-functions): New variable.
9684         (message-simplify-subject): Use it.  Fix typo in doc string.
9685         Support message-strip-subject-encoded-words.
9686
9687 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
9688
9689         * gnus-diary.el (gnus-diary-delay-format-function):
9690         * nndiary.el (nndiary-reminders):
9691         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
9692
9693 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
9694
9695         * gnus-art.el (article-hide-boring-headers): Fetch date from
9696         gnus-original-article-buffer to avoid problems with localized date
9697         strings.
9698
9699 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9700
9701         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
9702
9703 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
9704
9705         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
9706         New variables.
9707         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
9708         (mm-charset-synonym-alist): Move some entries to
9709         mm-codepage-iso-8859-list.
9710         (mm-charset-synonym-alist, mm-charset-override-alist):
9711         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
9712
9713 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9714
9715         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
9716
9717 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9718
9719         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
9720         with Emacs 21 and XEmacs.
9721
9722 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
9723
9724         * spam.el (spam-parse-address): New function for better parsing,
9725         catching errors, etc.
9726         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
9727
9728 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9729
9730         * mm-view.el: Add interactive arg to html2text autoload.
9731
9732 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9733
9734         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
9735
9736 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
9737
9738         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
9739         New variables.
9740         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
9741         (mm-charset-synonym-alist): Move some entries to
9742         mm-codepage-iso-8859-list.
9743
9744         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
9745
9746 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
9747
9748         * message.el (message-citation-line-format)
9749         (message-insert-formated-citation-line): Fix implementation of %E, %N
9750         and %n according to the doc string.
9751
9752 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
9753
9754         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
9755         Use car-safe to avoid bad parses.
9756
9757 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9758
9759         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
9760         names.
9761
9762         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
9763
9764 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9765
9766         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
9767         header.
9768
9769         * message.el (message-draft-headers): Add Date.
9770         (message-headers-to-generate): Fix typo in docstring.
9771
9772         * nndraft.el (nndraft-required-headers): New variable.
9773         (nndraft-generate-headers): Use it.
9774
9775         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
9776
9777 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
9778
9779         * gnus-registry.el (gnus-registry-wash-for-keywords)
9780         (gnus-registry-find-keywords): New functions to allow easy searching of
9781         articles that are in the registry.
9782
9783 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
9784
9785         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
9786         Use ietf-drums-parse-address instead of gnus-extract-address-components.
9787         Reported by Damien Elmes <damien@repose.cx>.
9788
9789 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9790
9791         * gnus.el (gnus-mime): Remove unused custom group.
9792
9793 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9794
9795         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
9796         "blank line" when searching for end of armor headers.
9797
9798 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9799
9800         * gmm-utils.el (gmm-write-region): Fix variable name.
9801
9802 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
9803
9804         * gmm-utils.el (gmm-write-region): New function based on compatibility
9805         code from `mm-make-temp-file'.
9806
9807         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
9808
9809         * nnmaildir.el (nnmaildir--update-nov)
9810         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
9811         Use `gmm-write-region'.
9812
9813 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9814
9815         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
9816         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
9817
9818         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
9819
9820         * message.el (message-replacement-char): New variable.
9821         (message-fix-before-sending): Use it.
9822         (message-simplify-subject): New function to remove duplicate code.
9823         (message-reply, message-followup): Use it.
9824
9825         * gnus-sum.el (gnus-summary-make-menu-bar):
9826         Clarify gnus-summary-limit-to-articles.
9827
9828 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9829
9830         * gnus-util.el (gnus-with-local-quit): New macro.
9831
9832         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
9833
9834 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
9835
9836         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
9837         ignore non-string data.
9838
9839 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
9840
9841         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
9842         non-string data (needs to be done in the registry too).
9843
9844 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
9845
9846         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
9847         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
9848         (gnus-registry-split-fancy-with-parent)
9849         (gnus-registry-fetch-simplified-message-subject-fast)
9850         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
9851         Remove text properties on ingress into the registry and when it's saved.
9852         (gnus-registry-clean-empty-function): Fix bug with cleaning the
9853         registry from entries with no groups.
9854
9855 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
9856
9857         * gnus-util.el (gnus-string-remove-all-properties): Add utility
9858         function to remove string properties.
9859
9860 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
9861
9862         * gmm-utils.el (gmm): Adjust custom version.
9863
9864         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
9865         Adjust custom version.
9866
9867         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
9868
9869 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
9870
9871         * gnus-art.el (gnus-insert-prev-page-button)
9872         (gnus-insert-next-page-button): Simplify.  Reformat.
9873
9874 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
9875
9876         * gnus-art.el (gnus-insert-prev-page-button)
9877         (gnus-insert-next-page-button): Apply gnus-article-button-face.
9878
9879 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
9880
9881         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
9882
9883 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
9884
9885         * gnus-art.el (gnus-insert-mime-button)
9886         (gnus-insert-mime-security-button):
9887         Apply gnus-article-button-face to MIME and security buttons.
9888
9889 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
9890
9891         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
9892         readable.
9893
9894 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9895
9896         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
9897
9898 2006-09-20  Steve Youngs  <steve@sxemacs.org>
9899
9900         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
9901         `browse-url-of-file' instead of `browse-url'.
9902
9903 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9904
9905         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
9906         regexp.  Articles containing quotation were cut prematurely.
9907
9908 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9909
9910         * message.el (message-cite-original-1): Use nobody by default for the
9911         value of From header.
9912         (message-reply): Ditto.
9913
9914 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
9915
9916         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
9917         to the gnus-info.  This fixes a bug of inline-PGP message verification.
9918         Reported by Michael Piotrowski <mxp@dynalabs.de>.
9919
9920 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
9921
9922         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
9923         mails in the doc string.  Add some URLs in comment.
9924         (pop3-movemail): Warn about pop3-leave-mail-on-server.
9925
9926 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9927
9928         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
9929         backslashes handling and the way to find boundaries of quoted strings.
9930
9931 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
9932
9933         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
9934         mml1991-encrypt-to-self is set and mml1991-signers is not set.
9935         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
9936         mml2015-encrypt-to-self is set and mml2015-signers is not set.
9937
9938 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
9939
9940         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
9941         doc string.
9942         (gnus-button-regexp, gnus-button-last): Remove unused variables.
9943
9944 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9945
9946         * lpath.el: Fbind epg-check-configuration.
9947
9948 2006-09-06  Simon Josefsson  <jas@extundo.com>
9949
9950         * mml2015.el (mml2015-use): Doc fix, mention epg.
9951
9952 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
9953
9954         * mml2015.el (mml2015-use): Default to epg, if available.
9955
9956 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
9957
9958         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
9959         message-sender.
9960         (mml1991-epg-encrypt): Ditto.
9961         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
9962         message-sender.
9963         (mml2015-epg-encrypt): Ditto.
9964
9965 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
9966
9967         * message.el (message-send-mail-with-sendmail): Look for sendmail in
9968         several common directories.
9969
9970 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
9971
9972         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
9973         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
9974
9975 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9976
9977         * gnus-art.el (article-decode-encoded-words): Make it fast.
9978
9979 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9980
9981         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
9982
9983         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
9984         in quoted string into `\'.
9985
9986 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9987
9988         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
9989         Use standard-syntax-table.
9990
9991 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9992
9993         * gnus-art.el (gnus-decode-address-function): New variable.
9994         (article-decode-encoded-words): Use it to decode headers which are
9995         assumed to contain addresses.
9996         (gnus-mime-delete-part): Remove useless `or'.
9997
9998         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
9999         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
10000         (gnus-nov-parse-line): Use it to decode From header.
10001         (gnus-get-newsgroup-headers): Ditto.
10002         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
10003
10004         * mail-parse.el (mail-decode-encoded-address-region): New alias.
10005         (mail-decode-encoded-address-string): New alias.
10006
10007         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10008         New function.
10009         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
10010         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
10011         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
10012         (rfc2047-decode-string): Ditto.
10013         (rfc2047-decode-address-region): New function.
10014         (rfc2047-decode-address-string): New function.
10015
10016 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
10017
10018         * message.el (message-caesar-buffer-body): Allow rotating headers.
10019
10020         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
10021
10022         * message.el (message-insert-formated-citation-line): Fix %f.
10023         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
10024
10025 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10026
10027         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
10028         (gnus-bookmark-mouse-available-p): New macro.
10029         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
10030         (gnus-bookmark-bmenu-show-infos): Use it.
10031         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
10032         (gnus-bookmark-bmenu-hide-infos): Ditto.
10033         (gnus-bookmark-remove-properties): New function.
10034         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
10035         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
10036         (gnus-bookmark-write-file): Bind coding-system-for-write.
10037         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
10038         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
10039         group before selecting it.
10040         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
10041         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
10042         quit-window if it is not available; use gnus-mouse-2 and bind it to
10043         gnus-bookmark-bmenu-select-by-mouse.
10044         (gnus-bookmark-show-details): Remove unused variable `details-list'.
10045         (gnus-bookmark-bmenu-select-by-mouse): New function.
10046
10047 2006-08-13  Romain Francoise  <romain@orebokech.com>
10048
10049         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
10050         space.
10051
10052 2006-08-10  Romain Francoise  <romain@orebokech.com>
10053
10054         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
10055         (dns-mode-soa-auto-increment-serial): New user option.
10056         (dns-mode-soa-maybe-increment-serial): New function.
10057         (dns-mode): Add the latter to `write-contents-functions'.
10058
10059 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10060
10061         * compface.el (uncompface): Use binary rather than raw-text-unix.
10062
10063 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10064
10065         * compface.el (uncompface): Make sure the eol conversion doesn't take
10066         place when communicating with the external programs.
10067         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
10068
10069 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10070
10071         * nnheader.el (nnheader-insert-head): Fix typo in comment.
10072
10073 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10074
10075         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
10076         Make it more robust by parsing author and date independently.
10077
10078 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10079
10080         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
10081
10082 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
10083
10084         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
10085         first matching secret key.
10086         (mml2015-epg-encrypt): Ditto.
10087
10088         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
10089         first matching secret key.
10090         (mml1991-epg-encrypt): Ditto.
10091
10092         * mml2015.el (mml2015-encrypt-to-self): New user option.
10093         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
10094         mml2015-epg-encrypt-to-self is set.
10095
10096         * mml1991.el (mml1991-encrypt-to-self): New variable.
10097         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
10098         mml1991-epg-encrypt-to-self is set.
10099
10100         * mml2015.el (mml2015-signers): New user option.
10101         (mml2015-epg-sign): Reflect the value of mml2015-signers.
10102         (mml2015-epg-encrypt): Allow to select signing keys.
10103
10104         * mml1991.el (mml1991-signers): New variable.
10105         (mml1991-epg-sign): Reflect the value of mml1991-signers.
10106         (mml1991-epg-encrypt): Allow to select signing keys.
10107
10108 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10109
10110         * nnheader.el (nnheader-insert-head): Make it work even if the file
10111         uses CRLF for the line-break code.
10112
10113 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
10114
10115         * mml2015.el: Require mml-sec instead of password.
10116         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
10117         (mml2015-cache-passphrase): Inherit the default value from
10118         mml-secure-cache-passphrase.
10119         (mml2015-passphrase-cache-expiry): Inherit the default value from
10120         mml-secure-passphrase-cache-expiry.
10121
10122         * mml1991.el: Require mml-sec instead of password.
10123         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
10124         (mml1991-cache-passphrase): Inherit the default value from
10125         mml-secure-cache-passphrase.
10126         (mml1991-passphrase-cache-expiry): Inherit the default value from
10127         mml-secure-passphrase-cache-expiry.
10128
10129         * mml-sec.el: Require password.
10130         (mml-secure-verbose): New user option.
10131         (mml-secure-cache-passphrase): New user option.
10132         (mml-secure-passphrase-cache-expiry): New user option.
10133
10134 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
10135
10136         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
10137         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
10138         andreas@altroot.de (Andreas Vögele).
10139
10140         FIXME: Use `tiny change'?
10141
10142 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10143
10144         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
10145         workaround for the url package included with Emacs.
10146
10147         * nnweb.el (nnweb-google-create-mapping): Update regexp.
10148
10149 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10150
10151         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
10152         correctly.  This fixes a bug caused by the 2006-05-12 change.
10153
10154 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
10155
10156         * nnmail.el (nnmail-article-group): If splitting raises an error, give
10157         some information about the error when saying that the `bogus' mail
10158         group will be used.
10159
10160 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
10161
10162         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
10163         string.
10164
10165 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
10166
10167         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
10168
10169 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10170
10171         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
10172
10173 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
10174
10175         * mml1991.el (mml1991-function-alist): Add epg.
10176         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
10177         (mml1991-epg-encrypt): New functions.
10178
10179 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
10180
10181         * mml2015.el (mml2015-verbose): New variable.
10182         (mml2015-cache-passphrase): Ditto.
10183         (mml2015-passphrase-cache-expiry): Ditto.
10184         (mml2015-function-alist): Add epg.
10185         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
10186         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
10187         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
10188         New functions.
10189
10190 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10191
10192         * message.el (message-cite-original-1): Preserve region when removing
10193         quoted text due to X-No-Archive in order to avoid bogus attribution
10194         when citing multiple messages.
10195
10196 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10197
10198         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
10199         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
10200
10201 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
10202
10203         * gnus-diary.el (gnus-user-format-function-d)
10204         (gnus-user-format-function-D): Autoload.
10205
10206         * imap.el (Commentary): Fix typo.
10207
10208         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
10209         2006-04-22 contribution.
10210
10211 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10212
10213         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
10214         It didn't really fix the bogosity I'm seeing with solid web groups.
10215
10216 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10217
10218         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
10219         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
10220         created using server names.  If we use the feature without declaring
10221         it, Gnus does not properly manage server and group state.
10222
10223         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
10224         bound.
10225
10226 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10227
10228         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
10229         looking up the method using GROUP's prefix before inventing a new one.
10230         It is used on killed/unknown groups in various places where returning
10231         an all-new method isn't expected by the caller.
10232
10233         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
10234         and match semantics of gnus-group-real-prefix.
10235
10236 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
10237
10238         * nnmail.el (nnmail-broken-references-mailers): New variable.
10239         (nnmail-ignore-broken-references): New function generalizing
10240         nnmail-fix-eudora-headers.
10241         (nnmail-fix-eudora-headers): Now obsolete.
10242
10243         * gnus-art.el (gnus-button-handle-custom):
10244         Support `customize-apropos*'.
10245
10246 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10247
10248         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
10249
10250         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
10251         articles.
10252
10253 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
10254
10255         * message.el (message-cite-reply-above): New variable.
10256         (message-yank-original): Use it.
10257
10258 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10259
10260         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
10261
10262 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
10263
10264         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
10265         as read.
10266
10267         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
10268
10269 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
10270
10271         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
10272         (gnus-bookmark-default-file): Use gnus-directory.
10273         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
10274         Remove "*" in doc string.
10275         (gnus-bookmark-write-file): Simplify.
10276         (gnus-bookmark-maybe-sort-alist): Use `when'.
10277         (gnus-bookmark-get-bookmark): Fix typo in doc string.
10278         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
10279         Add FIXME about Emacs 21 and XEmacs compatibility.
10280         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
10281         compatibility.
10282         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
10283         compatibility.
10284         (gnus-bookmark-menu-heading): Fix version.
10285
10286 2006-06-19  Bastien Guerry  <bzg@altern.org>
10287
10288         * gnus-bookmark.el: New file.
10289
10290 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10291
10292         * message.el (message-syntax-checks): Doc fix.
10293
10294 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10295
10296         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
10297         unsubscribed groups as if they were killed ones.  It causes duplicate
10298         entries in gnus-newsrc-alist.
10299
10300 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10301
10302         * message.el (message-syntax-checks): Doc fix.
10303         (message-send-mail): Add check for continuation headers.
10304         (message-check-news-header-syntax): Fix regexp used to check for
10305         continuation headers.
10306
10307 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10308
10309         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
10310
10311 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
10312
10313         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
10314
10315 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10316
10317         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
10318         default-truncate-lines.
10319
10320 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10321
10322         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
10323         to fill the utf-8 entry.
10324
10325         * lpath.el: Fbind unicode-precedence-list.
10326
10327 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10328
10329         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
10330
10331 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
10332
10333         * gnus-agent.el (directory-files-and-attributes): Move all the way
10334         forward (the third and final move).
10335         (gnus-agent-read-agentview): Trap reconstruction errors due to
10336         nonexistent directory.  Handle by returning nil.
10337
10338 2006-05-30  Didier Verna  <didier@xemacs.org>
10339
10340         * message.el (message-dont-reply-to-names): Update the custom type.
10341         * message.el (message-dont-reply-to-names): New defsubst: potentially
10342         convert a list of regexps into a single one.
10343         * message.el (message-get-reply-headers): Use it.
10344         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
10345
10346 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10347
10348         * gnus-agent.el (directory-files-and-attributes): Move forward.
10349
10350 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
10351
10352         * gnus-ml.el (gnus-mailing-list-subscribe)
10353         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
10354         (gnus-mailing-list-message): Fix doc strings.
10355
10356 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10357
10358         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
10359         of doing it manually.
10360
10361 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
10362
10363         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
10364         comment.
10365
10366 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
10367
10368         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
10369         (gnus-agent-read-agentview): Fix handling of end-of-file error.
10370         (gnus-agent-read-local): All symbols allocated in my-obarray.
10371         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
10372         (gnus-agent-regenerate-group): Check numeric names to see if they are
10373         messages or groups.
10374         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
10375         better way of do this...)
10376
10377         * gnus-cache.el (gnus-agent-total-fetched-for):
10378         Ignore 'dummy.group' (there should be a better way of do this...)
10379
10380 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10381
10382         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
10383         (gnus-saved-headers): Ditto.
10384         (gnus-default-article-saver): Mention functions may have properties.
10385         (gnus-article-save): Override gnus-save-all-headers and
10386         gnus-saved-headers by :headers property which saver function may have.
10387         (gnus-summary-save-in-file): Add :headers property.
10388         (gnus-summary-write-to-file): Ditto.
10389
10390         * gnus-sum.el (gnus-summary-save-article): Bind
10391         gnus-prompt-before-saving to t when saving many articles in a file;
10392         always show all headers.
10393
10394         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
10395
10396 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
10397
10398         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
10399         marks.
10400
10401         * message.el (message-indent-citation): Add optional arguments to allow
10402         using it outside of message buffers.
10403
10404         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
10405         (gnus-article-treat-unfold-headers): Use it.
10406         (gnus-article-truncate-lines): New variable.
10407         (gnus-article-mode): Use it.
10408         (gnus-article-toggle-truncate-lines): New function.
10409
10410         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
10411         Add gnus-article-toggle-truncate-lines.
10412
10413         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
10414         coding system in XEmacs, use binary.
10415
10416 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10417
10418         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
10419         after-load-alist.
10420
10421         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
10422         this function should save decoded articles.
10423         (gnus-summary-write-to-file): Use property to specify this function
10424         should save decoded articles and specify gnus-summary-save-in-file
10425         should be used to save articles other than the first one when saving
10426         many articles.
10427         (gnus-summary-save-body-in-file): Use property to specify this
10428         function should save decoded articles.
10429         (gnus-summary-write-body-to-file): Use property to specify this
10430         function should save decoded articles and specify
10431         gnus-summary-save-body-in-file should be used to save articles other
10432         than the first one when saving many articles.
10433
10434         * gnus-sum.el (gnus-summary-save-article): Simplify.
10435
10436 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10437
10438         * gnus-art.el (gnus-default-article-saver):
10439         Add gnus-summary-write-body-to-file.
10440         (gnus-article-save-coding-system): Don't use coding system object
10441         in XEmacs.
10442         (gnus-read-save-file-name): Add optional `dir-var' argument which
10443         specifies directory in which files are saved; work even if optional
10444         `variable' argument is not specified.
10445         (gnus-summary-write-to-file): Read file name.
10446         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
10447         (gnus-summary-write-body-to-file): New function.
10448
10449         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
10450         (gnus-summary-local-variables): Add it.
10451         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
10452         (gnus-summary-save-article): Remove optional `decode' argument;
10453         determine whether to decode articles by the value of
10454         gnus-default-article-saver; when saving many files using
10455         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
10456         it first and use gnus-summary-save-in-file or
10457         gnus-summary-save-body-in-file thereafter unless
10458         gnus-prompt-before-saving is always; move point to article which
10459         will be saved.
10460         (gnus-summary-save-article-file): Revert.
10461         (gnus-summary-write-article-file): Revert.
10462         (gnus-summary-save-article-body-file): Revert.
10463         (gnus-summary-write-article-body-file): New function.
10464
10465 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10466
10467         * gnus-art.el (gnus-default-article-saver): Doc fix.
10468         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
10469         from gnus-summary-save-article-coding-system, and default to a
10470         certain coding system.
10471         (gnus-output-to-file): Add coding cookie and encode text according
10472         to gnus-article-save-coding-system; don't use mm-append-to-file.
10473
10474         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
10475         gnus-art.el and rename to gnus-article-save-coding-system.
10476         (gnus-summary-save-article): Require gnus-art; don't show all
10477         headers if it decodes articles; don't add coding cookie here;
10478         don't bind mm-text-coding-system-for-write.
10479         (gnus-summary-save-article-file): Save decoded articles.
10480         (gnus-summary-write-article-file): When saving many files, use
10481         gnus-summary-write-to-file first and gnus-summary-save-in-file
10482         thereafter unless gnus-prompt-before-saving is always.
10483         (gnus-summary-save-article-body-file): Save decoded articles.
10484
10485         * lpath.el: Fbind select-safe-coding-system for XEmacs.
10486
10487 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10488
10489         * nnrss.el (nnrss-check-group): Bind hash-index.
10490
10491 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
10492
10493         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
10494         its hash index.  Store this hash in `nnrss-group-data'.
10495         (nnrss-read-group-data): Update accordingly.
10496
10497 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10498
10499         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
10500         entry.
10501
10502         * gnus-sum.el (gnus-summary-make-menu-bar):
10503         Add gnus-article-browse-html-article.
10504
10505 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
10506
10507         * gnus-sum.el (gnus-summary-mime-map):
10508         Add gnus-article-browse-html-article.
10509
10510         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
10511
10512 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10513
10514         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
10515         suitable coding systems in customize.
10516
10517 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
10518
10519         * mail-source.el (mail-sources): Fix custom type.
10520
10521 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
10522
10523         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
10524         (gnus-summary-expire-articles-now): Shorten prompt.
10525
10526         * gmm-utils.el (wid-edit): Require.
10527         (defun-gmm): Rename from `gmm-defun-compat'.
10528         (gmm-image-search-load-path): Use it.
10529         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
10530
10531 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10532
10533         * gnus-sum.el (gnus-summary-save-article-coding-system):
10534         New variable.
10535         (gnus-summary-save-article): Add optional `decode' argument.
10536         If it is set and gnus-summary-save-article-coding-system is non-nil,
10537         save decoded article.
10538         (gnus-summary-write-article-file): Save decoded article if
10539         gnus-summary-save-article-coding-system is non-nil.
10540
10541         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
10542         type.
10543
10544 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10545
10546         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
10547
10548 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10549
10550         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
10551         first to test gnus-single-article-buffer which may be buffer-local.
10552
10553         * gnus-sum.el (gnus-summary-setup-buffer):
10554         Make gnus-single-article-buffer buffer-local and nil in ephemeral
10555         group; make gnus-article-buffer, gnus-article-current, and
10556         gnus-original-article-buffer always buffer-local.
10557         (gnus-summary-exit): Kill article buffer belonging to ephemeral
10558         group.
10559         (gnus-handle-ephemeral-exit): Don't move to next summary line.
10560
10561 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
10562
10563         * nnml.el (nnml-request-compact-group): Compressed files might not
10564         have .gz extension.
10565
10566 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10567
10568         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
10569         (mm-copy-to-buffer): Use with-current-buffer.
10570         (mm-display-part): Simplify.
10571         (mm-inlinable-p): Add optional arg `type'.
10572
10573 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10574
10575         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
10576         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
10577         Try harder to show the attachment internally or externally using
10578         gnus-mime-view-part-as-type.
10579
10580 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
10581
10582         * message.el (message-from-style, message-signature-separator)
10583         (message-user-organization-file, message-send-mail-function)
10584         (message-citation-line-function, message-yank-prefix)
10585         (message-indent-citation-function, message-signature)
10586         (message-signature-file, message-signature-insert-empty-line):
10587         Remove autoloads.
10588
10589         * gnus-art.el (gnus-buttonized-mime-types):
10590         Remove "multipart/signed".  Revert 2006-04-26 change.
10591
10592 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10593
10594         * gnus.el (gnus-version-number): Bump version.
10595
10596 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10597
10598         * gnus.el: No Gnus v0.5 is released.
10599
10600 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10601
10602         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
10603         fetching articles by message-id.
10604
10605 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10606
10607         * message.el (hashcash): Require hashcash as normal.
10608
10609         * ecomplete.el (ecomplete-highlight-match-line):
10610         Use point-at-eol.
10611         (ecomplete-highlight-match-line): Use `highlight', because that
10612         face exists in both Emacs and XEmacs.
10613
10614         * message.el (message-display-abbrev): Use point-at-bol.
10615
10616         * mail-source.el: Don't require timer/timer-funcs.
10617
10618         * gnus-async.el: Ditto.
10619
10620         * password.el: Ditto.
10621
10622         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
10623
10624         * mm-url.el: Ditto.
10625
10626         * gnus-xmas.el: Don't require timer-funcs.
10627
10628         * mm-util.el: Require timer/timer-funcs.
10629
10630 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10631
10632         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
10633         Close.
10634
10635 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10636
10637         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
10638         unibyte after clear-decrypt function runs.
10639
10640         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
10641         returns as a unibyte string.
10642
10643 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10644
10645         * lpath.el: Revert.
10646
10647         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
10648         (pgg-gpg-process-sentinel): Revert.
10649
10650         * pgg-pgp.el (pgg-pgp-process-region): Revert.
10651         (pgg-pgp-lookup-key): Revert.
10652
10653         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
10654         (pgg-pgp5-lookup-key): Revert.
10655
10656         * pgg.el (pgg-fetch-key): Revert.
10657
10658 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10659
10660         * lpath.el: Fbind string-as-multibyte for XEmacs.
10661
10662         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
10663         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
10664         (mml1991-pgg-encrypt): Ditto.
10665
10666         * pgg-gpg.el (pgg-string-to-multibyte): New function.
10667         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
10668         a multibyte buffer.
10669
10670         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
10671         (pgg-pgp-lookup-key): Ditto.
10672
10673         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
10674         (pgg-pgp5-lookup-key): Ditto.
10675
10676         * pgg.el (pgg-fetch-key): Ditto.
10677
10678 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
10679
10680         * message.el (message-user-organization-file): Check several
10681         locations of the organization file.
10682
10683         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
10684         Add gnus-article-view-part-as-type.
10685
10686         * gnus-art.el (gnus-article-view-part-as-type): New function.
10687
10688         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
10689         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
10690
10691         * mml.el: Simplify autoload.
10692         (mml-mode): defvar dnd-protocol-alist instead of using
10693         symbol-value.
10694         (mml-default-directory): New variable.
10695         (mml-minibuffer-read-file): Use it.
10696         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
10697
10698         * message.el (message-citation-line-format): New variable.
10699         (message-insert-formated-citation-line): New function.
10700         (message-citation-line-function):
10701         Add `message-insert-formated-citation-line' to custom type.
10702
10703         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
10704         to doc string.
10705
10706         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
10707         depending on mm-verify-option.
10708
10709 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10710
10711         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
10712         binding pgg-* variables; reimplement the section which prevents
10713         MIME header from being signed.
10714         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
10715         pgg-text-mode; remove a blank line at the top of body.
10716
10717         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
10718         lines at the top of body; use gnus-newsgroup-charset if there's no
10719         Charset header.
10720
10721 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10722
10723         * message.el (message-self-insert-commands): Doc fix.
10724
10725         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
10726         (mm-uu-pgp-encrypted-test): Ditto.
10727         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
10728         between header and body; return application/pgp-encrypted handle
10729         if decryption failed; decode decrypted body by charset.
10730
10731         * mm-decode.el (mm-automatic-display): Don't make application/pgp
10732         element match to application/pgp-*.
10733
10734 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10735
10736         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
10737         HTML.
10738
10739 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10740
10741         * mail-source.el (mail-source-call-script): Message the error
10742         string.
10743
10744 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10745
10746         * gnus-util.el (gnus-byte-compile): Use it.
10747
10748 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
10749
10750         * gnus-util.el (kill-empty-logs): New function.
10751
10752 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10753
10754         * message.el (message-mail-alias-type): Doc fix.
10755         (message-mail-alias-type-p): New function.
10756         (message-send): Use it.
10757         (message-mode): Ditto.
10758         (message-strip-forbidden-properties): Ditto.
10759
10760         * ecomplete.el (ecomplete-database-file-coding-system):
10761         New variable.
10762         (ecomplete-save): Use it.
10763         (ecomplete-setup): Use it.
10764
10765 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10766
10767         * message.el (message-self-insert-commands): New variable.
10768         (message-strip-forbidden-properties): Use it.
10769
10770 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10771
10772         * message.el (message-put-addresses-in-ecomplete): Use a regexp
10773         that doesn't make XEmacs choke.
10774
10775 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
10776
10777         * gnus-util.el (gnus-replace-in-string):
10778         Prefer replace-regexp-in-string over of replace-in-string.
10779
10780 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10781
10782         * gnus-util.el (gnus-select-frame-set-input-focus):
10783         Use select-frame-set-input-focus if it is available in XEmacs; use
10784         definition defined in Emacs 22 for old Emacsen.
10785
10786         * dgnushack.el: Autoload unmorse-region for XEmacs.
10787
10788         * lpath.el: Bind cursor-in-non-selected-windows and
10789         select-frame-set-input-focus for XEmacs.
10790
10791 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10792
10793         * mm-view.el (mm-inline-text): Use equal instead of equalp.
10794
10795 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
10796
10797         * gnus-registry.el (gnus-registry-cache-save): Remove text
10798         properties when saving via the temp buffer.
10799
10800 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10801
10802         * message.el (message-generate-hashcash): Honor custom type.
10803
10804 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10805
10806         * message.el (message-generate-hashcash): Default to non-nil when
10807         hashcash is found.
10808
10809         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
10810         (gnus-refer-thread-limit): Increase default to 500.
10811
10812         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
10813
10814         * flow-fill.el (fill-flowed): Allow delete-space.
10815
10816 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10817
10818         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
10819         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
10820         Remove autoloads.
10821
10822 2006-04-18  Simon Josefsson  <jas@extundo.com>
10823
10824         * message.el (message-generate-hashcash): Default to.
10825
10826 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10827
10828         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
10829         concatenating segments rather than before concatenating them.
10830
10831 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
10832
10833         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
10834
10835 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10836
10837         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
10838
10839         * message.el (message-forward-make-body-plain):
10840         Allow message-forward-ignored-headers to be a list.
10841         (message-remove-ignored-headers): Factor out into function.
10842         (message-forward-make-body-mml): Use it.
10843
10844         * imap.el (imap-quote-specials): New function.
10845         (imap-login-auth): Quote specials.
10846
10847         * rfc2231.el (rfc2231-parse-string): Remove dead code.
10848         (rfc2231-parse-string): Allow concatanation of parameters that
10849         aren't contiguous.  The test case is
10850           (mail-header-parse-content-type "message/external-body;
10851             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
10852             access-type=LOCAL-FILE;
10853             name*1*=plugh%2fhello-sailor%2fbing.pdf")
10854
10855 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10856
10857         * nntp.el (nntp-accept-process-output): Return the value of
10858         `nnheader-accept-process-output'.
10859
10860 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10861
10862         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
10863         (gnus-button-alist): Recognize more diff formats.
10864         (gnus-button-patch): Strip directory.
10865
10866 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
10867
10868         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
10869         Emacs 22 when setting focus.
10870
10871 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10872
10873         * gnus-art.el (gnus-article-treat-types): Do treatment of
10874         text/x-verbatim parts.
10875         (gnus-button-patch): New command.
10876
10877         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
10878         addresses that contain invalid characters.
10879
10880 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10881
10882         * message.el (message-put-addresses-in-ecomplete):
10883         Use gnus-replace-in-string.
10884         (message-is-yours-p): Use the more correct
10885         mail-header-parse-address instead of
10886         mail-extract-address-components.
10887         (message-put-addresses-in-ecomplete): Fix typo.
10888
10889         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
10890         keystroke.
10891
10892         * gnus-art.el (gnus-treatment-function-alist): Change order of
10893         newsgroups/generic header folding to avoid double-folding.
10894
10895         * message.el (message-hidden-headers): Add X-Draft-From.
10896
10897         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
10898         New command.
10899         (gnus-summary-repeat-search-article-backward): New command.
10900
10901         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
10902         groups in the parent topic.
10903
10904 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
10905
10906         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
10907         (spam-extra-header-to-number): Return the CRM114 number as a
10908         number instead of a string.
10909
10910 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10911
10912         * gnus-art.el (gnus-face-properties-alist): Move here from
10913         gnus-fun.
10914
10915         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
10916
10917 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10918
10919         * message.el (message-strip-forbidden-properties): Only display on
10920         self-insert-command.
10921
10922         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
10923         reindent.
10924         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
10925
10926 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
10927
10928         * smiley.el (smiley-style): Fix typo.
10929
10930 2006-03-23  Kenichi Handa  <handa@m17n.org>
10931
10932         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
10933         instead of set-buffer-multibyte.
10934
10935 2006-03-23  Kenichi Handa  <handa@m17n.org>
10936
10937         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
10938         buffer and then decode the buffer text if necessary.
10939         (rfc2231-encode-string): Be sure to work on multibyte buffer at
10940         first, and after mm-encode-body, change the buffer to unibyte.
10941
10942 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10943
10944         * hashcash.el (hashcash-insert-payment-async-2):
10945         Use message-goto-eoh instead of doing it manually.
10946         (mail-add-payment): Use message-narrow-to-header instead of trying
10947         to do the same itself.
10948
10949         * message.el (message-hidden-headers): Add Face.
10950
10951         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
10952         reparenting code.
10953         (gnus-summary-reparent-children): Refactored out code.
10954         (gnus-summary-thread-map): New keystroke.
10955         (gnus-summary-reparent-children): Make into command.
10956
10957         * smiley.el (smiley-style): Default to `medium' if using a large
10958         font.
10959
10960         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
10961         does it itself.
10962
10963         * message.el (message-point-in-header-p): Simplify definition.
10964
10965 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10966
10967         * nnagent.el (nnagent-request-set-mark): Silence log file
10968         writing.
10969         (nnagent-request-set-mark): Use write-region instead of
10970         append-to-file.
10971
10972         * gnus-sum.el (gnus-read-header): Fudge article number if using a
10973         strange select method.
10974
10975         * ecomplete.el (ecomplete-display-matches): Get highlightling
10976         right.
10977         (ecomplete-display-matches): Use literals.
10978         (ecomplete-display-matches): Disable message logging.
10979
10980         * message.el (message-display-abbrev): Small optimization.
10981
10982         * ecomplete.el (ecomplete-display-matches): Allow automatic
10983         display.
10984
10985         * message.el (message-strip-forbidden-properties):
10986         Display abbrevs.
10987         (message-display-abbrev): Get automatic display right.
10988
10989         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
10990         keystrokes.
10991
10992 2006-04-13  Romain Francoise  <romain@orebokech.com>
10993
10994         TODO: Backport to v5-10!
10995
10996         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
10997         Move here (and rename) from gnus-registry.el.
10998
10999         * gnus-registry.el: Require gnus-util.
11000         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
11001
11002 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11003
11004         * gnus-group.el (gnus-group-catchup-current):
11005         Change if-then-else-if-then-else into cond.
11006         (gnus-group-catchup): Indent.
11007         (group-name-at-point): New function.
11008         (gnus-fetch-group): Provide default from thing at point.
11009
11010 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11011
11012         * message.el (message-display-abbrev): Fix regexp.
11013
11014         * ecomplete.el (ecomplete-highlight-match-line):
11015         Reimplement choosing.
11016         (ecomplete-highlight-match-line): Fix up code rewrite, remove
11017         dead variables.
11018
11019         * message.el (message-newline-and-indent): Remove debugging.
11020         (message-display-abbrev): Use new implementation.
11021
11022 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
11023
11024         * gnus-art.el (gnus-article-mode):
11025         Set cursor-in-non-selected-windows to nil.
11026
11027         * smiley.el: Revert previous change.
11028         (smiley-data-directory): defvar it before using it in the
11029         defcustom of `smiley-style'.
11030
11031 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11032
11033         * message.el (message-newline-and-indent): New function.
11034
11035         * ecomplete.el: Implement more bits.
11036
11037         * message.el (message-put-addresses-in-ecomplete): Clean up the
11038         string.
11039
11040         * ecomplete.el (ecomplete-add-item): Chop off decimals.
11041
11042         * gnus-sum.el (gnus-summary-save-parts):
11043         Bind gnus-summary-save-parts-counter and use it to make unique file
11044         names.
11045
11046         * gnus-art.el (gnus-ignored-headers): Add some more headers.
11047
11048         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
11049         parameter to say whether to actually parse the individual
11050         addresses.
11051
11052         * message.el (message-put-addresses-in-ecomplete): New function.
11053         (ecomplete): Require.
11054         (message-mail-alias-type): Add ecomplete as an option.
11055
11056 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
11057
11058         * flow-fill.el (fill-flowed): Remove trailing space from blank
11059         quoted lines.
11060
11061 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11062
11063         * smiley.el (smiley-style): Move definition later to avoid a
11064         compilation warning.
11065
11066 2006-04-12  Kenichi Handa  <handa@m17n.org>
11067
11068         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
11069         buffer and then decode the buffer text if necessary.
11070         (rfc2231-encode-string): Be sure to work on multibyte buffer at
11071         first, and after mm-encode-body, change the buffer to unibyte.
11072         Use mm-disable-multibyte instead of set-buffer-multibyte.
11073
11074 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11075
11076         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
11077         Content-Type header instead of Content-Disposition header.
11078         (gnus-mime-inline-part): Ditto.
11079         (gnus-mime-view-part-as-charset): Ignore charset that the part
11080         specifies.
11081
11082         * mm-decode.el (mm-display-part): Work with external parts and
11083         usual parts similarly.
11084
11085         * mm-extern.el (mm-inline-external-body): Use mm-display-part
11086         instead of gnus-display-mime.
11087
11088         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
11089         instead of with-temp-buffer.
11090
11091         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
11092         tag to summarized topics part in order to encode non-ASCII text.
11093
11094 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
11095
11096         * smiley.el (smiley-style): New variable.
11097         (smiley-directory): New function.
11098         (smiley-data-directory): Derive from `smiley-style' using
11099         `smiley-directory'.
11100         (smiley-regexp-alist): Add new entries.
11101
11102         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
11103         (gnus-article-browse-delete-temp): Add :version.
11104
11105 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
11106
11107         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
11108         the sieve region.
11109
11110 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11111
11112         * gnus.el (gnus-version-number): Bump version.
11113
11114 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
11115
11116         * gnus.el: No Gnus v0.4 is released.
11117
11118 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11119
11120         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
11121         layout.
11122
11123         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
11124         unknown charset.
11125
11126         * message.el (message-header-synonyms): Add Original-To to the
11127         default.
11128
11129         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
11130         optional parameter.
11131
11132 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
11133
11134         * gnus-fun.el (gnus): Require it for gnus-directory.
11135
11136 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11137
11138         * gnus-fun.el (gnus-face-properties-alist): Add :version.
11139
11140 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
11141
11142         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
11143
11144 2006-04-05  Simon Josefsson  <jas@extundo.com>
11145
11146         * password.el (password-reset): New function.
11147
11148 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
11149
11150         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
11151         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
11152
11153 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11154
11155         * nnweb.el (nnweb-google-create-mapping): Update regexp.
11156         Some whitespace was matched into the url, which broke browsing hits
11157         > 100 when mm-url-use-external was nil.
11158
11159 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11160
11161         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
11162         Check gnus-extra-headers for 'Newsgroups.
11163
11164         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
11165         bound.
11166
11167 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
11168
11169         * pgg-gpg.el: Clean up process buffers every time gpg processes
11170         complete.
11171
11172 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
11173
11174         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
11175         doc string.
11176
11177 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
11178
11179         * pgg-gpg.el (pgg-gpg-process-filter)
11180         (pgg-gpg-wait-for-completion): Check if buffer is alive.
11181
11182         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
11183         lines, temporary fix.
11184
11185 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11186
11187         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
11188
11189 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
11190
11191         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
11192         default-enable-multibyte-characters.  This reverts the change from
11193         revision 6.17 which is no longer necessary because the passphrase
11194         is sent separately now.  GnuPG messages are unreadable under
11195         multibyte locales with default-enable-multibyte-characters set to
11196         nil.
11197
11198 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
11199
11200         * message.el (message-tool-bar-gnome): Move "spell".
11201
11202 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
11203
11204         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
11205         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
11206         instead.
11207
11208 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
11209
11210         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
11211         Improve newsgroups handling for NNTP overviews which don't include
11212         Newsgroups.
11213
11214 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11215
11216         * message.el (message-resend): Bind message-generate-hashcash to nil.
11217
11218 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11219
11220         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
11221         when searching for already-paid recipients.
11222
11223 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
11224
11225         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
11226         passphrases when it is not needed.
11227         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
11228         passphrase stuff from gpg, should only be necessary when you use
11229         gpg with a smartcard.
11230
11231 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11232
11233         * mml.el (mml-insert-mime): Ignore cached contents of
11234         message/external-body part.
11235
11236         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
11237         (mm-insert-part): Ditto.
11238
11239 2006-03-23  Simon Josefsson  <jas@extundo.com>
11240
11241         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
11242         Reiner.
11243         (pgg-gpg-use-agent-p): Use it again.
11244
11245 2006-03-23  Simon Josefsson  <jas@extundo.com>
11246
11247         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
11248         older emacsen.
11249         (pgg-gpg-use-agent-p): Don't use it.
11250
11251 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
11252
11253         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
11254         if we can.
11255
11256 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
11257
11258         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
11259         (pgg-gpg-update-agent): New function.
11260         (pgg-gpg-use-agent-p): New function.
11261         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
11262         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
11263         (pgg-gpg-sign-region): Use it.
11264
11265 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11266
11267         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
11268         Reported by Ralf Wachinger <rwachinger@gmx.de>.
11269
11270 2006-03-21  Simon Josefsson  <jas@extundo.com>
11271
11272         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
11273         <wilde@sha-bang.de>.
11274         (pgg-gpg-use-agent): New variable.
11275         (pgg-gpg-process-region): Use it.
11276         (pgg-gpg-encrypt-region): Likewise.
11277         (pgg-gpg-encrypt-symmetric-region): Likewise.
11278         (pgg-gpg-decrypt-region): Likewise.
11279         (pgg-gpg-sign-region): Likewise.
11280         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
11281
11282 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11283
11284         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
11285
11286         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
11287         Add comment on version.
11288
11289 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
11290
11291         * smiley.el: Add missing test smiley.
11292
11293 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11294
11295         * mm-decode.el (mm-with-part): New macro.
11296         (mm-get-part): Use it; work with message/external-body as well.
11297         (mm-save-part): Treat name and filename equally.
11298
11299         * mm-extern.el (mm-extern-cache-contents): New function.
11300         (mm-inline-external-body): Use it; force the part to be displayed;
11301         move undisplayer added to the cached handle to the parent.
11302
11303         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
11304         (gnus-mime-view-part-as-type): Work with message/external-body.
11305
11306         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
11307
11308 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11309
11310         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
11311         images in image-load-path.  [Sync with image.el, revision 1.60, in
11312         Emacs.]
11313
11314 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11315
11316         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
11317         path rather than symbol.  Always return list of directories.
11318         Guarantee that image directory comes first.  [Sync with image.el,
11319         revision 1.59, in Emacs.]
11320
11321         * message.el (message-make-tool-bar): Adjust to new API of
11322         `gmm-image-load-path-for-library'.
11323
11324         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11325
11326         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
11327
11328 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11329
11330         * gnus-art.el (gnus-article-only-boring-p):
11331         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
11332         intangible text.
11333         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
11334
11335 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
11336
11337         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
11338         Use `defun' instead of `gmm-defun-compat'.
11339
11340 2006-03-14  Simon Josefsson  <jas@extundo.com>
11341
11342         * message.el (message-unique-id): Don't use message-number-base36
11343         if (user-uid) is a float.
11344         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
11345
11346 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11347
11348         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
11349
11350         * gnus-art.el (gnus-mime-display-single): Make sure there is an
11351         empty line between a part and a message part.
11352
11353 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
11354
11355         * smiley.el: Add more test smileys.
11356         (smiley-data-directory, smiley-regexp-alist)
11357         (gnus-smiley-file-types): Fix doc strings.
11358         (smiley-update-cache): Clear smiley-cached-regexp-alist before
11359         adding new elements.
11360         (smiley-mouse-map): Unused code.  Make it a comment.
11361
11362 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11363
11364         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
11365         scan latest NoCeM messages instead of old ones.
11366         (gnus-nocem-check-article): Fix regexps so as to match to PGP
11367         delimiters that are recently used.
11368         (gnus-nocem-load-cache): Add autoload cookie.
11369
11370         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
11371
11372         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
11373         level which is larger than gnus-use-nocem is specified.
11374
11375         * gnus-group.el (gnus-group-get-new-news): Ditto.
11376
11377 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
11378
11379         * gnus-util.el (gnus-tool-bar-update): New function.
11380
11381         * gnus-group.el (gnus-group-update-tool-bar): New variable.
11382         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
11383
11384         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
11385
11386         * gnus-group.el (gnus-group-redraw-when-idle)
11387         (gnus-group-redraw-check): Remove.
11388         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
11389
11390 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11391
11392         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
11393         if optional last element is specified in splits (FIELD VALUE...).
11394
11395 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
11396
11397         * message.el (message-make-tool-bar): Rename gmm-image-load-path
11398         to gmm-image-load-path-for-library.  Call with no-error argument.
11399         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
11400
11401         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11402
11403         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
11404
11405         * gmm-utils.el (gmm-image-load-path): Remove alias.
11406
11407 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
11408
11409         * gmm-utils.el (gmm-image-load-path): Add alias.
11410
11411         * nnml.el (nnml-generate-nov-databases-directory): Rename from
11412         nnml-generate-nov-databases-1.
11413         (nnml-generate-nov-databases): Use it.
11414         (nnml-generate-nov-databases-directory): Document no-active
11415         argument.
11416
11417         * gmm-utils.el (gmm-image-load-path-for-library): Return single
11418         directory if path is t.  Add no-error.
11419
11420         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
11421         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
11422
11423         * gnus-art.el (gnus-article-browse-delete-temp-files):
11424         Simplify resetting gnus-article-browse-html-temp-list.
11425
11426         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
11427         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
11428         Add example to docstring.  Rename local variables.  Move error
11429         checks to default case in cond and simplify.
11430
11431 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11432
11433         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
11434         handle is multipart when calling it recursively.
11435         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
11436
11437 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
11438
11439         * nnimap.el (nnimap-request-update-info-internal): Optimize.
11440         Don't `gnus-uncompress-range' to avoid excessive memory usage.
11441
11442 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11443
11444         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
11445         is loaded.
11446
11447         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
11448         loaded.
11449
11450 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11451
11452         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
11453         to "Emacs 23 (unicode)" in doc string.
11454
11455         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
11456         "Emacs 23 (unicode)" in comment.
11457
11458 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11459
11460         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
11461
11462         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
11463         characters 160 through 255 in Emacs 23.
11464
11465 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
11466
11467         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
11468         gnus-article-browse-html-temp.
11469         (gnus-article-browse-delete-temp): Make it customizable.
11470         Add `file'.  Adjust doc string.
11471         (gnus-article-browse-delete-temp-files): Add argument.
11472         Allow query for each file.  Adjust doc string.
11473         (gnus-article-browse-html-parts):
11474         Add `gnus-article-browse-delete-temp-files' to
11475         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
11476
11477 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
11478
11479         * gnus-art.el (gnus-article-browse-html-temp)
11480         (gnus-article-browse-delete-temp): New variables.
11481         (gnus-article-browse-delete-temp-files): New function.
11482         (gnus-article-browse-html-parts): Use it.
11483
11484 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
11485
11486         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
11487
11488         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
11489         string.
11490
11491         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
11492         gnus-summary-insert-new-articles when unplugged.
11493         Remove gnus-summary-search-article-forward.
11494
11495         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
11496         display-visual-class instead of display-color-cells.
11497
11498 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11499
11500         * dgnushack.el: Autoload customize-group for XEmacs.
11501
11502         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
11503         message/* containing non-ASCII text properly.
11504
11505 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
11506
11507         * message.el: Require gmm-utils, remove autoloads.
11508         (message-tool-bar): Set default based on
11509         gmm-tool-bar-style.
11510         (message-tool-bar-gnome): Add gmm-customize-mode.
11511
11512         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
11513         gmm-tool-bar-style.
11514         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
11515
11516         * gnus-group.el (gnus-group-tool-bar): Set default based on
11517         gmm-tool-bar-style.
11518         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
11519
11520         * gmm-utils.el (gmm-image-directory): Rename variable from
11521         gmm-image-load-path.
11522         (gmm-image-load-path): Use gmm-image-directory.
11523         (gmm-customize-mode): New function.
11524         (gmm-tool-bar-style): New variable.
11525
11526         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
11527         gnus-group-redraw-line-number.
11528         (gnus-group-redraw-check): Simplify.
11529         (gnus-group-tool-bar-update): Remove redraw check.
11530         (gnus-group-make-tool-bar): Add redraw check.
11531
11532 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
11533
11534         * gnus-art.el (gnus-button): Add missing parentheses.
11535
11536 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11537
11538         * lpath.el: Fbind line-number-at-pos.
11539
11540 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11541
11542         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
11543
11544 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
11545
11546         * gnus-art.el (gnus-button): New face.
11547         (gnus-article-button-face): Use it.
11548
11549         * gnus-sum.el (gnus-summary-tool-bar-gnome):
11550         Add gnus-summary-next-page.  Re-order.
11551
11552         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
11553         next-node are now included.
11554         (gnus-group-redraw-line-number): New internal variable.
11555         (gnus-group-redraw-check): Helper function for updating the tool
11556         bar.
11557         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
11558
11559         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
11560
11561         * spam.el (spam-spamassassin-score-regexp): New internal variable.
11562         (spam-extra-header-to-number, spam-check-spamassassin-headers):
11563         Use it to match format of Spamassassin 3.0 and later.
11564         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
11565         (spam-check-bogofilter)
11566         (spam-bogofilter-register-with-bogofilter): Fix args of
11567         `gnus-error' calls.
11568
11569 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
11570
11571         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
11572         unnecessary interaction when sending queued mails.
11573         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
11574
11575 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
11576
11577         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
11578         first or last are nil.
11579
11580 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11581
11582         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
11583
11584 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11585
11586         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
11587
11588 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11589
11590         * dns.el (query-dns): Protect more against buggy tcp output.
11591
11592 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11593
11594         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
11595         nov.php.
11596
11597 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11598
11599         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
11600         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
11601         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
11602         output on the server side.
11603         (nnweb-google-create-mapping): Update regexps and add some
11604         progress indication.
11605
11606 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
11607
11608         * gnus-group.el (gnus-group-tool-bar-gnome):
11609         Fix gnus-agent-toggle-plugged.  Re-order icons.
11610         (gnus-group-tool-bar-gnome):
11611         Add gnus-group-{prev,next}-unread-group.
11612         (gnus-group-tool-bar-gnome): Re-order icons.
11613
11614         * gnus-sum.el (gnus-summary-tool-bar-gnome):
11615         Move gnus-summary-insert-new-articles.
11616
11617         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
11618         Fix comments.
11619
11620         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
11621         also available in Emacs 21.3.
11622
11623         * message.el (message-fix-before-sending): Change "Emacs 22" to
11624         "Emacs 23 (unicode)" in comment.
11625
11626         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
11627         "Emacs 23 (unicode)" in comment.
11628
11629         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
11630         comment.
11631         (mm-coding-system-p): Add comment about no-MULE XEmacs.
11632
11633         * mm-view.el (mm-fill-flowed): Add :version.
11634
11635 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11636
11637         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
11638         and load-path.
11639
11640 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
11641
11642         * message.el: Autoload gmm-image-load-path.
11643         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
11644         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
11645         consitency.
11646
11647         * gmm-utils.el (gmm-image-load-path): Also search in
11648         "../etc/images".  Don't set gmm-image-load-path if we don't find
11649         the image.
11650
11651 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11652
11653         * gmm-utils.el (gmm-image-load-path): Don't make
11654         `gmm-image-load-path' include subdirectories which the second arg
11655         `image' might specify.
11656
11657         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
11658         subdirectory to icon file names.
11659
11660         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
11661
11662 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11663
11664         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
11665         gmm-image-load-path calls.
11666
11667         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11668
11669         * message.el (message-make-tool-bar): Ditto.
11670
11671         * mml.el (mml-preview): Add comment concerning tool bar icons.
11672
11673         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
11674         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
11675
11676         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
11677         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
11678
11679         * message.el (message-tool-bar-gnome): Use new icon names.
11680         (message-make-tool-bar): Use `gmm-image-load-path'.
11681
11682         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
11683         New functions from MH-E.
11684         (gmm-image-load-path): New variable from MH-E.
11685         (gmm-image-load-path): New function from MH-E.  Add arguments
11686         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
11687         *-image-load-path-called-flag.
11688
11689 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
11690
11691         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
11692
11693 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
11694
11695         * nnimap.el (nnimap-request-move-article): Change folder back to
11696         source group before deleting.
11697
11698 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
11699
11700         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
11701
11702         * gnus-art.el (mm-url-insert-file-contents-external):
11703         Autoload mm-url.
11704
11705         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
11706
11707 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11708
11709         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
11710         coding system which mm-charset-to-coding-system returns for a
11711         given charset is valid.
11712
11713 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
11714
11715         * html2text.el (html2text-remove-tag-list):
11716         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
11717
11718 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
11719
11720         * gnus-cus.el: Revert 2005-10-17 change.
11721
11722 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11723
11724         * gnus-art.el (article-strip-banner):
11725         Call article-really-strip-banner only when the regexp match is made.
11726
11727 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11728
11729         * gnus-art.el (article-strip-banner):
11730         Use gnus-extract-address-components instead of
11731         mail-header-parse-addresses to make it work with non-ASCII text;
11732         remove mail-encode-encoded-word-string.
11733
11734         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
11735         values which are surrounded with \"...\"; make it never cause a
11736         Lisp error; give up parsing of parameters if it failed in
11737         extracting type.
11738
11739 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
11740
11741         * smime.el (smime-cert-by-ldap-1): Fix bug where
11742         `smime-ldap-search' returns results without userCertificates.
11743
11744 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11745
11746         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
11747
11748 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11749
11750         * spam.el (spam-check-spamassassin-headers): Adapt format for
11751         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
11752         <ari@mbf.ocn.ne.jp>.
11753         (spam-list-of-processors): Add spam-use-gmane.
11754
11755 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11756
11757         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
11758         make-temp-file; make it work with XEmacs as well.
11759
11760         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
11761         mm-make-temp-file.
11762
11763         * mm-decode.el (mm-display-external): Use the 3rd arg of
11764         mm-make-temp-file.
11765         (mm-create-image-xemacs): Ditto.
11766
11767 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11768
11769         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
11770         with message-narrow-to-headers.
11771         (gnus-draft-setup): Narrow to header to run message-fetch-field.
11772         (gnus-draft-check-draft-articles): New function.
11773         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
11774
11775 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11776
11777         * gnus-art.el (gnus-article-browse-html-parts):
11778         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
11779         Don't use suffix argument for mm-make-temp-file for Emacs 21
11780         compatibility.  Remove useless `format'.
11781
11782 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11783
11784         * nnweb.el (nnweb-google-wash-article): Update regexps.
11785         (nnweb-group-alist): Use defvoo instead of defvar.
11786
11787 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11788
11789         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
11790         re-loading nn* modules.
11791
11792 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
11793
11794         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
11795         for `tool-bar-mode' and don't check it's default-value.
11796
11797         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11798
11799         * message.el (message-make-tool-bar): Ditto.
11800
11801         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
11802         `substring'.  Shorten tmp-file name.
11803
11804         * gnus.el: Remove bogus comment.
11805
11806 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
11807
11808         * gnus-art.el (gnus-article-browse-html-parts): New function.
11809         (gnus-article-browse-html-article): New function for viewing html
11810         articles with a browser.
11811
11812 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
11813
11814         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
11815         in elisp.
11816         (pgg-gpg-encrypt-symmetric-region): Ditto.
11817         (pgg-gpg-sign-region): Ditto.
11818
11819         * pgg-def.el (pgg-text-mode): New variable.
11820
11821         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
11822         (mml2015-pgg-encrypt): Ditto.
11823
11824         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
11825         (mml1991-pgg-encrypt): Ditto.
11826
11827 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11828
11829         * nnfolder.el (nnfolder-insert-newsgroup-line):
11830         Use message-make-date instead of current-time-string.
11831
11832         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
11833         to gnus-decoded which mm-uu might set.
11834
11835 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11836
11837         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
11838         don't decode quoted parameters; remove misimported Emacs code.
11839         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11840         (rfc2231-decode-encoded-string): Don't use split-string which
11841         behaves differently according to Emacs version; use
11842         mm-decode-coding-region to convert charset to coding-system.
11843         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11844         (rfc2231-encode-string): Remove misimported Emacs code.
11845
11846 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11847
11848         * gnus-art.el (article-decode-charset): Don't use ignore-errors
11849         when calling mail-header-parse-content-type.
11850         (article-de-quoted-unreadable): Ditto.
11851         (article-de-base64-unreadable): Ditto.
11852         (article-wash-html): Ditto.
11853
11854         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
11855         calling mail-header-parse-content-type and
11856         mail-header-parse-content-disposition.
11857         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
11858         mail-header-parse-content-type.
11859
11860         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
11861         insert charset and format parameters; encode description after
11862         inserting it to buffer.
11863         (mml-insert-parameter): Fold lines properly even if a parameter is
11864         segmented into two or more lines; change the max column to 76.
11865
11866         * rfc1843.el (rfc1843-decode-article-body): Don't use
11867         ignore-errors when calling mail-header-parse-content-type.
11868
11869         * rfc2231.el (rfc2231-parse-string): Return at least type if
11870         possible; don't cause an error even if it fails in parsing of
11871         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11872         (rfc2231-encode-string): Don't break lines at the beginning, leave
11873         it to mml-insert-parameter.
11874
11875         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
11876         calling mail-header-parse-content-type.
11877
11878 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
11879
11880         * spam-report.el (spam-report-gmane-use-article-number):
11881         Improve doc string.
11882         (spam-report-gmane-internal): Check if a suitable header was found
11883         in the article.
11884
11885 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11886
11887         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
11888         (rfc2231-encode-string): Make param*=value always begin with LWSP.
11889
11890 2006-02-05  Romain Francoise  <romain@orebokech.com>
11891
11892         Update copyright notices of all files in the gnus directory.
11893
11894 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11895
11896         * nnweb.el (nnweb-request-group): Avoid growing overview files.
11897
11898 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11899
11900         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
11901         segmented lines of parameter value to cope with Thunderbird 1.5
11902         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
11903         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11904         (rfc2231-encode-string): Don't make lines exceeding 76 column.
11905
11906 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
11907
11908         * mml.el (mml-generate-mime-1): Correct the order of inline signed
11909         parts.
11910
11911 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11912
11913         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
11914         there's only one active file for all servers.
11915         (nnweb-request-scan): Make sure nnweb-articles is initialized on
11916         solid groups.  Gnus might have used a FAST request to select the group.
11917         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
11918         and nnweb-search redundantly in the active file.
11919         (nnweb-request-list): Don't list bogus groups.  There can only be one.
11920         (nnweb-request-create-group): Don't use ARGS.
11921         (nnweb-possibly-change-server, nnweb-request-group): Remove some
11922         initialisations.  Let nnoo do the work.
11923
11924 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11925
11926         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
11927         Say the part has been decoded.
11928
11929         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
11930
11931 2006-01-31  Kevin Ryde  <user42@zip.com.au>
11932
11933         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
11934         mailcap-viewer-test-cache when there's no 'test clause, since that
11935         will invert the meaning of a "nil" test previously determined by
11936         mailcap-mailcap-entry-passes-test.
11937
11938 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11939
11940         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
11941         compiling.
11942
11943         * gnus-sum.el: Ditto.
11944
11945         * message.el: Don't bind tool-bar-map when compiling.
11946
11947 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
11948
11949         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
11950
11951 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11952
11953         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
11954         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
11955         current Google Groups.
11956
11957 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
11958
11959         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
11960         and tool-bar-mode.
11961
11962         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
11963         and tool-bar-mode.
11964
11965         * message.el (message-tool-bar-update): Simplify.
11966         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
11967
11968         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
11969         gnus-summary-buffer.
11970         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
11971         gnus-summary-reply.
11972
11973         * gmm-utils.el (gmm): Add :version.
11974
11975 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11976
11977         * Makefile.in (clean): New rule.
11978         (distclean): Use it.
11979
11980 2006-01-26  Steve Youngs  <steve@sxemacs.org>
11981
11982         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
11983         Don't autoload.
11984
11985 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11986
11987         * gmm-utils.el (gmm-verbose): Add :group.
11988
11989 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
11990
11991         * message.el: Change some comments WRT tool-bars.
11992
11993         * gnus-sum.el (gnus-summary-tool-bar)
11994         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
11995         (gnus-summary-tool-bar-zap-list): New variables.
11996         (gnus-summary-make-tool-bar): Complete rewrite using
11997         `gmm-tool-bar-from-list'.
11998
11999         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
12000         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
12001         New variables.
12002         (gnus-group-make-tool-bar): Complete rewrite using
12003         `gmm-tool-bar-from-list'.
12004         (gnus-group-tool-bar-update): New function.
12005
12006         * message.el (message-mode-field-menu): Add "Show hidden Headers".
12007
12008 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12009
12010         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
12011         is dissected into a single part of which the type is the same as
12012         the given one; decode charset.
12013
12014 2006-01-21  Kevin Ryde  <user42@zip.com.au>
12015
12016         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
12017         into alists as symbol not string, since that's what
12018         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
12019         look for.
12020
12021 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
12022
12023         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
12024         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
12025
12026         * message.el (message-tool-bar-gnome): Use gmm-ignore.
12027
12028 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12029
12030         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
12031         (gnus-xmas-mime-security-button-menu): New function.
12032
12033         * gnus-art.el (gnus-mime-security-button-commands): New variable.
12034         (gnus-mime-security-button-menu): New definition.
12035         (gnus-mime-security-button-map): Use them.
12036         (gnus-mime-security-button-menu): New function.
12037         (gnus-insert-mime-security-button): Addition to help echo.
12038         (gnus-mime-security-run-function, gnus-mime-security-save-part)
12039         (gnus-mime-security-pipe-part): New functions.
12040
12041         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
12042         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
12043
12044         * mm-decode.el (mm-handle-set-disposition): Remove.
12045         (mm-handle-set-description): Remove.
12046
12047 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12048
12049         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
12050         (mm-w3m-standalone-supports-m17n-p): New function.
12051         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
12052         w3m usage.
12053
12054         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
12055         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
12056
12057 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
12058
12059         * message.el (message-tool-bar-zap-list):
12060         Use gmm-tool-bar-zap-list as custom type.
12061         (message-tool-bar-update): New function.
12062         (message-tool-bar, message-tool-bar-gnome)
12063         (message-tool-bar-retro): Add message-tool-bar-update.
12064         (message-tool-bar-gnome): Add flyspell-buffer.
12065
12066         * gnus-util.el (gnus-error): Describe `args'.
12067
12068         * gmm-utils.el (gmm-error): Describe `args'.
12069         (gmm-tool-bar-zap-list): New widget.
12070         (gmm-tool-bar-from-list): Improve description of `zap-list'.
12071
12072 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12073
12074         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
12075         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
12076         the number of recursive calls.
12077
12078         * mm-decode.el (mm-handle-set-disposition): New macro.
12079         (mm-handle-set-description): New macro.
12080
12081 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12082
12083         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
12084         encoding.
12085
12086 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
12087
12088         * message.el (message-tool-bar-zap-list, message-tool-bar)
12089         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
12090         (message-tool-bar-local-item-from-menu): Remove.
12091         (message-tool-bar-map): Replace by `message-make-tool-bar'.
12092         (message-make-tool-bar): New function.
12093         (message-mode): Use `message-make-tool-bar'.
12094
12095         * gmm-utils.el: New file.
12096         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
12097         (gmm-lazy): New widget copied from `nnmail.el'.
12098         (gmm-tool-bar-from-list): New function for creating customizable
12099         tool bars.
12100         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
12101         output.
12102         (gmm): Add :prefix to defgroup.
12103
12104 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
12105
12106         * gmm-utils.el (gmm-widget-p): New function.
12107
12108 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
12109
12110         * mml.el (mml-attach-file): Describe `description' in doc string.
12111         (mml-menu): Add Emacs MIME manual and PGG manual.
12112
12113 2006-01-20  Richard M. Stallman  <rms@gnu.org>
12114
12115         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
12116
12117 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
12118
12119         * nntp.el (nntp-end-of-line): Doc fix.
12120
12121 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
12122
12123         * imap.el (imap-open): Handle case where buffer is a buffer
12124         object.
12125
12126 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12127
12128         * gnus-delay.el (gnus-delay): Don't autoload.
12129         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
12130         to be re-loaded when customizing the `gnus-delay' group.
12131
12132 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
12133
12134         * message.el (message-insert-citation-line): Use newlines.
12135
12136 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
12137
12138         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12139         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
12140         these routines, so the passphrase can be managed externally and
12141         passed in to the system.
12142         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12143         pgg-add-passphrase-to-cache function.
12144
12145         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12146         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
12147         these routines, so the passphrase can be managed externally and
12148         passed in to the system.
12149         (pgg-pgp5-sign-region): Use new name of
12150         pgg-add-passphrase-to-cache function.
12151
12152 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
12153
12154         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12155         part of the decoded armor to find the key-identifier.
12156         (pgg-gpg-lookup-key-owner): New function to return the
12157         human-readable identifier of a key owner.
12158         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
12159         itself.
12160         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
12161         the key value) if we have a key and can match it against a secret
12162         key.  Also, added a note pointing out fact that the prompt only
12163         indicates the first matching key.
12164
12165         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
12166         pgg-decrypt-region.
12167         (pgg-add-passphrase-to-cache): Rename from
12168         `pgg-add-passphrase-cache' to reduce confusion (all callers
12169         changed).
12170         (pgg-remove-passphrase-from-cache): Rename from
12171         `pgg-remove-passphrase-cache' to reduce confusion (all callers
12172         changed).
12173         (pgg-read-passphrase, pgg-add-passphrase-cache)
12174         (pgg-remove-passphrase-cache): Add informative docstrings.
12175         (pgg-decrypt): Convey provided passphrase in subordinate call to
12176         pgg-decrypt-region.
12177
12178 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
12179
12180         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
12181         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
12182         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
12183         'passphrase' argument, so the passphrase can be managed externally
12184         and then passed in to the system.
12185
12186         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
12187         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
12188         so the passphrase cache can be used reliably with identifiers
12189         besides a pgp packet's key id.
12190
12191         * pgg-gpg.el (pgg-gpg-encrypt-region)
12192         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12193         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
12194         these routines, so the passphrase can be managed externally and
12195         passed in to the system.
12196
12197         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
12198         'notruncate' argument, so the passphrase cache can be used
12199         reliably with identifiers besides a pgp packet's key id.
12200
12201 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
12202
12203         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
12204         symmetric encryption.
12205         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
12206         encrypted session key.
12207         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
12208         message ask for the passphrase in a proper way.
12209
12210         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
12211         New user commands for symmetric encryption.
12212
12213 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12214
12215         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
12216
12217         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
12218
12219 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
12220
12221         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
12222
12223 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12224
12225         * mm-decode.el (mm-inlined-types): Add application/pgp.
12226         (mm-automatic-display): Ditto.
12227
12228         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
12229         part as text.
12230
12231 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12232
12233         * nnrss.el: Update copyright.
12234         (nnrss-opml-import): Query whether to subscribe to each entry.
12235
12236         * gnus-art.el:
12237         * gnus-sum.el:
12238         * gnus-xmas.el:
12239         * messagexmas.el:
12240         * mm-uu.el:
12241         * mm-view.el: Update copyright.
12242
12243 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
12244
12245         * message.el (message-info): New function.
12246         (message-mode-menu): Add it.
12247         Update copyright.
12248
12249         * ChangeLog: Fix and update copyright.
12250
12251 2006-01-13  Romain Francoise  <romain@orebokech.com>
12252
12253         * message.el (message-forward-subject-name-subject): Prefer the
12254         address to 'nowhere' if the sender has no name.
12255         Fix typo.  Update copyright year.
12256
12257 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12258
12259         * gnus-art.el (article-wash-html):
12260         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
12261         (gnus-article-wash-html-with-w3m-standalone): New function.
12262
12263         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
12264         mm-inline-text-html-render-with-w3m-standalone.
12265         (mm-text-html-washer-alist): Map w3m-standalone to
12266         gnus-article-wash-html-with-w3m-standalone.
12267         (mm-inline-text-html-render-with-w3m-standalone): New function.
12268
12269 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
12270
12271         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
12272         Improve LaTeX.
12273
12274 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12275
12276         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
12277         (nnrss-request-article): Render text/plain parts as HTML.
12278
12279         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
12280         the buffer.
12281
12282 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12283
12284         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
12285         custom definition of `gnus-posting-styles'.
12286
12287         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
12288         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
12289
12290 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12291
12292         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
12293         Use nntp for bug archive.
12294
12295 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12296
12297         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
12298         parts.
12299         (nnrss-normalize-date): New function converts ISO 8601 date into
12300         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
12301         (nnrss-check-group): Use it.
12302
12303 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12304
12305         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
12306
12307         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
12308         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
12309         (nnrss-insert-w3): Ditto.
12310
12311 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12312
12313         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
12314         the articles to be forwarded including the case where neither a
12315         number of articles nor a region is specified.
12316
12317 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12318
12319         * nnrss.el (nnrss-request-article): Fix last change; fill
12320         text/plain parts.
12321
12322 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12323
12324         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
12325         in text/plain part.
12326         (nnrss-check-group): Don't add excessive newline to dc:subject.
12327
12328 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
12329
12330         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
12331         article.
12332
12333 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12334
12335         * nnml.el: Don't require gnus-bcklg.  Autoload it.
12336         (nnml-use-compressed-files, nnml-save-mail): Support other
12337         comression programs such as bzip2.
12338
12339 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12340
12341         * dns.el (query-dns): Make sure we check the buffer size before
12342         removing tcp headers.
12343
12344 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12345
12346         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
12347         remove MIME buttons associated with multipart/alternative parts.
12348         (gnus-mime-display-alternative): Tag buttons using `article-type'
12349         text property.
12350
12351         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
12352         associated with multipart/alternative parts.
12353
12354         * gnus-art.el (gnus-signature-separator): Fix custom type.
12355
12356         * mm-decode.el (mm-inlined-types): Fix custom type.
12357         (mm-keep-viewer-alive-types): Ditto.
12358         (mm-automatic-display): Ditto.
12359         (mm-attachment-override-types): Ditto.
12360         (mm-inline-override-types): Ditto.
12361         (mm-automatic-external-display): Ditto.
12362
12363 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12364
12365         * spam-report.el (spam-report-user-mail-address)
12366         (spam-report-user-agent): New variables.
12367         (spam-report-url-ping-plain): Use spam-report-user-agent.
12368
12369 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
12370
12371         * gnus-art.el (gnus-button-handle-custom): Do not just use
12372         `customize-apropos' for any "M-x customize-*" button but the
12373         function called for.  Accept both the function name and its
12374         argument in order to achieve this.
12375         (gnus-button-alist): Remove support for "custom:" URL's.
12376         Pass function name to `gnus-button-handle-custom' in case of "M-x
12377         customize-*" buttons.
12378
12379 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12380
12381         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
12382         multipart/alternative and add xref to mm-discouraged-alternatives
12383         in doc string.
12384
12385         * mm-decode.el (mm-discouraged-alternatives): Add xref to
12386         gnus-buttonized-mime-types in doc string.
12387
12388 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
12389
12390         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
12391         Suggest image/.* in the doc string.
12392
12393 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
12394
12395         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
12396         message-marks (Debian bug #342521).
12397
12398 2005-12-12  Simon Josefsson  <jas@extundo.com>
12399
12400         * password.el (password-read-from-cache): Add.
12401         (password-read): Use it.
12402
12403 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12404
12405         * rfc2047.el (rfc2047-charset-to-coding-system):
12406         Recognize us-ascii as a MIME charset.
12407
12408         * mm-bodies.el (mm-decode-content-transfer-encoding):
12409         Protect against the case where the 2nd arg TYPE is nil.
12410
12411 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
12412
12413         * pop3.el (pop3-stream-type): Fix custom version.
12414
12415         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
12416
12417 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12418
12419         * mm-decode.el (mm-display-external): Add missing cdr.
12420
12421 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12422
12423         * mm-decode.el (mm-display-external): Use nametemplate (defined in
12424         RFC1524) if it is in mailcap or add a suffix according to
12425         mailcap-mime-extensions when generating a temp filename; postpone
12426         deleting a temp file for 2 seconds for some wrappers, shell
12427         scripts, and so on, which might exit right after having started a
12428         viewer command as a background job.
12429
12430 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
12431
12432         * nntp.el (nntp-marks-directory): Fix custom group.
12433
12434         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
12435         steps when < 10.
12436
12437         * gnus-start.el (gnus-no-server-1):
12438         Mention `gnus-level-default-subscribed' in doc string.
12439
12440 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12441
12442         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
12443         parens.
12444
12445 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12446
12447         * gnus-xmas.el (gnus-use-toolbar): Revert.
12448         (gnus-xmas-setup-toolbar): Use global default-toolbar if
12449         gnus-use-toolbar is default.
12450
12451         * messagexmas.el (message-use-toolbar): Revert.
12452         (message-setup-toolbar): Use global default-toolbar if
12453         message-use-toolbar is default.
12454
12455 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12456
12457         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
12458         according to default-toolbar-visible-p.
12459
12460         * messagexmas.el (message-use-toolbar): Ditto.
12461
12462 2005-11-26  Dave Love  <fx@gnu.org>
12463
12464         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
12465         (tls-program, tls-success): Provide openssl alternative.
12466
12467         * starttls.el: Doc fixes.
12468         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
12469         SERVICE to PORT.
12470
12471         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
12472         port null or service name.
12473         (starttls-negotiate): Autoload.
12474
12475 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12476
12477         * message.el (message-kill-to-signature): Fix interactive spec.
12478
12479 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12480
12481         * pop3.el (pop3-open-server): Recognize a string as a service name.
12482
12483 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
12484
12485         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
12486
12487 2005-11-23  Dave Love  <fx@gnu.org>
12488
12489         Add pop3s, pop3/starttls.
12490
12491         * pop3.el (pop3-authentication-scheme): Clarify doc.
12492         (open-tls-stream, starttls-open-stream): Autoload.
12493         (pop3-stream-type): New.
12494         (pop3-open-server): Use it.
12495
12496         * mail-source.el (mail-sources): Fix some :types.  Add stream type
12497         for POP.
12498         (mail-source-keyword-map): Add :stream for POP.
12499         (mail-source-fetch-pop): Use pop3-stream-type.
12500
12501 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12502
12503         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
12504         of current-time-string.
12505
12506 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
12507
12508         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
12509         date header.
12510
12511 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
12512
12513         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
12514         it can seriously impact performance as it bypasses the agent's
12515         local caches.
12516
12517 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
12518
12519         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
12520         must be explicitly online rather than "not explicitly offline" for
12521         its flags to be synchronized.
12522
12523         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
12524         that gnus-uu-unmark-thread will function correctly.
12525
12526         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
12527         1024K is instead displayed as 1M.
12528
12529 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12530
12531         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
12532
12533 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
12534
12535         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
12536
12537 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
12538
12539         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
12540         error message to display actual error condition.
12541         (gnus-agent-save-local): Avoid saving symbols that are bound to
12542         nil as they simply result in a warning message in
12543         gnus-agent-read-local.
12544
12545 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12546
12547         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
12548         rather than make-variable-buffer-local for file-precious-flag.
12549
12550 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
12551
12552         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
12553         for duplicates which are removed.  The invalid sort check then
12554         triggers a rescan after the sort as sorting may have moved
12555         duplicate entries such that they can be cheaply detected.
12556
12557 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12558
12559         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
12560
12561 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
12562
12563         * gnus-agent.el (gnus-agent-article-alist-save-format):
12564         Change internal variable to a custom variable.  Change default value
12565         from compressed(2) to uncompressed(1).
12566         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
12567         support for uncompressed agentview files.  Taken together, reading
12568         the agentview file should now be 6-7 times faster.
12569
12570 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
12571
12572         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
12573         as a buffer-local variable.  This avoids creating truncated
12574         dribble files as a result of a hang up, eg.
12575
12576 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
12577
12578         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
12579         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
12580         XEmacs.
12581
12582 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
12583
12584         * gnus-start.el (gnus-start-draft-setup):
12585         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
12586
12587         * gnus.el (gnus-splash): Change custom group.
12588         (gnus-group-get-parameter, gnus-group-parameter-value):
12589         Describe allow-list argument.
12590
12591         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
12592         string.
12593
12594 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
12595
12596         * gnus-art.el (gnus-default-article-saver): Add user-defined
12597         `function' to custom type.
12598
12599 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
12600
12601         * imap.el (imap-open): Handle case where buffer is a buffer
12602         object.
12603
12604 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12605
12606         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
12607         long lines.
12608         (gnus-cache-delete-group): Wrap doc strings.
12609
12610         * gnus-agent.el (gnus-agent-rename-group)
12611         (gnus-agent-delete-group): Wrap doc strings.
12612
12613 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12614
12615         * messagexmas.el (message-use-toolbar): Change the valid values
12616         into default, top, bottom, left, and right.
12617         (message-toolbar-thickness): New variable.
12618         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
12619         well.
12620         (message-setup-toolbar): Make it work.
12621
12622         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
12623         (gnus-use-toolbar): Change the valid values into default, top,
12624         bottom, left, and right.
12625         (gnus-toolbar-thickness): New variable.
12626         (gnus-xmas-setup-toolbar): New function.
12627         (gnus-xmas-setup-group-toolbar): Use it.
12628         (gnus-xmas-setup-summary-toolbar): Use it.
12629
12630 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12631
12632         * gnus-start.el (gnus-1): Add "native" to
12633         gnus-predefined-server-alist.
12634
12635         * gnus.el (gnus-method-to-server): Don't add "native" to the
12636         lists here, because that leads to problems when
12637         gnus-select-method is bound.
12638
12639 2005-11-09  Simon Josefsson  <jas@extundo.com>
12640
12641         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
12642         use (not sort-by-date) instead.
12643
12644 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12645
12646         * gnus-delay.el (gnus-delay-group): Don't autoload.
12647         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
12648         to be re-loaded when customizing the `gnus-delay' group.
12649
12650 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
12651
12652         * message.el: Revert last changes.
12653         (message-insert-citation-line): Use newlines.
12654
12655 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
12656
12657         * message.el (message-courtesy-message)
12658         (message-mark-insert-begin, message-mark-insert-end)
12659         (message-elide-ellipsis, message-cancel-message)
12660         (message-add-header, message-change-subject)
12661         (message-cross-post-followup-to-header)
12662         (message-cross-post-insert-note, message-reduce-to-to-cc)
12663         (message-widen-reply, message-delete-not-region)
12664         (message-kill-to-signature, message-insert-signature)
12665         (message-insert-importance-high, message-insert-importance-low)
12666         (message-insert-or-toggle-importance)
12667         (message-insert-disposition-notification-to)
12668         (message-indent-citation, message-yank-original)
12669         (message-cite-original-without-signature, message-cite-original)
12670         (message-insert-citation-line, message-position-on-field)
12671         (message-fix-before-sending, message-send-mail-partially)
12672         (message-send-mail, message-send-mail-with-sendmail)
12673         (message-send-mail-with-qmail, message-send-news)
12674         (message-check-news-header-syntax, message-generate-headers)
12675         (message-insert-courtesy-copy, message-fill-address)
12676         (message-fill-header, message-shorten-references)
12677         (message-setup-1, message-cancel-news)
12678         (message-forward-make-body-plain, message-forward-make-body-mime)
12679         (message-forward-make-body-mml, message-encode-message-body)
12680         (message-forward-make-body-digest-plain)
12681         (message-forward-make-body-digest-mime)
12682         (message-use-alternative-email-as-from): Insert `hard-newline'
12683         instead of ordinary newlines.
12684
12685 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12686
12687         * message.el (message-generate-headers): Downcase the argument
12688         given to message-check-element.
12689
12690 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
12691
12692         * nntp.el (nntp-authinfo-rejected): New error condition.
12693         (nntp-wait-for): Use new error condition to signal authentication
12694         error.
12695         (nntp-retrieve-data): Rethrow new error condition to break out of
12696         recursive call to nntp-send-authinfo.
12697
12698 2005-11-08  Romain Francoise  <romain@orebokech.com>
12699
12700         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
12701         (gnus-summary-exit-map): Bind to `Z p'.
12702         (gnus-summary-make-menu-bar): Add menu item.
12703
12704 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
12705
12706         * gnus-art.el (gnus-article-treat-custom): Add `first'.
12707         (gnus-treat-*): Add `first' in all doc strings.
12708
12709         * gnus-group.el (gnus-group-compact-group): Fix typo.
12710
12711 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12712
12713         * gnus.el (gnus-parameters-case-fold-search): New variable.
12714         (gnus-parameters-get-parameter): Use it.
12715
12716         * gnus-score.el (gnus-home-score-file): Doc fix.
12717
12718 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
12719
12720         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
12721
12722 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12723
12724         * mm-util.el (mm-special-display-p): New function.
12725
12726         * mml.el (mml-preview): Use it; doc fix.
12727
12728 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
12729
12730         * imap.el (imap-open): Handle case where buffer is a buffer object.
12731
12732 2005-10-29  Romain Francoise  <romain@orebokech.com>
12733
12734         * message.el (message-fix-before-sending): Fix comment.
12735
12736 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
12737
12738         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
12739
12740 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
12741
12742         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
12743         Used in gnus-score.el.
12744
12745 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
12746
12747         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
12748
12749 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
12750
12751         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
12752         whitespace removed in revision 7.8.  Use concatenated string to
12753         protect trailing whitespace.
12754
12755 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
12756
12757         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
12758         (nnimap-request-expire-articles): Use it to avoid sending 'UID
12759         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
12760         Courier IMAP ("some version from 2004").  Mostly based on similar
12761         code in the same function.
12762
12763 2005-10-26  Didier Verna  <didier@xemacs.org>
12764
12765         * gnus-group.el (gnus-group-compact-group): Invalidate original
12766         article buffer.
12767         * gnus-srvr.el (gnus-server-compact-server): Ditto.
12768         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
12769         NOV database and in article itself.
12770         Invalidate article backlog.
12771
12772 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12773
12774         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
12775
12776 2005-10-26  Simon Josefsson  <jas@extundo.com>
12777
12778         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
12779         part of 2004-07-25 change.
12780
12781 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12782
12783         * message.el (message-display-completion-list): New function.
12784         (message-expand-group): Use it; make sure the Completions buffer
12785         is modifiable.
12786 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
12787
12788         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
12789         user-mail-name is an empty string.
12790
12791 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12792
12793         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
12794         depending on gnus-score-decay-constant.
12795
12796         * encrypt.el (encrypt-insert-file-contents)
12797         (encrypt-write-file-contents): Don't use `gnus-message'.
12798
12799         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
12800         arguments.
12801         (mm-uu-type-alist): Add message-marks and insert-marks.
12802         Pass arguments to mm-uu-verbatim-marks-extract.
12803         (mm-uu-hide-markers): New variable.
12804         (mm-uu-extract): Use face similar to `gnus-cite-3'.
12805
12806         * gnus-fun.el (gnus-convert-image-to-x-face-command)
12807         (gnus-convert-image-to-face-command): Use "convert" by default to
12808         allow other input image formats.
12809         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
12810         accordingly.
12811
12812 2005-10-23  Simon Josefsson  <jas@extundo.com>
12813
12814         * imap.el (imap-gssapi-program): Align command line parameters
12815         with latest GNU SASL.
12816         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
12817
12818 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12819
12820         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
12821         HTML.
12822         (nnslashdot-request-article): Ditto.
12823
12824         * lpath.el (featurep): Add nobreak-char-display.
12825
12826 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
12827
12828         * mail-source.el (mail-source-fetch-pop): Require pop3.
12829         (mail-source-check-pop): Ditto.
12830
12831 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12832
12833         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
12834         errors.
12835
12836 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
12837
12838         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
12839         (gnus-treat-strip-leading-blank-lines): Improve doc string.
12840
12841         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
12842
12843         * mm-bodies.el (mm-decode-string):
12844         Call `mm-charset-to-coding-system' with allow-override argument.
12845
12846 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12847
12848         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
12849         (rfc2047-charset-to-coding-system): New function.
12850         (rfc2047-decode-encoded-words): New function.
12851         (rfc2047-decode-region): Use them.
12852         (rfc2047-decode-cte): Remove.
12853         (rfc2047-parse-and-decode): Remove.
12854         (rfc2047-decode): Remove.
12855
12856 2005-10-15  Kenichi Handa  <handa@m17n.org>
12857
12858         * rfc2047.el (rfc2047-decode-cte): New function.
12859         (rfc2047-decode-region): Change the way to decode successive
12860         encoded-words: decode B- or Q-encoding in each encoded-word,
12861         concatenate them, and decode it as charset.
12862
12863 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12864
12865         * lpath.el: Fbind codepage-setup for XEmacs.
12866
12867 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
12868
12869         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
12870         widget-move-and-invoke.
12871         (gnus-custom-mode): Use gnus-custom-map.
12872
12873 2005-10-15  Bill Wohler  <wohler@newt.com>
12874
12875         * message.el (message-tool-bar-map): Rename image file from
12876         mail_send to mail/send.
12877
12878 2005-10-16  Masatake YAMATO  <jet@gyve.org>
12879
12880         * message.el (message-expand-group): Pass the common
12881         prefix substring of completion to `display-completion-list'.
12882
12883 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
12884
12885         * mml-sec.el (mml-secure-method): New internal variable.
12886         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
12887         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
12888         New functions using mml-secure-method.
12889
12890         * mml.el (mml-mode-map): Add key bindings for those functions.
12891         (mml-menu): Simplify security menu entries.  Suggested by Jesper
12892         Harder <harder@myrealbox.com>.
12893         (mml-attach-file, mml-attach-buffer, mml-attach-external):
12894         Goto end of message if point is the headers of the message.
12895
12896         * message.el (message-in-body-p): New function.
12897
12898         * assistant.el: Autoload gnus-util and netrc.
12899
12900         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
12901         Use `mm-charset-override-alist' only when decoding.
12902
12903         * mm-bodies.el (mm-decode-body):
12904         Call `mm-charset-to-coding-system' with allow-override argument.
12905
12906         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
12907         `filename' from Content-Disposition if Content-Type doesn't
12908         provide `name'.
12909         (gnus-mime-view-part-as-type): Set default instead of
12910         initial-input.
12911
12912 2005-10-09  Daniel Brockman  <daniel@brockman.se>
12913
12914         * format-spec.el (format-spec): Propagate text properties of % spec.
12915
12916 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12917
12918         * gnus-art.el (gnus-treat-predicate): Add `first'.
12919
12920 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12921
12922         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
12923         (mm-charset-override-alist): New variable.
12924         (mm-charset-to-coding-system): Use it.
12925         (mm-codepage-setup): New helper function.
12926         (mm-charset-eval-alist): New variable.
12927         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
12928         Warn about unknown charsets.
12929
12930         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
12931
12932 2005-10-04  David Hansen  <david.hansen@gmx.net>
12933
12934         * nnrss.el (nnrss-request-article): Add support for the comments tag.
12935         (nnrss-check-group): Ditto.
12936
12937 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
12938
12939         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
12940         Rename x-gnus-verbatim to x-verbatim.
12941         (mm-uu-type-alist): Fix regexp for verbatim-marks.
12942
12943         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
12944         x-verbatim.
12945
12946         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
12947
12948         * gnus-util.el (gnus-remove-duplicates): Remove.
12949
12950         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
12951         instead of gnus-remove-duplicates.
12952
12953         * message.el (message-remove-duplicates): Remove.
12954         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
12955         message-remove-duplicates.
12956
12957         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
12958         available, else use implementation from `delete-dups'.
12959
12960         * message.el (message-insert-expires): New function.
12961         (message-mode-map): Add key binding.
12962         (message-mode-field-menu): Add menu entry.
12963         (message-mode): Document it.
12964         (message-make-expires-date): Use `message-make-date'.
12965
12966 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
12967
12968         * message.el (message-make-expires-date): New function.
12969
12970 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12971
12972         * Makefile.in (list-installed-shadows): New entry.
12973         (install): Use it.
12974         (remove-installed-shadows): New entry.
12975
12976         * dgnushack.el (dgnushack-default-load-path): New variable.
12977         (dgnushack-find-lisp-shadows): New function.
12978         (dgnushack-remove-lisp-shadows): New function.
12979
12980 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12981
12982         * Makefile.in (install-el-elc): New entry.
12983         (install): Use it so that .el files are necessarily installed.
12984
12985 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12986
12987         * time-date.el: Autoload parse-time-string, XEmacs needs it.
12988
12989 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12990
12991         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
12992         function rather than the diff-mode.el package.
12993         (mm-display-external): Use with-current-buffer.
12994         (mm-viewer-completion-map, mm-viewer-completion-map):
12995         Move initialization inside declaration.
12996
12997 2005-09-29  Simon Josefsson  <jas@extundo.com>
12998
12999         * spam.el: Load hashcash when compiling, to avoid warnings.
13000         Don't autoload mail-check-payment.
13001         (spam-check-hashcash): Define unconditionally, since hashcash.el
13002         is part of Gnus now.  Ignore errors from payment checking.
13003
13004 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
13005
13006         * message.el (message-bold-region, message-unbold-region):
13007         Rename from `bold-region' and `unbold-region'.
13008
13009         * message.el: Remove useless autoloads.
13010
13011 2005-09-28  Simon Josefsson  <jas@extundo.com>
13012
13013         * message.el (message-use-idna): Default to t.
13014         (message-use-idna): Test whether encoding works too.  Doc fix.
13015
13016 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13017
13018         * nntp.el (nntp-warn-about-losing-connection): Remove.
13019
13020 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
13021
13022         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
13023         customizable.  Change default value.
13024         (mm-uu-diff-groups-regexp): Change default value.
13025         (mm-uu-type-alist): Add doc string.
13026         (mm-uu-configure): Add doc string.  Make it interactive.
13027         (mm-uu-tex-groups-regexp): New variable.
13028         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
13029         (mm-uu-type-alist): Add LaTeX documents.
13030         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
13031         of "text/verbatim".
13032         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
13033
13034         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
13035         instead of "text/verbatim".
13036
13037         * message.el (message-mark-inserted-region)
13038         (message-mark-insert-file): Use slrn style marks when called with
13039         prefix argument.
13040
13041 2005-09-27  Simon Josefsson  <jas@extundo.com>
13042
13043         * message.el (message-idna-to-ascii-rhs-1): Reformat.
13044
13045 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
13046
13047         * message.el (message-remove-duplicates): New function.
13048         Implementation borrowed from `gnus-remove-duplicates'.
13049         (message-idna-to-ascii-rhs): Also encode idna addresses in
13050         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
13051         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
13052         only ask about the same idna domain once per header and also tell
13053         in what header to replace the idna domain.
13054
13055         * gnus-art.el (article-decode-idna-rhs): Also decode idna
13056         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
13057         (article-decode-idna-rhs): Fix regexp so that all idna-address in
13058         a header is decoded and not just the last one.
13059
13060 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13061
13062         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
13063         has been decoded.
13064
13065         * mm-decode.el (mm-automatic-display): Add text/verbatim.
13066         (mm-insert-part): Don't modify text if it has been decoded.
13067
13068         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
13069         decoded.
13070
13071         * mm-view.el (mm-inline-text): Don't strip text props unless
13072         decoding enriched or richtext parts.
13073
13074 2005-09-25  Romain Francoise  <romain@orebokech.com>
13075
13076         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
13077         * gnus-start.el (gnus-subscribe-interactively):
13078         * gnus-uu.el (gnus-uu-grab-articles):
13079         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
13080         space.
13081
13082 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
13083
13084         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
13085         * mm-view.el (mm-view-pkcs7-decrypt):
13086         * gnus-sum.el (gnus-summary-limit-to-extra)
13087         (gnus-summary-respool-article, gnus-read-move-group-name):
13088         * gnus-score.el (gnus-summary-increase-score):
13089         * gnus-util.el (gnus-completing-read-with-default):
13090         * gnus-art.el (gnus-read-save-file-name)
13091         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
13092         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
13093         * message.el (message-check-news-header-syntax):
13094         Follow convention for reading with the minibuffer.
13095
13096 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
13097
13098         * spam-report.el (spam-report-url-ping-plain):
13099         Use gnus-extended-version as User-Agent.
13100
13101         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
13102         default value is nil.
13103
13104         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
13105         (mm-uu-verbatim-marks-extract): New function.
13106         (mm-uu-extract): New face.
13107         (mm-uu-copy-to-buffer): Use it.
13108
13109         * spam-report.el (spam-report-gmane-ham): Rename from
13110         `spam-report-gmane-unspam'.
13111         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
13112         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
13113
13114         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
13115         Autoload.
13116         (spam-report-gmane-unregister-routine):
13117         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
13118
13119 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
13120
13121         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
13122         (spam-report-gmane-unregister-routine): Add support for gmane
13123         unregistration.
13124
13125         * spam-report.el (spam-report-gmane-unspam)
13126         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
13127         (spam-report-gmane): Change to take a single article and do unspam
13128         registration.
13129
13130 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13131
13132         * mm-url.el (mm-url-decode-entities): Fix regexp.
13133
13134 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13135
13136         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
13137         default to nil, to be able to use Gnus at all.  If the default
13138         switches to something else, then the function should be fixed not
13139         be exceedingly slow.
13140
13141 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
13142
13143         * gnus-start.el (gnus-activate-group): If the server is nil, don't
13144         fail hard.
13145
13146         * spam-report.el: Add better Keywords line.
13147
13148         * spam.el: Add Maintainer and better Keywords line.
13149
13150 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13151
13152         * gnus-art.el (gnus-article-replace-part)
13153         (gnus-mime-replace-part): New functions.
13154         (gnus-mime-action-alist, gnus-mime-button-commands)
13155         (gnus-mime-save-part-and-strip): Add file argument.
13156         (gnus-article-part-wrapper): Add interactive argument.
13157
13158         * gnus-sum.el (gnus-summary-mime-map):
13159         Add `gnus-article-replace-part'.
13160
13161 2005-09-19  Didier Verna  <didier@xemacs.org>
13162
13163         The nnml compaction feature:
13164         * nnml.el (nnml-request-compact-group): New function.
13165         * nnml.el (nnml-request-compact): New function.
13166         * gnus-int.el (gnus-request-compact-group): New function.
13167         * gnus-int.el (gnus-request-compact): New function.
13168         * gnus-group.el (gnus-group-compact-group): New function.
13169         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
13170         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
13171         * gnus-srvr.el (gnus-server-compact-server): New function.
13172         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
13173         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
13174
13175 2005-09-18  Deepak Goel  <deego@gnufans.org>
13176
13177         * sieve.el (sieve-help): Fix `message' call: first arg should be a
13178         format spec.
13179
13180 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13181
13182         * gnus.el (gnus-group-startup-message): Bind image-load-path.
13183
13184 2005-09-15  Romain Francoise  <romain@orebokech.com>
13185
13186         * message.el (message-fill-paragraph): Clarify docstring.
13187
13188 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13189
13190         * gnus-art.el (gnus-mime-display-part): Protect against broken
13191         MIME messages.
13192
13193 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13194
13195         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
13196         before parsing header.
13197
13198 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
13199
13200         * html2text.el (html2text-replace-list): Add new entities.
13201
13202 2005-09-11  Romain Francoise  <romain@orebokech.com>
13203
13204         * message.el (message-alternative-emails): Improve docstring.
13205         (message-setup-1): Call `message-use-alternative-email-as-from'
13206         after `message-setup-hook' to give it precedence over posting
13207         styles, etc.
13208         (message-use-alternative-email-as-from): Add docstring.
13209         Remove the original From header if present.
13210
13211         * nnml.el (nnml-compressed-files-size-threshold): New variable.
13212         (nnml-save-mail): Use it.
13213
13214         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
13215         articles.  Add new argument `silent'.
13216         (gnus-uu-mark-all): Report the total number of marked articles.
13217
13218 2005-09-10  Romain Francoise  <romain@orebokech.com>
13219
13220         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
13221         (gnus-uu-mark-series): Likewise.
13222
13223 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
13224
13225         * spam-report.el (spam-report-gmane): Fix generation of spam
13226         report URL.
13227
13228 2005-09-10  Simon Josefsson  <jas@extundo.com>
13229
13230         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
13231         t, based on discussion on the ding list with Robert Epprecht
13232         <epprecht@solnet.ch>.
13233
13234 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
13235
13236         * spam-report.el (spam-report-gmane): Make it work without
13237         X-Report-Spam header.  Gmane now only provides Archived-At.
13238         This is only used if `spam-report-gmane-use-article-number' is nil.
13239         (spam-report-gmane-spam-header): Remove.  Not used anymore.
13240
13241         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
13242         make `gnus-summary-sort-by-recipient' work with threading.
13243
13244         * nnweb.el (nnweb-google-wash-article): Print a message if article
13245         is not available.
13246
13247 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13248
13249         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
13250         change.  Decode text/* parts content before displaying.
13251
13252 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
13253
13254         * mml-smime.el: Remove defvar of gnus-extract-address-components.
13255
13256 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13257
13258         * mm-view.el (mm-display-inline-fontify): Disable support modes.
13259
13260         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
13261         url-package-name, url-package-version,
13262         w3m-cid-retrieve-function-alist, w3m-current-buffer,
13263         w3m-display-inline-images, and w3m-minor-mode-map.
13264
13265 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
13266
13267         * message.el (message-tab-body-function): Fix mismatched custom type.
13268
13269         * gnus.el (gnus-group-change-level-function): Ditto.
13270
13271         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
13272
13273         * gnus-art.el (gnus-signature-limit)
13274         (gnus-article-mime-part-function): Ditto.
13275
13276 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13277
13278         * mml.el (mml-mode): Silence the byte compiler.
13279
13280         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
13281         using `(sit-for 0)' before moving the point to the specified part;
13282         skip unbuttonized parts.
13283         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
13284         return to the summary window if gnus-auto-select-part is non-nil.
13285
13286 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
13287
13288         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
13289         New variables.
13290         (mml-dnd-attach-file, mml-mode): Use them.
13291
13292         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
13293         Make fetching article by MID work again for Google Groups.
13294         Add FIXME concerning gnus-group-make-web-group.
13295
13296         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
13297         Don't depend on Gnus by using mail-extract-address-components if
13298         gnus-extract-address-components is not bound.
13299
13300 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13301
13302         * gnus-art.el (gnus-mime-display-security): Don't display the
13303         signature, but only the signed part.
13304
13305 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13306
13307         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
13308
13309         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
13310         list, not listp.
13311
13312 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
13313
13314         * mm-encode.el (mm-encode-content-transfer-encoding):
13315         Likewise when encoding.
13316
13317         * mm-bodies.el (mm-decode-content-transfer-encoding):
13318         De-canonicalize CRLF for all text content types, not just
13319         text/plain.
13320
13321 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13322
13323         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
13324         valid article; point arrow and cursor at the MIME button.
13325
13326 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13327
13328         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
13329         Suggested by Dan Christensen <jdc@uwo.ca>.
13330
13331         * mm-decode.el (mm-save-part): Enable change of prompt.
13332
13333 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
13334
13335         * gnus-msg.el (gnus-inews-add-send-actions):
13336         Make `message-post-method' lambda parameter ARG `&optional'.
13337
13338 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
13339
13340         * gnus-sum.el (gnus-summary-mime-map):
13341         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
13342         gnus-article-jump-to-part.
13343
13344         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
13345         (gnus-article-edit-part): Use it.
13346         (gnus-article-part-wrapper): Add no-handle argument.
13347         (gnus-article-save-part-and-strip, gnus-article-delete-part):
13348         New functions.
13349
13350 2005-08-29  Romain Francoise  <romain@orebokech.com>
13351
13352         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
13353         docstring.
13354         (gnus-face-from-file): Likewise.
13355
13356 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
13357
13358         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
13359         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
13360         non-nil.
13361         (gnus-auto-select-part): New variable.
13362         (gnus-article-jump-to-part): New function.
13363         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
13364         (gnus-mime-delete-part): Allow selecting specified part after
13365         deleting or stripping parts.
13366         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
13367         part if argument is bogus.
13368
13369 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
13370
13371         * gnus-art.el (w3m-minor-mode-map):
13372         * gnus-spec.el (gnus-newsrc-file-version):
13373         * gnus-util.el (nnmail-active-file-coding-system)
13374         (gnus-original-article-buffer, gnus-user-agent):
13375         * gnus.el (gnus-ham-process-destinations)
13376         (gnus-parameter-ham-marks-alist)
13377         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
13378         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
13379         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
13380         * mm-decode.el (gnus-current-window-configuration):
13381         * mm-extern.el (gnus-article-mime-handles):
13382         * mm-url.el (url-current-object, url-package-name)
13383         (url-package-version):
13384         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
13385         (smime-keys, w3m-cid-retrieve-function-alist)
13386         (w3m-current-buffer, w3m-display-inline-images)
13387         (w3m-minor-mode-map):
13388         * mml-smime.el (gnus-extract-address-components):
13389         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
13390         (gnus-newsrc-hashtb, message-default-charset)
13391         (message-deletable-headers, message-options)
13392         (message-posting-charset, message-required-mail-headers)
13393         (message-required-news-headers):
13394         * mml1991.el (mc-pgp-always-sign):
13395         * mml2015.el (mc-pgp-always-sign):
13396         * nnheader.el (nnmail-extra-headers):
13397         * rfc1843.el (gnus-decode-encoded-word-function)
13398         (gnus-decode-header-function, gnus-newsgroup-name):
13399         * spam-stat.el (gnus-original-article-buffer): Add defvars.
13400
13401 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
13402
13403         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
13404         the end of the date treatments.
13405
13406 2005-08-15  Simon Josefsson  <jas@extundo.com>
13407
13408         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
13409         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
13410         Capello and Romain Francoise.
13411         (pgg-fetch-key-function): Remove, not used?
13412         (pgg-insert-url-with-w3): Require url, to get
13413         url-insert-file-contents regardless of where it is defined.
13414
13415 2005-08-13  Romain Francoise  <romain@orebokech.com>
13416
13417         * message.el (message-cite-original-1): New function.
13418         (message-cite-original): Use it.
13419         (message-cite-original-without-signature): Ditto.
13420
13421 2005-08-08  Romain Francoise  <romain@orebokech.com>
13422
13423         * message.el (message-yank-empty-prefix): New variable.
13424         (message-indent-citation): Use it.
13425         (message-cite-original-without-signature): Respect X-No-Archive.
13426
13427 2005-08-08  Simon Josefsson  <jas@extundo.com>
13428
13429         * pgg.el: Autoload url-insert-file-contents instead of loading
13430         w3/url.
13431         (pgg-insert-url-with-w3): Don't load url here.
13432
13433 2005-08-07  Jesper Harder  <harder@phys.au.dk>
13434
13435         * message.el (message-kill-to-signature): Don't insert newline at
13436         bol.
13437         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
13438
13439 2005-08-06  Romain Francoise  <romain@orebokech.com>
13440
13441         * message.el (message-user-fqdn): Fix typo in docstring.
13442
13443 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
13444
13445         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
13446
13447         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
13448
13449 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13450
13451         * mm-bodies.el (mm-encode-body): Use coding system rather than
13452         charset to encode text.
13453
13454         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
13455         number of charsets if utf-8 is available (XEmacs).
13456
13457 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
13458
13459         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
13460         taken from `gnus-button-mid-or-mail-regexp'.
13461         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
13462         (gnus-button-alist): Improve regexp for domain part of the MIDs
13463         for news:localpart@domain buttons.
13464         (gnus-button-ctan-directory-regexp): Update.
13465
13466 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13467
13468         * sieve-manage.el (sieve-manage-interactive-login):
13469         Use make-local-variable rather than make-variable-buffer-local.
13470         (sieve-manage-open): Ditto.
13471         (sieve-manage-authenticate): Ditto.
13472
13473         * mml.el (mml-generate-mime-1): Make the content type default to
13474         text/plain if the filename is not specified.
13475
13476 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13477
13478         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
13479         instead of insert-buffer.
13480
13481         * message.el (message-yank-original): Ditto; set the mark at the
13482         end of the yanked message.
13483
13484 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13485
13486         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
13487         lines to scroll rather than to stop it.
13488
13489         * mml.el (mml-generate-default-type): Add doc string.
13490         (mml-generate-mime-1): Use mm-default-file-encoding or make it
13491         default to application/octet-stream when determining the content
13492         type if it is not specified for the part or the mml contents; add
13493         a comment about mml-generate-default-type.
13494
13495 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
13496
13497         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
13498         make it default to application/octet-stream when determining the
13499         content type if it is not specified for the external contents.
13500
13501 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13502
13503         * rfc2231.el (rfc2231-parse-string): Take care that not only a
13504         segmented parameter but also other parameters might be there.
13505
13506 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13507
13508         * mm-decode.el (mm-display-external): Delete temp file, directory
13509         and buffer immediately if the external process is exited.
13510
13511 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13512
13513         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
13514         fewer lines than that of scroll-margin.
13515         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
13516
13517 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13518
13519         * gnus-art.el (gnus-article-next-page): Revert.
13520         (gnus-article-beginning-of-window): New macro.
13521         (gnus-article-next-page-1): Use it.
13522         (gnus-article-prev-page): Ditto.
13523         (gnus-article-edit-part): Use insert-buffer-substring instead of
13524         insert-buffer.
13525         (gnus-article-edit-exit): Ditto.
13526
13527         * gnus-util.el (gnus-beginning-of-window): Remove.
13528         (gnus-end-of-window): Remove.
13529
13530         * lpath.el: Don't bind header-line-format and scroll-margin.
13531
13532 2005-07-25  Simon Josefsson  <jas@extundo.com>
13533
13534         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
13535         to have the url package without w3.  Reported by Daiki Ueno
13536         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
13537
13538 2005-07-20  Didier Verna  <didier@xemacs.org>
13539
13540         * gnus-diary.el: Remove the description comment (nndiary is now
13541         properly documented in the Gnus manual).
13542         Fix the spelling of "Back End".
13543         * nndiary.el: Ditto.
13544         Fix the copyright notice.
13545
13546 2005-07-18  Romain Francoise  <romain@orebokech.com>
13547
13548         * gnus-sum.el (gnus-summary-to-prefix)
13549         (gnus-summary-newsgroup-prefix): New variables.
13550         (gnus-summary-from-or-to-or-newsgroups): Use them.
13551
13552 2005-07-17  Romain Francoise  <romain@orebokech.com>
13553
13554         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
13555         space as it's generally not especially interesting to the user.
13556
13557 2005-07-16  Romain Francoise  <romain@orebokech.com>
13558
13559         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
13560         nil to avoid prompting and file modification if one of the
13561         messages at the top of the nnfolder file contains a copyright
13562         notice.
13563         Update copyright notice.
13564
13565         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
13566         instead of `current-time-string' as the latter creates a time
13567         string that is not RFC 2822 compliant (it lacks the zone).
13568         Update copyright notice.
13569
13570 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13571
13572         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
13573         for text/rtf.  Display default in prompt.  Pass default for M-n.
13574
13575         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
13576
13577 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13578
13579         * gnus-msg.el (gnus-button-mailto):
13580         Remove save-selected-window-window hackery because it relies on
13581         save-selected-window internals.
13582
13583 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13584
13585         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
13586         (gnus-article-next-page-1): Use gnus-beginning-of-window.
13587         (gnus-article-prev-page): Ditto.
13588
13589         * gnus-util.el (gnus-beginning-of-window): New function.
13590         (gnus-end-of-window): New function.
13591
13592         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
13593
13594 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
13595
13596         * gnus-score.el (gnus-score-edit-all-score):
13597         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
13598         gnus-message.
13599
13600 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13601
13602         * gnus-msg.el (gnus-button-mailto):
13603         Remove save-selected-window-window hackery because it relies on
13604         save-selected-window internals.
13605
13606 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13607
13608         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
13609         add-minor-mode.
13610         (gnus-binary-mode): Ditto.
13611
13612         * gnus-topic.el (gnus-topic-mode): Ditto.
13613
13614 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
13615
13616         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
13617         (gnus-article-prev-page): Take scroll-margin into consideration.
13618
13619 2005-07-04  Lute Kamstra  <lute@gnu.org>
13620
13621         Update FSF's address in GPL notices.
13622
13623 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
13624
13625         * gnus.el (gnus-exit):
13626         * gnus-group.el (gnus-group-icons):
13627         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
13628
13629         * gnus-nocem.el (gnus-nocem):
13630         * message.el (message-various, message-buffers, message-sending)
13631         (message-interface, message-forwarding, message-insertion)
13632         (message-headers, message-news, message-mail):
13633         * pgg-gpg.el (pgg-gpg):
13634         * pgg-parse.el (pgg-parse):
13635         * pgg-pgp.el (pgg-pgp):
13636         * pgg-pgp5.el (pgg-pgp5):
13637         * pop3.el (pop3): Finish `defgroup' description with period.
13638
13639 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13640
13641         * gnus-art.el (article-display-face): Improve the efficiency.
13642         (article-display-x-face): Ditto; remove grey x-face stuff.
13643
13644 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13645
13646         * gnus-art.el (article-display-face): Correct the position in
13647         which Faces are inserted.
13648
13649 2005-06-29  Didier Verna  <didier@xemacs.org>
13650
13651         * gnus-art.el (article-display-face): Display faces in correct
13652         order.
13653
13654 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13655
13656         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
13657         (gnus-fill-real-hashtb): Use hash table instead of obarray.
13658         (gnus-nocem-check-article): Fetch the Type header.
13659         (gnus-nocem-message-wanted-p): Fix the way to examine types.
13660         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
13661         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
13662         make sure gnus-nocem-hashtb is initialized.
13663         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
13664         (gnus-nocem-unwanted-article-p): Ditto.
13665
13666         * pgg.el (pgg-verify): Return the verification result.
13667
13668 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13669
13670         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
13671         is ascii.
13672
13673 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
13674
13675         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
13676         `show-nonbreak-escape'.
13677
13678 2005-06-23  Lute Kamstra  <lute@gnu.org>
13679
13680         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
13681
13682         * dig.el (dig-mode):
13683         * smime.el (smime-mode): Use gnus-run-mode-hooks.
13684
13685 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
13686
13687         * nnimap.el (nnimap-split-download-body): Fix spellings.
13688
13689 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
13690
13691         * gnus-art.el (gnus-article-encrypt-body):
13692         * gnus-cus.el (gnus-score-customize):
13693         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
13694         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
13695
13696 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
13697
13698         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
13699         header by looking for magic "MII" at the beginnig.
13700
13701 2005-06-16  Miles Bader  <miles@gnu.org>
13702
13703         * gnus-xmas.el (gnus-xmas-group-startup-message):
13704         Use renamed gnus-splash face.
13705
13706         * assistant.el (assistant-field): Remove "-face" suffix from face name.
13707         (assistant-field-face): New backward-compatibility alias for renamed
13708         face.
13709         (assistant-render-text): Use renamed assistant-field face.
13710
13711         * spam.el (spam): Remove "-face" suffix from face name.
13712         (spam-face): New backward-compatibility alias for renamed face.
13713         (spam-face, spam-initialize): Use renamed spam face.
13714
13715         * message.el (message-header-to, message-header-cc)
13716         (message-header-subject, message-header-newsgroups)
13717         (message-header-other, message-header-name)
13718         (message-header-xheader, message-separator, message-cited-text)
13719         (message-mml): Remove "-face" suffix from face names.
13720         (message-header-to-face, message-header-cc-face)
13721         (message-header-subject-face, message-header-newsgroups-face)
13722         (message-header-other-face, message-header-name-face)
13723         (message-header-xheader-face, message-separator-face)
13724         (message-cited-text-face, message-mml-face):
13725         New backward-compatibility aliases for renamed faces.
13726         (message-font-lock-keywords): Use renamed message faces.
13727
13728         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
13729         (sieve-test-commands, sieve-tagged-arguments):
13730         Remove "-face" suffix from face names.
13731         (sieve-control-commands-face, sieve-action-commands-face)
13732         (sieve-test-commands-face, sieve-tagged-arguments-face):
13733         New backward-compatibility aliases for renamed faces.
13734         (sieve-control-commands-face, sieve-action-commands-face)
13735         (sieve-test-commands-face, sieve-tagged-arguments-face):
13736         Use renamed sieve faces.
13737
13738         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
13739         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
13740         (gnus-group-news-3-empty, gnus-group-news-4)
13741         (gnus-group-news-4-empty, gnus-group-news-5)
13742         (gnus-group-news-5-empty, gnus-group-news-6)
13743         (gnus-group-news-6-empty, gnus-group-news-low)
13744         (gnus-group-news-low-empty, gnus-group-mail-1)
13745         (gnus-group-mail-1-empty, gnus-group-mail-2)
13746         (gnus-group-mail-2-empty, gnus-group-mail-3)
13747         (gnus-group-mail-3-empty, gnus-group-mail-low)
13748         (gnus-group-mail-low-empty, gnus-summary-selected)
13749         (gnus-summary-cancelled, gnus-summary-high-ticked)
13750         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
13751         (gnus-summary-high-ancient, gnus-summary-low-ancient)
13752         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
13753         (gnus-summary-low-undownloaded)
13754         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
13755         (gnus-summary-low-unread, gnus-summary-normal-unread)
13756         (gnus-summary-high-read, gnus-summary-low-read)
13757         (gnus-summary-normal-read, gnus-splash):
13758         Remove "-face" suffix from face names.
13759         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
13760         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
13761         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
13762         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
13763         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
13764         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
13765         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
13766         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
13767         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
13768         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
13769         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
13770         (gnus-summary-selected-face, gnus-summary-cancelled-face)
13771         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
13772         (gnus-summary-normal-ticked-face)
13773         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
13774         (gnus-summary-normal-ancient-face)
13775         (gnus-summary-high-undownloaded-face)
13776         (gnus-summary-low-undownloaded-face)
13777         (gnus-summary-normal-undownloaded-face)
13778         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
13779         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
13780         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
13781         (gnus-splash-face):
13782         New backward-compatibility aliases for renamed faces.
13783         (gnus-group-startup-message): Use renamed gnus faces.
13784
13785         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
13786         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
13787         (gnus-server-agent): Remove "-face" suffix from face names.
13788         (gnus-server-agent-face, gnus-server-opened-face)
13789         (gnus-server-closed-face, gnus-server-denied-face)
13790         (gnus-server-offline-face):
13791         New backward-compatibility aliases for renamed faces.
13792         (gnus-server-agent-face, gnus-server-opened-face)
13793         (gnus-server-closed-face, gnus-server-denied-face)
13794         (gnus-server-offline-face): Use renamed gnus faces.
13795
13796         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
13797         Remove "-face" suffix from face names.
13798         (gnus-picon-xbm-face, gnus-picon-face):
13799         New backward-compatibility aliases for renamed faces.
13800
13801         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
13802         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
13803         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
13804         (gnus-cite-11): Remove "-face" suffix from face names.
13805         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
13806         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
13807         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
13808         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
13809         New backward-compatibility aliases for renamed faces.
13810         (gnus-cite-attribution-face, gnus-cite-face-list)
13811         (gnus-article-boring-faces): Use renamed gnus faces.
13812
13813         * gnus-art.el (gnus-signature, gnus-header-from)
13814         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
13815         (gnus-header-content): Remove "-face" suffix from face names.
13816         (gnus-signature-face, gnus-header-from-face)
13817         (gnus-header-subject-face, gnus-header-newsgroups-face)
13818         (gnus-header-name-face, gnus-header-content-face):
13819         New backward-compatibility aliases for renamed faces.
13820         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
13821
13822         * gnus-sum.el (gnus-summary-selected-face)
13823         (gnus-summary-highlight): Use renamed gnus faces.
13824         * gnus-group.el (gnus-group-highlight): Likewise.
13825
13826 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
13827
13828         * gnus-sieve.el (gnus-sieve-article-add-rule):
13829         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
13830         * spam-stat.el (spam-stat-buffer-change-to-spam)
13831         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
13832
13833         * message.el (message-is-yours-p):
13834         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
13835
13836 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13837
13838         * mm-view.el (mm-inline-text): Withdraw the last change.
13839
13840 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13841
13842         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
13843         executing enriched-decode.
13844
13845 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13846
13847         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
13848         charset of tar files.
13849
13850 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
13851
13852         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
13853
13854 2005-06-04  Lute Kamstra  <lute@gnu.org>
13855
13856         * nnfolder.el (nnfolder-read-folder): Make sure that undo
13857         information is never recorded.
13858
13859 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13860
13861         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
13862
13863 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13864
13865         * pop3.el (pop3-apop): Run md5 in the binary mode.
13866
13867         * starttls.el (starttls-set-process-query-on-exit-flag):
13868         Use eval-and-compile.
13869
13870 2005-05-31  Simon Josefsson  <jas@extundo.com>
13871
13872         * smime.el (smime-replace-in-string): Define.
13873         (smime-cert-by-ldap-1): Use it.
13874
13875 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13876
13877         * gnus-art.el (article-display-x-face): Replace
13878         process-kill-without-query by gnus-set-process-query-on-exit-flag.
13879
13880         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
13881         set-process-query-on-exit-flag or process-kill-without-query.
13882
13883         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
13884         loop instead of replace-regexp.
13885
13886         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
13887         instead of process-kill-without-query if it is available.
13888
13889         * lpath.el: Fbind ldap-search-entries.
13890
13891         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
13892         instead of find-file-hooks if it is available.
13893
13894         * mml1991.el: Bind pgg-default-user-id when compiling.
13895
13896         * mml2015.el: Bind pgg-default-user-id when compiling.
13897
13898         * nndraft.el (nndraft-request-associate-buffer):
13899         Use write-contents-functions instead of write-contents-hooks if it is
13900         available.
13901
13902         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
13903         instead of find-file-hooks if it is available.
13904
13905         * nntp.el (nntp-open-connection): Replace
13906         process-kill-without-query by gnus-set-process-query-on-exit-flag.
13907         (nntp-open-ssl-stream): Ditto.
13908         (nntp-open-tls-stream): Ditto.
13909
13910         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
13911         set-process-query-on-exit-flag or process-kill-without-query.
13912         (starttls-open-stream-gnutls): Use it instead of
13913         process-kill-without-query.
13914         (starttls-open-stream): Ditto.
13915
13916 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
13917
13918         * smime.el (smime-cert-by-ldap-1): Don't use
13919         replace-regexp-in-string.
13920
13921 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
13922
13923         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
13924
13925         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
13926         in PEM format.  Adjust to the XEmacs compability.
13927
13928 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
13929
13930         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
13931         by `string-to-number'.
13932         * gnus-agent.el (gnus-agent-regenerate-group)
13933         (gnus-agent-fetch-articles): Ditto.
13934         * gnus-art.el (gnus-button-fetch-group): Ditto.
13935         * gnus-cache.el (gnus-cache-generate-active)
13936         (gnus-cache-articles-in-group): Ditto.
13937         * gnus-group.el (gnus-group-set-current-level)
13938         (gnus-group-insert-group-line): Ditto.
13939         * gnus-score.el (gnus-score-set-expunge-below)
13940         (gnus-score-set-mark-below, gnus-summary-score-effect)
13941         (gnus-summary-score-entry): Ditto.
13942         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
13943         (gnus-soup-pack): Ditto.
13944         * gnus-spec.el (gnus-xmas-format): Ditto.
13945         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
13946         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
13947         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
13948         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
13949         * nndb.el (nndb-get-remote-expire-response): Ditto.
13950         * nndiary.el (nndiary-parse-schedule-value)
13951         (nndiary-string-to-number, nndiary-request-replace-article)
13952         (nndiary-request-article): Ditto.
13953         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
13954         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
13955         * nneething.el (nneething-make-head): Ditto.
13956         * nnfolder.el (nnfolder-request-article)
13957         (nnfolder-retrieve-headers): Ditto.
13958         * nnheader.el (nnheader-file-to-number): Ditto.
13959         * nnkiboze.el (nnkiboze-request-article): Ditto.
13960         * nnmail.el (nnmail-process-unix-mail-format)
13961         (nnmail-process-babyl-mail-format): Ditto.
13962         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
13963         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
13964         (nnmh-request-create-group, nnmh-request-list-1)
13965         (nnmh-request-group, nnmh-request-article): Ditto.
13966         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
13967         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
13968         * nnsoup.el (nnsoup-make-active): Ditto.
13969         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
13970         * nntp.el (nntp-find-group-and-number)
13971         (nntp-retrieve-headers-with-xover): Ditto.
13972         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
13973         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
13974         (pgg-format-key-identifier): Ditto.
13975         * pop3.el (pop3-last, pop3-stat): Ditto.
13976         * qp.el (quoted-printable-decode-region): Ditto.
13977
13978         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
13979         of concat.
13980
13981 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13982
13983         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
13984
13985         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
13986
13987         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
13988
13989         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
13990
13991         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
13992
13993         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
13994
13995         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
13996         (gnus-carpal-mode): Ditto.
13997
13998         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
13999         (gnus-browse-mode): Ditto.
14000
14001         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
14002
14003         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
14004
14005 2005-05-29  Richard M. Stallman  <rms@gnu.org>
14006
14007         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
14008
14009 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14010
14011         * gnus-util.el (gnus-run-mode-hooks): New function.
14012
14013         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
14014
14015         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
14016         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
14017
14018 2005-05-27  Lute Kamstra  <lute@gnu.org>
14019
14020         * dns-mode.el (dns-mode): Specify customization group.
14021
14022 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
14023
14024         * gnus-agent.el (gnus-agent-make-mode-line-string):
14025         Use mode-line-highlight as mouse-face.
14026
14027 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14028
14029         * canlock.el (canlock): Change the parent group to news.
14030
14031         * deuglify.el (gnus-outlook-deuglify): Add :group.
14032
14033         * dig.el (dig): Add :group.
14034
14035         * dns-mode.el (dns-mode): Add :group.
14036
14037         * encrypt.el (encrypt): Add :group.
14038
14039         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
14040         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
14041         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
14042         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
14043         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
14044
14045         * gnus-diary.el (gnus-diary): Add :group.
14046
14047         * gnus.el (gnus-group-news-1-face): Add :group.
14048         (gnus-group-news-1-empty-face): Ditto.
14049         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
14050         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
14051         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
14052         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
14053         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
14054         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
14055         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
14056         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
14057         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
14058         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
14059         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
14060         (gnus-summary-high-ticked-face): Ditto.
14061         (gnus-summary-low-ticked-face): Ditto.
14062         (gnus-summary-normal-ticked-face): Ditto.
14063         (gnus-summary-high-ancient-face): Ditto.
14064         (gnus-summary-low-ancient-face): Ditto.
14065         (gnus-summary-normal-ancient-face): Ditto.
14066         (gnus-summary-high-undownloaded-face): Ditto.
14067         (gnus-summary-low-undownloaded-face): Ditto.
14068         (gnus-summary-normal-undownloaded-face): Ditto.
14069         (gnus-summary-high-unread-face): Ditto.
14070         (gnus-summary-low-unread-face): Ditto.
14071         (gnus-summary-normal-unread-face): Ditto.
14072         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
14073         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
14074
14075         * hashcash.el (hashcash): New custom group.
14076         (hashcash-default-payment): Add :group.
14077         (hashcash-payment-alist): Ditto.
14078         (hashcash-default-accept-payment): Ditto.
14079         (hashcash-accept-resources): Ditto.
14080         (hashcash-path): Ditto.
14081         (hashcash-extra-generate-parameters): Ditto.
14082         (hashcash-double-spend-database): Ditto.
14083         (hashcash-in-news): Ditto.
14084
14085         * message.el (message-minibuffer-local-map): Add :group.
14086
14087         * netrc.el (netrc): Add :group.
14088
14089         * sieve-manage.el (sieve-manage-log): Add :group.
14090         (sieve-manage-default-user): Diito.
14091         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
14092         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
14093         (sieve-manage-authenticators): Ditto.
14094         (sieve-manage-authenticator-alist): Ditto.
14095         (sieve-manage-default-port): Ditto.
14096
14097         * sieve-mode.el (sieve-control-commands-face): Add :group.
14098         (sieve-action-commands-face): Ditto.
14099         (sieve-test-commands-face): Ditto.
14100         (sieve-tagged-arguments-face): Ditto.
14101
14102         * smime.el (smime): Add :group.
14103
14104         * spam-report.el (spam-report): Add :group.
14105
14106         * spam.el (spam, spam-face): Add :group.
14107
14108 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14109
14110         * nntp.el (nntp-next-result-arrived-p): Some news servers may
14111         return \n.\n.\n at the end of articles.  Protect against that.
14112         (nntp-with-open-group): Allow debugging.
14113
14114         * nnheader.el (mail-header-set-extra): Make into a function
14115         because I just could't understand how to quote the list properly.
14116
14117         * dns.el (query-dns-cached): New function.
14118
14119 2005-05-26  Lute Kamstra  <lute@gnu.org>
14120
14121         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
14122
14123 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14124
14125         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
14126
14127         * gnus-art.el: Don't autoload mail-extract-address-components.
14128
14129         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
14130         eval-and-compile to evaluate it.
14131
14132         * hashcash.el: Don't autoload executable-find.
14133
14134         * nndb.el: Don't declare the nndb back end two or more times; don't
14135         autoload news-reply-mode, news-setup, cancel-timer and telnet.
14136
14137         * nntp.el: Autoload format-spec instead of format; use
14138         eval-and-compile to evaluate autoload forms.
14139
14140 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
14141
14142         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
14143
14144 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14145
14146         * gnus.el (gnus-version-number): Bump version.
14147
14148 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14149
14150         * gnus.el: No Gnus v0.3 is released.
14151
14152 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14153
14154         * lpath.el (featurep): Bind show-nonbreak-escape.
14155
14156 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14157
14158         * gnus-art.el (gnus-article-edit-part): Disable undo.
14159
14160 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14161
14162         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
14163         gnus-article-date-lapsed-new-header is t if date timer is active;
14164         skip headers in which the original date value is empty.
14165         (gnus-article-save-original-date): Redefine it as a macro.
14166         (gnus-display-mime): Use it.
14167
14168 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14169
14170         * gnus-art.el (article-date-ut): Support converting date in
14171         forwarded parts as well.
14172         (gnus-article-save-original-date): New function.
14173         (gnus-display-mime): Use it.
14174
14175 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
14176
14177         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
14178         enclosure element of <item>.
14179
14180 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
14181
14182         * message.el (message-kill-buffer-query): Rename from
14183         `message-kill-buffer-query-if-modified'.  Add :version.
14184
14185 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14186
14187         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
14188         window layout.
14189
14190 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14191
14192         * mml.el: Autoload dnd when compiling.
14193
14194 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
14195
14196         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
14197         x-dnd-*.
14198
14199 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14200
14201         * qp.el (quoted-printable-encode-region): Save excursion.
14202
14203 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
14204
14205         * message.el (message-kill-buffer-query-if-modified): Add new variable
14206         so the user can kill a modified message buffer quickly.
14207         (message-kill-buffer): Use it.
14208
14209 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14210
14211         * lpath.el: Fbind display-time-event-handler; don't fbind
14212         string-to-multibyte.
14213
14214         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
14215
14216 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14217
14218         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
14219         contained in text because xml.el decodes entities) with LFs.
14220
14221 2005-04-11  Lute Kamstra  <lute@gnu.org>
14222
14223         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
14224         differently.
14225
14226 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14227
14228         * mm-util.el (mm-detect-coding-region): Typo.
14229
14230 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14231
14232         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
14233
14234 2005-04-06  Deepak Goel  <deego@gnufans.org>
14235
14236         * spam-stat.el (spam-stat-score-buffer): Add a call to a
14237         user-function allow user modifications of the scores.
14238         (spam-stat-score-buffer-user): New function, to allow
14239         user-computed modifications to the score.
14240         (spam-stat-score-buffer-user-functions): List of additional
14241         scoring functions.
14242         (spam-stat-error-holder): Global temporary error holder.
14243         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
14244         variable.
14245
14246 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
14247
14248         * gnus-registry.el (gnus-registry-clean-empty-function)
14249         (gnus-registry-trim, gnus-registry-fetch-groups)
14250         (gnus-registry-delete-group): Groups that match
14251         `gnus-registry-ignored-groups' are removed from the registry
14252         entries, not just ignored for splitting.  This helps clean up the
14253         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
14254         to get all the groups a message ID is in.
14255
14256         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
14257         (spam-stat-split-fancy): Change "threshhold" to "threshold".
14258         (spam-stat-score-buffer-user-functions): Add :number custom type.
14259
14260 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14261
14262         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
14263         argument in XEmacs.
14264
14265         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
14266         (nnrss-request-group): Decode group name first.
14267         (nnrss-request-article): Make a text/plain article if mml-to-mime
14268         failed.
14269         (nnrss-get-encoding): Return a compatible encoding according to
14270         nnrss-compatible-encoding-alist.
14271         (nnrss-find-el): Use consp instead of listp.
14272         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
14273
14274 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14275
14276         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
14277         which Emacs 20 doesn't support.
14278         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
14279
14280 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
14281
14282         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
14283         silence the byte compiler inside the defun.
14284
14285         * gnus-demon.el (parse-time-string): Add autoload.
14286
14287         * gnus-delay.el (parse-time-string): Add autoload.
14288
14289         * gnus-art.el (parse-time-string): Add autoload.
14290
14291         * nnultimate.el (parse-time): Require for `parse-time-string'.
14292
14293 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
14294
14295         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
14296
14297         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
14298
14299         * smime.el (smime-ldap-host-list): Add :version.
14300
14301 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
14302
14303         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
14304         pass it to `gnus-browse-read-group'.
14305         (gnus-browse-read-group): Add NUMBER argument and pass it to
14306         `gnus-group-read-ephemeral-group'.
14307
14308         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
14309         argument and pass it to `gnus-group-read-group'.
14310
14311 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
14312
14313         * mm-util.el (mm-xemacs-find-mime-charset): Only call
14314         mm-xemacs-find-mime-charset-1 if we have the mule feature
14315         available at runtime.
14316
14317 2005-03-25  Werner Lemberg  <wl@gnu.org>
14318
14319         * nnmaildir.el: Replace `illegal' with `invalid'.
14320
14321 2005-03-23  Lute Kamstra  <lute@gnu.org>
14322
14323         * time-date.el: Add comment on time value formats.
14324         Don't require parse-time.
14325         (with-decoded-time-value): New macro.
14326         (encode-time-value): New function.
14327         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
14328         (days-to-time): Return a valid time value when arg is huge.
14329         (time-since): Use time-subtract.
14330         (time-to-number-of-days): Use time-to-seconds.
14331
14332 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14333
14334         * gnus-start.el (gnus-display-time-event-handler):
14335         Check display-time-timer at runtime rather than only at load time
14336         in case display-time-mode is turned off in the mean time.
14337
14338 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
14339
14340         * nnimap.el (nnimap-open-connection): Print which authinfo file is
14341         used.
14342
14343         * nneething.el (nneething-map-file-directory): Derive from
14344         `gnus-directory'.
14345
14346         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
14347         the To/Cc button.
14348
14349 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
14350
14351         * nnmaildir.el (nnmaildir-request-accept-article):
14352         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
14353
14354 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
14355
14356         * gnus-async.el: Require timer-funcs at compile time when in
14357         XEmacs for `run-with-idle-timer'.
14358
14359 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
14360
14361         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
14362         autoloaded function.
14363
14364 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14365
14366         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
14367
14368 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
14369
14370         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
14371
14372 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14373
14374         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
14375         Add gnus-expert-user to default.
14376
14377 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
14378
14379         * nnimap.el (nnimap-open-server): Ditto.
14380
14381         * imap.el (imap-authenticate): Fix typo.
14382
14383 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
14384
14385         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
14386         buffer (since IMAP server might return FETCH response out of
14387         order, and the nntp buffer must be sorted).
14388
14389 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
14390
14391         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
14392         comparison on string.
14393
14394         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
14395         (gnus-agent-score): Rename category keywords to match gnus-cus.
14396         (gnus-agent-summary-fetch-series): Modify to protect against
14397         gnus-agent-summary-fetch-group clearing processable flags.
14398         (gnus-agent-synchronize-group-flags): Update live group buffer as
14399         synchronization may occur due to the user toggle the plugged
14400         status.
14401         (gnus-agent-fetch-group-1): Clear downloadable flag when article
14402         successfully downloaded.
14403         (gnus-agent-expire-group-1): Avoid using markers when the overview
14404         is in ascending order; greatly improves performance.
14405         (gnus-agent-regenerate-group):
14406         Use gnus-agent-synchronize-group-flags to reset read status in both
14407         gnus and server.
14408         (gnus-agent-update-files-total-fetched-for): Fix initial size.
14409
14410 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
14411
14412         * message.el: Don't autoload former message-utils variables.
14413         (message-strip-subject-trailing-was): Change doc string.
14414
14415         * nnweb.el: Fixes for `gnus-group-make-web-group'.
14416         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
14417         (nnweb-google-search): Add "hl=en" here.
14418         (nnweb-google-parse-1, nnweb-google-create-mapping):
14419         Don't hardcode URL.
14420
14421 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
14422
14423         * message.el (message-get-reply-headers, message-followup):
14424         Mention related variables `message-use-followup-to' and
14425         `message-use-mail-followup-to', in the information buffer.
14426
14427         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
14428         of broken groups(-beta).google.com.
14429
14430 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
14431
14432         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
14433         parameter to invoked gnus-request-move-article; remove the
14434         redundant gnus-sum-hint-move-is-internal variable; apply the marks
14435         all at once instead of once per article.
14436         (gnus-summary-remove-process-mark): Accept a list of articles as
14437         well as a single article for processing.
14438
14439         * gnus-int.el (gnus-request-move-article): Add move-is-internal
14440         parameter.
14441
14442         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
14443
14444         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
14445
14446         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
14447         parameter.
14448
14449         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
14450         parameter.
14451
14452         * nnimap.el (nnimap-request-move-article): Add move-is-internal
14453         parameter and remove the gnus-sum-hint-move-is-internal variable.
14454
14455         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
14456         parameter.
14457
14458         * nndraft.el (nndraft-request-move-article): Add move-is-internal
14459         parameter.
14460
14461         * nndiary.el (nndiary-request-move-article): Add move-is-internal
14462         parameter.
14463
14464         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
14465
14466         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
14467         parameter.
14468
14469         * nnagent.el (nnagent-request-move-article): Add move-is-internal
14470         parameter.
14471
14472 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14473
14474         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
14475         a more conservative way.
14476
14477 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14478
14479         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
14480         buffer, so it moves the window's cursor.
14481
14482 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
14483
14484         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
14485         `mm-dissect-multipart' and receive the from field as an (optional)
14486         argument from `mm-dissect-multipart'.
14487         (mm-dissect-multipart): Receive the from field as an argument and
14488         pass it on when we call `mm-dissect-buffer' on MIME parts.
14489         Fixes verification/decryption of signed/encrypted MIME parts.
14490
14491 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
14492
14493         * gnus-sum.el (gnus-summary-move-article):
14494         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
14495         whatever it calls (right now, only nnimap-request-move article
14496         respects it).
14497
14498         * nnimap.el (nnimap-request-move-article):
14499         When gnus-sum-hint-move-is-internal is set, don't do the extra
14500         nnimap-request-article.
14501
14502 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
14503
14504         * nnheader.el (nnheader-find-file-noselect): Add doc string.
14505
14506         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
14507         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
14508
14509         * gnus-sum.el (gnus-summary-caesar-message):
14510         Apply `gnus-treat-article' after rotation.
14511
14512         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
14513         doc string.
14514
14515 2005-02-22  Simon Josefsson  <jas@extundo.com>
14516
14517         * encrypt.el (encrypt-password-cache-expiry): Remove (use
14518         `password-cache-expiry' instead).  Reported by Arne Jørgensen
14519         <arne@arnested.dk>.
14520         (encrypt): Add password-cache and password-cache-expiry as group
14521         members.
14522
14523 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
14524
14525         * smime.el (smime-ldap-host-list): Doc fix.
14526         (smime-ask-passphrase): Use `password-read-and-add' to read (and
14527         cache) password.
14528         (smime-sign-region): Use it.
14529         (smime-decrypt-region): Use it.
14530         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
14531         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
14532         fails.
14533         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
14534         certificate from DER to PEM format rather than calling openssl.
14535
14536         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
14537
14538         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
14539         for signing/encryption.
14540
14541         * mml.el (mml-parse-1): Use them.
14542
14543 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
14544
14545         * nnrss.el (nnrss-verbose): Remove.
14546         (nnrss-request-group): Use `nnheader-message' instead.
14547
14548 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
14549
14550         * nnrss.el (nnrss-verbose): New variable.
14551         (nnrss-request-group): Make it say nnrss is requesting a group.
14552
14553 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
14554
14555         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
14556         Handle news URL with given port correctly.
14557
14558 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14559
14560         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
14561         containing special characters.
14562
14563         * gnus-sum.el (gnus-summary-edit-article): Ditto.
14564
14565         * mml.el (mime-to-mml): Ditto.
14566
14567         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
14568         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
14569         (rfc2047-decode-region): Quote decoded words containing special
14570         characters when rfc2047-quote-decoded-words-containing-tspecials
14571         is non-nil.
14572
14573 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
14574
14575         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
14576
14577         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
14578
14579 2005-02-15  Simon Josefsson  <jas@extundo.com>
14580
14581         * nnimap.el (nnimap-debug): Doc fix.
14582
14583         * imap.el (imap-debug): Doc fix.
14584
14585 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14586
14587         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
14588
14589 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
14590
14591         * gnus.el (spam-contents): Improve docs for spam-contents
14592         parameter in its variable incarnation.
14593
14594 2005-02-14  Simon Josefsson  <jas@extundo.com>
14595
14596         * smime-ldap.el: Use require instead of load-library for ldap.
14597         (smime-ldap-search): Indent.
14598         (smime-ldap-search-internal): Shorten line.
14599
14600         * smime.el (smime-cert-by-dns): Add doc-string.
14601         (smime-cert-by-ldap-1): Indent.
14602
14603         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
14604         mml-smime-get-dns-ldap.
14605         (mml-smime-encrypt-query): Use new function.  Default to ldap.
14606
14607 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
14608
14609         * smime.el: Require smime-ldap.
14610         (smime-ldap-host-list): New variable.
14611         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
14612
14613         * mml-smime.el (mml-smime-encrypt-query): New function.
14614         (mml-smime-encrypt-query): Use it.
14615
14616         * smime-ldap.el: New file.
14617
14618 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14619
14620         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
14621
14622 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
14623
14624         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
14625         argument in doc string.  Make query for type more clear.
14626
14627 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
14628
14629         * gnus.el (gnus-group-startup-message): Search for gnus images in
14630         etc/images/gnus.
14631         * mm-util.el (mm-image-load-path): Likewise.
14632         * smiley.el (smiley-data-directory): Search for smilies in
14633         etc/images/smilies.
14634
14635 2005-02-09  Kim F. Storm  <storm@cua.dk>
14636
14637         Change Emacs release version from 21.4 to 22.1 throughout.
14638         Change Emacs development version from 21.3.50 to 22.0.50.
14639
14640 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14641
14642         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
14643
14644         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
14645         non-Mule XEmacs as well.
14646         (mm-decompress-buffer): Signal an error intentionally if it does
14647         not decompress compressed data because auto-compression-mode is
14648         disabled.
14649
14650 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
14651
14652         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
14653         an ID in the registry even if it has no groups.
14654
14655 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14656
14657         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
14658         merge it into mm-decompress-buffer.
14659         (gnus-mime-copy-part): Use the MIME part charset, the value which
14660         a user specified or gnus-newsgroup-charset for decoding, like
14661         gnus-mime-inline-part does; set buffer-file-coding-system to tell
14662         save-buffer what was used.  Suggested by Kevin Ryde
14663         <user42@zip.com.au>.
14664         (gnus-mime-inline-part): Allow the name parameter as well as the
14665         filename parameter; force decompressing of compressed data; always
14666         display contents being not decoded as unibyte.
14667
14668         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
14669         as well as the filename parameter.
14670
14671         * mm-util.el (mm-decompress-buffer):
14672         Merge gnus-mime-jka-compr-maybe-uncompress.
14673         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
14674         of compressed data.
14675
14676 2005-02-08  Simon Josefsson  <jas@extundo.com>
14677
14678         * imap.el (imap-log): Doc fix.
14679
14680 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14681
14682         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
14683         the coding cookies; decompress compressed parts.
14684
14685         * mml.el (mml-generate-mime-1): Add the charset parameter according
14686         to the value which a user specified manually or the coding cookie.
14687
14688         * mm-util.el (mm-string-to-multibyte): New function.
14689         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
14690         (mm-coding-system-to-mime-charset): New function.
14691         (mm-decompress-buffer): New function.
14692         (mm-find-buffer-file-coding-system): New function.
14693
14694         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
14695         (mm-display-inline-fontify): Rewrite for decoding and decompressing
14696         parts.
14697
14698 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14699
14700         * mm-view.el (mm-display-inline-fontify): Decode a part according
14701         to the charset parameter.
14702
14703 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14704
14705         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
14706         prefix arg is neither nil nor a number, as info specifies.
14707
14708 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14709
14710         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
14711         timestamps.
14712
14713 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
14714
14715         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
14716         groups error checking and notify user.
14717
14718 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
14719
14720         * message.el (message-send-mail-function): Check existence of
14721         sendmail-program first before using default value
14722         `message-send-mail-with-sendmail'.  Otherwise use more generic
14723         `smtpmail-send-it'.
14724
14725 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14726
14727         * nntp.el (nntp-request-update-info): Always return nil.
14728
14729 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14730
14731         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
14732
14733 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14734
14735         * message.el (message-beginning-of-line): Change the behavior when
14736         invoked between BOL and : so that it first moves backward.
14737
14738 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14739
14740         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
14741         article buffer when editing of the article is discarded.
14742         (gnus-article-prepare): Revert.
14743
14744 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14745
14746         * gnus-art.el (gnus-article-prepare):
14747         Remove message-strip-forbidden-properties from the local hook.
14748
14749 2005-01-27  Simon Josefsson  <jas@extundo.com>
14750
14751         * password.el (password-cache-add): Only start one timer per key.
14752         Reported by Derek Atkins <warlord@MIT.EDU>.
14753
14754 2005-01-26  Steve Youngs  <steve@sxemacs.org>
14755
14756         * run-at-time.el: Remove.  It is no longer needed as
14757         timer-funcs.el in the xemacs-base package has a working version of
14758         `run-at-time'.
14759
14760         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
14761
14762         * password.el: Require timer-funcs instead of run-at-time in
14763         XEmacs.
14764         Remove `password-run-at-time' macro.
14765         (password-cache-add): Use `run-at-time' instead of
14766         `password-run-at-time'.
14767
14768         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
14769         Remove `nnheader-cancel-function-timers' alias,
14770         `cancel-function-timers' exists in XEmacs in timer-funcs.
14771
14772         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
14773         for `run-with-idle-timer'.
14774
14775         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
14776         for `run-at-time'.
14777
14778         * mm-url.el: Require timer-funcs at compile time when in XEmacs
14779         for `with-timeout'.
14780
14781         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
14782         the same as for XEmacs 21.4.
14783         No need to ignore `run-with-idle-timer', this function exists in
14784         XEmacs now in timer-funcs.el in the xemacs-base package.
14785         (dgnushack-compile): No need to delete
14786         run-at-time.el from the list of files to compile because it
14787         doesn't exist anymore.
14788
14789 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14790
14791         * mml.el (mml-generate-mime-1): Convert string into unibyte when
14792         inserting " *mml*" buffer's contents into a unibyte temp buffer.
14793
14794 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
14795
14796         * mail-source.el (mail-source-fetch-imap): Search for ^From case
14797         sensitively.
14798
14799 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
14800
14801         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
14802
14803 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14804
14805         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
14806         which will be inserted according to the multibyteness of a buffer
14807         rather than the type of contents.  Suggested by ARISAWA Akihiro
14808         <ari@mbf.ocn.ne.jp>.
14809
14810         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
14811         of string which old xml.el may return rather than a string.
14812
14813 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14814
14815         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
14816
14817 2005-01-16  Simon Josefsson  <jas@extundo.com>
14818
14819         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
14820         idn/idna.el isn't available.
14821         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
14822         <michael@waxrat.com>.
14823
14824         * hashcash.el: Remove non-FSF copyright header.
14825
14826         * hashcash.el (hashcash-extra-generate-parameters): New variable.
14827         (hashcash-generate-payment): Use it.
14828         (hashcash-generate-payment-async): Use it.
14829
14830 2005-01-15  Simon Josefsson  <jas@extundo.com>
14831
14832         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
14833         Suggested by Raymond Scholz <ray-2005@zonix.de>.
14834
14835         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
14836         gnus-summary-idna-message.
14837         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
14838         (gnus-summary-idna-message): New function.
14839
14840 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
14841
14842         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
14843         gnus-novice-user.
14844
14845 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14846
14847         * nnrss.el (nnrss-request-delete-group): Delete entries in
14848         nnrss-group-alist as well.
14849         (nnrss-save-server-data): Insert newline.
14850
14851 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
14852
14853         * gnus.el (gnus-user-agent): Use list of symbols instead of
14854         symbols.  Display full version number for (S)XEmacs.
14855         Optionally display (S)XEmacs codename.
14856
14857         * gnus-util.el (gnus-emacs-version): Update for new
14858         `gnus-user-agent'.
14859
14860         * gnus-msg.el (gnus-extended-version): Make it possible to omit
14861         Gnus version.
14862
14863 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
14864
14865         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
14866         which is unreadable in some setups.
14867
14868 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14869
14870         * gnus-spec.el (gnus-update-format-specifications): Flush the
14871         group format spec cache if it doesn't support decoded group names.
14872
14873 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
14874
14875         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
14876         Allow to apply decay on score files matching a regexp.
14877
14878 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14879
14880         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
14881         compatibility in %g and %c.
14882
14883 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14884
14885         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
14886         name for only %g and %c.
14887         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
14888         of gnus-tmp-group to decoded group name.
14889         (gnus-group-make-rss-group): Exclude `/'s from group names.
14890
14891 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14892
14893         * nnrss.el (nnrss-get-encoding): Fix regexp.
14894
14895 2004-12-27  Simon Josefsson  <jas@extundo.com>
14896
14897         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
14898         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
14899         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
14900
14901 2004-12-17  Kim F. Storm  <storm@cua.dk>
14902
14903         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
14904
14905         * gnus-sum.el (gnus-summary-mode-map): Likewise.
14906
14907 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
14908
14909         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
14910
14911 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14912
14913         * nnrss.el: Require rfc2047 and mml.
14914         (nnrss-file-coding-system): New variable.
14915         (nnrss-format-string): Redefine it as an inline function.
14916         (nnrss-decode-group-name): New function.
14917         (nnrss-string-as-multibyte): Remove.
14918         (nnrss-retrieve-headers): Decode group name; don't use
14919         nnrss-format-string.
14920         (nnrss-request-group): Decode group name.
14921         (nnrss-request-article): Decode group name; allow a Message-ID as
14922         well as an article number; don't use nnrss-format-string; encode a
14923         Message-ID string which may contain non-ASCII characters; use
14924         mml-to-mime to compose a MIME article.
14925         (nnrss-request-expire-articles): Decode group name.
14926         (nnrss-request-delete-group): Decode group name.
14927         (nnrss-fetch): Clarify error message.
14928         (nnrss-read-server-data): Use insert-file-contents instead of load;
14929         bind file-name-coding-system; use multibyte buffer.
14930         (nnrss-save-server-data): Bind coding-system-for-write to the
14931         value of nnrss-file-coding-system; bind file-name-coding-system;
14932         add coding cookie.
14933         (nnrss-read-group-data): Use insert-file-contents instead of load;
14934         bind file-name-coding-system; use multibyte buffer.
14935         (nnrss-save-group-data): Bind coding-system-for-write to the
14936         value of nnrss-file-coding-system; bind file-name-coding-system.
14937         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
14938         make it work with non-ASCII text.
14939         (nnrss-find-el): Make it work with old xml.el as well.
14940
14941 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
14942
14943         * nnrss.el (nnrss-get-encoding): New function.
14944         (nnrss-fetch): Use unibyte buffer initially; bind
14945         coding-system-for-read while performing mm-url-insert; remove ^Ms;
14946         decode contents according to the encoding attribute.
14947         (nnrss-save-group-data): Add coding cookie.
14948         (nnrss-mime-encode-string): New function.
14949         (nnrss-check-group): Use it to encode subject and author.
14950
14951 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
14952
14953         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
14954         imaginary variable.
14955
14956 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14957
14958         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
14959         correctly even if there are wide characters.
14960
14961 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
14962
14963         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
14964         downcased symbol names; make a new cache instead of reusing
14965         bbdb-hashtable.
14966
14967 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14968
14969         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
14970         concatenating segments rather than before concatenating them.
14971         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
14972
14973         * message.el (message-get-reply-headers): Bind `extra'.
14974
14975 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14976
14977         * message.el (message-extra-wide-headers): New variable.
14978         (message-get-reply-headers): Use it.
14979
14980 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14981
14982         * gnus-agent.el (gnus-agent-group-path): Decode group name.
14983         (gnus-agent-group-pathname): Ditto.
14984
14985         * gnus-cache.el (gnus-cache-file-name): Decode group name.
14986
14987         * gnus-group.el (gnus-group-make-group): Decode group name.
14988         (gnus-group-make-rss-group): Register the group data after opening
14989         the nnrss group.
14990
14991 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
14992
14993         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
14994         by expiry now get marked as read.
14995
14996 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14997
14998         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
14999
15000 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
15001
15002         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
15003         unify Latin characters in XEmacs.
15004         (mm-find-mime-charset-region): Use it.
15005
15006 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15007
15008         * gnus-util.el (gnus-delete-directory): New function.
15009
15010         * gnus-agent.el (gnus-agent-delete-group): Use it.
15011
15012         * gnus-cache.el (gnus-cache-delete-group): Use it.
15013
15014 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15015
15016         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
15017         names.
15018
15019 2004-12-16  Simon Josefsson  <jas@extundo.com>
15020
15021         * hashcash.el (hashcash-payment-alist): Fix custom :type.
15022
15023 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15024
15025         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
15026
15027         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
15028         (gnus-group-set-current-level): Decode group name.
15029
15030 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
15031
15032         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
15033         failed.
15034
15035 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15036
15037         * gnus-group.el (gnus-group-delete-group): Decode group name.
15038         (gnus-group-make-rss-group): Encode group name.
15039         (gnus-group-catchup-current): Decode group name.
15040         (gnus-group-kill-group): Decode group name.
15041
15042 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15043
15044         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
15045
15046 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15047
15048         * gnus-group.el (gnus-group-make-rss-group):
15049         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
15050
15051         * gnus-start.el (gnus-setup-news): Honor user's setting to
15052         gnus-message-archive-method.  Suggested by Lute Kamstra
15053         <lute@gnu.org>.
15054
15055 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
15056
15057         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
15058         global counterparts of the buffer-local variables.
15059
15060 2004-11-16  Romain Francoise  <romain@orebokech.com>
15061
15062         * gnus-sum.el (gnus-summary-exit): Don't clear the global
15063         counterparts of the buffer-local variables.
15064
15065 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15066
15067         * message.el (message-forbidden-properties): Fix typo in doc
15068         string.
15069
15070 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15071
15072         * gnus-util.el (gnus-replace-in-string): Add doc string.
15073
15074         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
15075         to avoid problems when splitting mails with many recipients.
15076
15077 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15078
15079         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
15080         pop-to-buffer, covered by the subsequent gnus-configure-windows.
15081
15082 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
15083
15084         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
15085         if there is no hashtable in memory or file modification time is
15086         newer than cached timestamp.
15087
15088 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
15089
15090         * gnus-sum.el (gnus-summary-limit-to-recipient):
15091         Implement not-matching option.
15092
15093 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
15094
15095         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
15096         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
15097         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15098         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
15099         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
15100         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
15101
15102 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15103
15104         * message.el (message-forward-make-body-mml): Remove headers
15105         according to message-forward-ignored-headers if a message is decoded.
15106
15107 2004-12-02  Romain Francoise  <romain@orebokech.com>
15108
15109         * message.el (message-forward-make-body-plain): Always remove
15110         headers according to message-forward-ignored-headers.
15111
15112 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
15113
15114         * spam.el (spam-summary-prepare-exit): Remove the
15115         gnus-summary-limit pop for now, it has problems with ham marks for
15116         me.
15117
15118 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
15119
15120         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
15121         correctly.
15122
15123 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
15124
15125         * format-spec.el (format-spec): Message the char.
15126
15127 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
15128
15129         * gnus-art.el (gnus-split-methods): Reformat comments.
15130
15131         * spam.el (spam-summary-prepare-exit): Remove article limits
15132         before exiting the summary buffer.
15133
15134 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15135
15136         * lpath.el: Remove bbdb-create-internal, bbdb-records,
15137         spam-BBDB-register-routine and spam-enter-ham-BBDB.
15138
15139         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
15140         order to silence the byte compiler.
15141
15142         * spam.el: Fix the way to silence the byte compiler, which
15143         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
15144         bbdb-search-simple, spam-BBDB-register-routine,
15145         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
15146         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
15147         spam-stat-buffer-is-spam, spam-stat-load,
15148         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
15149         spam-stat-save and spam-stat-split-fancy.
15150
15151 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15152
15153         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
15154         which may confuse users.
15155         (canlock-password-for-verify): Ditto.
15156
15157         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
15158
15159         * gnus-art.el (gnus-emphasis-alist): Ditto.
15160
15161         * gnus-registry.el (gnus-registry-max-entries): Ditto.
15162
15163         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
15164
15165         * gnus-start.el (gnus-save-killed-list): Ditto.
15166
15167         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
15168         (gnus-sum-thread-tree-root): Ditto.
15169         (gnus-sum-thread-tree-false-root): Ditto.
15170         (gnus-sum-thread-tree-single-indent): Ditto.
15171
15172         * message.el (message-courtesy-message): Ditto.
15173         (message-archive-note): Ditto.
15174         (message-subscribed-address-file): Ditto.
15175         (message-user-fqdn): Ditto.
15176
15177         * spam-report.el (spam-report-gmane-regex): Ditto.
15178
15179         * spam.el (spam-blackhole-good-server-regex): Ditto.
15180
15181 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15182
15183         * mml.el (mml-preview): Widen the message buffer before copying
15184         the contents to the preview buffer; sort headers before previewing.
15185
15186         * message.el (message-hidden-headers): Fix the way to avoid a bug
15187         in the `repeat' widget in Emacs 21.3 or earlier.
15188
15189 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15190
15191         * message.el (message-hidden-headers): Default to "^References:".
15192         Improve customization type.  Suggested by Reiner Steib
15193         <Reiner.Steib@gmx.de>.
15194
15195 2004-11-25  Romain Francoise  <romain@orebokech.com>
15196
15197         * message.el (message-strip-forbidden-properties): Remove check for
15198         obsolete `message-hidden' text property, hidden headers are not
15199         accessible in the buffer anymore.
15200
15201 2004-11-22  Romain Francoise  <romain@orebokech.com>
15202
15203         * message.el (message-header-format-alist): Add `From' in list
15204         so that it can be sorted.
15205         (message-fix-before-sending): Widen and sort headers before
15206         sending.
15207         (message-hide-headers): Use narrowing to hide headers by moving
15208         them to the top of the buffer and narrowing to the region
15209         underneath.
15210
15211 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15212
15213         * message.el (message-strip-forbidden-properties):
15214         Bind buffer-read-only (etc) to nil.
15215
15216 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15217
15218         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
15219         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
15220
15221 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
15222
15223         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
15224
15225 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15226
15227         * dns.el (query-dns): Use sit-for to time instead of
15228         accept-process-output, since that doesn't seem to work on udp
15229         sockets.
15230
15231 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15232
15233         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
15234
15235 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
15236
15237         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
15238         doc string.  Improve doc string.
15239
15240 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15241
15242         * nntp.el (nntp-request-update-info): Return nil if
15243         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
15244         may not call gnus-activate-group which uselessly issues the GROUP
15245         commands for all nntp groups and wastes time.  Reported by Romain
15246         Francoise <romain@orebokech.com>.
15247
15248         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
15249
15250 2004-11-15  Simon Josefsson  <jas@extundo.com>
15251
15252         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
15253         headers separately.
15254         (gnus-button-openpgp): New function, inspired by Jochen Küpper
15255         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
15256
15257 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
15258
15259         * gnus-start.el (gnus-convert-old-newsrc):
15260         Assign legacy-gnus-agent to 5.10.7.
15261
15262 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15263
15264         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
15265         start of the lines.
15266
15267 2004-11-14  Magnus Henoch  <mange@freemail.hu>
15268
15269         * hashcash.el (hashcash-default-payment): Change default to 20.
15270         (hashcash-default-accept-payment): Change default to 20.
15271         (hashcash-process-alist): New variable.
15272         (hashcash-generate-payment-async): Add.
15273         (hashcash-already-paid-p): Add.
15274         (hashcash-insert-payment): Don't generate payments twice.
15275         (hashcash-insert-payment-async): Add.
15276         (hashcash-insert-payment-async-2): Add.
15277         (hashcash-cancel-async): Add.
15278         (hashcash-wait-async): Add.
15279         (hashcash-processes-running-p): Add.
15280         (hashcash-wait-or-cancel): Add.
15281         (mail-add-payment): New optional argument.  Conditionally start
15282         asynchronous calculation.
15283         (mail-add-payment-async): Add.
15284
15285         * message.el (message-send-mail): Wait for asynchronous hashcash
15286         results.  Don't clobber existing X-Hashcash headers.
15287         (message-setup-1): Call mail-add-payment-async when
15288         message-generate-hashcash is non-nil.
15289
15290 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15291
15292         * message.el (message-use-alternative-email-as-from): Examine the
15293         From header as well; use message-make-from in order to include a
15294         user's full name.
15295
15296 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15297
15298         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
15299         default; improve customization type.
15300         (gnus-emphasis-custom-with-format): New macro.
15301         (gnus-emphasis-custom-value-to-external): New function.
15302         (gnus-emphasis-custom-value-to-internal): New function.
15303
15304 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15305
15306         * dns.el (query-dns): Resolve reverse addresses.
15307
15308 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15309
15310         * gnus-group.el (gnus-group-get-new-news): Use it.
15311
15312         * gnus-start.el (gnus-check-reasonable-setup): New function.
15313
15314 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15315
15316         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
15317         "Args out of range" error.  Reported by Arnaud Giersch
15318         <arnaud.giersch@free.fr>.
15319
15320 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
15321
15322         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
15323
15324 2004-11-04  Richard M. Stallman  <rms@gnu.org>
15325
15326         * spam.el (spam group): Add :version.
15327
15328         * pgg-def.el (pgg group): Add :version.
15329
15330 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15331
15332         * gnus-art.el (gnus-article-edit-article): Don't associate the
15333         article buffer with a draft file.  This is a temporary measure
15334         against the 2004-08-22 change to gnus-article-edit-mode.
15335
15336 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15337
15338         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
15339         (html2text-format-tags): Remove unused variable `attr'.
15340
15341 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
15342
15343         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
15344
15345         * tls.el (tls-process-connection-type, tls-success)
15346         (tls-certtool-program): Add :version.
15347
15348         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
15349         (starttls-extra-arguments, starttls-process-connection-type)
15350         (starttls-connect, starttls-failure, starttls-success): Add :version.
15351
15352         * spam-stat.el (spam-stat): Add :version.
15353
15354         * sieve.el (sieve): Add :version.
15355
15356         * sha1.el (sha1): Add :version.
15357         (sha1-use-external): Remove redundant version.
15358
15359         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
15360         (nnmail-cache-ignore-groups, nnmail-spool-hook)
15361         (nnmail-split-fancy-match-partial-words)
15362         (nnmail-split-lowercase-expanded): Add :version.
15363
15364         * nndiary.el (nndiary): Add :version.
15365
15366         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
15367
15368         * mml-sec.el (mml-default-sign-method)
15369         (mml-default-encrypt-method, mml-signencrypt-style-alist):
15370         Add :version.
15371
15372         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
15373
15374         * mm-url.el (mm-url-use-external, mm-url-program)
15375         (mm-url-arguments): Add :version.
15376
15377         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
15378         (mm-attachment-file-modes, mm-decrypt-option)
15379         (mm-w3m-safe-url-regexp): Add :version.
15380
15381         * message.el (message-cite-prefix-regexp)
15382         (message-sendmail-envelope-from, message-minibuffer-local-map)
15383         (message-user-fqdn, message-completion-alist): Add :version.
15384
15385         * gnus-win.el (gnus-configure-windows-hook)
15386         (gnus-use-frames-on-any-display): Add :version.
15387
15388         * gnus-art.el (gnus-article-address-banner-alist)
15389         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
15390         (gnus-treat-from-picon, gnus-treat-mail-picon)
15391         (gnus-treat-x-pgp-sig): Add :version.
15392
15393         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
15394         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
15395         (gnus-summary-article-delete-hook)
15396         (gnus-summary-display-while-building): Add :version.
15397
15398         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
15399         (gnus-get-top-new-news-hook): Add :version.
15400
15401         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15402         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
15403
15404         * gnus-registry.el (gnus-registry): Add :version.
15405
15406         * gnus-spec.el (gnus-use-correct-string-widths)
15407         (gnus-make-format-preserve-properties): Add :version.
15408
15409         * gnus.el (gnus-group-charter-alist)
15410         (gnus-group-fetch-control-use-browse-url)
15411         (gnus-install-group-spam-parameters): Add :version.
15412
15413         * gnus-diary.el (gnus-diary): Add :version.
15414
15415         * gnus-delay.el (gnus-delay): Add :version.
15416
15417         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
15418         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
15419         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
15420         Add :version.
15421
15422         * gnus-agent.el (gnus-agent-max-fetch-size)
15423         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
15424         (gnus-agent-prompt-send-queue): Add :version.
15425
15426         * deuglify.el (gnus-outlook-deuglify): Add :version.
15427
15428         * html2text.el: Beautify code.  Improve doc strings.
15429         Some checkdoc cleanup.
15430         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
15431
15432 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
15433
15434         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
15435
15436 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
15437
15438         * gnus-registry.el (gnus-registry-hashtb): Create the registry
15439         when package is loaded.
15440
15441         * spam.el (spam-summary-score-preferred-header): Add global preference
15442         for people who want to override the default SpamAssassin over
15443         Bogofilter preference (when both are set).
15444         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
15445         (spam-user-format-function-S):
15446         Check spam-summary-score-preferred-header.
15447         (spam-extra-header-to-number): Add X-Bogosity header parsing.
15448         (spam-user-format-function-S): Format the score correctly.
15449
15450 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15451
15452         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
15453         signature file.  Suggested by Manoj Srivastava
15454         <srivasta@golden-gryphon.com>.
15455
15456         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
15457         iso-2022-jp even in the Japanese language environment.
15458         Suggested by Jason Rumney <jasonr@gnu.org>.
15459
15460 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15461
15462         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
15463         use the same characters as the dummy marks; make it free from
15464         getting affected by the language environment.
15465         (gnus-summary-read-group-1): Update mark positions only when the
15466         format spec is updated.
15467
15468         * gnus-spec.el (gnus-update-format-specifications): Return a list
15469         of updated types.
15470
15471 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15472
15473         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
15474         of boundp to check if display-warning is available.
15475
15476 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
15477
15478         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
15479
15480 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15481
15482         * nnspool.el (nnspool-spool-directory): Use news-path if the
15483         news-directory variable is not bound.
15484
15485         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
15486         function instead of display-warning if it is not available.
15487
15488 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
15489
15490         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
15491         v5-10: Use `point-at-bol'.
15492
15493 2004-10-26  Simon Josefsson  <jas@extundo.com>
15494
15495         * hashcash.el: Fix URL in comment, reported by Cheng Gao
15496         <chenggao@gmail.com>.
15497
15498 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
15499
15500         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
15501         instead.
15502
15503 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
15504
15505         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
15506         to remove a server from the nnimap-server-buffer-alist.
15507         (nnimap-open-connection, nnimap-close-server): Use it.
15508
15509         * gnus-encrypt.el: Remove file in favor of encrypt.el.
15510
15511 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
15512
15513         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
15514         running the major-mode function.
15515
15516 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15517
15518         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
15519         dummy marks in the right way.
15520
15521 2004-10-18  David Edmondson  <dme@dme.org>
15522
15523         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
15524         excessively.
15525
15526 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
15527
15528         * gnus-util.el (gnus-split-references): Accept a nil references
15529         string and go on blissfully.
15530
15531         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
15532         cases where the references string is non-nil but has no references.
15533
15534         * encrypt.el: Add autoload tags.
15535
15536         * spam.el (spam-resolve-registrations-routine): Remove article
15537         from unregistration list too.  Reported by David Hanak
15538         <dhanak@isis.vanderbilt.edu>
15539
15540 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
15541
15542         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
15543         nil.  Change custom type.
15544
15545 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
15546
15547         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
15548
15549         * gnus-sum.el (gnus-summary-move-article): Use it.
15550
15551 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
15552
15553         * encrypt.el: Add autoload cookies.
15554
15555         * spam.el (spam-backend-article-list-property)
15556         (spam-backend-get-article-todo-list)
15557         (spam-backend-put-article-todo-list)
15558         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
15559         Resolve registrations separately.
15560         (spam-register-routine): Format comments.
15561         (spam-unregister-routine, spam-register-routine): Always call with
15562         specific-articles, no default list.
15563         (spam-summary-prepare-exit): Use the spam-classifications function.
15564
15565         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
15566         gnus-encrypt.el.
15567
15568         * encrypt.el: Copied from gnus-encrypt.el.
15569
15570         * gnus-encrypt.el: Commented that it's obsolete.
15571
15572 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
15573
15574         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
15575         (gnus-score-save): Use it.
15576
15577         * message.el (message-bury): Use `window-dedicated-p'.
15578
15579 2004-10-15  Simon Josefsson  <jas@extundo.com>
15580
15581         * pop3.el (top-level): Don't require nnheader.
15582         (pop3-read-timeout): Add.
15583         (pop3-accept-process-output): Add.
15584         (pop3-read-response, pop3-retr): Use it.
15585
15586 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
15587
15588         * spam.el (spam-register-routine): Move comment.
15589         (spam-verify-bogofilter): Use 'unknown for the initial
15590         spam-bogofilter-valid state, not 'never.
15591
15592         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
15593         for netrc-machine.
15594
15595         * nnimap.el (nnimap-open-connection):
15596         Use netrc-machine-user-or-password.
15597
15598 2004-10-17  Richard M. Stallman  <rms@gnu.org>
15599
15600         * gnus-registry.el (gnus-registry-unload-hook):
15601         Set as a variable with add-hook.
15602
15603         * nnspool.el (nnspool-spool-directory): Use news-directory instead
15604         of news-path.
15605
15606         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
15607
15608         * spam.el: Delete duplicate `provide'.
15609         (spam-unload-hook): Set as a variable with add-hook.
15610
15611 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
15612
15613         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
15614         in the doc string.
15615
15616         * message.el (message-ignored-news-headers)
15617         (message-ignored-supersedes-headers)
15618         (message-ignored-resent-headers)
15619         (message-forward-ignored-headers): Improve custom type.
15620
15621 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15622
15623         * message.el (message-tokenize-header): Fix 2004-09-06 change
15624         which used point-min in the wrong place.
15625
15626 2004-10-12  Simon Josefsson  <jas@extundo.com>
15627
15628         * tls.el (tls-certtool-program): New variable.
15629         (tls-certificate-information): New function, based on
15630         ssl-certificate-information.
15631
15632 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15633
15634         * compface.el: Move the version of ELisp-based uncompface program
15635         to the contrib directory because of the copyright problem.
15636
15637 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
15638
15639         * message.el (message-kill-buffer): Raise the current frame.
15640
15641 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
15642
15643         * gnus-sum.el: Mention that multibyte characters don't work as marks.
15644
15645         * gnus.el (message-y-or-n-p): Autoload.
15646
15647         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
15648         (pop3-password-required, pop3-authentication-scheme)
15649         (pop3-leave-mail-on-server): Make customizable.
15650         (pop3): New custom group.
15651         (pop3-retr): Remove `sleep-for' statements.
15652         Suggested by Dave Love <fx@gnu.org>.
15653
15654         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
15655         Windows/DOS.
15656
15657         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15658         (imap-parse-body): Fix incorrect use of `assert'.
15659         Suggested by Dave Love <fx@gnu.org>.
15660
15661         * mml.el (mml-minibuffer-read-disposition): Require match.
15662         Suggested by Dave Love <fx@gnu.org>.
15663
15664 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
15665
15666         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
15667         doc string.
15668
15669 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15670
15671         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
15672
15673 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
15674
15675         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
15676         instead of calling `mm-insert-inline', to decode text/* parts
15677         before displaying them.
15678
15679 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15680
15681         * mm-uu.el (mm-uu-text-plain-type): New variable.
15682         (mm-uu-pgp-signed-extract-1): Use it.
15683         (mm-uu-pgp-encrypted-extract-1): Use it.
15684         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
15685         bind mm-uu-text-plain-type with that value.
15686         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
15687         mm-uu-dissect.
15688
15689 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15690
15691         * gnus-group.el (gnus-update-group-mark-positions):
15692         * gnus-sum.el (gnus-update-summary-mark-positions):
15693         * message.el (message-check-news-body-syntax):
15694         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
15695         of string-as-multibyte.
15696
15697 2004-10-05  Juri Linkov  <juri@jurta.org>
15698
15699         * gnus-group.el (gnus-update-group-mark-positions):
15700         * gnus-sum.el (gnus-update-summary-mark-positions):
15701         * message.el (message-check-news-body-syntax):
15702         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
15703         8-bit unibyte values to a multibyte string for search functions.
15704
15705 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15706
15707         * mm-uu.el (mm-uu-dissect): Allow optional arg.
15708         (mm-uu-dissect-text-parts): New function.
15709
15710         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
15711         dissect text parts.
15712
15713         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
15714         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
15715
15716         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
15717
15718         * gnus-topic.el (gnus-topic-hierarchical-parameters):
15719         Use gnus-current-topics instead of gnus-current-topic.
15720
15721 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
15722
15723         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
15724
15725 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
15726
15727         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
15728         where approriate.
15729
15730         * nnml.el (nnml-generate-active-info): do.
15731
15732         * nndiary.el (nndiary-generate-active-info): do.
15733
15734         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
15735         (gnus-topic-move): do.
15736
15737         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
15738         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
15739
15740         * gnus-srvr.el (gnus-server-prepare)
15741         (gnus-server-open-all-servers): do.
15742
15743         * gnus-msg.el (gnus-summary-cancel-article)
15744         (gnus-summary-resend-message)
15745         (gnus-summary-mail-crosspost-complaint): do.
15746
15747         * gnus-move.el (gnus-change-server): do.
15748
15749         * gnus-group.el (gnus-group-unmark-all-groups)
15750         (gnus-group-set-current-level): do.
15751
15752 2004-10-04  Simon Josefsson  <jas@extundo.com>
15753
15754         * message.el (message-generate-hashcash): Doc fix.
15755
15756 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
15757
15758         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
15759         avoid infinite recursion via gnus-get-function.
15760
15761 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
15762
15763         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
15764
15765         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
15766
15767         * nnmail.el (nnmail-split-history): do.
15768
15769         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
15770         (nnml-request-delete-group): do.
15771
15772         * nnslashdot.el (nnslashdot-read-groups): do.
15773
15774         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
15775         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
15776
15777         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
15778         (nnspool-sift-nov-with-sed): Use last.
15779         (nnspool-retrieve-headers-with-nov): Use mapc.
15780         (nnspool-request-newgroups): Use dolist.
15781         (nnspool-request-group): Use last.
15782
15783         * nntp.el (nntp-read-server-type): Use dolist.
15784
15785         * nnvirtual.el (nnvirtual-create-mapping)
15786         (nnvirtual-update-read-and-marked): Use dolist.
15787         (nnvirtual-convert-headers): Simplify.
15788
15789 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
15790
15791         * gnus-agent.el (gnus-agent-synchronize-group-flags):
15792         Add support for sync'ing tick marks.
15793
15794 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15795
15796         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
15797         there's no visible header.
15798
15799 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
15800
15801         * gnus-agent.el (gnus-agent-synchronize-group-flags):
15802         When necessary, pass full group name to gnus-request-set-marks.
15803
15804 2004-10-01  Simon Josefsson  <jas@extundo.com>
15805
15806         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
15807         acroread.
15808
15809 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15810
15811         * spam-report.el (spam-report-gmane): Fix interactive.
15812
15813         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
15814
15815         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
15816         when writing file.
15817         (gnus-agent-synchronize-flags): Don't default to being
15818         interactive.
15819
15820 2004-09-30  Simon Josefsson  <jas@extundo.com>
15821
15822         * message.el (message-generate-hashcash): Add.
15823         (message-send-mail): Use it, call mail-add-payment.
15824
15825 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
15826
15827         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
15828
15829 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
15830
15831         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
15832         gnus-requst-update-info with explicit code to sync the in-memory
15833         info read flags with the marks being sync'd to the backend.
15834
15835         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
15836
15837 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
15838
15839         * spam.el (spam-verify-bogofilter): Add new function.
15840         (spam-check-bogofilter)
15841         (spam-bogofilter-register-with-bogofilter): Use it.
15842         (spam-verify-bogofilter): Add small fixes.
15843
15844 2004-09-28  Simon Josefsson  <jas@extundo.com>
15845
15846         * hashcash.el (hashcash-generate-payment): Revert.
15847
15848 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
15849
15850         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15851         Use gnus-extract-references instead of gnus-split-references.
15852
15853         * gnus-util.el (gnus-extract-references): Add new function, analogous
15854         to gnus-split-references but extracts only the message-ID without
15855         anything extra.
15856
15857         * hashcash.el (hashcash-generate-payment)
15858         (hashcash-check-payment): Do the right thing if hashcash-path is
15859         nil (because the hashcash program could not be found).
15860
15861         * spam.el (spam-use-hashcash): Remove comment.
15862
15863 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
15864
15865         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
15866         (gnus-cache-enter-article, gnus-cache-remove-article)
15867         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
15868
15869         * gnus-async.el (gnus-async-prefetch-remove-group): do.
15870
15871         * gnus-art.el (article-hide-boring-headers)
15872         (article-translate-strings, article-display-face)
15873         (gnus-article-mime-match-handle-first)
15874         (gnus-article-highlight-headers)
15875         (gnus-article-add-buttons-to-head): do.
15876
15877 2004-09-27  Simon Josefsson  <jas@extundo.com>
15878
15879         * hashcash.el: New version, from
15880         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
15881         ../contrib/.
15882
15883 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15884
15885         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
15886
15887 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
15888
15889         * gnus-dup.el (gnus-dup-open): Use mapc.
15890         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
15891
15892         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
15893         Reported by Stefan Wiens <s.wi@gmx.net>.
15894
15895         * gnus.el (gnus-shutdown): Use dolist.
15896
15897         * gnus-undo.el (gnus-undo): Use mapc.
15898
15899         * nnrss.el (nnrss-generate-active): do.
15900
15901         * message.el (message-cite-original-without-signature)
15902         (message-cite-original): Use mapc.
15903         (message-do-actions, message-make-forward-subject): Use dolist.
15904
15905 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
15906
15907         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
15908         deletion to remove entire duplicate line.  Fixes merged article
15909         number bug.
15910
15911 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
15912
15913         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
15914         servers that are offline.  Avoids having gnus-agent-toggle-plugged
15915         first ask if you want to open a server and then, even when you
15916         responded with no, asking if you want to synchronize the server's
15917         flags.
15918         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
15919         multi-line expressions.
15920         (gnus-agent-synchronize-group-flags): New internal function.
15921         Updates marks in memory (in the info structure) AND in the
15922         backend.
15923
15924         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
15925
15926         * nnagent.el (nnagent-request-set-mark):
15927         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
15928         method, to ensure that synchronization updates marks in the
15929         backend and in the info (in memory) structure.
15930
15931 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15932
15933         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
15934         convention fully; don't miss the root article of a thread; make
15935         the X-Draft-From header with correct article numbers.
15936
15937 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
15938
15939         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
15940         unless plugged.  Disable the agent so that an open failure causes
15941         an error.
15942
15943         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
15944         Revert 2004-09-21 change.  The backend must be opened while
15945         synchronizing flags even when the backend stores the flags
15946         locally.
15947
15948 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
15949
15950         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
15951         in `header' match.  Reported by Svend Tollak Munkejord.
15952
15953         * message.el (message-cite-original): Fix use of
15954         `message-cite-articles-with-x-no-archive'.
15955
15956 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15957
15958         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
15959         (gnus-window-to-buffer): Ditto.
15960
15961         * mml.el (mml-preview-buffer): New variable.
15962         (mml-preview): Manage window layout with gnus-buffer-configuration.
15963
15964         * gnus-msg.el (gnus-setup-message): Put article numbers into the
15965         X-Draft-From header even if those articles aren't quoted.
15966
15967 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
15968
15969         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
15970         (gnus-request-set-mark, gnus-request-update-mark): Use new
15971         g-s-t-u-l-m to decide to use backend even when unplugged.
15972
15973 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
15974
15975         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
15976         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
15977
15978 2004-09-20  Simon Josefsson  <jas@extundo.com>
15979
15980         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
15981         "utf-16-le".
15982
15983 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15984
15985         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
15986
15987 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
15988
15989         * uudecode.el (uudecode-use-external): Add :version.
15990
15991         * smime.el (smime-CA-file, smime-encrypt-cipher)
15992         (smime-dns-server): Add :version.
15993
15994         * smiley.el (gnus-smiley-file-types): Add :version.
15995
15996         * sha1.el (sha1-use-external): Add :version.
15997
15998         * pgg-def.el (pgg-query-keyserver): Add :version.
15999
16000         * nnmail.el (nnmail-fancy-expiry-targets)
16001         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
16002         Add :version.
16003
16004         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
16005         (nnimap-retrieve-groups-asynchronous): Add :version.
16006         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
16007
16008         * mml.el (mml-content-disposition-parameters)
16009         (mml-insert-mime-headers-always): Add :version.
16010
16011         * mm-util.el (mm-coding-system-priorities): Add :version.
16012
16013         * mm-decode.el (mm-inline-text-html-with-images)
16014         (mm-keep-viewer-alive-types, mm-external-terminal-program)
16015         (mm-verify-option): Add :version.
16016         (mm-text-html-renderer): Change :version.
16017
16018         * message.el (message-fcc-externalize-attachments)
16019         (message-required-headers, message-draft-headers)
16020         (message-subject-trailing-was-query)
16021         (message-subject-trailing-was-ask-regexp)
16022         (message-subject-trailing-was-regexp, message-mark-insert-begin)
16023         (message-mark-insert-end, message-archive-header)
16024         (message-archive-note, message-cross-post-default)
16025         (message-cross-post-note, message-followup-to-note)
16026         (message-cross-post-note-function, message-use-mail-followup-to)
16027         (message-subscribed-address-functions)
16028         (message-subscribed-address-file, message-subscribed-addresses)
16029         (message-subscribed-regexps, message-allow-no-recipients)
16030         (message-yank-cited-prefix, message-signature-insert-empty-line)
16031         (message-hidden-headers, message-hierarchical-addresses)
16032         (message-mail-user-agent, message-use-idna)
16033         (message-valid-fqdn-regexp)
16034         (message-strip-special-text-properties, message-header-synonyms)
16035         (message-beginning-of-line, message-tab-body-function): Add :version.
16036         (message-insert-canlock, message-wide-reply-confirm-recipients):
16037         Change :version.
16038
16039         * mail-source.el (mail-source-ignore-errors): Add :group, :type
16040         and :version.
16041         (mail-source-delete-old-incoming-confirm)
16042         (mail-source-movemail-program): Add :version.
16043
16044         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
16045         (gnus-agent-cache, gnus-agent): Change :version.
16046
16047         * gnus-util.el (gnus-use-byte-compile): Change :version.
16048
16049         * gnus-sum.el (gnus-summary-make-false-root-always)
16050         (gnus-summary-default-high-score)
16051         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
16052         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
16053         (gnus-read-all-available-headers, gnus-article-emulate-mime)
16054         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
16055         (gnus-sum-thread-tree-single-indent)
16056         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
16057         (gnus-sum-thread-tree-leaf-with-other)
16058         (gnus-sum-thread-tree-single-leaf): Add :version.
16059         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
16060         (gnus-article-loose-mime): Change :version.
16061
16062         * gnus-start.el (gnus-backup-startup-file)
16063         (gnus-save-startup-file-via-temp-buffer): Add :version.
16064
16065         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
16066         (gnus-server-offline-face): Add :version.
16067
16068         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
16069
16070         * gnus-msg.el (gnus-gcc-externalize-attachments)
16071         (gnus-debug-files, gnus-debug-exclude-variables)
16072         (gnus-discouraged-post-methods): Change :version.
16073         (gnus-confirm-mail-reply-to-news)
16074         (gnus-confirm-treat-mail-like-news): Add :version.
16075
16076         * gnus-int.el (gnus-server-unopen-status): Add :version.
16077
16078         * gnus-group.el (gnus-group-jump-to-group-prompt)
16079         (gnus-large-ephemeral-newsgroup)
16080         (gnus-fetch-old-ephemeral-headers): Add :version.
16081
16082         * gnus-fun.el (gnus-x-face-directory)
16083         (gnus-convert-pbm-to-x-face-command)
16084         (gnus-convert-image-to-x-face-command)
16085         (gnus-convert-image-to-face-command): Add :version.
16086
16087         * gnus-delay.el (gnus-delay-default-hour): Add :version.
16088
16089         * gnus-cite.el (gnus-cite-blank-line-after-header)
16090         (gnus-article-boring-faces): Add :version.
16091
16092         * gnus-art.el (gnus-buttonized-mime-types)
16093         (gnus-inhibit-mime-unbuttonizing)
16094         (gnus-treat-display-face)
16095         (gnus-treat-body-boundary): Change :version.
16096         (gnus-body-boundary-delimiter, gnus-picon-databases)
16097         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
16098         (gnus-treat-date-english, gnus-treat-fold-headers)
16099         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
16100         (gnus-treat-mail-picon, gnus-treat-wash-html)
16101         (gnus-article-encrypt-protocol)
16102         (gnus-use-idna, gnus-article-over-scroll)
16103         (gnus-mime-display-multipart-alternative-as-mixed)
16104         (gnus-mime-display-multipart-related-as-mixed)
16105         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
16106         (gnus-ctan-url, gnus-button-ctan-handler)
16107         (gnus-button-handle-ctan-bogus-regexp)
16108         (gnus-button-ctan-directory-regexp)
16109         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
16110         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
16111         (gnus-button-man-level, gnus-button-emacs-level)
16112         (gnus-button-message-level, gnus-button-browse-level): Add :version.
16113
16114         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
16115         (gnus-agent-go-online): Change :version.
16116         (gnus-agent-expire-unagentized-dirs)
16117         (gnus-agent-auto-agentize-methods): Add :version.
16118
16119         * flow-fill.el (fill-flowed-display-column)
16120         (fill-flowed-encode-column): Add :version.
16121
16122         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
16123         (gnus-outlook-deuglify-unwrap-max)
16124         (gnus-outlook-deuglify-cite-marks)
16125         (gnus-outlook-deuglify-unwrap-stop-chars)
16126         (gnus-outlook-deuglify-no-wrap-chars)
16127         (gnus-outlook-deuglify-attrib-cut-regexp)
16128         (gnus-outlook-deuglify-attrib-verb-regexp)
16129         (gnus-outlook-deuglify-attrib-end-regexp)
16130         (gnus-outlook-display-hook): Add :version.
16131
16132         * binhex.el (binhex-use-external): Add :version.
16133
16134 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
16135
16136         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
16137         and `invisible'.
16138
16139 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
16140
16141         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
16142         in gnus-registry-trim.
16143
16144 2004-09-13  Simon Josefsson  <jas@extundo.com>
16145
16146         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
16147
16148         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
16149
16150         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
16151         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
16152         <yamaoka@jpl.org>.
16153         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
16154         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
16155         <yamaoka@jpl.org>.
16156
16157         * sieve.el (sieve-manage-mode): Ditto.
16158
16159 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
16160
16161         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
16162
16163 2004-09-11  Simon Josefsson  <jas@extundo.com>
16164
16165         * dns-mode.el: Add.
16166
16167         * mm-view.el (mm-display-dns-inline): Add.
16168
16169         * mm-decode.el (mm-inline-media-tests): Add text/dns.
16170         (mm-automatic-display): Ditto.
16171
16172         * mailcap.el (mailcap-mime-data): Add text/dns.
16173         (mailcap-mime-extensions): Map .soa to text/dns.
16174
16175 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
16176
16177         * gnus-art.el (article-decode-mime-words, article-babel)
16178         (gnus-article-highlight-signature, gnus-article-add-buttons)
16179         (gnus-signature-toggle): Remove unnecessary bindings of
16180         `inhibit-read-only' inherited from v5.10 merge.
16181
16182 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
16183
16184         * nntp.el (nntp): New customization group.
16185         (nntp-authinfo-file): Add customization group.
16186
16187         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
16188
16189         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
16190
16191         * gnus.el (to-address, to-list, subscribed)
16192         (large-newsgroup-initial): Ditto.
16193
16194         * flow-fill.el (fill-flowed-display-column)
16195         (fill-flowed-encode-column): Ditto.
16196
16197 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16198
16199         * message.el (message-tokenize-header, message-send-mail-with-qmail):
16200         Use point-min rather than 1.
16201         (message-send-mail): Use buffer-size rather than point-max.
16202
16203         * gnus-sum.el (gnus-summary-search-article-forward):
16204         Signal a specific `search-failed' rather than a generic `error'.
16205
16206         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
16207         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
16208         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
16209
16210 2004-09-10  Simon Josefsson  <jas@extundo.com>
16211
16212         * nndb.el (require): Remove tcp and duplicate cl.
16213
16214 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16215
16216         * gnus-agent.el (directory-files-and-attributes): Move forward.
16217
16218 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
16219
16220         * gnus-agent.el (directory-files-and-attributes):
16221         Optionally defined to support XEmacs.
16222
16223 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
16224
16225         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
16226         to avoid run-time CL dependencies.
16227         (gnus-agent-unfetch-articles): New function.
16228         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
16229         article numbers even when local .overview file is missing.
16230         (gnus-agent-read-article-number): New function.  Only accepts
16231         27-bit article numbers.
16232         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
16233         Use gnus-agent-read-article-number.
16234         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
16235         from backend while recognizing that article numbers in .overview
16236         must be valid.
16237         (gnus-agent-update-files-total-fetched-for):
16238         Use directory-files-and-attributes to improve performance.
16239         * gnus-int.el (gnus-request-move-article):
16240         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
16241         improve performance.
16242
16243         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
16244         some users confused by references to .newsrc when they only have a
16245         .newsrc.eld file.
16246         (gnus-convert-mark-converter-prompt)
16247         (gnus-convert-converter-needs-prompt): Fix use of property list.
16248         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
16249         New function.  Used internally to only display 'gnus converting
16250         files' message when actually necessary.
16251
16252         * gnus-sum.el (): Remove (require 'gnus-agent) as required
16253         methods now autoloaded.
16254
16255 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16256
16257         * gnus-sum.el (gnus-summary-insert-subject): Remove list
16258         identifiers.
16259
16260 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
16261
16262         * gnus-picon.el: Fix indentation and closing parenthesis.
16263
16264 2004-09-01  Simon Josefsson  <jas@extundo.com>
16265
16266         * message.el (message-canlock-generate): Require sha1, not
16267         sha1-el.  (Can we get rid of this require altogether?  It is ugly
16268         to require within a function.  Sadly, if sha1.el isn't loaded, the
16269         let binding in m-c-g will hide the defcustom definition, which is
16270         bad.)
16271
16272         * canlock.el: Require sha1, not sha1-el.
16273
16274         * message.el: Don't autoload sha1 (there is a autoload cookie in
16275         sha1.el).
16276
16277         * sha1-el.el: Rename to sha1.el.
16278
16279 2004-08-30  Juanma Barranquero  <lektu@terra.es>
16280
16281         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
16282
16283 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16284
16285         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
16286
16287 2004-08-30  Kim F. Storm  <storm@cua.dk>
16288
16289         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
16290
16291         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
16292         Add :group 'nnimap.
16293
16294 2004-08-30  Andreas Schwab  <schwab@suse.de>
16295
16296         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
16297         ?* and ?\;.
16298
16299         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
16300         and ?\' to symbol instead of whitespace.
16301
16302 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16303
16304         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
16305
16306         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
16307         instead of re-search-forward.
16308
16309         * gnus-uu.el (gnus-uu-save-article): Ditto.
16310         (gnus-uu-post-encode-uuencode): Ditto.
16311
16312         * html2text.el (html2text-clean-list-items): Ditto.
16313         (html2text-clean-dtdd): Ditto.
16314         (html2text-format-tags): Ditto.
16315
16316         * message.el (message-send-mail-with-sendmail): Fix regexp.
16317         (message-fill-field-general): Use search-forward instead of
16318         re-search-forward.
16319         (unbold-region): Ditto.
16320
16321         * nnrss.el (nnrss-request-article): Ditto.
16322
16323         * nnslashdot.el (nnslashdot-request-article): Ditto.
16324
16325         * nnweb.el (nnweb-gmane-wash-article): Ditto.
16326
16327         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
16328         "Unrecognized menu descriptor" error in XEmacs.
16329
16330 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
16331
16332         * gnus-sum.el (gnus-read-header): Don't remove a header for the
16333         parent article of a sparse article in the thread hashtb.
16334
16335 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
16336
16337         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
16338         (nnmail-expand-newtext): Lowercase expanded entries if
16339         nnmail-split-lowercase-expanded is non-nil.
16340
16341 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16342
16343         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
16344
16345         * gnus-group.el (gnus-group-line-format-alist): Convert the value
16346         of gnus-tmp-news-method into string under XEmacs.  It will be
16347         passed to gnus-correct-length which takes only a string argument.
16348
16349 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16350
16351         * gnus-util.el (gnus-bind-print-variables): New macro.
16352         (gnus-prin1): Use it.
16353         (gnus-prin1-to-string): Use it.
16354         (gnus-pp): New function.
16355         (gnus-pp-to-string): New function.
16356
16357         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
16358         Replace pp-to-string with gnus-pp-to-string.
16359         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
16360         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
16361         * gnus-msg.el (gnus-debug): Ditto.
16362         * gnus-score.el (gnus-score-save): Ditto.
16363         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
16364         gnus-pp-to-string.
16365         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
16366         with gnus-pp.
16367         * score-mode.el (gnus-score-pretty-print): Ditto.
16368         * webmail.el (webmail-debug): Ditto.
16369
16370 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16371
16372         * gnus-art.el (article-display-face, article-display-x-face):
16373         Use buffer-read-only.
16374
16375 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16376
16377         * gnus-art.el (article-hide-list-identifiers):
16378         Bind inhibit-read-only as t.
16379
16380 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
16381
16382         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
16383
16384 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16385
16386         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
16387         (gnus-narrow-to-page): Don't assume point-min == 1.
16388         (gnus-article-edit-mode): Derive from message-mode.
16389
16390         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
16391         point-min == 1.
16392
16393         * imap.el (imap-parse-address-list, imap-parse-body-ext):
16394         Disable incorrect use of `assert'.
16395
16396         * message.el (message-mode): Set comment-start-skip.
16397
16398
16399 2004-08-22  Sam Steingold  <sds@gnu.org>
16400
16401         * pop3.el (pop3-leave-mail-on-server): New user variable.
16402         (pop3-movemail): Delete mail only when it is nil.
16403
16404 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
16405
16406         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
16407
16408         * mml.el (mml-preview): Use `pop-to-buffer'.
16409
16410         * message.el (message-goto-mail-followup-to): Insert after "To".
16411         (message-carefully-insert-headers): Add comment.
16412
16413         * gnus.el: Remove unused variable `gnus-article-check-size'.
16414
16415         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
16416
16417         * gnus-art.el (gnus-button-alist):
16418         Improve `gnus-button-handle-library' entry.
16419
16420 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
16421
16422         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
16423         Use downcase, since XEmacs capitalizes error messages differently.
16424
16425 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
16426
16427         * nntp.el: Add (require 'gnus) due to reference to
16428         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
16429
16430 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
16431
16432         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
16433         Bind `mm-fill-flowed'.
16434
16435         * mm-decode.el (mm-dissect-singlepart): Check it.
16436
16437 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
16438
16439         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
16440         'imap' for netrc parsing.
16441
16442 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
16443
16444         * mailcap.el (mailcap-mime-data): Mark as risky.
16445
16446 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16447
16448         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
16449         may be included in the encoded word.
16450         (rfc2047-encode): Don't append a space if the encoded word
16451         includes close parenthesis.
16452
16453 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16454
16455         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
16456         of text within parentheses.
16457
16458 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
16459
16460         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
16461         (gnus-encrypt-write-file-contents): Make the password key the file
16462         name PLUS the cipher, not just the cipher.  Also remove failed
16463         passwords from the cache.
16464
16465 2004-08-06  Simon Josefsson  <jas@extundo.com>
16466
16467         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
16468         Doc fix.
16469
16470 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16471
16472         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
16473         LWSP.
16474
16475 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
16476
16477         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16478         Try to append in-reply-to: data to the references: header.
16479
16480         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
16481         (netrc-parse): Use gnus-encrypt.el functions.
16482
16483         * gnus-encrypt.el: Add new file for encryption support; currently
16484         does only a few GPG ciphers and an internal XOR cipher.
16485
16486         * password.el: Add comments on using password-read-and-add.
16487         (password-read-and-add): Add function to read and add the
16488         password to the cache at once.
16489
16490 2004-07-28  Simon Josefsson  <jas@extundo.com>
16491
16492         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
16493         parameter (but don't use it, for now).
16494
16495         * imap.el (imap-ssl-open): Use imap-process-connection-type,
16496         instead of hard coding to nil.
16497
16498 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16499
16500         * mm-view.el (mm-inline-image-emacs): Open lines under an image
16501         as mm-inline-image-xemacs does.
16502
16503 2004-07-26  Simon Josefsson  <jas@extundo.com>
16504
16505         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
16506         Revert part of 2004-07-17 change below.
16507
16508 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16509
16510         * rfc2047.el (rfc2047-encode-region): Don't infloop.
16511         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
16512
16513 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16514
16515         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
16516         quotes that actually start with ">" at the beginning of the
16517         lines.
16518
16519 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16520
16521         * rfc2047.el (rfc2047-encode-region): Fix last change.
16522         (rfc2047-encode-parameter): Remove useless concat.
16523
16524 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16525
16526         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
16527         encode special characters; fix some kind of misconfigured headers;
16528         signal a real error if debug-on-quit or debug-on-error is non-nil.
16529         (rfc2047-encode-max-chars): New variable.
16530         (rfc2047-encode-1): Use it.
16531         (rfc2047-encode-parameter): New function.
16532
16533         * mml.el (mml-insert-parameter): Remove an excessive space.
16534
16535 2004-07-17  Simon Josefsson  <jas@extundo.com>
16536
16537         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
16538         Kai Grossjohann <kai@emptydomain.de>.
16539         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
16540         (gnus-group-make-menu-bar): Ditto.
16541
16542         * gnus-util.el (gnus-group-server): Add.
16543
16544 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
16545
16546         * message.el (message-clone-locals): Clone sendmail and smtp
16547         variables.
16548
16549 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16550
16551         * rfc2047.el (rfc2047-encode-region): Fix last change.
16552
16553 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16554
16555         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
16556         characters as non-special.
16557
16558 2004-07-09  Simon Josefsson  <jas@extundo.com>
16559
16560         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
16561         Users will lose all flag changes made while unplugged with
16562         e.g. nntp unless flag synchronization happens, thus `nil' is not a
16563         good default.  See numerous reports on ding mailing list.
16564
16565 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16566
16567         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
16568         add generate-head-function and generate-article-function to the
16569         rfc822-forward entry.
16570         (nndoc-rfc822-forward-generate-article): New function.
16571         (nndoc-rfc822-forward-generate-head): New function.
16572
16573         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
16574
16575 2004-07-06  Dan Christensen  <jdc@uwo.ca>
16576
16577         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
16578         respect display group parameter and gnus-summary-expunge-below.
16579         (gnus-articles-to-read): Remove unused reference to display group
16580         parameter.
16581
16582 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16583
16584         * nnheader.el (nnheader-uniquify-message-id): New experimental
16585         variable.
16586         (nnheader-nov-read-message-id): Use it.
16587
16588         * spam-report.el (spam-report-gmane): Add interactive.
16589
16590 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16591
16592         * mm-encode.el (mm-content-transfer-encoding-defaults):
16593         Use qp-or-base64 for the application/* types.
16594
16595 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
16596
16597         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
16598
16599 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
16600
16601         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
16602         trim value.
16603
16604 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
16605
16606         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
16607         New macro and function.
16608         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
16609
16610 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16611
16612         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
16613         after-load-alist.
16614
16615 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16616
16617         * gnus-group.el (gnus-group-get-new-news-this-group):
16618         Don't update info that isn't there.
16619
16620 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
16621
16622         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
16623         entry.
16624
16625 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16626
16627         * mm-view.el (mm-inline-render-with-function): Use multibyte
16628         buffer; decode html source by charset.
16629
16630         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
16631
16632         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
16633         Mule-UCS is loaded under XEmacs.
16634         (mm-mime-mule-charset-alist): Avoid duplicated entries.
16635
16636 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
16637
16638         * nnheader.el (nnheader-max-head-length): Increase to 8192.
16639
16640 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16641
16642         * mm-util.el (mm-coding-system-p): Return a coding-system.
16643         (mm-mime-mule-charset-alist): Use shift_jis instead of
16644         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
16645         entries for the mime charsets iso-2022-jp-3 and shift_jis.
16646         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
16647         instead of japanese-shift-jis and iso-latin-1 respectively in
16648         order to share the default value with both Emacs and XEmacs-mule.
16649         (mm-mule-charset-to-mime-charset):
16650         Make mm-coding-system-priorities effective.
16651         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
16652         while predicating of candidates upon the priorities.
16653
16654 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
16655
16656         * gnus-sum.el (gnus-summary-make-menu-bar):
16657         Add gnus-uu-invert-processable.
16658
16659         * gnus.el: Autoload gnus-uu-invert-processable.
16660
16661 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16662
16663         * mm-util.el (mm-with-multibyte-buffer): New macro.
16664
16665         * rfc2047.el (rfc2047-encode-string): Use it.
16666         (rfc2047-encode-region): Move point to the end of the region after
16667         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
16668
16669 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16670
16671         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
16672         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
16673
16674 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16675
16676         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
16677         (gnus-cite-parse): Ignore quoted envelope From_.
16678         Suggested by Karl Chen <quarl@nospam.quarl.org>.
16679
16680 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
16681
16682         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
16683         invalid addresses.
16684
16685 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
16686
16687         * spam.el: Change section markers, revise TODO list.
16688         (spam-backends): Make new master list of all installed backends.
16689         (spam-summary-exit-behavior): Add new variable to determine how
16690         messages moves are done at summary exit.
16691         (spam-move-spam-nonspam-groups-only)
16692         (spam-process-ham-in-nonham-groups)
16693         (spam-process-ham-in-spam-groups): Remove variables, the
16694         spam-summary-exit-behavior variable should be used to manage this
16695         behavior.
16696         (spam-old-ham-articles, spam-old-spam-articles): Remove.
16697         (spam-old-articles): Add variable, replacing spam-old-ham-articles
16698         and spam-old-spam-articles.
16699         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
16700         Add empty variables, placeholders for the backends they represent.
16701         (spam-set-difference): Move, unchanged.
16702         (spam-list-of-processors): Declare OBSOLETE, not used anymore
16703         unless the user has a processor variable.
16704         (spam-classifications, spam-classification-valid-p)
16705         (spam-backend-properties, spam-backend-property-valid-p)
16706         (spam-backend-function-type-valid-p)
16707         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
16708         (spam-report-articles-gmane, spam-report-articles-resend):
16709         Remove functions, they are not needed.
16710         (spam-install-backend-super, spam-backend-list)
16711         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
16712         (spam-backend-function, spam-backend-ham-registration-function)
16713         (spam-backend-spam-registration-function)
16714         (spam-backend-ham-unregistration-function)
16715         (spam-backend-spam-unregistration-function)
16716         (spam-backend-statistical-p, spam-backend-mover-p)
16717         (spam-install-backend-alias, spam-install-checkonly-backend)
16718         (spam-install-mover-backend, spam-install-nocheck-backend)
16719         (spam-install-backend, spam-install-statistical-backend)
16720         (spam-install-statistical-checkonly-backend): Add backend installation
16721         support.
16722         (spam-summary-prepare-exit): Rewrite to use the new backend code.
16723         (spam-group-processor-p): Use the new backend code and respect the
16724         summary exit behavior.
16725         (spam-mark-spam-as-expired-and-move-routine): Remove.
16726         (spam-summary-prepare): Change to use the new spam-old-articles
16727         variable.
16728         (spam-copy-or-move-routine, spam-copy-spam-routine)
16729         (spam-move-spam-routine, spam-copy-ham-routine)
16730         (spam-move-ham-routine): Add code to copy/move ham or spam.
16731         (spam-fetch-field-fast): Improve doc and code, plus allow the
16732         'number request.
16733         (spam-list-of-checks, spam-list-of-statistical-checks):
16734         Remove variables.
16735         (spam-split, spam-find-spam): Use the new backend code.
16736         (spam-registration-functions): Remove variable.
16737         (spam-unregister-routine): Add convenience wrapper.
16738         (spam-log-undo-registration, spam-register-routine)
16739         (spam-log-processing-to-registry)
16740         (spam-log-unregistration-needed-p): Rename "check" to "backend"
16741         where possible.
16742         (spam-check-gmane-xref, spam-check-regex-headers)
16743         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
16744         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
16745         (spam-check-bogofilter-headers, spam-check-spamoracle)
16746         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
16747         (spam-check-crm114-headers): Use the spam-split-group that
16748         spam-split prepares, no need to determine it every time.
16749
16750         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
16751         to the nnheader-parse-naked-head call.
16752
16753         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
16754
16755         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
16756         the nnheader-nov-read-message-id call.
16757
16758 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16759
16760         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
16761         gnus-activate-group twice.  Suggested by Markus Peter
16762         <warp@spin.de>.
16763
16764 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16765
16766         * gnus-art.el (gnus-article-time-format): Exchange the order of
16767         day and month in the default value; fix customization type.
16768         (article-date-ut): Use add-text-properties.
16769         (article-make-date-line): Use message-make-date instead of
16770         current-time-string.
16771
16772         * message.el (message-fetch-field): Don't use set-text-properties.
16773         (message-make-date): Simplify.
16774
16775         * messagexmas.el (message-xmas-make-date): New function.
16776         (message-xmas-redefine): Defalias message-make-date to it.
16777
16778 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16779
16780         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
16781         (rfc2047-encode-region): Treat text within parentheses as special;
16782         show the original text when error has occurred.
16783
16784         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
16785         already-computed method to gnus-activate-group.
16786
16787         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
16788         same select-methods identical Lisp objects.
16789
16790         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
16791         object when modifying the info.
16792
16793 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16794
16795         * gnus-srvr.el (gnus-server-set-info): Remove the server from
16796         gnus-opened-servers since it has never been opened with the new
16797         configuration yet.
16798
16799 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16800
16801         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
16802         arg to nnheader-generate-fake-message-id.
16803
16804 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
16805
16806         * nnheader.el (nnheader-generate-fake-message-id): Accept a
16807         number and build a fake message ID localized to a group and
16808         article number (so it's repeatable from that point on).
16809         (nnheader-fake-message-id-p): Change regex to accomodate new fake
16810         ID format.
16811
16812         * gnus-sum.el (gnus-get-newsgroup-headers):
16813         Call nnheader-generate-fake-message-id with the article number.
16814
16815 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
16816
16817         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
16818         end-of-buffer.
16819
16820 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16821
16822         * message.el (message-ignored-supersedes-headers): Add Approved.
16823
16824 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16825
16826         * rfc2047.el (rfc2047-encode-message-header): Remove useless
16827         goto-char.
16828         (rfc2047-encode): Fold the line before encoding.
16829
16830 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16831
16832         * rfc2047.el (rfc2047-encode-message-header): Disabled header
16833         folding -- not all headers can be folded, and this should be done
16834         by the message composition mode.  Probably.  I think.
16835
16836 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16837
16838         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
16839         fast.
16840
16841         * gnus-ems.el (gnus-remove-image): Don't use
16842         message-text-with-property; remove only the image found first.
16843
16844         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
16845         found first.
16846
16847 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
16848
16849         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
16850
16851 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16852
16853         * message.el (message-text-with-property): Make it fast and accept
16854         optional arguments.
16855         (message-strip-forbidden-properties): Use it.
16856         (message-fix-before-sending): Follow the m-t-w-p change.
16857
16858         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
16859
16860 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16861
16862         * gnus-art.el (article-hide-headers): Don't change the buffer
16863         mistakenly when performing mml-preview even if
16864         gnus-single-article-buffer is nil.
16865
16866 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
16867
16868         * message.el (message-expand-name-databases): New user option.
16869         (message-expand-name): Use it.
16870
16871 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
16872
16873         * spam.el (spam-report-articles-resend)
16874         (spam-report-resend-register-routine): Allow ham reporting.
16875         (spam-report-resend-register-ham-routine): Add wrapper.
16876         (spam-registration-functions): Add ham resending functions.
16877         (spam-list-of-processors): Add ham resend processor.
16878
16879         * gnus.el (ham-resend-to): Add new group parameter.
16880         (spam-process): Add ham resend option.
16881
16882         * spam-report.el (spam-report-resend): Allow reporting ham.
16883         (spam-report-resend-ham): Add wrapper.
16884
16885 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16886
16887         * message.el (message-cite-articles-with-x-no-archive):
16888         New variable.
16889         (message-cite-original): Use it.
16890
16891 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16892
16893         * message.el (message-cite-original): Respect X-No-Archive.
16894
16895 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16896
16897         * gnus-art.el (article-hide-headers): Refer to the values for
16898         gnus-ignored-headers and gnus-visible-headers in the summary
16899         buffer since a user may have set them as group parameters.
16900
16901 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
16902
16903         * assistant.el (assistant-node-name): Add convenience function.
16904         (assistant-render-text, assistant-render-node): Add error handling,
16905         plus handle multiple next nodes.
16906         (assistant-find-next-node): Comment out for now.
16907         (assistant-find-next-nodes): Add function, returns list of next
16908         nodes.
16909
16910 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
16911
16912         * mail-source.el (mail-source-directory): Fix doc-string.
16913
16914 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
16915
16916         * assistant.el (assistant-render-text, assistant-eval): Add :set
16917         widget type, which is different because it takes and returns a
16918         list.  Much hilarity ensues.
16919
16920 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
16921
16922         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
16923
16924         * gnus-group.el (gnus-group-get-new-news-this-group):
16925         Add doc-string.
16926
16927         * gnus-start.el (gnus-activate-group): Add doc-string.
16928
16929 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16930
16931         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
16932
16933 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
16934
16935         * assistant.el (assistant-render-text): Try to add a :set
16936         widget, more to come.
16937
16938         * spam.el (spam-group-spam-contents-p): Handle empty groupname
16939         strings.
16940         (spam-report-articles-resend)
16941         (spam-register-routine): Do registration iff any articles warrant
16942         it.
16943         (spam-summary-prepare-exit): Change log message for nil group
16944         destinations.
16945
16946 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
16947
16948         * spam.el (spam-report-resend-register-routine):
16949         Allow spam-report-resend-to to be a group parameter or a global value.
16950
16951 2004-05-26  Simon Josefsson  <jas@extundo.com>
16952
16953         * starttls.el: Merge with my GNUTLS based starttls.el.
16954         (starttls-gnutls-program, starttls-use-gnutls)
16955         (starttls-extra-arguments, starttls-process-connection-type)
16956         (starttls-connect, starttls-failure, starttls-success):
16957         New variables.
16958         (starttls-program, starttls-extra-args): Doc fix.
16959         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
16960         New functions.
16961         (starttls-negotiate, starttls-open-stream):
16962         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
16963         function if it is set.
16964
16965 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16966
16967         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
16968         structured fields.
16969
16970 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16971
16972         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
16973
16974 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
16975
16976         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
16977         Add variable.
16978         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
16979         assigning the spam-mark to new messages.
16980
16981 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
16982
16983         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
16984
16985 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16986
16987         * dgnushack.el: Autoload customize-set-variable for XEmacs.
16988
16989         * rfc2047.el (rfc2047-encodable-p): Don't move point.
16990         (rfc2047-decode): Treat the ascii coding-system as raw-text by
16991         default.
16992
16993 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
16994
16995         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
16996         correct data.
16997
16998 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
16999
17000         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
17001         (spam-group-processor-p): Fix function.
17002         (spam-group-processor-multiple-p)
17003         (spam-group-spam-processor-report-gmane-p)
17004         (spam-group-spam-processor-report-resend-p)
17005         (spam-group-spam-processor-bogofilter-p)
17006         (spam-group-spam-processor-blacklist-p)
17007         (spam-group-spam-processor-ifile-p)
17008         (spam-group-ham-processor-ifile-p)
17009         (spam-group-spam-processor-spamoracle-p)
17010         (spam-group-spam-processor-crm114-p)
17011         (spam-group-ham-processor-bogofilter-p)
17012         (spam-group-spam-processor-stat-p)
17013         (spam-group-ham-processor-stat-p)
17014         (spam-group-ham-processor-whitelist-p)
17015         (spam-group-ham-processor-BBDB-p)
17016         (spam-group-ham-processor-spamoracle-p)
17017         (spam-group-ham-processor-copy-p): Remove functions with some
17018         prejudice against unneeded code.
17019         (spam-report-articles-resend)
17020         (spam-report-resend-register-routine): Allow the group/topic
17021         spam-resend-to value to override spam-report-resend-to.
17022         (spam-summary-prepare-exit): Invoke spam-group-processor-p
17023         properly now.
17024
17025         * gnus.el (spam-resend-to): Add group/topic parameter.
17026         (spam-process): Move the OBSOLETE processors to the end of the
17027         choices.
17028
17029 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
17030
17031         * spam-report.el (spam-report-resend-to, spam-report-resend):
17032         Start with resend-to set to nil, and then ask the user if necessary.
17033         (spam-report-resend): spam-report-resend takes a list of articles, not
17034         separate article numbers.
17035
17036 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17037
17038         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
17039         addition to emacs-w3m.
17040
17041 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17042
17043         * assistant.el (assistant-authinfo-data): New function.
17044         (assistant-eval): Eval for entire assistant.
17045
17046         * netrc.el (netrc-services-file): New variable.
17047         (netrc-parse-services): New function.
17048         (netrc-find-service-name): New function.
17049         (netrc-find-service-number): New function.
17050         (netrc-port-equal): New function.
17051         (netrc-machine): Use it.
17052
17053         * nnimap.el (nnimap-open-connection): Use netrc.
17054
17055         * gnus-util.el (gnus-netrc-get): Remove aliases.
17056
17057         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
17058
17059         * assistant.el (wid-edit): Fix compilation.
17060
17061         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
17062
17063 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
17064
17065         * gnus-util.el (gnus-set-file-modes): New function.  (small
17066         patch).
17067
17068 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17069
17070         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
17071
17072         * assistant.el (assistant-render-node): Fix up rendering and
17073         read-only text.
17074         (assistant-render-node): Reset.
17075         (assistant-make-read-only): Not sticky.
17076
17077 2004-05-20  Danny Siu  <dsiu@adobe.com>
17078
17079         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
17080         centered even when gnus-auto-center-summary is t.
17081
17082 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17083
17084         * dns.el (dns-get-txt-answer): New function.
17085         (dns-read-txt): Ditto.
17086         (query-dns): Use it.
17087
17088 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17089
17090         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
17091         active for foreign groups even if the group level is higher than
17092         the specified value.
17093
17094 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17095
17096         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
17097         non-active groups.
17098
17099         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
17100
17101 2004-05-20  Magnus Henoch  <mange@freemail.hu>
17102
17103         * dns.el (dns-read-type): Add support for SVR.  (small patch)
17104
17105 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
17106
17107         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
17108         (spam-crm114-header, spam-crm114-spam-switch)
17109         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
17110         (spam-crm114-positive-spam-header)
17111         (spam-crm114-database-directory, spam-list-of-processors)
17112         (spam-group-spam-processor-crm114-p)
17113         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
17114         (spam-generic-score, spam-list-of-checks)
17115         (spam-list-of-statistical-checks, spam-registration-functions)
17116         (spam-check-crm114-headers, spam-crm114-score)
17117         (spam-check-crm114, spam-crm114-register-with-crm114)
17118         (spam-crm114-register-spam-routine)
17119         (spam-crm114-unregister-spam-routine)
17120         (spam-crm114-register-ham-routine)
17121         (spam-crm114-unregister-ham-routine): Add CRM114 support.
17122         From asjo@koldfront.dk (Adam Sjøgren).
17123
17124         * gnus.el: Add spam-use-crm114.
17125
17126         * spam.el (spam-list-of-processors, spam-registration-functions):
17127         Add spam-use-resend.
17128         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
17129         (spam-report-articles-gmane): Add doc fix.
17130         (spam-report-articles-resend, spam-report-resend-register-routine):
17131         Add wrappers around spam-report-resend-to.
17132
17133         * spam-report.el (spam-report-resend-to, spam-report-resend):
17134         Add support for resending spam.
17135         (spam-report-gmane): Fix line length >80.
17136
17137         * gnus.el (spam-process): Add spam-use-resend.
17138
17139 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17140
17141         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
17142         number of processed spam messages.
17143         (spam-ham-copy-or-move-routine): Return the number of processed
17144         ham messages.
17145         (spam-summary-prepare-exit): Use the above values to decide
17146         whether status messages shouled be displayed.
17147
17148 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17149
17150         * rfc2047.el (rfc2047-encode-function-alist): Rename from
17151         `rfc2047-encoding-function-alist' in order to avoid conflicting
17152         with the old version.
17153         (rfc2047-encode-region): Concatenate words containing non-ASCII
17154         characters in structured fields; don't encode space-delimited
17155         ASCII words even in unstructured fields; don't break words at
17156         char-category boundaries.
17157         (rfc2047-encode-1): New function.
17158         (rfc2047-encode): Use it; encode text so that it occupies the
17159         maximum width within 76-column; work correctly on Q encoding for
17160         iso-2022-* charsets.
17161         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
17162         sure not to break a line just after the header name.
17163         (rfc2047-b-encode-region): Remove.
17164         (rfc2047-b-encode-string): New function.
17165         (rfc2047-q-encode-region): Remove.
17166         (rfc2047-q-encode-string): New function.
17167
17168         * mm-util.el (mm-replace-in-string): New function.
17169
17170 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17171
17172         * gnus-msg.el (gnus-inews-make-draft-meta-information):
17173         Really get it right.
17174         (gnus-inews-make-draft): Really.
17175
17176 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
17177
17178         * nnmh.el (nnmh-request-list-1): Don't check the link count
17179         before descending.  (small patch)
17180
17181 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17182
17183         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
17184         stuff.
17185
17186         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
17187         Match on real group name.
17188
17189         * gnus-art.el (gnus-signature-limit): Doc fix.
17190
17191         * gnus-msg.el (gnus-inews-make-draft): Quote list.
17192
17193         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
17194
17195 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
17196
17197         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
17198         isn't a string.
17199
17200 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17201
17202         * gnus-draft.el (gnus-draft-send):
17203         Bind rfc2047-encode-encoded-words.
17204
17205         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
17206         (rfc2047-encodable-p): Say that =? needs encoding.
17207         (rfc2047-encode-encoded-words): New variable.
17208
17209         * gnus-group.el (gnus-group-select-group): Doc fix.
17210
17211         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
17212
17213         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
17214         to nil.
17215
17216         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
17217
17218         * nnheader.el (nnheader-get-lines-and-char): New function.
17219
17220 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
17221
17222         * gnus-msg.el (gnus-summary-followup-with-original):
17223         Document yanking of region when active.
17224
17225 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17226
17227         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
17228         groups if the group level is higher than the specified value.
17229
17230 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17231
17232         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
17233         (gnus-group-jump-to-group): Add prefix argument using
17234         `gnus-group-jump-to-group-prompt'.  Query before jumping to
17235         non-active group.
17236
17237         * compface.el (uncompface): Be verbose when changing
17238         `uncompface-use-external'.
17239
17240         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
17241         handle manual section.
17242
17243 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17244
17245         * gnus-art.el (gnus-button-alist): Revert previous change.
17246
17247 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17248
17249         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
17250
17251 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17252
17253         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
17254         whether backend can accept message.
17255
17256         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
17257
17258 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
17259
17260         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
17261         Avoid creating directory when nntp-marks-is-evil is true.
17262         Reported by Reiner Steib.
17263
17264 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17265
17266         * gnus-picon.el (gnus-picon-style): New variable.
17267         (gnus-picon-insert-glyph): Add optional `nostring' argument.
17268         (gnus-picon-transform-address): Support `gnus-picon-style'.
17269         From Jesper Harder <harder@ifa.au.dk>.
17270
17271 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17272
17273         * message.el (message-fill-field): Return point.
17274         (message-generate-headers): Go to end of field.
17275
17276         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
17277         stuff for non-living groups.
17278
17279 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
17280
17281         * gnus-art.el (gnus-article-followup-with-original)
17282         (gnus-article-reply-with-original): gnus-mark-active-p ->
17283         gnus-region-active-p.
17284
17285 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
17286
17287         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
17288         only when there is spam or ham to be processed.
17289
17290 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17291
17292         * mail-source.el (mail-source-delete-crash-box): Refactor.
17293         (mail-source-fetch): Use it.
17294         (mail-source-fetch-file): Ditto.
17295         (mail-source-fetch-directory): Run postscript in loop.
17296         (mail-source-fetch-pop): Delete.
17297         (mail-source-fetch-maildir): Ditto.
17298         (mail-source-fetch-imap): Ditto.
17299
17300         * imap.el (imap-authenticators): Comment out sasl.
17301
17302         * message.el (message-skip-to-next-address): New function.
17303         (message-fill-header-address): Refactor.
17304         (message-fill-address): Use it.
17305         (message-delete-address): Use it.
17306         (message-fill-header-general): Refactor.
17307         (message-fill-field-address): Rename.
17308         (message-narrow-to-field): Find the start of the header.
17309         (message-header-format-alist): Don't pre-fill.
17310         (message-fill-header): Remove.
17311         (message-insert-header): New function.
17312         (message-shorten-references): Use it.
17313
17314         * rfc2047.el (rfc2047-field-value): Strip props.
17315
17316         * mail-parse.el (mail-header-make-address): New alias.
17317
17318         * ietf-drums.el (ietf-drums-make-address): New function.
17319
17320         * imap.el: Add compiler directives.
17321
17322         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
17323
17324         * gnus-art.el (article-decode-idna-rhs): Don't use
17325         message-idna-inside-rhs-p.
17326
17327 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17328
17329         * message.el (message-idna-inside-rhs-p): Remove.
17330         (message-idna-to-ascii-rhs-1): Use proper address parsing.
17331
17332         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
17333         false positives.
17334
17335 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
17336
17337         * imap.el (imap-sasl-make-mechanisms): Use sasl.
17338
17339 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17340
17341         * nneething.el (nneething-file-name): Don't create spurious
17342         files.
17343
17344         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
17345         (gnus-inews-do-gcc): Remove sleep.
17346
17347         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
17348         part under point.
17349
17350         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
17351         (gnus-agent-regenerate-group): Using nil messages aren't valid.
17352
17353 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
17354
17355         * spam.el (spam-summary-prepare-exit): Fix (length).
17356
17357 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
17358
17359         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
17360         as expired without moving it" message when there are spam
17361         messages left.
17362
17363 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
17364
17365         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
17366         header is not nil.
17367
17368 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
17369
17370         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
17371         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
17372         (nntp-marks-changed-p): New arg SERVER.
17373         (nntp-request-update-info): Adjust caller.
17374
17375 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
17376
17377         * nntp.el (nntp-save-marks): Pass missing arg.
17378
17379 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
17380
17381         * nntp.el: Support marks.
17382         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
17383         (nntp-marks-modtime, nntp-marks-directory): New variables.
17384         (nntp-request-set-mark, nntp-request-update-info)
17385         (nntp-possibly-create-directory, nntp-marks-changed-p)
17386         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
17387         New functions.
17388
17389 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
17390
17391         * gnus-xmas.el (gnus-xmas-select-lowest-window)
17392         (gnus-xmas-redefine): Rename.
17393
17394         * gnus-score.el (gnus-score-insert-help):
17395         Use gnus-select-lowest-window.
17396
17397         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
17398         appt-select-lowest-window and rename to gnus-select-lowest-window.
17399
17400         * gnus.el: do.
17401
17402 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17403
17404         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
17405         encodings of MIME-encoded words, in order to improve
17406         interoperability with several broken MUAs.
17407
17408 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17409
17410         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
17411         tags, only when charsets are not specified in headers.
17412         (mm-inline-text-html-render-with-w3m): Ditto.
17413
17414         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
17415         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
17416
17417 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17418
17419         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
17420         instead of MIME-decoded from fields when checking
17421         `gnus-article-address-banner-alist'.
17422
17423 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
17424
17425         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
17426         description rather than subject.
17427
17428 2004-05-02  Steve Youngs  <steve@youngs.au.com>
17429
17430         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
17431
17432 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17433
17434         * gnus.el (gnus-version-number): Bump.
17435
17436 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17437
17438         * gnus.el: No Gnus v0.2 is released.
17439
17440 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17441
17442         * gnus-agent.el (gnus-agent-read-agentview):
17443         Inline gnus-uncompress-range.
17444
17445 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17446
17447         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
17448         `exec-installed-p'.
17449
17450 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17451
17452         * gnus.el (spam-process, spam-autodetect-methods):
17453         Add bsfilter and bsfilter-headers.
17454
17455         * spam.el (spam-bsfilter): New customize group.
17456         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
17457         (spam-bsfilter-header, spam-bsfilter-probability-header)
17458         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
17459         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
17460         (spam-bsfilter-database-directory): New options.
17461         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
17462         (spam-list-of-statistical-checks, spam-registration-functions):
17463         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
17464         (spam-bsfilter-score): New command.
17465         (spam-check-bsfilter-headers, spam-check-bsfilter)
17466         (spam-bsfilter-register-with-bsfilter)
17467         (spam-bsfilter-register-spam-routine)
17468         (spam-bsfilter-unregister-spam-routine)
17469         (spam-bsfilter-register-ham-routine)
17470         (spam-bsfilter-unregister-ham-routine): New functions.
17471         (spam-generic-score): Support bsfilter; Accept an optional argument
17472         to recalcurate spam score even if scoring header has already been
17473         added.
17474         (spam-bogofilter-score, spam-spamassassin-score): Accept an
17475         optional argument to recalcurate spam score even if scoring header
17476         has already been added.
17477
17478 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
17479
17480         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
17481         strings!  Reported by David D. Smith <davidsmith@acm.org>.
17482         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
17483         link is missing.
17484
17485 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
17486
17487         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
17488         (html2text-get-attr): Rewrite.
17489
17490         * message.el (message-setup-1): Remove redundant put-text-property
17491         on mail-header-separator.
17492
17493 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
17494
17495         * gnus-registry.el (gnus-registry-cache-whitespace)
17496         (gnus-registry-action, gnus-registry-spool-action)
17497         (gnus-registry-split-fancy-with-parent): Change message levels
17498         from 5 to 3 or 7, as needed.
17499
17500         * spam.el (spam-summary-prepare-exit)
17501         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
17502         (spam-split, spam-find-spam, spam-log-undo-registration)
17503         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
17504         level from 5 to 6.
17505
17506 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17507
17508         * gnus-ems.el: Autoload appt-select-lowest-window (revert
17509         2004-03-04 change).
17510
17511 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
17512
17513         * sieve-manage.el (sieve-manage-open):
17514         * nnweb.el (nnweb-insert-html):
17515         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
17516         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
17517         * nnspool.el (nnspool-request-group):
17518         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
17519         * nnml.el (nnml-request-update-info):
17520         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
17521         (nnmh-request-create-group, nnmh-update-gnus-unreads):
17522         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
17523         (nnimap-request-set-mark):
17524         * nnfolder.el (nnfolder-request-update-info):
17525         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
17526         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
17527         * gnus-uu.el (gnus-uu-find-articles-matching):
17528         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
17529         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
17530         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
17531         * gnus-nocem.el (gnus-nocem-scan-groups):
17532         * gnus-int.el (gnus-start-news-server):
17533         * gnus-group.el (gnus-group-make-kiboze-group)
17534         (gnus-group-browse-foreign-server):
17535         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
17536         Use mapc when appropriate.
17537
17538 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
17539
17540         FIXME: Make separate entries for each person.
17541
17542         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
17543         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
17544         <shields@msrl.com>:
17545
17546         * spam.el (spam-necessary-extra-headers): Get the extra headers we
17547         may need for spam sorting and scoring.
17548         (spam-user-format-function-S): Add user format function suitable for
17549         general use.
17550         (spam-article-sort-by-spam-status): Add sorting function for summary
17551         sorting.
17552         (spam-extra-header-to-number): Add function to get a score from a
17553         header.
17554         (spam-summary-score): Add function to get a numeric score from the
17555         headers.
17556         (spam-generic-score): Fix function doc, was in wrong place.
17557         (spam-initialize): Take symbols when it's run, and install the
17558         extra headers that spam-necessary-extra-headers thinks we need.
17559
17560 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
17561
17562         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
17563         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
17564
17565 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
17566
17567         * gnus-sum.el (gnus-set-global-variables)
17568         (gnus-build-all-threads, gnus-get-newsgroup-headers)
17569         (gnus-article-get-xrefs, gnus-summary-best-group)
17570         (gnus-summary-next-article, gnus-summary-enter-digest-group)
17571         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
17572         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
17573         Use with-current-buffer.
17574
17575 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
17576
17577         * spam.el (spam-summary-prepare-exit): Simplify logic.
17578         (spam-fetch-article-header): Read the article header if it's not
17579         available.
17580         (spam-list-articles): Simplify logic.
17581         (spam-filelist-register-routine): Fix bug with unregister-list.
17582
17583         * gnus-registry.el: Fix comments at beginning.
17584
17585 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
17586
17587         * message.el (message-cater-to-broken-inn): Remove.
17588         (message-shorten-references): Make sure the total folded length of
17589         References is shorter than 998 characters to cater to a bug in INN
17590         2.3.  Also, don't pretend that references aren't folded -- this
17591         hasn't worked for a while.
17592
17593 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17594
17595         * gnus-agent.el (gnus-agentize):
17596         gnus-agent-send-mail-real-function no longer set to current value
17597         of message-send-mail-function but rather a lambda that calls
17598         message-send-mail-function.  The change makes the agent real-time
17599         responsive to user changes to message-send-mail-function.
17600
17601 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17602
17603         * legacy-gnus-agent.el
17604         (gnus-agent-convert-to-compressed-agentview): Fix typos with
17605         help from Florian Weimer <fw@deneb.enyo.de>
17606
17607 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17608
17609         * nnmail.el (nnmail-cache-insert): Revert last change.
17610
17611 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17612
17613         * nnmail.el (nnmail-cache-insert): Always check whether
17614         nnmail-cache-ignore-groups matches a group name.
17615
17616 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
17617
17618         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
17619         (spam-find-spam, spam-log-processing-to-registry)
17620         (spam-log-registered-p, spam-log-unregistration-needed-p)
17621         (spam-log-undo-registration): Use gnus-message instead of
17622         gnus-error, none of these errors are fatal.
17623
17624         * gnus-registry.el (gnus-registry-clean-empty-function)
17625         (gnus-registry-clean-empty): Remove only empty entries without
17626         extra data.
17627
17628 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
17629
17630         * spam-stat.el (spam-stat-buffer-change-to-spam)
17631         (spam-stat-buffer-change-to-non-spam): Change (error) to
17632         (gnus-message 8) invocation.
17633
17634 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17635
17636         * nntp.el (nntp-via-netcat-command): New variable.
17637         (nntp-via-netcat-switches): New variable.
17638         (nntp-open-via-rlogin-and-netcat): New function.
17639         (nntp-open-connection-function): Doc fix.
17640         (nntp-telnet-command): Doc fix.
17641         (nntp-end-of-line): Doc fix.
17642         (nntp-via-rlogin-command): Doc fix.
17643         (nntp-via-user-name): Doc fix.
17644         (nntp-via-address): Doc fix.
17645
17646 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17647
17648         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
17649         error in Emacs 21.1.
17650
17651 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
17652
17653         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
17654
17655 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17656
17657         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
17658         (gnus-agent-with-refreshed-group): New macro.
17659         (gnus-agent-rename-group): New function.
17660         (gnus-agent-delete-group): New function.
17661         (gnus-agent-save-group-info): Use gnus-command-method when
17662         `method' parameter is nil.  Don't write nil entries into the
17663         active file.
17664         (gnus-agent-get-group-info): New function.
17665         (gnus-agent-fetch-articles):
17666         Use gnus-agent-update-files-total-fetched-for to increment disk space
17667         used.
17668         (gnus-agent-fetch-headers, gnus-agent-save-alist):
17669         Use gnus-agent-update-view-total-fetched-for to increment disk space
17670         used.
17671         (gnus-agent-get-local): Add optional parameters to avoid calling
17672         gnus-group-real-name and gnus-find-method-for-group.
17673         (gnus-agent-set-local): Delete stored entry if either min, or max,
17674         are nil.
17675         (gnus-agent-fetch-session): Reworded error/quit messages.
17676         On quit, use gnus-agent-regenerate-group to record existance of any
17677         articles fetched to disk before the quit occurred.
17678         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
17679         gnus-agent-update-view-total-fetched-for, and
17680         gnus-agent-update-files-total-fetched-for to decrement disk space
17681         used.
17682         (gnus-agent-retrieve-headers):
17683         Use gnus-agent-update-view-total-fetched-for to increment disk space
17684         used.
17685         (gnus-agent-regenerate-group): Replace gnus-group-update-group
17686         with gnus-agent-update-files-total-fetched-for to decrement disk
17687         space and fresh group buffer.
17688         (gnus-agent-inhibit-update-total-fetched-for): New variable.
17689         (gnus-agent-need-update-total-fetched-for): New variable.
17690         (gnus-agent-update-files-total-fetched-for): New function.
17691         (gnus-agent-update-view-total-fetched-for): New function.
17692         (gnus-agent-total-fetched-for): New function.
17693
17694         * gnus-cache.el (gnus-cache-save-buffers):
17695         Use gnus-cache-update-overview-total-fetched-for to change disk space
17696         used by this group.
17697         (gnus-cache-possibly-enter-article):
17698         Use gnus-cache-update-file-total-fetched-for to increment disk space
17699         used by this group.
17700         (gnus-cache-possibly-remove-article):
17701         Use gnus-cache-update-file-total-fetched-for to decrement disk space
17702         used by this group.
17703         (gnus-cache-generate-nov-databases): Purge total fetched cache.
17704         (gnus-cache-rename-group): New function.
17705         (gnus-cache-delete-group): New function.
17706         (gnus-cache-inhibit-update-total-fetched-for): New variable.
17707         (gnus-cache-need-update-total-fetched-for): New variable.
17708         (gnus-cache-with-refreshed-group): New macro.
17709         (gnus-cache-update-file-total-fetched-for): New function.
17710         (gnus-cache-update-overview-total-fetched-for): New function.
17711         (gnus-cache-rename-group-total-fetched-for): New function.
17712         (gnus-cache-delete-group-total-fetched-for): New function.
17713         (gnus-cache-total-fetched-for): New function.
17714
17715         * gnus-group.el: Require gnus-sum and autoload functions to
17716         resolve warnings when gnus-group.el compiled alone.
17717         (gnus-group-line-format): Documented new %F.
17718         (size of Fetched data) group line format; identifies disk space
17719         used by agent and cache.
17720         (gnus-group-line-format-alist): Defined new F format.
17721         (gnus-total-fetched-for): New function.
17722         (gnus-group-delete-group): No longer update
17723         gnus-cache-active-altered as gnus-request-delete-group now keeps
17724         the cache in sync.
17725         (gnus-group-list-active): Let the agent store a server's active
17726         list if currently plugged.
17727
17728         * gnus-int.el (gnus-request-delete-group):
17729         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
17730         local disk in sync with the server.
17731         (gnus-request-rename-group):
17732         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
17733         local disk in sync with the server.
17734
17735         * gnus-start.el (gnus-get-unread-articles):
17736         Cosmetic simplification to logic.
17737
17738         * gnus-util.el (gnus-rename-file): New function.
17739
17740 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
17741
17742         * mm-util.el (mm-image-load-path): Handle nil in load-path.
17743
17744 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
17745
17746         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
17747         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
17748
17749 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
17750
17751         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
17752         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
17753
17754 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
17755
17756         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
17757
17758 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
17759
17760         * spam.el (spam-set-difference): Add function to replace
17761         gnus-set-difference in spam.el.
17762         (spam-summary-prepare-exit): Use spam-set-difference.
17763
17764 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
17765
17766         * gnus-registry.el (gnus-registry-cache-file): Update to use
17767         gnus-dribble-directory OR gnus-home-directory OR ~.
17768         (gnus-registry-split-fancy-with-parent): Fix doc.
17769
17770 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17771
17772         * message.el (message-exchange-point-and-mark):
17773         Use message-mark-active-p.  Suggested by Jesper Harder
17774         <harder@ifa.au.dk>.
17775
17776 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17777
17778         * message.el (message-exchange-point-and-mark): Don't activate
17779         region if it was inactive.  Suggested by Hiroshi Fujishima
17780         <pooh@nature.tsukuba.ac.jp>.
17781
17782 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17783
17784         * gnus-art.el (article-display-face): Display Faces in the same
17785         order as X-Faces.
17786
17787 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17788
17789         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
17790
17791 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17792
17793         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
17794         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
17795         (gnus-article-mime-hierarchy): Remove.
17796         (gnus-article-mime-hierarchy-next): Remove.
17797         (gnus-article-mode): Revert 2004-03-19 change.
17798         (gnus-article-setup-buffer): Revert 2004-03-19 change.
17799         (gnus-insert-mime-button): Revert 2004-03-19 change.
17800         (gnus-mime-accumulate-hierarchy): Remove.
17801         (gnus-mime-enter-multipart): Remove.
17802         (gnus-mime-leave-multipart): Remove.
17803         (gnus-mime-display-part): Revert 2004-03-19 change.
17804         (gnus-mime-display-alternative): Revert 2004-03-19 change.
17805
17806         * mml.el (mml-preview): Revert 2004-03-19 change.
17807
17808 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
17809
17810         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
17811
17812 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17813
17814         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
17815         t while entering a file name using the mm-with-multibyte macro.
17816         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
17817
17818         * mm-util.el (mm-with-multibyte): New macro.
17819
17820 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17821
17822         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
17823         New user option.
17824         (gnus-mime-multipart-functions): Doc and customization fix.
17825         (gnus-article-mime-hierarchy): New variable.
17826         (gnus-article-mime-hierarchy-next): New variable.
17827         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
17828         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
17829         gnus-article-mime-hierarchy-next to nil.
17830         (gnus-insert-mime-button): Show hierarchy numbers.
17831         (gnus-mime-accumulate-hierarchy): New function.
17832         (gnus-mime-enter-multipart): New function.
17833         (gnus-mime-leave-multipart): New function.
17834         (gnus-mime-display-part): Recompute hierarchical MIME structure.
17835         (gnus-mime-display-alternative): Show hierarchy numbers.
17836
17837         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
17838         gnus-article-mime-hierarchy-next to nil.
17839
17840 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
17841
17842         * dns.el: Don't require gnus-xmas.
17843
17844 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
17845
17846         * mml.el (mml-generate-mime-1): Don't use format=flowed with
17847         inline PGP.
17848         (mml-menu): Disable mml-quote-region if mark is inactive.
17849
17850 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17851
17852         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
17853         when the group's active is not available.
17854
17855 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17856
17857         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
17858         error.
17859
17860 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
17861
17862         * imap.el (imap-store-password): New variable.
17863         (imap-interactive-login): Use it.
17864         Suggested by Mark Plaksin <happy@mcplaksin.org>.
17865
17866 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17867
17868         * gnus-art.el (gnus-article-read-summary-keys): Restore new
17869         window-start and hscroll to summary window.
17870
17871 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17872
17873         * gnus-start.el (gnus-convert-old-newsrc): Only write the
17874         conversion message to newsrc-dribble when an actual conversion is
17875         performed.
17876
17877 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
17878
17879         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
17880
17881 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17882
17883         * mm-decode.el (mm-complicated-handles): New function reviving
17884         former definition of mm-multiple-handles.
17885
17886         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
17887         (gnus-mime-delete-part): Use it.
17888
17889 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17890
17891         * gnus-agent.el (gnus-agent-read-local):
17892         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
17893         avoid the implicit assumption that they will always be equal.
17894         (gnus-agent-save-local): Bind buffer-file-coding-system, not
17895         coding-system-for-write, as the with-temp-file macro first prints
17896         to a buffer then saves the buffer.
17897
17898 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17899
17900         * gnus-art.el (gnus-article-edit-part): New function.
17901         (gnus-mime-save-part-and-strip): Use it; do query instead of
17902         signaling an error; don't use mm-multiple-handles.
17903         (gnus-mime-delete-part): Ditto.
17904
17905 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17906
17907         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
17908         old file versions.
17909         (gnus-group-prepare-hook): Remove function that converted list
17910         form of gnus-agent-expire-days to group properties.
17911
17912         * gnus-int.el: Autoload gnus-agent-regenerate-group.
17913         (gnus-request-accept-article): Re-indented.
17914
17915         * gnus-start.el (gnus-convert-old-newsrc): Registered new
17916         converters to handle old agent file formats.  Add logic for a
17917         "backup before upgrading warning".
17918         (gnus-convert-mark-converter-prompt): Developers can mark
17919         functions as needing (default), or not needing,
17920         gnus-convert-old-newsrc's "backup before upgrading warning".
17921         (gnus-convert-converter-needs-prompt): Tests whether the user
17922         should be protected from potentially irreversable changes by the
17923         function.
17924
17925         * legacy-gnus-agent.el: New.  Provides converters that are only
17926         loaded when gnus-convert-old-newsrc needs to call them.
17927
17928 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17929
17930         * mail-source.el (mail-source-touch-pop): Doc fix.
17931
17932         * message.el (message-smtpmail-send-it): Doc fix.
17933
17934 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
17935
17936         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
17937
17938         * nnmail.el (nnmail-split-fancy): do.
17939
17940         * gnus-kill.el (gnus-kill, gnus-execute): do.
17941
17942 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
17943
17944         * gnus-sum.el (gnus-widget-reversible-match)
17945         (gnus-widget-reversible-to-internal)
17946         (gnus-widget-reversible-to-external): New functions.
17947         (gnus-widget-reversible): New widget.
17948         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
17949
17950 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
17951
17952         * gnus-sum.el (gnus-thread-sort-functions)
17953         (gnus-article-sort-functions): Document `(not F)' items.
17954
17955 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
17956
17957         * spam.el (spam-use-gmane-xref): Add new backend.
17958         (spam-gmane-xref-spam-group): Add variable to control the name of the
17959         Gmane spam group.
17960         (spam-blackhole-servers, spam-blackhole-good-server-regex)
17961         (spam-regex-headers-spam, spam-regex-headers-ham)
17962         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
17963         (spam-list-of-checks): Add spam-use-gmane-xref to list of
17964         backends and checks.
17965         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
17966
17967         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
17968         an autodetect method.
17969
17970 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17971
17972         * gnus-int.el (gnus-request-accept-article): Inform the agent that
17973         articles are being added to a group.
17974         (gnus-request-replace-article): Inform the agent that articles
17975         need to be uncached as the cached contents are no longer valid.
17976
17977 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17978
17979         * binhex.el: Don't autoload executable-find.
17980
17981         * canlock.el: Don't autoload mail-fetch-field.
17982
17983         * dgnushack.el: Autoload c-mode for XEmacs.
17984
17985         * gnus-ems.el: Don't autoload appt-select-lowest-window.
17986
17987         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
17988         rmail-dont-reply-to and rmail-output.
17989
17990         * gnus-score.el: Don't autoload ffap-string-at-point.
17991
17992         * gnus-setup.el: Don't autoload sc-cite-original.
17993
17994         * imap.el: Don't autoload base64-decode-string,
17995         base64-encode-string and md5.
17996
17997         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
17998         and rmail-msg-restore-non-pruned-header.
17999
18000         * mm-decode.el: Don't autoload executable-find.
18001
18002         * mm-url.el: Don't autoload executable-find.
18003
18004         * mm-view.el: Don't autoload diff-mode.
18005
18006         * nndb.el: Don't autoload news-reply-mode, news-setup,
18007         cancel-timer and telnet.
18008
18009         * password.el: Don't autoload run-at-time for Emacs.
18010
18011         * sha1-el.el: Don't autoload executable-find.
18012
18013         * sieve-mode.el: Don't autoload c-mode.
18014
18015         * uudecode.el: Don't autoload executable-find.
18016
18017 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18018
18019         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
18020         (gnus-agent-possibly-alter-active): Avoid null in numeric
18021         comparison.
18022         (gnus-agent-set-local): Refuse to save null in local object table.
18023         (gnus-agent-regenerate-group): The REREAD parameter can now be a
18024         list of articles that will be marked as unread.
18025
18026 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18027
18028         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
18029
18030 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
18031
18032         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
18033         language tags.
18034
18035 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
18036
18037         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
18038         Don't bind "obarray".
18039
18040         * gnus-sum.el (gnus-thread-sort-functions):
18041         Add `gnus-thread-sort-by-most-recent-number' and
18042         `gnus-thread-sort-by-most-recent-date'.
18043         Reported by Kai Grossjohann <kai@emptydomain.de>.
18044
18045 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18046
18047         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
18048
18049 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18050
18051         * gnus-cus.el (gnus-agent-customize-category):
18052         Remove ignore-errors macro reference that required cl to be loaded at
18053         run-time.
18054
18055         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
18056         single-interval range of the form (min . max).  Previously the
18057         range had to look like ((min . max)).  Likewise, return
18058         (min . max) rather than ((min . max)).
18059         (gnus-range-map): Use gnus-range-normalize to accept
18060         single-interval range.
18061
18062         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
18063         the cache, but not the agent, now appear with their usual face.
18064
18065         * dgnushack.el (loaddir): New variable that is bound to the
18066         directory containing the dgnushack.el file. Use loaddir, rather
18067         than srcdir, to update load-path. Change lets dgnushack compile
18068         code in directories other than GNUS/lisp.
18069
18070 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18071
18072         * lpath.el: Don't bind w3m-safe-url-regexp.
18073
18074         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
18075         w3m-safe-url-regexp variable buffer-local.
18076
18077         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
18078
18079 2004-02-27  Simon Josefsson  <jas@extundo.com>
18080
18081         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
18082         gnus-group-real-prefix.
18083         (gnus-summary-move-article): Use it, instead of
18084         gnus-group-real-prefix.
18085
18086 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18087
18088         * lpath.el: Bind w3m-safe-url-regexp.
18089
18090         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
18091         w3m-safe-url-regexp variable buffer-local and set it as the value
18092         of mm-w3m-safe-url-regexp.
18093
18094         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
18095
18096         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
18097         parsing gnus-posting-styles when the message is not for replying.
18098
18099         * dgnushack.el: Autoload sgml-mode for XEmacs.
18100
18101         * nnrss.el (nnrss-opml-export):
18102         Use mm-set-buffer-file-coding-system instead of
18103         set-buffer-file-coding-system.
18104
18105 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
18106
18107         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
18108         of checkdoc.el).
18109         * nnrss.el: do.
18110         * gnus-mlspl.el: do.
18111         * gnus-ml.el: do.
18112         * gnus-srvr.el: do.
18113
18114         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
18115
18116 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
18117
18118         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
18119         Corrections to custom-manual links.
18120
18121         * gnus-art.el (gnus-article): Ditto.
18122
18123         * mm-decode.el (mime-display, mime-security): Ditto.
18124
18125 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
18126
18127         * flow-fill.el: Typo.
18128
18129 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
18130
18131         * spam-wash.el: New file.
18132
18133 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
18134
18135         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
18136
18137 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
18138
18139         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
18140         to be run with new-articles as LIST1, not LIST2.
18141         (spam-registration-functions): Add spam-use-ham-copy as a nil
18142         registration backend.
18143
18144 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
18145
18146         * spam-stat.el (spam-stat-washing-hook): New option.
18147         (spam-stat-buffer-words): Use it.
18148         (spam-stat-process-directory, spam-stat-test-directory):
18149         Use insert-file-contents-literally.
18150         (spam-stat-coding-system): New variable.
18151         (spam-stat-load, spam-stat-save): Use it.
18152
18153 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18154
18155         * spam-report.el (spam-report-plug-agent):
18156         Quote spam-report-url-to-file and spam-report-url-ping-plain.
18157
18158 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
18159
18160         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
18161         Allow / in mailto URLs.
18162
18163 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18164
18165         * spam-report.el (spam-report-process-queue): Fix interactive use.
18166         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
18167         (spam-report-unplug-agent): Doc fixes.
18168         (spam-report-url-ping-mm-url, spam-report-url-to-file)
18169         (spam-report-agentize, spam-report-deagentize): Autoload.
18170
18171 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18172
18173         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
18174
18175         * message.el (message-setup-fill-variables): Add mml tags to
18176         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
18177         <ajk@iu.edu>.
18178         (message-mode): Don't modify paragraph-separate there.
18179
18180 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18181
18182         * compface.el (uncompface-use-external): Default to undecided.
18183         (uncompface-use-external-threshold): New variable.
18184         (uncompface-float-time): New macro.
18185         (uncompface): Determine whether to use the external decoder if
18186         uncompface-use-external is undecided.
18187
18188 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18189
18190         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
18191         after images.
18192
18193         * gnus-art.el (gnus-mime-display-single): Remove dead code.
18194
18195 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
18196
18197         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
18198
18199         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
18200
18201         * gnus-sum.el (gnus-summary-limit-to-age)
18202         (gnus-summary-limit-children): do.
18203
18204         * gnus-int.el (gnus-request-scan): do.
18205
18206         * gnus-group.el (gnus-group-suspend): do.
18207
18208         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
18209
18210         * gnus-cite.el (gnus-cite-parse-attributions): do.
18211
18212         * gnus-agent.el (gnus-summary-set-agent-mark)
18213         (gnus-agent-regenerate-group): do.
18214
18215         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
18216
18217         * binhex.el (binhex-decode-region-internal): do.
18218
18219 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18220
18221         * gnus-fun.el (gnus-face-properties-alist): New user option.
18222         (gnus-display-x-face-in-from): Use it.
18223
18224         * gnus-art.el (article-display-face): Ditto.
18225
18226         * compface.el (uncompface-use-external): Default to nil.
18227
18228 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
18229
18230         * nntp.el (nntp-erase-buffer): New function.
18231         (nntp-retrieve-data, nntp-send-command)
18232         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
18233         (nntp-possibly-change-group): Use it.
18234
18235         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
18236         Use with-current-buffer.
18237
18238 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
18239
18240         * compface.el: Merge the ELisp-based uncompface program.
18241         (compface): New customization group.
18242         (uncompface-use-external): New user option.
18243         (uncompface): Call uncompface-internal if uncompface-use-external
18244         is nil.
18245         (uncompface-internal): New function.  Note that there are also
18246         some other functions and variables added for this function.
18247
18248 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
18249
18250         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
18251         if necessary.
18252
18253 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
18254
18255         * spam-report.el (spam-report-unplug-agent)
18256         (spam-report-plug-agent, spam-report-deagentize)
18257         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
18258         Add support for the Agent in spam-report: when unplugged, report to a
18259         file; when plugged, submit all the requests.
18260
18261         * spam.el (spam-register-routine): Fix message about
18262         registration.
18263
18264 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
18265
18266         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
18267         dependencies.
18268         (rfc2047-encode): Use it.
18269
18270         * gnus-art.el (gnus-button-marker-list): Move before first
18271         reference.
18272
18273         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
18274         (imap-parse-body): Fix format string mismatch.
18275
18276         * gnus-score.el (gnus-summary-increase-score): do.
18277
18278         * nnrss.el (nnrss-close): New function.
18279
18280 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
18281
18282         * nnrss.el (nnrss-make-filename): New function.
18283         (nnrss-request-delete-group, nnrss-read-server-data)
18284         (nnrss-save-server-data, nnrss-read-group-data)
18285         (nnrss-save-group-data): Use it.
18286         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
18287         (nnrss-read-server-data, nnrss-read-group-data): Use load.
18288         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
18289
18290 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
18291
18292         * mml.el (mml-compute-boundary-1): Don't uncompress files.
18293
18294 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
18295
18296         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
18297         files.
18298
18299         * message.el (message-generate-headers-first): Don't quote nil
18300         and t in docstrings.
18301
18302         * imap.el (imap-id): do.
18303
18304         * gnus-agent.el (gnus-agent-consider-all-articles)
18305         (gnus-agent-queue-mail): do.
18306
18307 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
18308
18309         * spam-report.el (spam-report-process-queue): New function.
18310         Process requests from `spam-report-requests-file'.
18311         (spam-report-process-queue): Doc fix.
18312
18313 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
18314
18315         * spam.el (spam-register-routine)
18316         (spam-log-processing-to-registry, spam-log-registered-p)
18317         (spam-log-unregistration-needed-p, spam-log-undo-registration):
18318         Change "check" to "spam-check" for semi-clarity.
18319
18320 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
18321
18322         * pop3.el: Require nnheader.
18323
18324         * mml-smime.el: Require cl.  Autoload message-fetch-field.
18325
18326         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
18327
18328         * gnus-picon.el: Require cl.
18329
18330         * gnus-fun.el: Require gnus-ems and gnus-util.
18331
18332         * gnus.el (gnus-method-to-server): Move defsubst before first use.
18333
18334         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
18335
18336         * gnus-art.el (gnus-article-edit-mode): Define before first
18337         reference.
18338
18339 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
18340
18341         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
18342         (gnus-uu-post-encoded): Use point-at-bol.
18343
18344         * gnus-topic.el (gnus-group-active-topic-p): do.
18345
18346         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
18347
18348         * gnus-group.el (gnus-group-kill-region): do.
18349
18350         * gnus-art.el (article-date-ut): do.
18351
18352         * message.el (message-fetch-field): Remove redundant
18353         case-fold-search binding.
18354         (message-narrow-to-field): Simplify.
18355
18356 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
18357
18358         * spam.el (spam-directory): Derive from `gnus-directory'.
18359
18360         * spam-report.el (spam-report-url-to-file)
18361         (spam-report-requests-file): New function and variable for offline
18362         reporting.
18363         (spam-report-url-ping-function): Add `spam-report-url-to-file'
18364         and user defined function.
18365         (spam-report-url-ping-mm-url): Remove doubled slash.
18366
18367 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
18368
18369         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
18370
18371 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
18372
18373         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
18374         Fix format string mismatch.
18375
18376         * sieve.el (sieve-deactivate-all): do.
18377
18378         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
18379
18380         * nnlistserv.el (nnlistserv-kk-wash-article): do.
18381
18382         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
18383
18384         * mm-bodies.el (mm-7bit-chars): Don't include \r.
18385
18386 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
18387
18388         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
18389         the list of checks.
18390
18391 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
18392
18393         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
18394         padding.
18395
18396 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
18397
18398         * mm-view.el (mm-fill-flowed): New variable.
18399         (mm-inline-text): Use it.
18400
18401 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
18402
18403         * spam.el (spam-spamassassin-register-ham-routine)
18404         (spam-spamassassin-register-spam-routine): Fix function names.
18405
18406 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18407
18408         * gnus.el (gnus-tmp-grouplens): Remove.
18409         (gnus-summary-line-format): Remove grouplens.
18410
18411         * gnus-group.el (gnus-group-line-format): Ditto.
18412
18413         * gnus-spec.el (gnus-format-specs): Ditto.
18414         (gnus-update-format-specifications): Flush the group format spec
18415         cache if there's the grouplens stuff.
18416         (gnus-parse-simple-format): Replace %l with the empty string.
18417
18418 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
18419
18420         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
18421         omission.
18422
18423 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18424
18425         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
18426         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
18427
18428 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
18429
18430         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
18431         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
18432         New macros and functions.
18433         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
18434         Handle > NLINK_MAX messages.
18435         * nnmaildir.el (nnmaildir-request-set-mark):
18436         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
18437
18438 2004-01-25  Alex Schroeder  <alex@gnu.org>
18439
18440         * spam-stat.el (spam-stat-process-directory-age): New option.
18441         (spam-stat-process-directory): Use it.
18442
18443 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
18444
18445         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
18446         (spam-stat-save): Accept prefix argument.
18447
18448 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
18449
18450         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
18451         links" error.
18452
18453 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18454
18455         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
18456         the rest of the and/or forms.
18457
18458 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
18459
18460         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
18461         compatibility with old .newsrc.eld files.
18462
18463         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
18464
18465         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
18466
18467         * gnus-start.el (gnus-1): do.
18468
18469         * gnus-group.el (gnus-group-line-format-alist): do.
18470
18471         * gnus.el (gnus-use-grouplens, gnus-visual): do.
18472
18473         * gnus-gl.el: Remove.
18474
18475 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18476
18477         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
18478         marks consisting of a single range {for example, (3 . 5)} rather
18479         than a list of a single range { ((3 . 5)) }.
18480
18481 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
18482
18483         * spam-stat.el (spam-stat-store-gnus-article-buffer):
18484         Use with-current-buffer.
18485         (spam-stat-store-current-buffer): Use insert-buffer-substring to
18486         avoid consing a string.
18487
18488         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
18489         Remove obsolete entries for big5 and gb2312.
18490
18491 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18492
18493         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
18494         uncompressed list.
18495
18496 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
18497
18498         * spam-stat.el (spam-stat-strip-xref): New function.
18499         (spam-stat-process-directory): Use it.
18500
18501         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
18502         here -- it's done in message-fetch-field.
18503
18504 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18505
18506         * gnus-agent.el (gnus-agent-queue-mail)
18507         (gnus-agent-prompt-send-queue): New variables.
18508         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
18509         * gnus-draft.el (gnus-group-send-queue): Pass the group name
18510         "nndraft:queue" along to gnus-draft-send.
18511         Use gnus-agent-prompt-send-queue.
18512         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
18513         is "nndraft:queue".  Suggested by Gaute Strokkenes
18514         <gs234@srcf.ucam.org>
18515
18516         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
18517         (agent-enable-undownloaded-faces): Add.
18518         (gnus-agent-cat-groups): Use eval-and-compile, not
18519         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
18520         method of gnus-agent-cat-groups even when the buffer has been
18521         evaled.
18522         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
18523         delete gnus-agent-save-active-1.
18524         (gnus-agent-save-groups): Delete.  Identical to
18525         gnus-agent-save-active.
18526         (gnus-agent-write-active): No longer adjust agent's copy of active
18527         file as agent's adjustments are now stored in their own
18528         file.  Remove optional parameter.
18529         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
18530         servers.  Add use of min/max range limits from server's local
18531         file.
18532         (gnus-agent-save-alist): Remove unused optional argument.
18533         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
18534         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
18535         (gnus-agent-set-local): A per-server file that keeps min/max range
18536         limits for articles known to the agent.  Provides a fast mechanism
18537         for altering many active ranges.
18538         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
18539         active file (local makes it unnecessary).
18540         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
18541
18542         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
18543         (agent-enable-undownloaded-faces): Add.
18544
18545         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
18546         disable it when sending to "nndraft:queue".
18547         (gnus-group-send-queue): Add safety check to avoid sending queue
18548         when unplugged.
18549
18550         * gnus-group.el (gnus-group-catchup): Use new
18551         gnus-sequence-of-unread-articles, not
18552         gnus-list-of-unread-articles, to avoid exhausting memory with huge
18553         numbers of articles.  Use gnus-range-map to avoid having to
18554         uncompress the unread list.
18555         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
18556         Fix invalid ange-ftp reference.
18557
18558         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
18559         (gnus-sorted-range-intersection): Intersection of two ranges
18560         without requiring that they first be uncompressed.
18561
18562         * gnus-start.el (gnus-activate-group): Unless blocked by the
18563         caller, possibly expand the active range to include both cached
18564         and agentized articles.
18565         (gnus-convert-old-newsrc): Rewrote in anticipation of having
18566         multiple version-dependent converters.
18567         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
18568         gnus-agent-save-active.
18569         (gnus-save-newsrc-file): Save dirty agent range limits.
18570
18571         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
18572         gnus-agent-possibly-alter-active.
18573         (gnus-adjust-marked-articles): Faster handling of simple lists.
18574
18575 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
18576
18577         * spam-stat.el (spam-stat-test-directory): New optional argument
18578         displays a list of files detected.  Suggested by Andrew Cohen
18579         <cohen@andy.bu.edu>.
18580         (spam-stat-buffer-words-with-scores): Don't narrow and change
18581         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
18582
18583 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
18584
18585         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
18586         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
18587         (spam-spamassassin-arguments)
18588         (spam-spamassassin-spam-flag-header)
18589         (spam-spamassassin-positive-spam-flag-header)
18590         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
18591         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
18592         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
18593         (spam-list-of-processors, spam-list-of-checks)
18594         (spam-list-of-statistical-checks, spam-registration-functions)
18595         (spam-check-spamassassin-headers, spam-check-spamassassin)
18596         (spam-spamassassin-score)
18597         (spam-spamassassin-register-with-sa-learn)
18598         (spam-spamassassin-register-spam-routine)
18599         (spam-spamassassin-register-ham-routine)
18600         (spam-assassin-register-spam-routine)
18601         (spam-assassin-register-ham-routine): Add SpamAssassin support.
18602         (spam-bogofilter-score): Fix to show article before scoring.
18603
18604 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
18605
18606         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
18607         default scoring function.
18608         (spam-generic-score): Call spam-spamassassin-score if
18609         spam-use-spamassassin or spam-use-spamassassin-headers is on;
18610         spam-bogofilter-score otherwise.
18611
18612         * gnus.el (spam-process, spam-autodetect-methods):
18613         Add spamassassin and spamassassin-headers.
18614
18615 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
18616
18617         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
18618         Suppress unnecessary messages.
18619
18620 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
18621
18622         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
18623         make-hash-table.
18624
18625 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18626
18627         * canlock.el (base64-encode-string): Don't autoload it.
18628
18629 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18630
18631         * run-at-time.el: Remove useless (require 'itimer),
18632         eval-and-compile and (featurep 'xemacs).
18633
18634 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
18635
18636         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
18637         GROUP is a virtual group.
18638
18639 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
18640
18641         * gnus.el: Autoload `message-y-or-n-p'.
18642
18643 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
18644
18645         * pgg-parse.el: Remove unnecessary (require 'custom).
18646
18647         * pgg-def.el: do.
18648
18649         * nnmail.el: do.
18650
18651         * gnus-undo.el: do.
18652
18653         * gnus-picon.el: do.
18654
18655         * gnus-util.el: do.
18656
18657 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
18658
18659         * gnus-sum.el (gnus-pick-line-number): Add autoload.
18660
18661 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18662
18663         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
18664         handle, as well as a list.
18665
18666         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
18667         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
18668         (mm-w3m-cid-retrieve): Simplify.
18669
18670 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
18671
18672         * message.el (message-kill-to-signature): Allow prefix arg to
18673         specify number of lines to keep before signature.
18674
18675 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
18676
18677         * message.el (message-kill-to-signature): Change docstring.
18678
18679 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18680
18681         * canlock.el: Always require sha1-el.
18682         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
18683
18684         * message.el: Autoload sha1 only when compiling.
18685
18686         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
18687         eudc-expand-inline for XEmacs.
18688
18689 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18690
18691         * message.el (message-canlock-generate): Require sha1-el.
18692
18693 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
18694
18695         * message.el (message-expand-name): Silence the byte compiler.
18696
18697         * lpath.el: Add detect-coding-system.
18698
18699         * dgnushack.el (dgnushack-compile): Remove obsolete check for
18700         cus-edit.
18701
18702 2004-01-13  Simon Josefsson  <jas@extundo.com>
18703
18704         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
18705         Invoke gnus-score-mode.
18706         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
18707
18708         * gnus-range.el (gnus-compress-sequence): Doc fix.
18709         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
18710
18711 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
18712
18713         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
18714
18715 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
18716
18717         * spam.el (spam-get-article-as-string): Update to use
18718         gnus-request-article-this-buffer, much simpler.
18719         (spam-get-article-as-buffer): Remove.
18720
18721 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
18722
18723         * message.el (message-expand-name): Use EUDC if the user uses that.
18724
18725 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
18726
18727         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
18728         character for the encoding to avoid consing a string.
18729
18730         * rfc2047.el (rfc2047-decode-string): Don't cons a string
18731         unnecessarily.
18732
18733         * mm-util.el (mm-replace-chars-in-string): Remove.
18734
18735         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
18736         of mm-replace-chars-in-string.
18737
18738 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
18739
18740         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
18741
18742         * mm-util.el (mm-subst-char-in-string): Support inplace.
18743
18744         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
18745         a new string in every iteration.  Use shy groups.
18746
18747 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
18748
18749         * gnus-srvr.el (gnus-browse-unsubscribe-group):
18750         * gnus-soup.el (gnus-soup-group-brew):
18751         * gnus-msg.el (gnus-put-message):
18752         * gnus-move.el (gnus-group-move-group-to-server):
18753         * gnus-kill.el (gnus-batch-score):
18754         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
18755         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
18756         (gnus-group-update-group, gnus-group-read-group)
18757         (gnus-group-make-group, gnus-group-make-help-group)
18758         (gnus-group-make-archive-group, gnus-group-make-directory-group)
18759         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
18760         (gnus-group-sort-by-unread, gnus-group-catchup)
18761         (gnus-group-unsubscribe-group, gnus-group-kill-group)
18762         (gnus-group-yank-group, gnus-group-set-info)
18763         (gnus-group-list-groups):
18764         * gnus.el (gnus-generate-new-group-name):
18765         * gnus-delay.el (gnus-delay-send-queue):
18766         * nnvirtual.el (nnvirtual-catchup-group):
18767         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
18768         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
18769         (gnus-group-prepare-topics, gnus-topic-check-topology):
18770         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
18771         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
18772         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
18773         (gnus-group-make-articles-read):
18774         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
18775         (gnus-group-change-level, gnus-kill-newsgroup)
18776         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
18777         (gnus-get-unread-articles, gnus-make-articles-unread)
18778         (gnus-make-ascending-articles-unread): Use accessor
18779         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
18780         to get group information for improved readability.
18781
18782
18783 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18784
18785         * gnus-art.el (article-decode-mime-words, article-babel)
18786         (gnus-article-highlight-signature, gnus-article-add-buttons)
18787         (gnus-signature-toggle): Use gnus-with-article-buffer.
18788
18789         * gnus-art.el (gnus-article-highlight-headers)
18790         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
18791
18792         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
18793         (gnus-article-set-globals, gnus-request-article-this-buffer)
18794         (gnus-button-message-id, gnus-article-maybe-hide-headers)
18795         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
18796         (gnus-mime-display-alternative): Use with-current-buffer.
18797
18798 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18799
18800         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
18801         also under 80 char limit, and call gnus-error if needed.
18802         (spam-fetch-article-header): Fix - it was a
18803         buffer-local variable (gnus-newsgroup-data).
18804         (spam-find-spam): Use spam-generate-fake-headers, forget about
18805         spam-insert-fake-headers.
18806         (spam-insert-fake-headers): Remove.
18807
18808 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18809
18810         * deuglify.el (gnus-article-outlook-unwrap-lines)
18811         (gnus-outlook-rearrange-article)
18812         (gnus-outlook-repair-attribution-outlook)
18813         (gnus-outlook-repair-attribution-block)
18814         (gnus-outlook-repair-attribution-other): Remove redundant
18815         save-excursion.
18816
18817 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18818
18819         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
18820         (spam-fetch-field-subject-fast)
18821         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
18822         (spam-fetch-article-header): Add functions to deal with Gnus
18823         internals for fast retrieval of article header data.
18824         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
18825
18826 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18827
18828         * pop3.el (pop3-md5): Remove.
18829         (pop3-apop): Replace pop3-md5 with md5.
18830
18831         * mm-bodies.el: base64 is always built-in.
18832
18833         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18834         Use with-current-buffer.
18835
18836 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18837
18838         * canlock.el (canlock-insert-header): Remove excessive grouping in
18839         regexp.
18840
18841         * gnus-sum.el (gnus-summary-read-document): Ditto.
18842
18843         * gnus-uu.el (gnus-uu-part-number): Ditto.
18844
18845         * html2text.el (html2text-remove-tags): Ditto.
18846         (html2text-format-tags): Ditto.
18847         (html2text-format-single-elements): Ditto.
18848
18849         * mml.el (mml-parse-1): Ditto.
18850
18851 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
18852
18853         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
18854
18855         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
18856
18857         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
18858
18859         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
18860
18861 2003-11-15  Simon Josefsson  <jas@extundo.com>
18862
18863         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
18864         (pgg-gpg-lookup-key): Use regexp match instead of
18865         split-string (split-string is different between emacs 21.2 and
18866         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
18867
18868 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
18869
18870         * gnus-art.el (gnus-mime-view-all-parts)
18871         (gnus-article-part-wrapper, gnus-article-view-part):
18872         Use with-current-buffer.
18873
18874 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
18875
18876         * spam.el (spam-disable-spam-split-during-ham-respool)
18877         (spam-spamoracle-database, spam-cache-lookups)
18878         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
18879         (spam-group-ham-mark-p, spam-group-spam-mark-p)
18880         (spam-group-ham-marks, spam-group-spam-marks)
18881         (spam-group-spam-contents-p, spam-group-ham-contents-p)
18882         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
18883         also add spam-use-blackholes to the statistical checks.
18884         (spam-fetch-field-fast): Add interface to fetching fields, may
18885         become a macro.
18886         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
18887         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
18888         (spam-insert-fake-headers): Fake an article when needed.
18889         (spam-find-spam): Fake article when possible.
18890         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
18891         (spam-check-bogofilter-headers): Use message-fetch-field instead
18892         of nnmail-fetch-field.
18893
18894 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
18895
18896         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
18897
18898 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
18899
18900         * spam.el (spam-split): Do not require spam-use-CHECK to be
18901         enabled if that check is passed to spam-split explicitly; also
18902         fix so 'spam doesn't get converted to spam-split-group when
18903         spam-split-symbolic-return is t.
18904         (spam-find-spam): Find registrations of the article and use those
18905         instead of re-running spam-split to find the spam/ham
18906         classification of the article.
18907         (spam-log-processing-to-registry, spam-log-registered-p)
18908         (spam-log-unregistration-needed-p, spam-log-undo-registration):
18909         Use gnus-error instead of gnus-message.
18910         (spam-log-registration-type): Add function to determine the
18911         classification of a message based on registry entries; will
18912         return nil if both 'spam and 'ham are found.
18913         (spam-check-BBDB): Expand all the BBDB macros here so we can have
18914         a reasonably fast local cache without the loading errors.
18915         (spam-cache-lookups): Set to t by default.
18916         (spam-find-spam): Don't try to guess spam-cache-lookups.
18917         (spam-enter-whitelist, spam-enter-blacklist): Clear the
18918         spam-caches entry.
18919         (spam-filelist-build-cache, spam-filelist-check-cache):
18920         Fix caching of whitelist/blacklist entries.
18921         (spam-check-whitelist, spam-check-blacklist):
18922         Invoke spam-from-listed-p with a type, not a cache variable.
18923         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
18924
18925 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
18926
18927         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
18928
18929         * nnmail.el (nnmail-split-fancy): do.
18930
18931         * mml.el (mml-parse): do.
18932
18933         * gnus-score.el (gnus-enter-score-words-into-hashtb)
18934         (gnus-score-adaptive): do.
18935
18936 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18937
18938         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
18939         (gnus-mime-button-map): Don't set keymap parent.
18940         (gnus-button-ctan-directory-regexp): Use shy grouping.
18941         (gnus-prev-page-map): Don't set keymap parent.
18942         (gnus-prev-page-map): Remove duplicated one.
18943         (gnus-next-page-map): Don't set keymap parent.
18944         (gnus-mime-security-button-map): Ditto.
18945
18946         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
18947         version number.
18948
18949         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
18950
18951 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18952
18953         * canlock.el (canlock-sha1-function): Remove.
18954         (canlock-sha1-function-for-verify): Remove.
18955         (canlock-openssl-program): Remove.
18956         (canlock-openssl-args): Remove.
18957         (canlock-ignore-errors): Remove.
18958         (canlock-sha1-with-openssl): Remove.
18959         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
18960         (canlock-verify): Don't use canlock-ignore-errors.
18961
18962         * sha1-el.el (sha1-string-external): Make it can return a string
18963         in binary form.
18964         (sha1-region-external): Ditto.
18965         (sha1-string-internal): Ditto.
18966         (sha1-region-internal): Ditto.
18967         (sha1-region): Ditto.
18968         (sha1-string): Ditto.
18969         (sha1): Ditto.
18970
18971 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18972
18973         * spam.el (spam-report-articles-gmane): New command.
18974
18975 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18976
18977         * gnus.el: Don't make unnecessary *Group* buffer when loading.
18978
18979         * run-at-time.el (run-at-time-saved): Remove.
18980         (run-at-time): Doc fix.
18981
18982 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
18983
18984         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
18985         (gnus-summary-limit-map): Add it.
18986         (gnus-summary-make-menu-bar): do.
18987
18988 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
18989
18990         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
18991         Make attempt at some caching support (done for BBDB only now).
18992         (spam-find-spam): Set spam-cache-lookups if there are more than 2
18993         addresses to be checked.
18994         (spam-clear-cache-BBDB): Add function, to be invoked by
18995         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
18996         (spam-check-BBDB): Check and use the caches, if
18997         spam-cache-lookups is on, remove superfluous (provide).
18998
18999 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
19000
19001         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
19002
19003 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
19004
19005         * run-at-time.el (run-at-time-saved): Move to after the definition
19006         of `run-at-time'.
19007
19008         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
19009
19010 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19011
19012         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
19013         mm-w3m-local-map-property.
19014
19015         * mm-view.el (mm-w3m-mode-map): Remove.
19016         (mm-w3m-local-map-property): Remove.
19017         (mm-inline-text-html-render-with-w3m): Don't use
19018         mm-w3m-local-map-property.
19019
19020 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19021
19022         * run-at-time.el: New file.
19023
19024         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
19025         under Emacs.
19026
19027         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
19028         of gnus-set-text-properties.
19029
19030         * gnus-uu.el (gnus-uu-save-article): Ditto.
19031
19032         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
19033
19034         * gnus-cite.el (gnus-cite-parse): Ditto.
19035
19036         * gnus-art.el (gnus-button-push): Use set-text-properties instead
19037         of gnus-.
19038
19039         * gnus-xmas.el (run-at-time): Require run-at-time.
19040
19041         * gnus.el: Change calls to nnheader-run-at-time and
19042         password-run-at-time throughout to use run-at-time directly.
19043
19044         * password.el: Remove definition of run-at-time.
19045
19046         * nnheaderxm.el: Remove definition of run-at-time.
19047
19048 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
19049
19050         * mml.el (mml-minibuffer-read-disposition): Show attachment type
19051         in prompt.
19052
19053 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
19054
19055         * messagexmas.el (message-xmas-redefine): Alias
19056         `message-make-caesar-translation-table' to
19057         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
19058         version.
19059
19060         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
19061         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
19062         `gnus-xmas-set-text-properties'.
19063         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
19064         `gnus-xmas-completing-read'.
19065         (gnus-xmas-completing-read): Removed.
19066         (gnus-xmas-open-network-stream): Removed.
19067
19068         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
19069         XEmacs version.
19070
19071         * dns.el (dns-make-network-process): Use `open-network-stream'
19072         instead of `gnus-xmas-open-network-stream'.
19073
19074         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
19075
19076         * .cvsignore: Add auto-autoloads.el, custom-load.el.
19077
19078 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
19079
19080         * gnus-art.el (gnus-mime-display-alternative)
19081         (gnus-insert-mime-button, gnus-insert-mime-security-button)
19082         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
19083         Don't use gnus-local-map-property.
19084
19085         * gnus-util.el (gnus-local-map-property): Remove.
19086
19087         * mm-view.el (mm-view-pkcs7-decrypt):
19088         Replace gnus-completing-read-maybe-default with completing-read.
19089
19090         * gnus-util.el (gnus-completing-read): do.
19091         (gnus-completing-read-maybe-default): Remove.
19092
19093 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
19094
19095         * password.el: Only autoload `run-at-time' if not XEmacs.
19096         Only autoload the itimer functions if XEmacs.
19097
19098 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19099
19100         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
19101         XEmacsen.
19102
19103         * dgnushack.el: Autoload executable-find for XEmacs.
19104
19105 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
19106
19107         * gnus-art.el (gnus-read-string): Remove.
19108         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
19109         read-string.
19110
19111 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
19112
19113         * netrc.el: Autoload password-read.
19114         (netrc): Add configuration group.
19115         (netrc-encoding-method, netrc-openssl-path):
19116         Add variables for encoding and decoding of files with symmetric
19117         ciphers.
19118         (netrc-encode): Add assistant function to encode a file with
19119         netrc-encoding-method.
19120         (netrc-parse): Add interactive parameter, added optional
19121         decoding if netrc-encoding-method is non-nil but otherwise
19122         behavior is standard.
19123         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
19124         Do s/encode/encrypt/ everywhere.
19125
19126         * spam.el: Remove executable-find autoload.
19127
19128 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
19129
19130         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
19131
19132         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
19133
19134 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19135
19136         * gnus-art.el (gnus-treat-ansi-sequences)
19137         (article-treat-ansi-sequences): New variable and function.
19138         Suggested by Dan Jacobson <jidanni@jidanni.org>.
19139
19140         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
19141         Use it.
19142
19143 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
19144
19145         * mm-util.el (mm-quote-arg): Remove.
19146
19147         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
19148         shell-quote-argument.
19149
19150         * gnus-uu.el (gnus-uu-command): do.
19151
19152         * gnus-sum.el (gnus-summary-insert-pseudos): do.
19153
19154         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
19155         with make-char.
19156
19157         * mm-util.el (mm-make-char): Remove.
19158
19159         * mml.el (mml-mode): Replace gnus-add-minor-mode with
19160         add-minor-mode.
19161
19162         * gnus-undo.el (gnus-undo-mode): do.
19163
19164         * gnus-topic.el (gnus-topic-mode): do.
19165
19166         * gnus-sum.el (gnus-dead-summary-mode): do.
19167
19168         * gnus-start.el (gnus-slave-mode): do.
19169
19170         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
19171
19172         * gnus-ml.el (gnus-mailing-list-mode): do.
19173
19174         * gnus-gl.el (gnus-grouplens-mode): do.
19175
19176         * gnus-draft.el (gnus-draft-mode): do.
19177
19178         * gnus-dired.el (gnus-dired-mode): do.
19179
19180         * gnus-ems.el (gnus-add-minor-mode): Remove.
19181
19182         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
19183         Replace gnus-char-width with char-width.
19184
19185         * gnus-ems.el (gnus-char-width): Remove.
19186
19187         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
19188         Replace gnus-char-width with char-width.
19189
19190         * gnus-ems.el (gnus-char-width): Remove.
19191
19192         * spam-stat.el (with-syntax-table): Remove with-syntax-table
19193         definition.
19194         Remove Emacs 20 hash table compatibility code.
19195
19196         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
19197         20 compatibility code.
19198
19199         * spam.el (spam-point-at-eol): Replace with point-at-eol.
19200
19201         * smime.el (smime-point-at-eol): Replace with point-at-eol.
19202
19203         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
19204         Replace with point-at-{eol,bol}.
19205
19206         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
19207
19208         * imap.el (imap-point-at-eol): Replace with point-at-eol.
19209
19210         * flow-fill.el (fill-flowed-point-at-bol)
19211         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
19212
19213         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
19214         Replace with point-at-{eol,bol} throughout all files.
19215
19216 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19217
19218         * ntlm.el (ntlm-string-as-unibyte): New macro.
19219         (ntlm-build-auth-response): Use it.
19220
19221         Remove Emacs 20 stuff:
19222         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
19223         (butlast, mapc, remove): Remove the compiler macros.
19224         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
19225         of delq and copy-sequence.
19226         * gnus-art.el (popup-menu): Remove the compiler macro.
19227         * nnmail.el (nnmail-split-fancy): Don't support customizing with
19228         Emacs 20.
19229
19230 2004-01-05  Simon Josefsson  <jas@extundo.com>
19231
19232         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
19233         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
19234         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
19235         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
19236         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
19237         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
19238         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
19239         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
19240         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
19241         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
19242         ntlm-string-permute, string-lshift into ntlm-string-lshift,
19243         string-xor into ntlm-string-xor.
19244         Suggested by Jesper Harder <harder@myrealbox.com>.
19245
19246         * ntlm.el: Don't include poem.
19247
19248         * md4.el (print-int32, print-string-hexa): Remove.
19249         Suggested by Jesper Harder <harder@myrealbox.com>.
19250
19251         * sasl-ntlm.el, ntlm.el, md4.el: New files.
19252
19253         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
19254         probably breaks emacs with DL patch, but do we care? Is anyone
19255         still using the DL stuff?)
19256
19257         * sieve-manage.el: Use the password package.
19258         (sieve-manage-read-passwd): Remove.
19259         (sieve-manage-interactive-login): Use password.  Re-add
19260         condition-case around loop.
19261
19262         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
19263         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
19264         Use the password package.
19265
19266 2003-02-19  Simon Josefsson  <jas@extundo.com>
19267
19268         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
19269         token.
19270
19271 2002-08-07  Simon Josefsson  <jas@extundo.com>
19272
19273         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
19274         (sieve-manage-authenticators):
19275         (sieve-manage-authenticator-alist): Add some SASL mechs.
19276         (sieve-sasl-auth): New function.
19277         (sieve-manage-cram-md5-auth):
19278         (sieve-manage-plain-auth): Rewrite using SASL library.
19279         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
19280         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
19281         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
19282         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
19283
19284 2004-01-05  Simon Josefsson  <jas@extundo.com>
19285
19286         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
19287         New files.
19288
19289 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19290
19291         * gnus-group.el (gnus-no-groups-message): Update.
19292
19293         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
19294
19295 2003-11-09  Simon Josefsson  <jas@extundo.com>
19296
19297         * imap.el: Support for ID IMAP extension (RFC 2971).
19298         (imap-local-variables): Add imap-id.
19299         (imap-id): New variable.
19300         (imap-id): New function.
19301         (imap-parse-response): Parse untagged ID response.
19302         * nnimap.el (nnimap-id): New variable.
19303         (nnimap-open-connection): Use it.
19304
19305 2003-12-28  Simon Josefsson  <jas@extundo.com>
19306
19307         * gnus-score.el (gnus-score-edit-all-score): New.
19308         * gnus-group.el (gnus-group-score-map): Bind it to W e.
19309
19310 2004-01-04  Simon Josefsson  <jas@extundo.com>
19311
19312         * password.el: Add.
19313
19314 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
19315
19316         * dns.el (dns-query-types): Fix typo.
19317         (dns-query-types): New function.
19318         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
19319         PTR and SOA replies, see RFC 1035.
19320
19321 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19322
19323         * gnus.el (gnus-logo-color-style): Change colors to `no'.
19324
19325         * Move to Changelog.2.
19326
19327 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19328
19329         * gnus.el (gnus-version-number): Bump version.
19330
19331 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19332
19333         * gnus.el: No Gnus v0.1 is released.
19334
19335 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19336
19337         * gnus.el: No Gnus v0.0 is released.
19338
19339 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19340
19341         * gnus.el (gnus-version-number): Bump.
19342         (gnus-version): No.
19343
19344 See ChangeLog.2 for earlier changes.
19345
19346     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
19347       Free Software Foundation, Inc.
19348
19349   This file is part of GNU Emacs.
19350
19351   GNU Emacs is free software: you can redistribute it and/or modify
19352   it under the terms of the GNU General Public License as published by
19353   the Free Software Foundation, either version 3 of the License, or
19354   (at your option) any later version.
19355
19356   GNU Emacs is distributed in the hope that it will be useful,
19357   but WITHOUT ANY WARRANTY; without even the implied warranty of
19358   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19359   GNU General Public License for more details.
19360
19361   You should have received a copy of the GNU General Public License
19362   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
19363
19364 ;; Local Variables:
19365 ;; coding: utf-8
19366 ;; fill-column: 79
19367 ;; add-log-time-zone-rule: t
19368 ;; End: