Clean up the code slightly.
[gnus] / lisp / ChangeLog
1 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * proto-stream.el (proto-stream-always-use-starttls): New variable.
4         (proto-stream-open-starttls): De-duplicate the starttls code.
5         (proto-stream-open-starttls): Folded back into the main function.
6         (proto-stream-open-network): Fix typo in the gnutls path.
7         (proto-stream-command): Refactor out.
8
9         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
10
11         * proto-stream.el (proto-stream-open-starttls): Actually implement the
12         starttls.el STARTTLS.
13
14         * color.el (color-lab->srgb): Fix function call name.
15
16         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
17         if we're using tls.el.
18         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
19         built in, then don't try to establish a STARTTLS connection.
20
21         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
22         servers.
23
24         * proto-stream.el (open-proto-stream): Use network, not stream.
25         (open-proto-stream): Add a way to specify what the end of a command is.
26
27         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
28         connections types.
29         (nntp-open-network-stream): Removed.
30         (nntp-open-ssl-stream): Removed.
31         (nntp-open-tls-stream): Removed.
32         (nntp-ssl-program): Removed.
33
34         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
35
36 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
37
38         * nnir.el: Fix typos.
39         (nnir-retrieve-headers-override-function): Rename variable to reflect
40         new semantics.
41         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
42         macros.
43         (nnir-request-article, nnir-request-move-article): Use them.
44         (nnir-categorize): New function.
45         (nnir-run-query): Use it.
46         (nnir-retrieve-headers): Rewrite to batch header retrieval.
47         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
48         sorted.
49         (nnir-group-full-name): Use gnus-group-full-name instead.
50         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
51         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
52
53 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
54
55         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
56
57         * proto-stream.el: New library to provide protocol-specific
58         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
59         protocols.
60         (open-proto-stream): Complete the documentation.
61         (proto-stream-open-network): Fix some typos.
62
63         * nnimap.el (nnimap-open-connection): Use it.
64
65 2010-11-26  Julien Danjou  <julien@danjou.info>
66
67         * color.el: Rename various rgb functions to srgb.
68
69 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
70
71         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
72         names.
73
74 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
75
76         * shr.el (shr-insert): Revert last change.
77         (shr-find-fill-point): Never leave point being at bol;
78         relax the kinsoku limitation when rendering tables.
79
80 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
81
82         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
83         results from -accept-article.
84
85         * shr-color.el: Require cl when compiling.
86
87         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
88         checkin.
89
90         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
91
92         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
93
94         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
95         'add and 'delete to set backend marks.
96
97         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
98
99         * nnheader.el (nnheader-update-marks-actions): Refactor out.
100
101         * nntp.el (nntp-request-set-mark): Use it.
102
103         * nnfolder.el (nnfolder-request-set-mark): Ditto.
104
105         * nnml.el (nnml-request-set-mark): Ditto.
106
107         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
108         introduces regressions in article selection.
109         (nnimap-find-uid-response): New function.
110         (nnimap-request-accept-article): Use the UID returned, if any.
111         (nnimap-request-move-article): Use the UID returned, if any.
112         (nnimap-get-groups): Reimplement to work with folded lines.
113         (nnimap-find-uid-response): The UID is the last element in the list.
114         (nnimap-request-set-mark): Extend syntax with 'set.
115
116         * nnml.el (nnml-request-set-mark): Ditto.
117
118         * nnfolder.el (nnfolder-request-set-mark): Ditto.
119
120         * nntp.el (nntp-request-set-mark): Ditto.
121
122 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
123
124         * message.el (message-called-interactively-p): A temporary macro.
125         (message-goto-body): Use it temporarily.
126
127 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
128
129         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
130         (nnimap-last-response-string): Unfold quoted lines, if they exist.
131         (nnimap-last-response-string): Fix last unfolding fix.
132
133 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
134
135         * shr.el (shr-insert): Fix the way to fold lines.
136
137 2010-11-25  Julien Danjou  <julien@danjou.info>
138
139         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex
140
141         * color.el: Rename from color-lab.el
142         (color-rgb->hex): Add.
143         (color-complement): Add.
144         (color-complement-hex): Add.
145
146         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
147
148 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
149
150         * shr-color.el (shr-color-visible): Don't bug out if the colour names
151         don't exist.
152
153 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
154
155         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
156         assuming that article displaying or another mml-preview may be
157         interrupted for an error or for the like.
158
159         * shr.el (shr-get-background): Fix argument name.
160
161 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
162
163         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
164
165         * gnus-sum.el (gnus-summary-include-articles): New function.
166
167         * message.el (message-goto-body): called-interactively-p needs a
168         parameter, so use `any'.
169
170         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
171         clear marks before moving, since they're synced from the Gnus side
172         first.
173
174         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
175         (gnus-summary-move-article): Copy over all marks before moving, so that
176         IMAP doesn't think a new article has arrived.
177
178 2010-11-24  Julien Danjou  <julien@danjou.info>
179
180         * shr.el (shr-insert-background-overlay): Fix typo.
181         (shr-render-td): Copy the background before rendering.
182
183         * shr-color.el (shr-color-visible): Fix docstring.
184
185         * shr.el (shr-tag-table): Add bgcolor support.
186         (shr-render-td): Add bgcolor support.
187         (shr-get-background): Add.
188         (shr-insert-foreground-overlay): Use shr-get-background.
189
190         * message.el (message-goto-body): Use called-interactively-p.
191         (message-in-body-p): message-goto-body returns point.
192
193 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
194
195         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
196         Fixes something or other in Emacs 23, and is backwards compatible.
197
198         * message.el (message-goto-body): Remove the <#secure special-casing,
199         which is too special.
200
201         * shr.el (shr-parse-style): Drop !important from styles.
202
203 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
204
205         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
206         this function to return incorrect results when calling it with an
207         explicit article argument different from
208         (gnus-summary-article-number).
209
210 2010-11-24  Julien Danjou  <julien@danjou.info>
211
212         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
213         (shr-tag-body): Add background support.
214         (shr-descend): Add background support.
215         (shr-tag-title): Add.
216
217         * shr-color.el (shr-color-visible): Really return original background
218         if fixed.
219
220 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
221
222         * shr.el (shr-color-check): Protect against non-existant colour names.
223
224 2010-11-24  Julien Danjou  <julien@danjou.info>
225
226         * color-lab.el: Require 'cl when compiling.
227
228         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
229
230         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
231         matched part.
232
233         * color-lab.el: Fix all expt calls to use float type.
234
235 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
236
237         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
238         expression to shr-color-check as is.
239
240         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
241
242         * color-lab.el: Add coding cookie.
243         (float-pi): Use eval-and-compile.
244
245         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
246         compiled for Emacsen having no `libxml-parse-html-region' support.
247
248 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
249
250         * shr.el (shr-insert-color-overlay): Split stuff like
251         "#444444 !important" to find the real colour.
252         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
253         parse <font color="red"> entries.
254
255 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
256
257         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
258         point when parsing headers.
259
260         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
261         is positioned properly when parsing headers.
262
263 2010-11-23  Julien Danjou  <julien@danjou.info>
264
265         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
266
267         * shr-color.el (shr-color->hexadecimal): Add support for color names.
268
269         * shr.el (shr-parse-style): Replace \n with space in style parsing.
270
271         * shr-color.el (shr-color-hsl-to-rgb-fractions): Use
272         shr-color-hue-to-rgb.
273         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
274
275 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
276
277         * shr.el (shr-color->hexadecimal): Autoload.
278         (shr-descend): Add color to all tags.
279
280 2010-11-22  Julien Danjou  <julien@danjou.info>
281
282         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
283         shr-color->hexadecimal.
284
285         * shr-color.el (shr-color->hexadecimal): Add converting functions for
286         RGB() or HSL() color representation.
287
288         * shr.el (shr-tag-font): Add.
289         (shr-tag-color-check): New function to get better colors.
290         (shr-tag-insert-color-overlay): Factorize code between tag-font and
291         tag-span.
292
293         * shr-color.el: New file.
294
295         * color-lab.el: New file.
296
297         * gnus-art.el (gnus-url-mailto): Do not downcase args.
298
299 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
300
301         * nnir.el: Fix typo in comments.
302         (nnir-run-imap): Simplify code. No need to reverse artlist.
303         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
304
305 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
306
307         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
308
309         * nnimap.el (nnimap-get-capabilities): Refactor out.
310         (nnimap-open-connection): Re-request capabilities after STARTTLS.
311
312 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
313
314         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
315         appearing when `mm-uu-hide-markers' is nil.
316
317 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
318
319         * nnimap.el (nnimap-unselect-group): Make into its own function.
320         (nnimap-request-rename-group): Unselect group before renaming.
321         This had gotten lost somewhere.
322         (nnimap-request-accept-article): Keep track of examined groups, and
323         unselect the group before APPENDing to read-only groups.
324         (nnimap-request-move-article): Clear flags before moving so that they
325         can be re-set later.
326
327 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
328
329         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
330         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
331
332 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
333
334         * gnus-art.el (gnus-mime-display-single)
335         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
336         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
337         parameter.
338
339 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
340
341         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
342         (shr-table-vertical-line): New variable.
343         (shr-insert-table): Use it.
344
345 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
346
347         * gnus-html.el (gnus-html-wash-images): Don't display images if
348         gnus-inhibit-images is non-nil; register displayer for cid images.
349         (gnus-html-display-image): Work for cid image.
350         (gnus-html-insert-image): Allow arguments.
351         (gnus-html-put-image): Inhibit read-only.
352         (gnus-html-prefetch-images): Don't prefetch images if
353         gnus-inhibit-images is non-nil.
354
355 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
356
357         * shr.el (shr-put-image): Break lines when inserting big pictures.
358
359 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
360
361         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
362         sender, thanks Katsumi Yamaoka.
363
364 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
365
366         * nnir.el (nnir-run-imap): Reverse the article list for each group
367         rather than the whole list.
368
369 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
370
371         * shr.el (shr-image-displayer): Protect function against non-existent
372         image source.
373
374         * gnus-art.el (gnus-inhibit-images): New user option.
375         (gnus-mime-display-single): Don't display image if it is non-nil.
376
377         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
378         gnus-inhibit-images.
379
380         * shr.el (shr-image-displayer): New function.
381         (shr-tag-img): Use it.
382
383 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
384
385         * mml2015.el (mml2015-epg-sign): Use From header.
386
387 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
388
389         * gnus-html.el (gnus-html-wash-images): Register a displayer.
390
391         * gnus-util.el (gnus-find-text-property-region): Return markers.
392
393         * shr.el (shr-tag-img): Put a displayer in the text property.
394
395         * gnus-util.el (gnus-find-text-property-region): New utility function.
396
397         * gnus-html.el (gnus-html-display-image): Make the alt optional.
398         (gnus-html-show-images): Remove.
399
400         * gnus-art.el (gnus-article-show-images): New, more general function.
401
402         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
403         image url text properties.
404
405         * shr.el: Ditto.
406
407         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
408         gnus-agent-auto-agentize-methods is set.  Which it isn't.
409
410 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
411
412         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
413         work for two or more articles.
414
415 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
416
417         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
418         divide an image that's in an html article to two or more when washing
419         non-ASCII characters in alt text of it.
420
421 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
422
423         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
424         smime-decrypt-region using function argument.
425         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
426
427         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
428
429         * smime.el (smime-decrypt-region): Catch it.
430
431 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
432
433         * smime.el (smime-mode-map): Move initialization into declaration.
434         (gnus-run-mode-hooks): Don't autoload.
435         (smime-mode): Use define-derived-mode.
436
437 2010-11-11  Glenn Morris  <rgm@gnu.org>
438
439         * smime.el (from): Restrict declaration to XEmacs.
440
441         * nnir.el (gnus-group-topic-name): Autoload.
442
443 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
444
445         * shr.el (shr-insert): Don't break long line if it is because of
446         kinsoku-bol characters in the line end.
447
448 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
449
450         * nnir.el (nnir-request-move-article): Fix to provide original group
451         and subject.
452         (nnir-warp-to-article): Don't fail on articles whose headers haven't
453         been retrieved.
454
455         * gnus-sum.el (gnus-summary-move-article): Use original group and
456         subject for virtual articles such as those in an nnir summary buffer.
457
458 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
459
460         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
461         least 21.5).
462
463         * smime.el (from): Declare it again for XEmacs.
464
465 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
466
467         * message.el (message-resend): Don't disable encoding unless it's
468         already encoded.
469
470         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
471         low-numbered articles.
472
473 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
474
475         * rfc2047.el (rfc2047-syntax-table): Simplify.
476
477         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
478
479         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
480         set-char-table-range for XEmacs.
481
482 2010-11-10  Glenn Morris  <rgm@gnu.org>
483
484         * time-date.el (time-to-seconds): Always an alias on Emacs,
485         never a real function.
486         (with-no-warnings): Remove compat stub, now unused.
487         (time-less-p): Doc fix.
488         (time-to-number-of-days): Simplify.
489
490         * smime.el (from): Remove unused declaration.
491
492         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
493         (gnus-float-time): On Emacs, always an alias.
494
495         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
496         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
497
498 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
499
500         * dgnushack.el: Don't use ignore-errors in the top level form since it
501         is unavailable in XEmacs even if cl is loaded.
502
503         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
504
505 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
506
507         * shr.el (browse-url-mailto): Autoload.
508
509         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
510
511         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
512         regexp doesn't need quoting.
513
514 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
515
516         * message.el (message-subject-trailing-was-ask-regexp)
517         (message-subject-trailing-was-regexp): Match was: in addition to was.
518
519 2010-11-09  Glenn Morris  <rgm@gnu.org>
520
521         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
522         (nnbabyl-check-mbox): Use point-at-bol.
523
524 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
525
526         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
527
528         * message.el (message-mailto): New function.
529         (message-mailto): Should accept other parameters.
530         (message-mailto): Remove since it duplicates browse-url-mailto
531         functionality.
532
533 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
534
535         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
536         methods.
537         (gnus-read-active-file): Ditto.
538
539         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
540         ": " from the prompt.
541         (gnus-group-make-group): Ditto.
542
543 2010-11-07  Glenn Morris  <rgm@gnu.org>
544
545         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
546         (gnus-bookmark-kill-line): Use point-at-eol.
547
548 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
549
550         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
551         asterisks in From header.
552
553 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
554
555         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
556         string to avoid making the From headers syntactically invalid.
557
558         * message.el (message-send-mail): Don't insert courtesy messages if the
559         message already has List-Post and List-ID messages.
560
561 2010-11-06  Glenn Morris  <rgm@gnu.org>
562
563         * gnus-art.el (gnus-treat-article): Give dynamic local variables
564         `condition', `type', `length' a prefix.
565         (gnus-treat-predicate): Update for above name changes.
566
567 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
568
569         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
570         binding.  Handled by `gnus-summary-refer-thread' instead.
571         (nnir-warp-to-article): New backend function.
572
573         * nnimap.el (nnimap-request-thread): Force dependency updating.
574
575         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
576         (gnus-summary-refer-thread): Rework to improve thread-referral.
577
578         * gnus-int.el (gnus-warp-to-article): New function.
579
580         * gnus-sum.el (gnus-summary-article-map): Bind it.
581
582 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
583
584         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
585         gnus-summary-refer-thread.
586
587         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
588         headers.
589         (gnus-summary-limit-include-thread): Prevent articles in thread from
590         being cut in gnus-cut-threads.
591         (gnus-summary-refer-thread): Limit retrieved headers to those in
592         thread.
593
594 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
595
596         * message.el (message-send-mail): Use the value of
597         message-courtesy-message from the message buffer.
598
599         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
600
601         * shr.el (shr-browse-url): Implement mailto: URLs.
602
603         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
604         "raw".
605
606         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
607         if it's already selected.
608
609         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
610
611 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
612
613         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
614         to measure the length and truncate alt text.
615
616 2010-11-03  Glenn Morris  <rgm@gnu.org>
617
618         * nndiary.el (nndiary-generate-nov-databases-1)
619         (nndiary-generate-active-info): Rename dynamic variable `files' to
620         something less generic.
621
622 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
623
624         * nnir.el (nnir-request-move-article): Call the underlying backend to
625         move articles from nnir.
626
627 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
628
629         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
630
631 2010-11-02  Julien Danjou  <julien@danjou.info>
632
633         * nnir.el: Remove wais support.
634
635 2010-11-02  Glenn Morris  <rgm@gnu.org>
636
637         * gnus-html.el: Reorder requirements to quieten compiler.
638
639 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
640
641         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
642         properly for XEmacs as well.
643         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
644         (gnus-article-natural-long-line-p): Use window-width rather than
645         frame-width.
646
647 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
648
649         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
650         (nnir-read-parms): Don't modify query.
651         (nnir-run-query): Add ability to search topic on current line.
652         (nnir-get-active): Clean up.
653
654 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
655
656         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
657         degenerate articles.
658
659         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
660         (gnus-print-buffer): Just print the buffer as is, without any copying
661         to a buffer and then re-highlighting.
662
663         * nnimap.el (nnimap-request-group): Store the new updated info.
664         (nnimap-request-group): Select the group when we don't know whether it
665         exists or not.
666
667         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
668         groups.
669
670         * gnus-group.el (gnus-group-find-new-groups): Display all the new
671         groups.
672
673         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
674         groups.
675
676         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
677         long-lines case by only filling the long lines.
678
679         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
680         (bug #7311).
681
682 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
683
684         * shr.el: No need to declare `declare-function' since shr.el is for
685         only Emacsen that provide `libxml-parse-html-region'.
686
687         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
688         effective only in a file it is referred to.
689
690 2010-11-01  Glenn Morris  <rgm@gnu.org>
691
692         * mm-util.el (gnus-completing-read): Autoload.
693         (mm-read-coding-system): Simplify Emacs definition.
694
695         * nnmail.el (gnus-activate-group):
696         * nnimap.el (gnutls-negotiate):
697         * nntp.el (netrc-parse): Fix declarations.
698
699 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
700
701         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
702         string-match-p in Emacs >=23.
703
704         * gnus-msg.el (gnus-configure-posting-styles)
705         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
706
707 2010-11-01  Glenn Morris  <rgm@gnu.org>
708
709         * nnir.el (declare-function): Add compat stub.
710         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
711         (nnir-run-gmane): Require 'mm-url.
712
713         * mm-util.el (mm-string-to-multibyte): Simplify.
714
715         * shr.el (declare-function): Add compat stub.
716         (url-cache-create-filename): Declare.
717         (mm-disable-multibyte, widget-convert-button): Autoload.
718
719         * smime.el (ldap-search): Declare.
720         (smime-cert-by-ldap-1): Require ldap on Emacs.
721
722         * nnimap.el: Require nnmail, and gnus-sum when compiling.
723         (nnimap-keepalive): Use gnus-float-time.
724
725         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
726         (mail-source-delete-crash-box): Use gnus-float-time.
727
728         * gnus-dired.el (gnus-completing-read): Autoload.
729
730         * mm-view.el (gnus-rescale-image): Autoload.
731
732         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
733
734         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
735
736         * sieve-manage.el: Require 'cl when compiling.
737
738         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
739         (gnus-iswitchb-completing-read): Require iswitchb.
740         (gnus-select-frame-set-input-focus): Silence compiler.
741
742 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
743
744         * message.el (message-subject-trailing-was-query): Change default to t,
745         since I think that's what most people want.
746
747         * nnimap.el (nnimap-request-accept-article): Erase buffer before
748         appending for easier debugging.
749         (nnimap-wait-for-connection): Take a regexp.
750         (nnimap-request-accept-article): Wait for the continuation line before
751         sending anything unless we're streaming.
752
753         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
754         leave the header washing to take place.
755
756 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
757
758         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
759         regular expression match and replace in posting styles.
760
761 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
762
763         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
764         an entire server.
765         (nnir-get-active): New function.
766         (nnir-run-imap): Use it.
767         (nnir-run-gmane): Who knew, gmane search returns an article score!
768
769         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
770         server on the current line with nnir.
771
772 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
773
774         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
775         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
776         left edge.
777         (gnus-article-foldable-buffer): Skip past the prefix when determining
778         raggedness.
779
780         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
781         the raw article, and change `C-u g' to show the article without doing
782         treatments.
783
784         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
785         on to `gnus-treat-article'.
786         (gnus-inhibit-article-treatments): New variable.
787
788         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
789
790         * gnus-art.el (gnus-treatment-function-alist): Have
791         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
792         (gnus-treat-fill-long-lines): Change default to fill all text/plain
793         sections.
794
795         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
796         parameter.
797         (gnus-article-fill-cited-long-lines): New function.
798         (gnus-article-fill-cited-article): Allow filling only long sections.
799
800         * shr.el (shr-find-fill-point): Don't break lines between punctuation
801         and non-punctuation (like after the apostrophe in "'We").
802
803         * gnus-sum.el (gnus-summary-select-article): Make sure
804         gnus-original-article-buffer is alive.
805
806         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
807         reflect the order they're in in the digest.
808
809         * gnus.el (gnus-group-startup-message): Move point to the start of the
810         buffer.
811
812         * nnimap.el (nnimap-capability): New function.
813         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
814         is set.
815
816 2010-10-31  David Engster  <dengste@eml.cc>
817
818         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
819         conform with changes to gnus-completing-read.
820
821 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
822
823         * shr.el (shr-tag-img): Output "*" instead of "[img]".
824
825 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
826
827         * nnir.el: Move defvar, defcustom around to keep file organized
828         and keep byte-compiler quiet.
829         (nnir-read-parms): Accept search-engine as arg.
830         (nnir-run-query): Pass search-engine as arg.
831         (nnir-search-engine): Remove.
832
833 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
834
835         * shr.el (shr-generic): The text nodes should be text, not :text.
836
837         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
838         later in the file.
839
840 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
841
842         * nnir.el: General clean up.  Allow searching with multiple engines.
843         Allow separate extra-parameters for each engine.
844         Batch queries when possible.
845         (nnir-imap-default-search-key,nnir-method-default-engines):
846         Add customize interface.
847         (nnir-run-gmane): New engine.
848         (nnir-engines): Use it.  Qualify all prompts with engine name.
849         (nnir-search-engine): Remove global variable.
850         (nnir-run-hyrex): Restore for now.
851         (nnir-extra-parms,nnir-search-history): New variables.
852         (gnus-group-make-nnir-group): Use them.
853         (nnir-group-server): Remove in favor of gnus-group-server.
854         (nnir-request-group): Avoid searching twice.
855         (nnir-sort-groups-by-server): New function.
856
857 2010-10-30  Julien Danjou  <julien@danjou.info>
858
859         * gnus-group.el: Remove gnus-group-fetch-control.
860
861         * gnus-start.el (gnus-find-new-newsgroups):
862         Remove gnus-check-first-time-used.
863
864         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
865
866 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
867
868         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
869         set on groups that don't have \* permanentflags.
870
871 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
872
873         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
874         control the background color.
875         (shr-tag-img): Ignore very small web bug type images.
876         (shr-put-image): Add help-echo alt texts to the images.
877         (shr-tag-video): Show the video poster image.
878
879 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
880
881         * shr.el (shr-table-depth): New variable.
882         (shr-tag-table-1): Only insert the images after the top-level table.
883
884         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
885
886         * gnus-util.el (gnus-list-memq-of-list): New function.
887
888         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
889         selected.
890         (nnimap-unsplittable-articles): New slot.
891         (nnimap-new-articles): Use it.
892
893 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
894
895         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
896         move to the previous line on `M-g'.
897
898 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
899
900         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
901         *-request-group, which seems unnecessary.
902
903         * nnimap.el (nnimap-quote-specials): Function copied over from
904         imap.el.
905         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
906         they support that.  Suggested by Tom Regner.
907
908 2010-10-29  Julien Danjou  <julien@danjou.info>
909
910         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
911         defalias.
912         (gnus-summary-delete-marked-with): Remove obsolete defalias.
913
914         * gnus.el: Remove `gnus-nntp-service' variable.
915         (gnus-secondary-servers): Make obsolete.
916         (gnus-nntp-server): Make obsolete.
917
918         * gnus-start.el (gnus-1): Remove x-splash calls.
919
920         * gnus-ems.el (gnus-x-splash): Remove.
921
922         * gnus.el (gnus-group-startup-message): Simplify/update code.
923
924         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
925         definition.
926
927         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
928         capability before doing anything.
929         (gnus-group-insert-group-line): Remove useless
930         gnus-group-remove-excess-properties.
931
932 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
933
934         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
935
936 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
937
938         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
939         config after reselecting.
940
941 2010-10-28  Julien Danjou  <julien@danjou.info>
942
943         * shr.el (shr-put-image): Use point even if only inserting text.
944         (shr-put-image): Save excursion when inserting alt text on non-graphic
945         display, so the behaviour is the same when we are on a graphic display.
946
947         * nnir.el (nnir-run-swish-e): Remove hyrex support.
948
949 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
950
951         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
952         (gnus-mime-copy-part): Check coding system, not charset.
953         (gnus-mime-view-part-externally): Never remove part.
954         (gnus-mime-view-part-internally): Don't remove part here.
955         (gnus-article-part-wrapper): Make sure MIME tag is visible.
956         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
957         multipart/alternative.
958
959         * mm-decode.el (mm-display-part): Take optional arg `force'.
960
961 2010-10-26  Julien Danjou  <julien@danjou.info>
962
963         * gnus-group.el (gnus-group-default-list-level): Add this function to
964         compute the default list level.
965         (gnus-group-default-list-level): Add possibility to use a function.
966
967 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
968
969         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
970
971         * gnus-group.el (gnus-group-completing-read)
972         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
973         gnus-replace-in-string.
974
975 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
976
977         * shr.el (shr-tag-div): Add.
978
979         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
980
981 2010-10-25  Julien Danjou  <julien@danjou.info>
982
983         * gnus-util.el: Remove `gnus-with-local-quit'.
984
985         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
986
987 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
988
989         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
990         the original article buffer.
991
992 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
993
994         * nnimap.el (nnimap-request-head): New function.
995         (nnimap-request-move-article): Try to be slighly faster by not
996         requesting the entire message when moving.
997         (nnimap-transform-headers): Don't bug out on bodiless articles.
998         (nnimap-send-command): Have no outstanding messages if the IMAP server
999         doesn't support streaming.
1000         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
1001
1002 2010-10-24  Julien Danjou  <julien@danjou.info>
1003
1004         * message.el (message-default-headers): Fix type.
1005
1006 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1007
1008         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
1009         prefetching images.
1010
1011         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
1012         backend for unknown groups.  This is mainly useful for nnimap groups.
1013
1014         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
1015         group isn't covered by the agent.
1016
1017 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
1018
1019         * nnir.el (nnir-method-default-engines): New variable.
1020         (nnir-run-query): Use it.
1021         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
1022         (gnus-summary-nnir-goto-thread): Change group if needed.
1023
1024         * gnus-group.el (gnus-group-group-map): Add key binding for
1025         gnus-group-make-nnir-group.
1026
1027 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1028
1029         * shr.el (shr-tag-object): Add.
1030
1031         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
1032         original article buffer live.
1033         (gnus-summary-select-article-buffer):
1034         Mention gnus-widen-article-buffer.
1035
1036 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1037
1038         * shr.el (shr-tag-strong): Add.
1039
1040 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1041
1042         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
1043         group names.  They mess up the group buffer badly.
1044
1045         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
1046
1047         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
1048         instead of the summary one.
1049
1050 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1051
1052         * mml.el (mml-preview): Work properly when editing article.
1053
1054         * gnus-start.el (gnus-read-active-file-1): Don't add method to
1055         gnus-have-read-active-file if it's already been in.
1056
1057 2010-10-22  Tom Tromey  <tromey@redhat.com>
1058
1059         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
1060         gnus-group-completing-read.
1061
1062 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1063
1064         * message.el (message-mode-map): Don't bind M-; to comment region, to
1065         allow the global comment-dwim to work.
1066
1067 2010-10-21  Julien Danjou  <julien@danjou.info>
1068
1069         * message.el (message-setup-1): Allow message-default-headers to be a
1070         function.
1071
1072 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1073
1074         * shr.el (shr-tag-table): Simplify.
1075
1076 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1077
1078         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
1079         to avoid trying to snarf invalid stuff.
1080
1081         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
1082
1083         * gnus.el (gnus-message-archive-group): Quote value.
1084         (gnus-message-archive-group): Mark as changed.
1085
1086         * shr.el (shr-add-font): Don't put the font properties on the newline
1087         or the indentation.
1088
1089         * message.el (message-fix-before-sending): Change options when sending
1090         non-printable characters.
1091
1092         * gnus.el (gnus-message-archive-method): Change the default to
1093         monthly outgoing groups.
1094
1095         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
1096         that have gotten new numbers.
1097
1098         * nnimap.el (nnimap-request-replace-article): New function.
1099
1100 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1101
1102         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
1103         (nnrss-request-article): Don't use special html washing code.
1104
1105 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1106
1107         * shr.el (shr-tag-table): Remove useless nconc.
1108
1109 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1110
1111         * gnus-art.el (article-wash-html): Simplify and remove the charset
1112         stuff.  Use the normal html rendering code instead of the special html
1113         washing code.
1114
1115         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
1116         `gnus-w3m' symbols.
1117         (mm-text-html-washer-alist): Remove.
1118
1119         * mm-decode.el (mm-inline-text-html-renderer): Remove.
1120         (mm-inline-media-tests): Remove use.
1121         (mm-text-html-renderer): Change default to the `shr' symbol.
1122
1123         * mm-view.el (mm-inline-text-html): Remove use.
1124
1125         * gnus-art.el (gnus-blocked-images): New function.  Allow the
1126         `gnus-blocked-images' to be a function.
1127         (gnus-article-wash-function): Remove.
1128
1129 2010-10-20  Julien Danjou  <julien@danjou.info>
1130
1131         * spam.el (spam-list-of-processors): Mark as obsolete.
1132
1133         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
1134         (nnimap-insert-partial-structure): Fix boundary detection.
1135
1136 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
1137
1138         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
1139         run file-truename on remote files.  This can be expensive and even
1140         prevent one from editing drafts if some unrelated buffer has a stale
1141         connection.
1142
1143 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1144
1145         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
1146         kinsoku-eol regardless of shr-kinsoku-shorten.
1147         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
1148         (shr-tag-table): Support caption, thead, and tfoot.
1149
1150 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1151
1152         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
1153         lines.
1154         (shr-save-contents): New command and keystroke.
1155
1156         * nndoc.el (nndoc-type-alist): Add git support.
1157         (nndoc-git-type-p): New function.
1158         (nndoc-transform-git-article): Ditto.
1159         (nndoc-transform-git-headers): Ditto.
1160         (nndoc-transform-git-headers): Generate Subject headers.
1161
1162         * shr.el (shr-parse-style): New function.
1163         (shr-tag-span): Ditto.
1164
1165         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
1166         to `G G' to avoid collisions.
1167
1168 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1169
1170         * shr.el: Load kinsoku if necessary.
1171         (shr-kinsoku-shorten): New internal variable.
1172         (shr-find-fill-point): Make kinsoku shorten text line if
1173         shr-kinsoku-shorten is bound to non-nil.
1174         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
1175         shr-indentation too when testing if table is wider than frame width.
1176         (shr-insert-table): Use `string-width' instead of `length' to measure
1177         text width.
1178         (shr-insert-table-ruler): Make sure indentation is done at bol.
1179
1180 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1181
1182         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
1183         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
1184         undecoded network data.
1185
1186 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1187
1188         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
1189         name in the mode line spec so that the mode line menu works
1190         (bug #2431).
1191
1192         * message.el (message-get-reply-headers): If we're fed `to-address',
1193         then always use that.
1194
1195         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
1196         aren't so wide as to need to switch off the edit menu.
1197
1198         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
1199         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
1200
1201         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
1202         `M-g'.
1203         (nnimap-update-info): Update flags/read marks even if \* isn't part of
1204         the permanent marks.
1205
1206 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
1207
1208         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
1209         Splitting according to references/in-reply-to obeys the ignore-groups
1210         variable, while splitting by sender and subject do not.
1211
1212 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1213
1214         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
1215         alist, so that we can look for non-Unicode chars.
1216         (article-translate-strings): Allow both character and string maps.
1217
1218 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1219
1220         * shr.el (shr-insert): Don't insert space behind a wide character
1221         categorized as kinsoku-bol, or between characters both categorized as
1222         nospace.
1223
1224 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
1225
1226         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
1227         headers to gnus-newsgroup-headers.
1228
1229 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1230
1231         * shr.el (shr-tag-img): Don't align images -- since we're not
1232         rescaling, this often leads to ugly displays.
1233
1234 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
1235
1236         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
1237         duplicates.
1238
1239 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
1240
1241         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
1242         call.
1243
1244 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1245
1246         * gnus.el: Autoload gnus-html-show-images.
1247
1248         * nnimap.el: Use nnheader-message throughout.
1249
1250         * shr.el (shr-tag-img): Ignore images with no data.
1251
1252 2010-10-15  Julien Danjou  <julien@danjou.info>
1253
1254         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
1255         a possibility to disable format=flow encoding when using hard newlines.
1256
1257 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1258
1259         * shr.el (shr-insert): Remove space inserted before or after a
1260         breakable character or at the beginning or the end of a line.
1261         (shr-find-fill-point): Do kinsoku; find the second best point or give
1262         it up if there's no breakable point.
1263
1264 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1265
1266         * nnimap.el (nnimap-open-connection): Message when opening connection
1267         for debugging purposes.
1268
1269         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
1270         on every setup buffer call to allow this to change from article to
1271         article.
1272
1273         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
1274         buffers where we have a wide table.
1275
1276 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
1277
1278         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
1279         uses *-request-thread.
1280
1281 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1282
1283         * nnimap.el (nnimap-open-connection): Remove %s from openssl
1284         incantation, which is no longer valid.
1285
1286 2010-10-14  Julien Danjou  <julien@danjou.info>
1287
1288         * shr.el: Fix defcustom type (char -> character).
1289
1290 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1291
1292         * nnimap.el (nnimap-open-connection): tls-program should be a list of
1293         programs.
1294
1295 2010-10-14  Julien Danjou  <julien@danjou.info>
1296
1297         * shr.el (shr-tag-a): Use url-link as widget type.
1298
1299         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
1300         `gnus-group-get-icon'.
1301
1302 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1303
1304         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
1305         This should make server editing work better.
1306
1307         * shr.el (shr-find-fill-point): Don't inloop on indented text.
1308
1309         * tls.el (tls-program): Remove spurious %s from openssl.
1310
1311         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
1312         (nnimap-parse-flags): Fix regexp.
1313
1314         * shr.el (shr-find-fill-point): Use a filling algorithm that should
1315         probably work for CJVK text, too.
1316
1317         * nnimap.el (nnimap-extend-tls-programs): Remove.
1318         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
1319
1320         * tls.el (tls-starttls-switches): Remove starttls hack.
1321         (open-tls-stream): Ditto.
1322         (tls-find-starttls-argument): Ditto.
1323
1324 2010-10-13  Julien Danjou  <julien@danjou.info>
1325
1326         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
1327         responses.
1328
1329 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1330
1331         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
1332
1333         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
1334         anything in Emacs.
1335
1336         * shr.el (shr-current-column): Remove buggy and unnecessary function.
1337
1338 2010-10-13  Julien Danjou  <julien@danjou.info>
1339
1340         * shr.el (shr-width): Make shr-width a defcustom with default to
1341         fill-column.
1342         (shr-tag-img): Use shr-width rather than fill-column.
1343
1344 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1345
1346         * dgnushack.el (byte-optimize-apply)
1347         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
1348
1349         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
1350         position when (X-)Faces exist.
1351         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
1352         avatars when called interactively.
1353
1354 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1355
1356         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
1357         gnus-article-x-face-too-ugly is bound.
1358
1359 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1360
1361         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
1362
1363         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
1364         mailbox that doesn't exist.
1365
1366 2010-10-12  Julien Danjou  <julien@danjou.info>
1367
1368         * shr.el (shr-tag-img): Encode URL properly when retrieving.
1369         (shr-get-image-data): Encode URL properly when fetching from cache.
1370         (shr-tag-img): Use aligned-to spaces to align correctly images.
1371
1372         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
1373         before inserting the Gravatar.
1374
1375         * shr.el (shr-tag-img): Add align attribute support for <img>.
1376
1377 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1378
1379         * gnus-gravatar.el (gnus-art): Require.
1380
1381         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
1382         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
1383         Remove long obsoleted functions.
1384
1385 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1386
1387         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
1388
1389         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
1390
1391         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
1392         gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
1393         hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
1394         mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
1395         mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
1396         nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
1397         sieve-manage.el, smime.el, spam.el: Fix comment for declare-function.
1398
1399 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1400
1401         * nnimap.el (nnimap-request-rename-group): Select group read-only
1402         before renaming it.
1403
1404         * shr.el (shr-insert): Fix up the white space only regexp.
1405
1406         * nnimap.el (nnimap-transform-split-mail): Not all articles have
1407         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
1408
1409         * shr.el (shr-current-column): New function.
1410         (shr-find-fill-point): New function.
1411
1412 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1413
1414         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
1415         numbers.
1416
1417 2010-10-11  Julien Danjou  <julien@danjou.info>
1418
1419         * shr.el (shr-hr-line): Add.
1420         (shr-tag-hr): Use shr-hr-line to specify which character to use to
1421         display hr lines.
1422         (shr-max-columns): Do not change state to nil if we just inserting
1423         spaces.
1424
1425 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1426
1427         * gnus-topic.el (gnus-topic-read-group): If after the last group,
1428         select the last group.
1429
1430 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
1431
1432         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
1433
1434 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
1435
1436         * dig.el (dig-mode-map): Declare and define in one step.
1437
1438 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1439
1440         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
1441         for Gnus.
1442         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
1443         (nnimap-update-qresync-info): Mark \Seen articles as read.
1444
1445         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
1446         non-variable, too.
1447
1448         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
1449         available.
1450         (nnimap-update-info): Rely more on the current active than the param
1451         active to avoid marking articles as read too much.
1452
1453         * auth-source.el (auth-source-create): Use (user-login-name) for the
1454         user name default.
1455
1456         * nnimap.el (nnimap-update-info): If the server doesn't return any
1457         useful info, just use the previous info.
1458         (nnimap-update-info): Prefer old info over start-article.
1459         (nnimap-update-qresync-info): Finish implementing QRESYNC.
1460
1461 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
1462
1463         * nnir.el (autoload): Clean up autoloads.
1464         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
1465         Use key rather than value.
1466         (nnir-imap-search-other): New variable.
1467         (nnir-read-parm): Use it.
1468         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
1469         (gnus-summary-nnir-goto-thread): Modify to work with imap.
1470
1471 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1472
1473         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
1474         the process, too.
1475
1476 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1477
1478         * spam.el (gnus-summary-mode-map): Bind to "$".
1479         Suggested by Russ Allbery.
1480
1481         * shr.el: Rework the way things are indented by <li> slightly.
1482
1483         * gnus.el (gnus-group-set-parameter): Fix typo.
1484
1485         * nnimap.el: Start implementing QRESYNC support.
1486
1487 2010-10-09  Julien Danjou  <julien@danjou.info>
1488
1489         * nnir.el (nnir-engines): Fix too many arguments.
1490
1491 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1492
1493         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
1494         group is the "last", so that the backends like nnfolder actually save
1495         their folders.
1496
1497         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
1498         try to use that for the tls stream.
1499         (nnimap-retrieve-group-data-early): Rework the marks code to heed
1500         UIDVALIDITY and find out which groups are read-only and not.
1501         (nnimap-get-flags): Use the same marks parsing code as the rest of
1502         nnimap.
1503
1504 2010-10-09  Julien Danjou  <julien@danjou.info>
1505
1506         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
1507
1508         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
1509         retrieving gravatars.
1510
1511         * shr.el (shr-table-corner): Add.
1512         (shr-table-line): Add.
1513         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
1514
1515 2010-10-08  Julien Danjou  <julien@danjou.info>
1516
1517         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
1518
1519 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
1520
1521         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
1522
1523         * gnus-sum.el (gnus-mark-article-as-unread)
1524         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
1525         (gnus-summary-set-bookmark): Use it.
1526
1527         * gnus-msg.el (gnus-setup-message): Use it.
1528
1529         * gnus-demon.el (gnus-demon-remove-handler): Use it.
1530
1531         * gnus.el (gnus-group-remove-parameter): Use it.
1532
1533         * gnus-group.el (gnus-group-make-web-group): Use it.
1534
1535         * gnus-demon.el (gnus-demon-remove-handler): Use it.
1536
1537         * nnregistry.el: Update docs to mention manual.
1538
1539         * gnus-registry.el: Update docs to mention nnregistry.el.
1540         (gnus-registry-initialize): Don't install nnregistry refer method
1541         automatically.
1542         (gnus-registry-install-nnregistry): Remove it.
1543
1544 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1545
1546         * shr.el (shr-insert): Don't insert double spaces.
1547
1548 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1549
1550         * gnus-gravatar.el (gnus-treat-from-gravatar)
1551         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
1552         called interactively.
1553
1554         * gnus-art.el (gnus-mime-view-part-externally)
1555         (gnus-mime-view-part-internally): Make predicate function passed to
1556         gnus-mime-view-part-as-type assume argument is a mime type, not a list
1557         of a mime type.
1558
1559         * shr.el (shr-table-widths): Don't use cl function `reduce'.
1560
1561 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1562
1563         * shr.el (require): Require cl when compiling.
1564         (shr-tag-hr): New function.
1565
1566         * nnimap.el (nnimap-update-info): Remove double setting of high.
1567         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
1568         This makes nnimap work properly on Courier again.
1569
1570         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
1571         the variable for backwards compatability.
1572
1573         * mm-decode.el (mm-save-part): If given a non-directory result, expand
1574         the file name before using to avoid setting mm-default-directory to
1575         nil.
1576
1577         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
1578         bidning gnus-agent variables.
1579
1580         * shr.el (shr-render-td): Use a cache for the table rendering function
1581         to avoid getting an exponential rendering behaviour in nested tables.
1582         (shr-insert): Rework the line-breaking algorithm.
1583         (shr-insert): Don't leave trailing spaces.
1584         (shr-insert-table): Also insert empty TDs.
1585         (shr-tag-blockquote): Ensure paragraphs after </ul>.
1586
1587 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1588
1589         * gnus-sum.el (gnus-number): Rename from `number'.
1590         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
1591         (gnus-summary-limit-children): Update uses correspondingly.
1592
1593 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1594
1595         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
1596         (gnus-gravatar-transform-address): Don't show avatars of people of
1597         which mail addresses match gnus-gravatar-too-ugly.
1598
1599 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1600
1601         * shr.el (shr-table-widths): Expand TD elements to fill available
1602         space.
1603
1604 2010-10-07  Julien Danjou  <julien@danjou.info>
1605
1606         * nnimap.el (nnimap-request-rename-group): Add this method.
1607
1608 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1609
1610         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
1611         name from XEmacs' function-arglist.
1612
1613         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
1614         gravatar under XEmacs.
1615
1616 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
1617
1618         * auth-source.el: Update docs with TODO items.
1619
1620         * gnus-sync.el: Update docs to explain state and plans.
1621
1622         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
1623         Hooks for mark updates.
1624         (gnus-request-set-mark, gnus-request-update-mark): Use them.
1625
1626         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
1627         hooks with arguments, which is needed for mark update hooks.
1628
1629 2010-10-06  Julien Danjou  <julien@danjou.info>
1630
1631         * gnus.el (gnus-expand-group-parameter): Only return and act on what
1632         was matched.
1633
1634         * sieve-manage.el: Update example in `Commentary'.
1635
1636         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
1637
1638         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
1639         not 2000.
1640         (sieve-manage-authenticate): Re-add function.
1641
1642 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1643
1644         * shr.el (shr-insert): Get 'space transition right.
1645         (shr-render-td): Only delete space at the end of the TD.
1646
1647         * nnimap.el (nnimap-open-connection): Prepare to support
1648         open-gnutls-stream.
1649
1650         * shr.el: Rearrange function order to be more logical.
1651
1652 2010-10-06  Julien Danjou  <julien@danjou.info>
1653
1654         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
1655         (nnrss-discover-feed): Remove 404 URL in docstring.
1656
1657         * nnir.el: Fix Swish-E URL.
1658         Fix Namazu URL.
1659
1660         * message.el (message-change-subject): Remove 404 URL in a comment.
1661
1662 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1663
1664         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
1665         called interactively.
1666
1667         * gnus-util.el (gnus-remove-if): Allow hash table.
1668         (gnus-remove-if-not): New function.
1669
1670         * gnus-art.el (gnus-mime-view-part-as-type)
1671         * gnus-score.el (gnus-summary-score-effect)
1672         * gnus-sum.el (gnus-read-move-group-name):
1673         Replace remove-if-not with gnus-remove-if-not.
1674
1675         * gnus-group.el (gnus-group-completing-read):
1676         Regard collection as a hash table if it is not a list.
1677
1678 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1679
1680         * shr.el (shr-render-td): Allow blank/missing <TD>s.
1681
1682         * shr.el: Document the table-rendering algorithm.
1683
1684 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1685
1686         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
1687         for Emacsen having no `libxml-parse-html-region' support.
1688
1689 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1690
1691         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
1692         invalid URLs.
1693
1694         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
1695         line-broken.
1696         (shr-tag-img): Ignore image fetching errors.
1697         (shr-overlays-in-region): Compute overlay positions correctly.
1698
1699         * mm-decode.el (mm-shr): Require shr.
1700
1701         * gnus-art.el (gnus-blocked-images): Move variable here.
1702
1703         * shr.el (shr-insert-table): Bind free variable.
1704
1705         * mm-decode.el (mm-shr): Bind shr-content-function.
1706
1707         * shr.el (shr-content-function): New variable.
1708
1709         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
1710         added for symmetry.
1711
1712         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
1713
1714         * gnus-group.el (gnus-group-make-group): Doc fix.
1715
1716         * nnimap.el (nnimap-request-newgroups): Return success.
1717
1718         * shr.el (shr-find-elements): New function.
1719         (shr-tag-table): Put all the images after the table.
1720         (shr-tag-table): Really inhibit images inside the table.
1721         (shr-collect-overlays): Copy over overlays from the TD elements to the
1722         main document.
1723
1724         * mm-decode.el (mm-shr): Bind shr-blocked-images to
1725         gnus-blocked-images.
1726
1727 2010-10-05  Julien Danjou  <julien@danjou.info>
1728
1729         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
1730
1731         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
1732         (gnus-html-maximum-image-size): Add this function.
1733         (gnus-html-put-image): Use gnus-html-maximum-image-size.
1734
1735         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
1736         server-value of the capability is nil.
1737
1738 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1739
1740         * shr.el (shr-tag-em): Add <EM> tag.
1741
1742 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
1743
1744         * sieve-manage.el (sieve-manage-default-stream): Make default stream
1745         customizable.
1746
1747         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
1748         handing broken links to browse-url.
1749
1750 2010-10-05  Julien Danjou  <julien@danjou.info>
1751
1752         * gnus-util.el (gnus-emacs-completing-read)
1753         (gnus-iswitchb-completing-read): Use autoload rather than require.
1754
1755 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1756
1757         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
1758         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
1759         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
1760         iswitchb-temp-buflist for XEmacs.
1761
1762         * gnus-util.el (gnus-completing-read-function): Exclude
1763         gnus-icompleting-read and gnus-ido-completing-read from candidates for
1764         XEmacs since iswitchb.el is very old and ido.el is unavailable in
1765         XEmacs.
1766
1767         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
1768         not to use `delete-dups' that is unavailable in XEmacs 21.4.
1769
1770         * gnus-html.el: Don't require help-fns under XEmacs.
1771         (gnus-html-schedule-image-fetching): Work for XEmacs.
1772
1773         * mm-decode.el (mm-shr): Decode contents by charset.
1774
1775 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1776
1777         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
1778         unknown.
1779
1780         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
1781         (shr-get-image-data): Ensure against the cache file missing.
1782
1783         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
1784         for data.
1785
1786         * spam-report.el (spam-report-url-ping-plain): Don't query about
1787         killing the process.
1788
1789         * shr.el (shr-render-td): Protect against too-wide text.
1790
1791 2010-10-04  Julien Danjou  <julien@danjou.info>
1792
1793         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
1794         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
1795
1796         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
1797         retrieved.
1798
1799 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1800
1801         * shr.el (browse-url): Require.
1802         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
1803         lines.
1804         (shr-show-alt-text, shr-browse-image): New commands.
1805         (shr-browse-url, shr-copy-url): New commands.
1806
1807         * gnus-sum.el (gnus-widen-article-window): New variable.
1808         (gnus-summary-select-article-buffer): Use it.
1809
1810         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
1811         without @ signs.
1812
1813 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1814
1815         * nnir.el (nnir-run-imap): Remove spurious space in search string.
1816
1817 2010-10-04  Julien Danjou  <julien@danjou.info>
1818
1819         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
1820         for XEmacs.
1821
1822 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1823
1824         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
1825
1826         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
1827         (nnimap-close-server): Implement.
1828
1829         * dgnushack.el (iswitchb): Require to shut up the compiler.
1830
1831         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
1832         (shr-insert): Tweak line breaking.
1833         (shr-insert): Handle <pre> better.
1834         (shr-tag-li): Get <li> indentation right.
1835         (shr-tag-li): Get <li> indentation even righter.
1836         (shr-tag-blockquote): Ensure paragraph start.
1837         (shr-make-table): Tweak table generation.
1838         (shr-make-table): Fix typo.
1839
1840         * shr.el: Implement table rendering.
1841
1842 2010-10-04  Julien Danjou  <julien@danjou.info>
1843
1844         * gnus-html.el (gnus-html-put-image): Fix resize image code.
1845
1846 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1847
1848         * shr.el (shr-insert): Use string anchors instead of line anchors.
1849
1850 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1851
1852         * shr.el: Add headings.
1853         (shr-ensure-paragraph): Actually work.
1854         (shr-tag-li): Make <ul> prettier.
1855         (shr-insert): Get white space at the beginning/end of elements right.
1856         (shr-tag-p): Collapse subsequent <p>s.
1857         (shr-ensure-paragraph): Don't insert double line feeds after blank
1858         lines.
1859         (shr-insert): \t is also space.
1860         (shr-tag-s): Fix "s" tag name function.
1861         (shr-tag-s): Fix face prop name.
1862
1863 2010-10-03  Julien Danjou  <julien@danjou.info>
1864
1865         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
1866
1867         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
1868         gnus-window-inside-pixel-edges.
1869
1870         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
1871         gnus-ems.
1872
1873         * mm-view.el (mm-inline-image-emacs): Support image resizing.
1874
1875         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
1876         function.
1877
1878         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
1879         resize choice.
1880
1881 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1882
1883         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
1884         beginning of the buffer.
1885
1886         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
1887         article buffer again.
1888
1889         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
1890
1891         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
1892         when it's at the start of the buffer.
1893
1894         * shr.el (shr-tag-blockquote): Convert name.
1895         (shr-rescale-image): Use the right image-size variant.
1896
1897         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
1898         buffer isn't shown, then select the current article first instead of
1899         bugging out.
1900         (gnus-summary-select-article-buffer): Show both the article and summary
1901         buffers again.
1902
1903         * shr.el (shr-fontize-cont): Protect against regions with no text.
1904         Rename tag functions to shr-tag-* for enhanced security.
1905         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
1906
1907 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
1908
1909         * shr.el (shr-insert):
1910         * pop3.el (pop3-movemail):
1911         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
1912         loaded.
1913
1914 2010-10-03  Glenn Morris  <rgm@gnu.org>
1915
1916         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
1917
1918         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
1919
1920         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
1921
1922         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
1923
1924         * gnus-util.el (gnus-make-local-hook): Simplify.
1925
1926 2010-10-02  Julien Danjou  <julien@danjou.info>
1927
1928         * gnus-util.el (gnus-iswitchb-completing-read): New function.
1929         (gnus-ido-completing-read): New function.
1930         (gnus-emacs-completing-read): New function.
1931         (gnus-completing-read): Use gnus-completing-read-function.
1932         Add gnus-completing-read-function.
1933
1934 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1935
1936         * shr.el (shr-insert-document): Autoload.
1937         (shr-img): Be silent.
1938         (shr-insert): Add a newline after every picture before text.
1939         (shr-add-font): Use overlays for combining faces.
1940         (shr-insert): Pass upwards the text start point.
1941
1942         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
1943         possible.
1944         (mm-shr): New function.
1945
1946 2010-10-02  Julien Danjou  <julien@danjou.info>
1947
1948         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
1949         should go backward.
1950
1951 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
1952
1953         * shr.el (shr): Fix typo in provide call.
1954
1955 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1956
1957         * shr.el: New file.
1958
1959         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
1960
1961         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
1962         completing read.
1963
1964 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1965
1966         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
1967         we're being queried about.  Suggested by Dan Jacobson.
1968
1969         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
1970         Suggested by Jason Eisner.
1971
1972         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
1973         table, too.  Suggested by Stefan Wiens.
1974         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
1975         the table unnecessary.  Suggested by Stefan Wiens.
1976
1977         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
1978         longer needed, and probably doesn't work either, as pointed out by
1979         Stefan Wiens.
1980         (gnus-summary-exit): Remove call to the clearing function.
1981         (gnus-summary-exit-no-update): Ditto.
1982
1983         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
1984         instead of gnus-eval-in-buffer-window to avoid popping up frames.
1985         Reported by Stefan Monnier.
1986         (gnus-summary-save-in-rmail): Ditto.
1987
1988         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
1989         article buffer, instead of both the article buffer and the summary
1990         buffer.  Sort of suggested by Dan Jacobson.
1991
1992         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
1993
1994         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
1995         Suggested by Dan Jacobson.
1996
1997         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
1998         documentation clearer.
1999
2000         * message.el (message-shorten-references): Comment on the number "21".
2001         Suggested by Stefan Monnier.
2002
2003         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
2004         Suggested by Dan Jacobson.
2005
2006         * gnus.el (gnus-large-newsgroup):
2007         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
2008
2009         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
2010         externalize attachments.  Bug reported by Steve Wen.
2011
2012         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
2013         really message anything to the user.
2014
2015         * nnmail.el (nnmail-article-group): Allow using the fancy split method
2016         directly.
2017
2018         * nnimap.el (nnimap-request-group): Low higher than high to signal no
2019         messages in empty groups.
2020
2021 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
2022
2023         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
2024         non-UIDNEXT group.
2025
2026 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2027
2028         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
2029         not the value from the collection.
2030
2031         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
2032         values.  This sometimes happens on some groups that have no info.
2033         (nnimap-request-newgroups): New function.
2034
2035 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
2036
2037         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
2038         check into `gnus-registry-initialize'.
2039         (gnus-registry-initialize): Ditto.
2040         Fix and extend header docs.
2041
2042 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2043
2044         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
2045         regexp backtrace overflows.
2046
2047         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
2048         for starttls that tls.el implements; i.e. openssl.
2049
2050         * tls.el (tls-starttls-switches): Give up on using starttls with
2051         gnutls-cli.
2052         (tls-program): Add --insecure to be consistent with the defaults from
2053         openssl s_client.  Now all three commands are insecure.
2054
2055 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2056
2057         * lpath.el: Bind completion-styles-alist for XEmacs.
2058
2059         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
2060         (gravatar-create-image): New function that's an alias to
2061         gnus-xmas-create-image, gnus-create-image, or create-image.
2062         (gravatar-data->image): Use it.
2063
2064 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
2065
2066         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
2067         install the nnregistry refer method.
2068         (gnus-registry-install-hooks): Use it.
2069         (gnus-registry-unfollowed-groups): Add nnmairix to the default
2070         unfollowed groups.
2071
2072 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
2073
2074         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
2075         expanding threads.
2076
2077 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2078
2079         * nnir.el: Use the server names without suffixes (bug #7009).
2080
2081         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
2082         unencrypted to STARTTLS, if possible.
2083
2084 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
2085
2086         * message.el (message-ignored-supersedes-headers): Strip Injection-*
2087         headers before superseding.
2088
2089 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2090
2091         * nnrss.el (nnrss-use-local): Add documentation.
2092
2093         * nnimap.el (nnimap-extend-tls-programs): New function.
2094         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
2095         (nnimap-wait-for-connection): Accept the greeting from the stupid
2096         output from openssl s_client -starttls, too.
2097
2098         * tls.el (tls-starttls-switches): New variable.
2099         (tls-find-starttls-argument): Use it.
2100         (open-tls-stream): Ditto.
2101
2102         * netrc.el (netrc-credentials): Return the value of the "default" entry.
2103         (netrc-machine): Ditto.
2104
2105         * nnimap.el (nnimap-find-article-by-message-id): Really return the
2106         article number.
2107         (nnimap-split-fancy): New variable.
2108         (nnimap-split-incoming-mail): Use it.
2109
2110         * nntp.el (nntp-server-list-active-group): Document.
2111
2112         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
2113         SELECT to get the message-id.
2114
2115         * mail-source.el (mail-sources): Remove webmail support.
2116         (defvar): Ditto.
2117         (mail-source-fetcher-alist): Ditto.
2118         (mail-source-fetch-webmail): Remove.
2119
2120         * webmail.el: Remove -- doesn't seem relevant any more.
2121
2122         * gnus.el: Fix up make-obsolete-variable declarations throughout.
2123
2124         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
2125         the \r.
2126
2127 2010-09-30  Julien Danjou  <julien@danjou.info>
2128
2129         * gnus-agent.el (gnus-agent-add-group): Fix call to
2130         gnus-completing-read.
2131
2132 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2133
2134         * nndoc.el (nndoc-retrieve-groups): New function.
2135
2136         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
2137         `default', use nnmail-split-methods.
2138         (nnimap-request-article): Downcase the NILs so that they are nil.
2139
2140         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
2141         symbol.
2142
2143         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
2144         code, since if the user has requested network, that's what they ought
2145         to get.
2146         (nnimap-request-set-mark): Erase the buffer before issuing commands.
2147         (nnimap-split-rule): Mark as obsolete.
2148
2149         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
2150         New variable.
2151
2152         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
2153         correct slot, too.
2154
2155 2010-09-29  Julien Danjou  <julien@danjou.info>
2156
2157         * gnus.el (gnus-local-domain): Declare variable obsolete.
2158
2159         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
2160         Fix history computing.
2161         (gnus-ido-completing-read): Require ido.
2162
2163 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2164
2165         * gnus-registry.el: Don't prompt on load, which makes it impossible to
2166         build Gnus.
2167
2168         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
2169         when interpreting the structures.
2170         (nnimap-request-accept-article): Add \r\n to the lines to make this
2171         work with Cyrus.
2172
2173         * nndraft.el (nndraft-request-expire-articles): Use the group name
2174         instead if "nndraft".  Fix found by Nils Ackermann.
2175
2176 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
2177
2178         * nnregistry.el: Add.
2179
2180 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2181
2182         * nnmail.el (group, group-art-list, group-art):
2183         Remove unneeded directives.
2184
2185 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2186
2187         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
2188         (mm-mime-charset)
2189         * rfc2047.el (rfc2047-syntax-table)
2190         * utf7.el (utf7-utf-16-coding-system): Comment fix.
2191
2192         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
2193         rather than `insert-file-contents' and `eval-region'.
2194
2195         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
2196         construction.
2197
2198         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
2199
2200         * time-date.el: No need to require cl for Emacs 21.
2201
2202 2010-09-29  Julien Danjou  <julien@danjou.info>
2203
2204         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
2205         replacement of `gnus-gravatar-relief' to mimic
2206         `gnus-faces-properties-alist'.
2207         Add :version property.
2208
2209 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2210
2211         * mail-source.el (mail-source-report-new-mail)
2212         * message.el (message-default-mail-headers)
2213         * mm-decode.el (mm-valid-image-format-p): Comment fix.
2214
2215         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
2216
2217 2010-09-28  Julien Danjou  <julien@danjou.info>
2218
2219         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
2220         mail-address contains the same string as real-name.
2221
2222         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
2223         non-blank in header, otherwise it'll get stripped.
2224
2225         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
2226         real-name, and then for mail address rather than doing : or , search.
2227
2228 2010-09-27  Julien Danjou  <julien@danjou.info>
2229
2230         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
2231         right completing-read function.
2232         (gnus-use-ido): New variable
2233         (gnus-completing-read-with-default): Remove.
2234         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
2235         (gnus-agent-add-group):
2236         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
2237         * mm-view.el (mm-view-pkcs7-decrypt):
2238         * mm-util.el (mm-codepage-setup):
2239         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
2240         * mml-smime.el (mml-smime-openssl-sign-query):
2241         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
2242         (mml-insert-multipart):
2243         * gnus-msg.el (gnus-summary-yank-message):
2244         * gnus-int.el (gnus-start-news-server):
2245         * mm-decode.el (mm-interactively-view-part):
2246         * gnus-dired.el (gnus-dired-attach):
2247         * gnus.el (gnus-read-method):
2248         * gnus-bookmark.el (gnus-bookmark-jump):
2249         * gnus-art.el (gnus-mime-view-part-as-type)
2250         (gnus-mime-action-on-part, gnus-article-encrypt-body):
2251         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
2252         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
2253         * nnmairix.el (nnmairix-create-server-and-default-group)
2254         (nnmairix-update-groups, nnmairix-get-server)
2255         (nnmairix-backend-to-server, nnmairix-goto-original-article)
2256         (nnmairix-get-group-from-file-path):
2257         * nnrss.el (nnrss-find-rss-via-syndic8):
2258         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
2259         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
2260         (gnus-group-browse-foreign-server):
2261         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
2262         (gnus-summary-execute-command, gnus-summary-respool-article)
2263         (gnus-read-move-group-name):
2264         * gnus-score.el (gnus-summary-increase-score)
2265         (gnus-summary-score-effect):
2266         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
2267
2268 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2269
2270         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
2271         x-focus-frame.
2272
2273         * nnimap.el (auth-source-forget-user-or-password)
2274         (auth-source-user-or-password): Autoload.
2275
2276         * message.el (message-from-style, message-interactive)
2277         (message-cite-prefix-regexp, message-sendmail-envelope-from)
2278         (message-yank-prefix, message-indentation-spaces, message-signature)
2279         (message-signature-file): Add comment.
2280
2281 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2282
2283         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
2284         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
2285         new articles.
2286
2287         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
2288         parts.
2289         (nnimap-request-article): Work with the t setting, too.
2290
2291         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
2292         that you don't get flashes of other buffers.
2293         (gnus-summary-show-complete-article): Intern before setting.
2294
2295 2010-09-27  David Engster  <dengste@eml.cc>
2296
2297         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
2298         well as HEADERS.
2299         (nnmairix-retrieve-headers): Provide new argument for the above.
2300
2301 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2302
2303         * gnus-sum.el (gnus-summary-move-article): Don't alter
2304         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
2305         group.
2306
2307         * nnimap.el (nnimap-update-info): Don't destructively alter active.
2308
2309         * message.el (message-cite-prefix-regexp): Revert my last edit.
2310
2311         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
2312         variable instead of the Gnus variable.
2313
2314         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
2315
2316         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
2317
2318         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
2319         since some servers don't like it.
2320         (nnimap-open-connection): Forget credentials if the server says the
2321         password was wrong.
2322         (nnimap-parse-line): Protect against invalid data.
2323
2324         * gnus-sum.el (gnus-summary-move-article): Add comment.
2325         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
2326         nothing alters it while scanning for new messages.
2327
2328         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
2329         which may or may not help.
2330         (nnimap-open-connection): If we're doing a stream connection, and then
2331         discover we're on a STARTTLS-capable server, then open a STARTTLS
2332         connection instead.
2333
2334 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2335
2336         * nnimap.el (utf7): Require.
2337
2338         * message.el (message-cite-prefix-regexp): Remove "}" from citation
2339         prefix.
2340
2341 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
2342
2343         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
2344
2345 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2346
2347         * nnimap.el (nnimap-request-accept-article): Message the error on
2348         error.
2349
2350 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2351
2352         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
2353
2354 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2355
2356         * nndoc.el (nndoc-request-list): Return success always.
2357
2358         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
2359         `fetch-old' -- we only want to fetch the articles we've requested.
2360         The rest are in the agent, probably.
2361         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
2362         disappeared server" to something low.  It's not important.
2363
2364         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
2365         arrived before the FETCH data.
2366
2367         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
2368         target here, because we don't know the Gnus name of the group.
2369
2370         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
2371         for the correct group.
2372
2373         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
2374
2375         * gnus.el (gnus): Give a final warning after startup.
2376
2377         * gnus-util.el (gnus-action-message-log): New variable.
2378         (gnus-message): Use it.
2379         (gnus-final-warning): New function.
2380
2381         * nnimap.el (nnimap-open-connection): Record the greeting.
2382         (nnimap): Add greeting.
2383
2384 2010-09-26  Julien Danjou  <julien@danjou.info>
2385
2386         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
2387         arguments.
2388         (gnus-html-wash-images): Fix spec computing to include start/end.
2389
2390         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
2391
2392 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2393
2394         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
2395         deletion.
2396         (nnimap-retrieve-headers): Don't select the group, because that's
2397         already done by nnimap-possibly-change-group.
2398
2399         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
2400         (gnus-picon-transform-address): Use it.
2401
2402         * mail-source.el (mail-source-value): Revert previous patch.
2403
2404         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
2405         on failure.
2406         (nnimap-open-connection): Look up both virtual and physical server name
2407         credentials.
2408
2409         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
2410
2411 2009-02-07  Dave Love  <fx@gnu.org>
2412
2413         * tls.el (open-tls-stream): Don't query killing process.
2414
2415 2009-02-08  Dave Love  <fx@gnu.org>
2416
2417         * gnus-win.el (gnus-window-to-buffer-helper)
2418         (gnus-all-windows-visible-p): Function needn't be a symbol.
2419
2420         * mail-source.el (mail-source-value): Function needn't be a symbol.
2421
2422 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2423
2424         * message.el (message-cite-prefix-regexp): Remove } from the cite
2425         prefix.
2426
2427         * gnus-art.el (gnus-treatment-function-alist): Do picons before
2428         highlight again, so that the highlight is correct.
2429
2430         * gnus-picon.el (gnus-picon): Remove again.
2431         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
2432
2433         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
2434         doing the header highlightling, so that the background colour of the
2435         picon is correct.
2436
2437         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
2438         (gnus-picon): Ditto.
2439         (gnus-picon): Reinstate.  The background colour for picons is white.
2440         (gnus-picon-insert-glyph): Make the background white.
2441
2442         * nnml.el (nnml-open-nov): Don't return dead buffers.
2443
2444         * auth-source.el (auth-source-create): Query the user for whether to
2445         store the credentials.
2446
2447         * netrc.el (netrc-store-data): New function.
2448
2449         * auth-source.el (auth-source-user-or-password): Use the existing auth
2450         sources, if any, for creation.
2451
2452         * gnus.el (gnus-group-fast-parameter): Return the last matching
2453         parameter instead of the first matching parameter.
2454
2455 2010-09-26  Julien Danjou  <julien@danjou.info>
2456
2457         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
2458
2459 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2460
2461         * mml2015.el (mml2015-use): Remove gpg support.
2462
2463         * mml1991.el (mml1991-function-alist): Remove gpg function.
2464         (mml1991-gpg-sign): Remove.
2465
2466 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
2467
2468         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
2469         (gnus-browse-unsubscribe-current-group): Document it.
2470         (gnus-browse-unsubscribe-group): Use it.
2471
2472 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2473
2474         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
2475         address to the To list for easier response.
2476
2477         * gnus.el (gnus-play-startup-jingle): Remove.
2478         (gnus-splash): Don't play jingle.
2479         (gnus): Silence gnus-load message.
2480
2481         * gnus-art.el (gnus-treat-play-sounds): Remove.
2482
2483         * gnus.el (gnus-play-jingle): Remove audio support.
2484
2485         * gnus-cus.el (gnus-score-customize): Remove audio reference.
2486
2487         * earcon.el: Remove -- no users.
2488
2489         * gnus-audio.el: Remove -- no users of this package.
2490
2491         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
2492
2493         * gnus-start.el (gnus-setup-news): Remove nocem support.
2494
2495         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
2496
2497         * gnus.el (gnus-use-nocem): Remove.
2498
2499         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
2500         Remove.
2501
2502         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
2503         uses NoCeM any more.
2504
2505         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
2506         (gnus-button-ctan-handler): Ditto.
2507         (gnus-button-handle-ctan-bogus-regexp): Ditto.
2508         (gnus-button-ctan-directory-regexp): Ditto.
2509         (gnus-button-handle-ctan): Ditto.
2510         (gnus-button-tex-level): Ditto.
2511         (gnus-button-alist): Remove CTAN stuff.
2512
2513 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2514
2515         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
2516         nnimap-streaming test.
2517
2518         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
2519         servers twice.
2520
2521         * nnimap.el (nnimap-open-connection): Add more error reporting when
2522         nnimap fails early.
2523
2524         * nnheader.el (nnheader-get-report-string): New function.
2525         (nnheader-get-report): Use it.
2526
2527         * gnus-int.el (gnus-check-server): Say what the error was when opening
2528         failed.
2529
2530         * nnimap.el (nnimap-wait-for-response): Search further when we're not
2531         using streaming.
2532
2533 2010-09-25  Julien Danjou  <julien@danjou.info>
2534
2535         * gnus-html.el (gnus-html-rescale-image): Use our defalias
2536         gnus-window-inside-pixel-edges.
2537
2538 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2539
2540         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
2541
2542         * mm-decode.el (mm-save-part): Allow saving to other directories the
2543         normal Emacs way.
2544
2545         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
2546         Suggested by Jay Berkenbilt.
2547
2548         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
2549         there isn't a single byte.
2550
2551         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
2552         just do it.  It doesn't really seem to matter what the user responds
2553         here, I think, so it's just a confusing question.
2554
2555         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
2556         non-streaming case.
2557
2558         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
2559         (gnus-article-encrypt-body): Use it.
2560
2561         * gnus-sum.el (gnus-summary-show-complete-article): New command and
2562         keystroke.
2563
2564         * nnimap.el (nnimap-find-wanted-parts-1):
2565         Use gnus-fetch-partial-articles.
2566
2567         * gnus-art.el (gnus-fetch-partial-articles): New variable.
2568
2569         * nnimap.el (nnimap-insert-partial-structure): New function.
2570         (nnimap-get-partial-article): New function.
2571         (nnimap-request-article): Use it.
2572         (nnimap-wait-for-response): Return whether the wait was successful.
2573         (nnimap-finish-retrieve-group-infos): Don't do anything if the
2574         retrieval wasn't successful.
2575         (nnimap-retrieve-group-data-early): Allow throttling servers.
2576         (nnimap-streaming): New variable.
2577         (nnimap-fetch-partial-articles): Remove.
2578
2579         * mm-decode.el (mm-with-part): Protect against killed buffers.
2580
2581         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
2582         for prettier summary display.
2583
2584 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
2585
2586         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
2587
2588 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2589
2590         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
2591         apparently third-party libraries depend on it.
2592
2593         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
2594         before starting negotiation.
2595
2596         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
2597         privacy reasons.
2598         (gnus-treat-mail-gravatar): Ditto.
2599
2600         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
2601         buffer when inserting images.  Inserting text into the headers, for
2602         instance, can make them invalid.
2603
2604 2010-09-25  Julien Danjou  <julien@danjou.info>
2605
2606         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
2607         variables.
2608
2609         * nnheader.el: Remove useless variables news-reply-yank-from and
2610         news-reply-yank-message-id.
2611
2612         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
2613         variables.
2614
2615         * mml1991.el: Remove useless mml1991-verbose.
2616
2617         * gnus.el: Remove useless variable gnus-use-generic-from.
2618         Remove obsolete variable gnus-topic-indentation.
2619
2620         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
2621
2622         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
2623
2624         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
2625
2626         * gnus-group.el: Remove useless gnus-group-icon-cache.
2627         Remove useless gnus-ephemeral-group-server.
2628
2629         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
2630
2631         * mml2015.el: Remove useless mml2015-verbose.
2632
2633         * mml-smime.el: Remove useless mml-smime-verbose.
2634
2635         * gnus.el: Remove useless gnus-local-domain.
2636
2637         * gnus-gravatar.el (gnus-gravatar-transform-address):
2638         Use gnus-gravatar-size.
2639
2640         * gnus-art.el: Remove useless gnus-treat-translate.
2641
2642 2010-09-24  Julien Danjou  <julien@danjou.info>
2643
2644         * gnus-sum.el: Add support for Gravatars.
2645
2646         * gnus-art.el: Add support for Gravatars.
2647
2648         * gnus-gravatar.el: Add this file.
2649
2650         * gravatar.el: Add this file.
2651
2652 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2653
2654         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
2655
2656         * gnus-group.el (gnus-group-fetch-faq): Remove.
2657
2658         * gnus.el (gnus-group-faq-directory): Remove.
2659
2660         * gnus-group.el (gnus-group-fetch-charter): Remove.
2661
2662         * gnus.el (gnus-group-charter-alist): Remove.
2663
2664         * gnus-group.el (gnus-group-archive-directory): Remove.
2665         (gnus-group-recent-archive-directory): Ditto.
2666         (gnus-group-make-archive-group): Remove.
2667
2668         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
2669
2670         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
2671         use the same article number for all the cached articles.
2672
2673         * nnimap.el (nnimap-command): Register the last command time so
2674         that we can use it for idling NOOPs.
2675         (nnimap-open-connection): Start the keeplive timer.
2676         (nnimap-make-process-buffer): Store all the process buffers.
2677         (nnimap-keepalive): New function.
2678
2679         * starttls.el (starttls-open-stream): Add autoload cookie.
2680
2681 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2682
2683         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
2684         handling.
2685
2686 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2687
2688         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
2689         its data structures.
2690
2691         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
2692         instead of the cl.el copy-list.
2693         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
2694         equalp.
2695
2696 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2697
2698         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
2699         and tool-bar-local-item-from-menu.
2700
2701         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
2702         mode-line-highlight face for Emacs.
2703
2704         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
2705         loading gnus-sum.elc; fix comment for canlock-verify.
2706         (gnus-article-jump-to-part): Use read-number.
2707         (gnus-insert-mime-button, gnus-insert-mime-security-button):
2708         Remove Emacs pre-21 compatible code for help-echo.
2709         (gnus-article-next-page-1): No need to adjust the number of lines.
2710         (gnus-article-describe-bindings): Always use help-buffer.
2711
2712         * gnus-audio.el (gnus-audio-inline-sound)
2713         * gnus-cus.el (gnus-custom-mode)
2714         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
2715
2716         * gnus-sum.el (gnus-remove-overlays): Doc fix.
2717
2718         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
2719         compatible code.
2720
2721 2010-09-24  Glenn Morris  <rgm@gnu.org>
2722
2723         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
2724         visiting the fcc file in rmail-mode.
2725
2726         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
2727
2728 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2729
2730         * nnir.el: Silence the byte compiler.
2731
2732         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
2733         alias to browse-url-url-encode-chars if any.
2734         (gnus-html-encode-url): Use it.
2735
2736 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2737
2738         * gnus-start.el (gnus-use-backend-marks): New variable.
2739         (gnus-get-unread-articles-in-group): Use it.
2740
2741         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
2742         makeover.
2743
2744 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
2745
2746         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
2747
2748 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2749
2750         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
2751         Remove.
2752         (gnus-setup-news-hook):
2753         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
2754
2755         * gnus-int.el (gnus-request-update-info): Protect against backends not
2756         having the function.
2757
2758         * nnimap.el (nnimap-stream): Mention starttls.
2759         (nnimap-open-connection): Add starttls support.
2760
2761 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
2762
2763         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
2764
2765 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2766
2767         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
2768         BODYSTRUCTUREs.
2769         (nnimap-transform-headers): Unfold quoted {42} headers.
2770
2771         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
2772         the info.
2773         (gnus-get-unread-articles): Only call updatep on backends that support
2774         it.
2775
2776         * nnweb.el (nnweb-request-update-info): NOOP.
2777
2778         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
2779
2780         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
2781         since it only deals with marks.
2782
2783         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
2784         gnus-request-marks, and make a new gnus-request-update-info.
2785
2786         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
2787         the active instead of the high number, which is usually too low.
2788
2789 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
2790
2791         * netrc.el (netrc-parse): Remove encrypt.el mentions.
2792         * encrypt.el: Remove.
2793
2794 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2795
2796         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
2797         server in symbolic form.
2798
2799         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
2800
2801 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2802
2803         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
2804         (nnimap-update-info): Fix up code slightly.
2805
2806         * gnus-int.el (gnus-open-server): Add tracing for performance
2807         debugging.
2808
2809         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
2810         (gnus-group-insert-group-line): Pass the real group name so that it
2811         gets the right data.
2812
2813         * gnus-start.el (gnus-get-unread-articles): Don't have
2814         `gnus-get-unread-articles-in-group' update info, since that can be
2815         really slow and doesn't seem to be needed?
2816
2817 2010-09-22  Dan Christensen  <jdc@uwo.ca>
2818
2819         * time-date.el (date-to-time): Try using parse-time-string first before
2820         using the slower timezone-make-date-arpa-standard.
2821
2822 2010-09-22  Julien Danjou  <julien@danjou.info>
2823
2824         * gnus-group.el (gnus-group-insert-group-line):
2825         Call gnus-group-highlight-line.
2826         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
2827         default hook list.
2828         (gnus-group-update-eval-form): Add new function.
2829         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
2830         (gnus-group-get-icon): Use gnus-group-update-eval-form.
2831
2832 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2833
2834         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
2835         immediate, then expire all articles.
2836         (nnimap-update-info): Fix off-by-one errors.
2837         (nnimap-flags-to-marks): Would return no marks lists for group with no
2838         flags.  Instead return the other data.
2839
2840 2010-09-22  Julien Danjou  <julien@danjou.info>
2841
2842         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
2843         Only return an icon.
2844         (gnus-group-insert-group-line): Compute icon to return.
2845
2846         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
2847         (gnus-html-image-fetched): Only cache if
2848         gnus-html-image-automatic-caching is set.
2849         (gnus-html-image-fetched): Check for errors.
2850
2851 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2852
2853         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
2854         once per method on `g'.  This ensures that backends like nnfolder don't
2855         open all their folders.
2856
2857         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
2858         (nnimap-request-list): Nix out group in the correct buffer.
2859         (nnimap-parse-flags): Implement by using `read' instead of
2860         hand-parsing.
2861         (nnimap-flags-to-marks): Pass on permanent-flags.
2862         (nnimap-make-process-buffer): Record the server name.
2863         (nnimap-parse-flags): Fix typo.
2864         (nnimap-request-scan): Run split on the server in general, not just a
2865         single group.
2866
2867         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
2868         parameter, and propagate this downwards.
2869
2870         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
2871         since EXAMINE changes it on the server.
2872
2873         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
2874         this command might take a while.
2875
2876 2010-09-22  Julien Danjou  <julien@danjou.info>
2877
2878         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
2879         harmful if you have 2 images side-by-side, they can't be properly
2880         update on text deletion.  Using text-property is safer here.
2881         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
2882         data.
2883
2884 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2885
2886         * nnimap.el (nnimap-expunge-inbox): Remove.
2887         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
2888         (nnimap-expunge): Flip default to t.
2889
2890         * gnus.el (gnus-method-to-server): Don't push things to the cache
2891         unless it's unique.
2892         (gnus-server-to-method): Ditto.
2893
2894 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2895
2896         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
2897
2898 2010-09-22  Julien Danjou  <julien@danjou.info>
2899
2900         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
2901         get the start of data.
2902         (gnus-html-encode-url): Add this function to encode special chars in
2903         URL.
2904         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
2905         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
2906
2907         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
2908         default.
2909         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
2910
2911         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
2912         images alt-text.
2913         (gnus-html-put-image): Put alt-text as help-echo.
2914
2915 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2916
2917         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
2918         * mm-util.el (mm-decompress-buffer)
2919         * nnir.el (nnir-run-find-grep)
2920         * pop3.el (pop3-list): Use 3rd arg of split-string.
2921
2922         * time-date.el (format-seconds): Comment fix.
2923
2924         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
2925         and byte-optimize-form-code-walker.
2926         (dgnushack-make-auto-load): Don't advise make-autoload.
2927
2928         * lpath.el: Remove Emacs 21 stuff.
2929
2930 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2931
2932         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
2933         outside the active range.  Suggested by Dan Christensen.
2934
2935         * gnus-start.el (gnus-get-unread-articles): Get the extended method
2936         slightly later to avoid double-getting it.
2937
2938         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
2939         previous patch.
2940
2941         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
2942
2943 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
2944
2945         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
2946
2947 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2948
2949         * gnus-int.el (gnus-open-server): Give a better error message in the
2950         "go offline" case.
2951
2952         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
2953         marks for nnimap, which is seldom the right thing to do.
2954
2955         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
2956         (gnus-same-method-different-name): New function.
2957
2958         * nnimap.el (parse-time): Require.
2959
2960         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
2961         method in the presence of many similar methods.
2962
2963         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
2964
2965         * nnimap.el (nnimap-find-expired-articles): Don't refer to
2966         nnml-inhibit-expiry.
2967
2968         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
2969         find out whether methods are equal.
2970
2971         * nnimap.el (nnimap-find-expired-articles): New function.
2972         (nnimap-process-expiry-targets): New function.
2973         (nnimap-request-move-article): Request the article before looking at
2974         what the Message-ID is.  Fix found by Andrew Cohen.
2975         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
2976
2977         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
2978         for oldness in addition to being a predicate.
2979
2980         * nnimap.el (nnimap-request-group): When we have zero articles, return
2981         the right data to Gnus.
2982         (nnimap-request-expire-articles): Only delete articles immediately if
2983         the target is 'delete.
2984
2985         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
2986         method, this would bug out.
2987
2988         * gnus-group.el (gnus-group-expunge-group): Rename from
2989         gnus-group-nnimap-expunge, and implemented as a normal interface
2990         function.
2991
2992         * gnus-int.el (gnus-request-expunge-group): New function.
2993
2994         * nnimap.el (nnimap-request-create-group): Implement.
2995         (nnimap-request-expunge-group): New function.
2996
2997 2010-09-21  Julien Danjou  <julien@danjou.info>
2998
2999         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
3000         (gnus-html-cache-expired): Add new function.
3001         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
3002         wethever we should display image for fetch it.
3003         Compute alt-text earlier to pass it to the fetching function too.
3004         (gnus-html-schedule-image-fetching): Change function argument to only
3005         get one image at a time, not a list.
3006         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
3007         cache.
3008         (gnus-html-get-image-data): New function to retrieve image data from
3009         cache.
3010         (gnus-html-put-image): Change buffer argument to use image data rather
3011         than file, and place image above region rather than inserting a new
3012         one.  Do not take alt-text as argument, since it's useless now: we place
3013         the image above alt-text.
3014         (gnus-html-prune-cache): Remove.
3015         (gnus-html-show-images): Start to fetch image when we find one, do not
3016         push into a temporary list.
3017         (gnus-html-prefetch-images): Only fetch image if they have expired.
3018         (gnus-html-browse-image): Fix, use 'gnus-image-url.
3019         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
3020
3021 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3022
3023         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
3024
3025 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3026
3027         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
3028         spec inser "*" if the group isn't active instead of 0.
3029
3030         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
3031         opening the server.
3032         (nnimap-request-delete-group): Implement group deletion.
3033         (nnimap-transform-headers): Return the size of the entire message in
3034         the Bytes header, not just the size of the first part.
3035         (nnimap-request-move-article): When moving an article from nnimap,
3036         request the article first so the accepting form has an article to
3037         accept.  Reported by Dan Christensen.
3038         (nnimap-command): Make sure that the error message doesn't error out.
3039
3040 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
3041
3042         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
3043         we haven't requested anything.
3044
3045 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3046
3047         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
3048         "".  Fix found by Andrew Cohen.
3049
3050         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
3051         instead of -encode-string.
3052
3053 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3054
3055         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
3056
3057         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
3058         by mm-subst-char-in-string.
3059
3060 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3061
3062         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
3063         waiting for the connection string.
3064
3065         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
3066         arriving.
3067
3068         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
3069         bogus characters.  This allows selecting certain Gmail groups.
3070
3071         * nnimap.el (nnimap-find-wanted-parts-1): New function.
3072         (nnimap-fetch-partial-articles): New variable.
3073         (nnimap-open-connection): When looking for credentials, also use the
3074         nnimap-server-port.
3075         (nnimap-request-article): Return the group/article number, so that Gnus
3076         `^' works as expected.
3077         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
3078
3079         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
3080         comments.
3081         (gnus-methods-sloppily-equal): New function.
3082         (gnus): When using the development version of Gnus, load the gnus-load
3083         file.
3084
3085         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
3086         `gnus-open-server' on each method before trying to scan them etc.
3087         This ensures that all the backend parameters are set correctly.
3088
3089         * nnimap.el (nnimap-authenticator): New variable.
3090         (nnimap-open-connection): Allow anonymous login.
3091         (nnimap-transform-headers): The chars header is called Chars not Bytes.
3092         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
3093
3094         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
3095         patch, found by Knut Anders Hatlen.
3096
3097 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
3098
3099         * gnus-agent.el (gnus-agent-batch-confirmation)
3100         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
3101         to gnus-message.
3102         * gnus-art.el (gnus-article-describe-briefly): Likewise.
3103         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
3104         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
3105         * gnus-int.el (gnus-open-server): Likewise.
3106         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
3107         (gnus-score-check-syntax): Likewise.
3108         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
3109         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
3110         Likewise.
3111         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
3112
3113 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3114
3115         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
3116         calling conventions so that prefetch doesn't bug out.
3117
3118 2010-09-19  Julien Danjou  <julien@danjou.info>
3119
3120         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
3121         rather than `subst-char-in-region' in order to be able to replace ASCII
3122         char by UTF-8 ones.
3123
3124         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
3125         than curl.
3126         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
3127         the right URL and ALT text on images.
3128         (gnus-html-wash-tags): Fix tag case.
3129         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
3130         (gnus-article-html): Add -o display_ins_del=2 option.
3131         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
3132
3133 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3134
3135         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
3136         the extra mail headers, which sometimes seem to happen for unknown
3137         reasons.
3138
3139         * mail-parse.el (mail-header-encode-parameter): Define as
3140         rfc2045-encode-string instead of as rfc2231-encode-string, since some
3141         (or most, perhaps?) mail readers don't understand the latter, but do
3142         understand the former.
3143
3144         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
3145         to nil, so that no methods are automatically agentized.  I think this
3146         is probably what most users want.
3147
3148         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
3149         from url-retrieve, for instance about invalid URLs.
3150
3151         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
3152         groups that have no articles.
3153         (nnimap-request-article): Check that we really got an article when we
3154         requested one.
3155
3156         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
3157         doesn't exist.
3158
3159         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
3160         nntp buffer so the agent can save it.
3161         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
3162         that CRLF doesn't get translated to \n.
3163         (nnimap-open-connection): Don't make 'shell commands only send \n.
3164
3165 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3166
3167         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
3168         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
3169         Update var name.
3170         (nnml-generate-nov-file): Use dolist.
3171         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
3172         Use with-current-buffer.
3173
3174 2010-09-18  Julien Danjou  <julien@danjou.info>
3175
3176         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
3177         parallel.
3178
3179 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3180
3181         * nnimap.el (nnimap-update-info): When doing partial marks update, get
3182         the range update right.
3183         (nnimap-request-group): Don't make `M-g' bug out on group with no
3184         marks.
3185         (nnoo): Require, so that other packages can require nnimap.
3186         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
3187         command we're looking for.  This helps when the server sends more
3188         responses after we've gotten everything we expected.
3189         (nnimap): Add a `newlinep' field to keep track of end-of-line
3190         conventions.
3191         Don't send CRLF to things that don't want it.
3192         (nnimap-request-accept-article): Ditto.
3193
3194 2010-09-18  Julien Danjou  <julien@danjou.info>
3195
3196         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
3197         than curl to retrieve images.
3198
3199 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3200
3201         * nnimap.el (nnimap-update-info): Extend the info so that we can set
3202         the marks.
3203         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
3204         (nnimap-wait-for-connection): New function.
3205         (nnimap-open-connection): If we have PREAUTH, don't query for login
3206         credentials.
3207         (nnimap-update-info): Fix off-by-one error when concatenating ranges
3208         when doing a partial update.
3209
3210 2010-09-18  Julien Danjou  <julien@danjou.info>
3211
3212         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
3213         tags.
3214
3215 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3216
3217         * nnimap.el (nnimap-credentials): New function.
3218         (nnimap-open-connection): Use the new function to look for credentials
3219         also on the numeric equivalents of "imap" and "imaps".
3220
3221         * gnus-start.el (gnus-activate-group): Send the info to
3222         gnus-request-group.
3223
3224         * nnimap.el (nnimap-request-group): Have the "check" version of the
3225         function parse flags and update the info, so that a `M-g' get a total
3226         resync of all flags from the group.
3227
3228         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
3229         to allow backends to alter the info on group selection.  Also alter all
3230         the backend -request-group functions to take the parameter.
3231
3232         * nnimap.el (nnimap-store-info): New function.
3233         (nnimap-update-info): Store the info for later usage.
3234         (nnimap-request-group): Use the stored info for the dont-check case, so
3235         that we don't retrieve all marks when we enter a group.
3236
3237         * nnimap.el: Use deffoo instead of defun for interface functions.
3238
3239         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
3240         update the group info.  This makes the nndraft groups, for instance, go
3241         back to their old behaviour.
3242
3243         * gnus-sum.el (gnus-select-newsgroup): Indent.
3244
3245         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
3246         in.
3247         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
3248         nothing.
3249
3250         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
3251         from methods that are denied.
3252
3253         * gnus-int.el (gnus-method-denied-p): New function.
3254
3255         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
3256         store the password instead of netrc.
3257         (nnimap-open-connection): Don't error out when we can't make a
3258         connections.
3259
3260         * auth-source.el (auth-source-create): In the password prompt, say what
3261         we're querying for.  Also prompt for user name if that hasn't been
3262         given.
3263
3264         * nnimap.el (nnimap-with-process-buffer): Remove.
3265
3266 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3267
3268         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
3269         method when we're reading from the agent.
3270
3271         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
3272
3273         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
3274         that's probably most useful for users.
3275
3276         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
3277         "failed" all the time.
3278
3279         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
3280         ...)) with (with-current-buffer ... ).
3281
3282         * nntp.el (nntp-open-server): Return whether the open was successful or
3283         not.
3284
3285         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
3286         select an unread unseen article first.
3287
3288         * nnimap.el (nnimap-open-connection): If the user doesn't have a
3289         /etc/services, supply some sensible port defaults.
3290
3291         * dgnushack.el: Define netrc-credentials.
3292
3293 2010-09-17  Julien Danjou  <julien@danjou.info>
3294
3295         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
3296
3297 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
3298
3299         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
3300         doesn't have any parameters.
3301
3302 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3303
3304         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
3305         only upcased checks.
3306
3307         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
3308
3309         * nnimap.el (nnimap-open-shell-stream): New function.
3310         (nnimap-open-connection): Use it.
3311         (nnimap-transform-headers): Get the number of lines in each message.
3312         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
3313         number of lines.
3314         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
3315         problem.
3316
3317         * utf7.el (utf7-encode): Autoload.
3318
3319         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
3320         to allow the mail splitting to not return a default group.  This is
3321         useful for nnimap, which will leave unmatched mail in the inbox.
3322
3323         * nnimap.el: Rewritten.
3324
3325         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
3326         nnimap usage.
3327
3328         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
3329         if the move is internal, so that nnimap can do fast internal moves.
3330
3331         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
3332         data.
3333         (gnus-read-active-for-groups): Support finishing the early retrieval of
3334         data.
3335
3336         * gnus-range.el (gnus-range-nconcat): New function.
3337
3338         * gnus-int.el (gnus-finish-retrieve-group-infos)
3339         (gnus-retrieve-group-data-early): New functions.
3340
3341 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3342
3343         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
3344         (nnrss-retrieve-groups):
3345         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
3346         (pop3-quit): Use with-current-buffer.
3347
3348 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3349
3350         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
3351         instead of nnheader-accept-process-output.
3352
3353         * dgnushack.el (dgnushack-compile): Add comment.
3354
3355         * lpath.el: No need to fbind propertize for XEmacs 21.4.
3356
3357         * gnus-html.el (gnus-html-schedule-image-fetching)
3358         (gnus-html-prefetch-images): Replace process-kill-without-query by
3359         gnus-set-process-query-on-exit-flag.
3360
3361 2010-09-16  Romain Francoise  <romain@orebokech.com>
3362
3363         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
3364
3365 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3366
3367         * gnus-registry.el (gnus-registry-install-shortcuts): The second
3368         parameter to unintern is mandatory-ish in Emacs 24.
3369
3370         * gnus-html.el (gnus-html-schedule-image-fetching)
3371         (gnus-html-prefetch-images): Check for curl before using it.
3372
3373         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
3374         depend on curl, which isn't essential.
3375
3376         * imap.el: Revert back to version
3377         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
3378         seem problematic.
3379
3380 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
3381
3382         * gnus-registry.el (gnus-registry-install-shortcuts):
3383         Explicitly pass `obarray' to `unintern' to avoid a warning.
3384
3385 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3386
3387         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
3388         change.
3389
3390         * nnrss.el (nnrss-request-list): Remove this function and related
3391         functions, including the moreover stuff.
3392
3393 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3394
3395         * nnrss.el (nnrss-retrieve-groups): New function.
3396
3397 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
3398
3399         * .dir-locals.el: Add no-byte-compile cookie.
3400
3401 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3402
3403         * time-date.el (format-seconds): Comment fix.
3404
3405         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
3406         for back end that doesn't support request-scan.
3407
3408 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3409
3410         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
3411         then do request scans from the backends.
3412
3413         * netrc.el (netrc-credentials): New conveniency function.
3414
3415         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
3416         avoid running a hook per line, since this takes a lot of time,
3417         profiling shows.
3418         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
3419         directly if gnus-visual-p is true.
3420
3421 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3422
3423         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
3424         groups; replace mapcar with dolist which is a bit faster; pass groups
3425         info to gnus-read-active-file-1.
3426         (gnus-read-active-file-1): Scan only specified groups if the new
3427         optional arg `infos' is given.
3428
3429 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3430
3431         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
3432
3433         * pop3.el (pop3-movemail): Remove.
3434         (pop3-streaming-movemail): Rename to pop3-movemail.
3435
3436         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
3437         don't restrict end-tag searches to the end of the line.
3438
3439 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3440
3441         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
3442         articles of every unchecked group to t, which means unknown since the
3443         server has never been opened.
3444
3445 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3446
3447         * gnus-html.el (gnus-html-show-alt-text): New command.
3448         (gnus-html-browse-image): Ditto.
3449         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
3450         to browse the image directly.
3451         (gnus-html-wash-tags): Search for images first, so that <a><img> works
3452         better.
3453
3454         * gnus-async.el (gnus-async-article-callback):
3455         Call `gnus-html-prefetch-images' unconditionally.
3456
3457         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
3458         before feeding URLs to curl.
3459
3460 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3461
3462         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
3463         internal images as deletable by `W D D'.
3464
3465         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
3466         (gnus-async-article-callback): Fix typo.
3467
3468 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3469
3470         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
3471         current line to work around bugs in the output from w3m.
3472
3473         * gnus-async.el (gnus-async-article-callback): Always prefetch images
3474         for groups that want that.
3475
3476         * nntp.el (nntp-wait-for-string): Supply a timeout for
3477         accept-process-output to ensure progress.
3478
3479         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
3480         level to get unread articles from, then use that for foreign groups,
3481         too.
3482
3483         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
3484         confuses the rest of the function.
3485
3486         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
3487         for the methods that support -retrieve-groups, too.
3488
3489         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
3490
3491 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3492
3493         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
3494         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
3495
3496         * pop3.el: Require cl when compiling.
3497         (pop3-number-of-responses): Search for "+OK", not "+OK ".
3498
3499 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3500
3501         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
3502         that aren't going to be activated.
3503         (gnus-get-unread-articles): Fix up the last commit.
3504
3505         * gnus-html.el (gnus-article-html): Allow calling without specifying
3506         the handle.  In that case, dissect the buffer first.
3507
3508         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
3509
3510         * nnimap.el (nnimap-open-connection): Revert the change that would look
3511         into authinfo for imaps instead of imap.
3512
3513         * gnus-start.el (gnus-activate-group): Take an optional parameter to
3514         say that you don't want to call gnus-request-group with don-check, but
3515         do check the reponse.  This is for virtual groups only.
3516         (gnus-get-unread-articles): Count the archive groups as secondary, so
3517         that they're activated the same way as before.
3518
3519         * imap.el (imap-message-map): Removed optional buffer parameter, since
3520         no callers use it.
3521         (imap-message-get): Ditto.
3522         (imap-message-put): Ditto.
3523         (imap-mailbox-map): Ditto.
3524         (imap-mailbox-put): Ditto.
3525         (imap-mailbox-get): Ditto.
3526         (imap-mailbox-get): Revert last change for this function.
3527
3528         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
3529         case-insensitively.
3530         (nnimap-debug): Remove.
3531
3532         * imap.el (imap-fetch-safe): Removed function, and altered all callers
3533         to use `imap-fetch' instead.  According to the comments, this should be
3534         safe, since all other IMAP clients use the 1:* syntax.
3535         (imap-enable-exchange-bug-workaround): Removed.
3536         (imap-debug): Removed -- doesn't seem very useful.
3537
3538         * mail-source.el (mail-source-fetch): Don't message if we're fetching
3539         mail from a file, and the file doesn't exist.
3540
3541         * imap.el (imap-log): New convenience function used throughout instead
3542         of repeating the same code all over the place.
3543
3544         * pop3.el (pop3-streaming-movemail): Return t for success.
3545
3546         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
3547         .authinfo if we're using ssl connection.
3548
3549         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
3550         already have if we're in a main Gnus `g' run.
3551
3552         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
3553
3554 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3555
3556         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
3557
3558         * nnmh.el (nnmh-request-list-1): Bind `file'.
3559
3560         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
3561         alias to set-process-query-on-exit-flag or process-kill-without-query.
3562         (pop3-open-server): Use it.
3563
3564 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3565
3566         * mail-source.el (mail-source-delete-crash-box): Always move the crash
3567         box to the Incoming file.  Fixes mistake in previous checkin.
3568
3569         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
3570         request loop (for debugging purposes) removed.
3571
3572         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
3573         culprit is more visible.
3574         (nnml-save-incremental-nov, nnml-open-incremental-nov)
3575         (nnml-add-incremental-nov): New functions to do "incremental" nov
3576         updates, where we just append to the end of the existing nov files
3577         without reading/writing them in full.
3578
3579         * mail-source.el (mail-source-delete-crash-box): Really only check the
3580         incoming files once in a while.
3581
3582         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
3583
3584         * mail-source.el (mail-source-delete-crash-box): Only check the
3585         incoming files for deletion once per day to save a lot of file
3586         accesses.
3587
3588         * pop3.el (pop3-logon): Fix up unbound variable typo.
3589
3590         * mail-source.el (pop3-streaming-movemail): Autoload.
3591
3592         * pop3.el (pop3-streaming-movemail):
3593         Respect pop3-leave-mail-on-server.
3594
3595         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
3596         retrieval.
3597
3598         * pop3.el (pop3-process-filter): Remove unused function.
3599         (pop3-streaming-movemail, pop3-send-streaming-command)
3600         (pop3-wait-for-messages, pop3-write-to-file)
3601         (pop3-number-of-responses): New functions for streaming pop3
3602         retrieval.
3603
3604         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
3605         come from no known methods.
3606         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
3607         list.
3608
3609         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
3610         message sizes.
3611         (pop3-movemail): Use erase-buffer instead of looping and deleting
3612         regions, which seems rather odd.
3613
3614         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
3615         file once per `g' run.
3616
3617         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
3618         directories.  This makes the draft queue directory work.
3619
3620         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
3621         data from the backends, so that we only request the list of groups from
3622         each method once.  This should speed things up considerably.
3623
3624         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
3625         detect that it's not implemented.
3626
3627         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
3628         we actually do recurse down into the tree, but don't stat all leaf
3629         nodes.
3630
3631         * gnus-html.el (gnus-html-show-images): If there are no images to show,
3632         then say so instead of bugging out.
3633
3634         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
3635         files exist before trying to read them.
3636
3637         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
3638         around <pre_int>.
3639
3640         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
3641
3642         * nnmh.el (nnmh-request-list-1): Optimize for speed.
3643
3644 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3645
3646         * mm-util.el (mm-image-load-path): Just return the image directories,
3647         not all directories in the path in addition to the image directories.
3648         (mm-image-load-path): Maintain a cache of the image directories so that
3649         the `g' command in Gnus doesn't have to stat dozens of directories each
3650         time.
3651
3652         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
3653         (gnus-html-wash-tags): Add a new `i' command to insert images.
3654         (gnus-html-insert-image): New command and keystroke.
3655         (gnus-html-redisplay-with-images): New command and keystroke.
3656         (gnus-html-show-images): Rename command.
3657         (gnus-html-wash-tags): Remove more white space before <pre_int> image
3658         spacers.
3659         (gnus-html-wash-tags): Decode entities at the end, so that entities
3660         inside the tags don't mess up the rest of the "parsing".
3661
3662         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
3663         so that nnimap methods aren't agentized by default.  There's apparently
3664         many problems related to agent/imap behaviour.
3665
3666         * gnus-art.el (gnus-article-copy-string): New command and key binding.
3667
3668         * gnus-html.el: Doc fix.
3669
3670 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3671
3672         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
3673         specifier-spec-list for Emacs 21.
3674
3675         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
3676         glyph-width and glyph-height instead of display-graphic-p and
3677         image-size; make avoidance of displaying small images work for XEmacs.
3678
3679         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
3680         for XEmacs.
3681
3682         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
3683         of symbol that holds plist data.
3684         (gnus-process-plist): Remove plist of process after getting it.
3685
3686 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3687
3688         * message.el (message-generate-hashcash): Change default to
3689         'opportunistic if hashcash is installed.
3690
3691         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
3692         (gnus-html-put-image): Only call image-size once, since it's somewhat
3693         time-consuming on remote X servers.
3694
3695 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3696
3697         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
3698         type on data, not a file name.
3699
3700         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
3701         window-pixel-edges for Emacs 21.
3702
3703         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
3704         decoded contents.
3705         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
3706
3707 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3708
3709         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
3710         group line format, since it isn't very interesting.
3711
3712         * gnus-agent.el (gnus-agent-short-article),
3713         (gnus-agent-long-article): Increase values for these two variables,
3714         since most people are likely to have more network connection and
3715         storage than before.
3716
3717         * gnus.el (gnus-refer-article-method): Change default to 'current.
3718         When referring an article, the common behaviour is to refer it from the
3719         current select method, not the native select method.  The chances of
3720         the native select method having the message in question is rather slim
3721         these days.
3722
3723         * gnus-sum.el (gnus-auto-select-subject): Change default to
3724         `unseen-or-unread'.  I think it's likely that most people want to
3725         select an unseen article over a previously seen, but unread one.
3726
3727         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
3728         means that in the article buffer none of the minor mode elements will
3729         be shown, usually, and this is not desirable in most cases.
3730
3731         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
3732         that commands like `d' (and the like) go to the next line in the
3733         buffer, instead of the next unread article.  I think this is the
3734         behaviour that is most natural for most users.
3735         (gnus-single-article-buffer): Change default to nil, so that people can
3736         have as many article buffers open as they have summary buffer.  I think
3737         this is the most natural way for the groups to behave.
3738
3739         * message.el (message-generate-new-buffers): Change default to
3740         `unsent', so that all new message buffers start their names with the
3741         string "*unsent", and it's easier to find the buffers if you move from
3742         them.
3743
3744 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3745
3746         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
3747         small.  They're probably tracking images.
3748         (gnus-html-wash-tags): Remove all <pre_int> place holders.
3749         (gnus-html-rescale-image): Yet another try at getting the image sizing
3750         right.
3751
3752         * nntp.el (nntp-request-set-mark): Refuse to do marks if
3753         nntp-marks-file-name is nil.
3754
3755 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3756
3757         * gnus-html.el (gnus-html-wash-tags)
3758         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
3759         Better logging.
3760
3761 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3762
3763         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
3764
3765         * gnus-html.el (gnus-html-wash-tags): Check the value of
3766         gnus-blocked-images in the summary buffer.
3767
3768 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3769
3770         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
3771
3772 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3773
3774         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
3775         like "a", it seems like.
3776         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
3777         since it needs to be picked from the correct buffer.
3778
3779         * nnwfm.el: Remove.
3780
3781         * nnlistserv.el: Remove.
3782
3783 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3784
3785         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
3786         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
3787
3788 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3789
3790         * nnkiboze.el: Remove.
3791
3792         * nndb.el: Remove.
3793
3794         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
3795         alt text.
3796         (gnus-html-rescale-image): Try to get the rescaling logic right for
3797         images that are just wide and not tall.
3798
3799         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
3800         overshadow variable bindings.
3801
3802 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3803
3804         * gnus-html.el (gnus-html-wash-tags)
3805         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
3806         Add extra logging.
3807
3808 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3809
3810         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
3811         (gnus-max-image-proportion): New variable.
3812         (gnus-html-rescale-image): New function.
3813         (gnus-html-put-image): Rescale images.
3814
3815 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3816
3817         Fix up some byte-compiler warnings.
3818         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
3819         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
3820         (gnus-article-fill-cited-article, gnus-article-hide-citation)
3821         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
3822         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
3823         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
3824         (gnus-group-update-group): Use save-excursion and with-current-buffer.
3825
3826 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3827
3828         * gnus-html.el (gnus-article-html): Decode contents by charset.
3829
3830 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3831
3832         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
3833         (gnus-html-frame-width, gnus-blocked-images)
3834         * message.el (message-prune-recipient-rules): Add custom version.
3835         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
3836
3837         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
3838         functions.
3839
3840         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
3841         gnus-process-get.
3842
3843 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
3844
3845         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
3846         instead of lsub directly.
3847
3848 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3849
3850         * nnwarchive.el: Remove.
3851
3852         * gnus-soup.el: Remove.
3853
3854         * nnsoup.el: Remove.
3855
3856         * nnultimate.el: Remove.
3857
3858         * gnus-html.el (gnus-blocked-images): New variable.
3859
3860         * message.el (message-prune-recipients): New function.
3861         (message-prune-recipient-rules): New variable.
3862
3863         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
3864         guess whether a long line is natural text or not.
3865
3866         * gnus-html.el (gnus-html-schedule-image-fetching):
3867         Use gnus-process-plist and friends for compatibility.
3868
3869 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3870
3871         * gnus-html.el: Require packages that define macros used in this file.
3872         (gnus-article-mouse-face): Declare to silence byte-compiler.
3873         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
3874         process-get.
3875         (gnus-html-put-image): Use plist-get to avoid getf.
3876         (gnus-html-prefetch-images): Use with-current-buffer.
3877
3878 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3879
3880         * gnus-ems.el: Provide compatibility functions for
3881         gnus-set-process-plist.
3882
3883         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
3884         header-line-format for XEmacs 21.4.
3885
3886         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
3887         * gnus.el (gnus-valid-select-methods)
3888         * message.el (message-send-mail-partially-limit)
3889         * mm-decode.el (mm-text-html-renderer)
3890         * mml.el (mml-insert-mime-headers-always)
3891         * smiley.el (smiley-regexp-alist): Bump custom version.
3892
3893 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3894
3895         * gnus-html.el: require mm-url.
3896         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
3897         with the url to `url'.
3898         (gnus-html-wash-tags): Support cid: URLs/images.
3899
3900 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3901
3902         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
3903         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
3904         bindings, as they aren't useful at all.  `w' is moved to `W w'.
3905
3906         * gnus-move.el: Remove file, since it doesn't really work.
3907
3908         * gnus-html.el (gnus-article-html): Tell w3m that the input is
3909         UTF-8.  This seems to fix problems with some German web feeds.
3910
3911         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
3912         at the top so that the proper colours are applied.
3913
3914         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
3915         don't have dots in their names.
3916
3917         * gnus-art.el (gnus-article-view-part): Doc fix.
3918
3919         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
3920         XEmacs-compatible.
3921         (gnus-html-put-image): Don't do images on non-graphic displays.
3922
3923         * nnslashdot.el: Remove this unused backend.
3924
3925         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
3926         actions.
3927         (gnus-undo-register-1): Revert last change.
3928
3929         * gnus-group.el (gnus-group-completing-read): Protect against not
3930         having completion-styles bound.
3931
3932         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
3933         make broken recipients happier.
3934
3935         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
3936
3937         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
3938         point parameter.
3939
3940         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
3941
3942         * gnus-group.el (gnus-group-completing-read): Add 'substring to
3943         completion-styles for group selection.
3944
3945 2009-02-04  Andreas Schwab  <schwab@suse.de>
3946
3947         * gnus-score.el (gnus-score-string): Fix regex for matching extra
3948         headers and regexp-quote the match if necessary.
3949
3950 2009-03-24  Miles Bader  <miles@gnu.org>
3951
3952         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
3953         the blinking smiley.
3954
3955 2009-03-24  Simon Josefsson  <simon@josefsson.org>
3956
3957         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
3958         blink smiley.
3959
3960 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3961
3962         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
3963         where the dribbel file lives exists.
3964
3965         * message.el (message-send-mail-partially-limit): Change the default to
3966         nil, since most people don't want this.
3967
3968         * mm-url.el (mm-url-decode-entities): Also decode entities like
3969         &#x3212.
3970
3971 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
3972
3973         * gnus-sum.el (gnus-summary-idna-message):
3974         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
3975         Hyperlink urls in docstrings with URL `...'.
3976
3977 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
3978
3979         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
3980         functions.
3981
3982 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3983
3984         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
3985         say what the mouseover text should be.
3986
3987         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
3988         version of the mm-w3m-safe-url-regexp variable to only download images
3989         in the groups where we want that to happen.
3990
3991         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
3992
3993         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
3994         easier debugging.
3995         (gnus-article-beginning-of-window): Add kludge to allow spacing past
3996         big pictures in the article buffer.
3997
3998         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
3999         gnus-article-html.
4000         (mm-text-html-renderer): gnus-article-html needs curl in addition to
4001         w3m.
4002
4003         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
4004
4005 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4006
4007         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
4008         which doesn't exist.
4009
4010         * message.el (message-inhibit-ecomplete): New variable to allow some
4011         function to inhibit ecomplete address storage.
4012         (message-resend): Disable ecomplete message storage when resending
4013         messages.
4014
4015         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
4016
4017 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4018
4019         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
4020         Save excursion while copying, moving, and deleting articles in order to
4021         prevent the cursor from jumping to unforeseen place.
4022
4023 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4024
4025         * lpath.el: No need to bind bookmark-current-buffer,
4026         bookmark-yank-point and bookmark-make-record-function.
4027
4028 2010-08-17  Glenn Morris  <rgm@gnu.org>
4029
4030         * gnus-sync.el: Require gnus components whose functions are used.
4031
4032         * gnus-art.el (bookmark-make-record-function):
4033         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
4034         Declare for compiler.
4035
4036         * mm-url.el (mml-compute-boundary): Autoload.
4037
4038 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4039
4040         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
4041
4042 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
4043
4044         Typo fix "hoo4a" -> "hook".
4045
4046         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
4047
4048 2010-08-14  Glenn Morris  <rgm@gnu.org>
4049
4050         * gnus-sync.el (gnus-sync): Fix defgroup version.
4051
4052 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
4053
4054         Doc fixes and keep unknown groups (ammended for nunion bug fix).
4055
4056         * gnus-sync.el: Fix docs.
4057         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
4058         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
4059
4060 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
4061
4062         Optimizations for gnus-sync.el.
4063
4064         * gnus-sync.el: Add docs about gnus-sync-backend
4065         possibilities.
4066         (gnus-sync-save): Remove unnecessary message.
4067         (gnus-sync-read): Optimize and show what groups were skipped.
4068
4069 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
4070
4071         Minor bug fixes for gnus-sync.el.
4072
4073         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
4074         Don't read the sync on get-new-news.
4075
4076         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
4077         quiet.
4078
4079         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
4080         (fix typo).
4081
4082 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
4083
4084         Make saving and restoring of hidden threads work with overlays.
4085         Patch applied by Ted Zlatanov.
4086
4087         * gnus-sum.el (gnus-hidden-threads-configuration)
4088         (gnus-restore-hidden-threads-configuration): Update to deal with text
4089         properties, rather than searching for a magic character.
4090
4091 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
4092
4093         New gnus-sync.el library for synchronization of marks.
4094
4095         * gnus-sync.el: New library for synchronization of marks.
4096
4097         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
4098         renamed from `gnus-registry-grep-in-list'.
4099
4100         * gnus-registry.el (gnus-registry-follow-group-p):
4101         Use `gnus-grep-in-list'.
4102
4103         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
4104
4105 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4106
4107         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
4108         determining charset of text fails.
4109
4110 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4111
4112         * nnmail.el (nnmail-get-new-mail-1): Revert.
4113
4114         * nnml.el (nnml-active-number): Make sure names of newly created groups
4115         in nnml-group-alist are encoded.
4116
4117 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4118
4119         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
4120         containing non-ASCII characters in active file for nnml back end.
4121
4122 2010-07-24  David Engster  <dengste@eml.cc>
4123
4124         * mml-smime.el (mml-smime-epg-verify): Also accept the older
4125         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
4126
4127 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
4128
4129         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
4130         tag (Bug#6654).
4131
4132 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4133
4134         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
4135         the article buffer, not the summary buffer.
4136
4137 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4138
4139         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
4140         Emacs 23 as well.
4141
4142 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4143
4144         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
4145         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
4146
4147 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4148
4149         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
4150         Patch applied by Karl Fogel.
4151
4152         * gnus-sum.el (gnus-summary-bookmark-make-record):
4153         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
4154
4155 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4156
4157         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
4158         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
4159         C-w still not working correctly from Article buffers; Thierry's
4160         patch to fix that will be applied after this.
4161
4162         * gnus-art.el (bookmark-make-record-function): New local variable.
4163
4164         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
4165         article buffer.
4166         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
4167
4168 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
4169
4170         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
4171         on changes in bookmark.el.
4172
4173 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4174
4175         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
4176         `no-log' instead of message not to log prompt string.
4177
4178 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
4179
4180         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
4181         the *other* type of HTML form submission.
4182
4183 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
4184
4185         * auth-source.el (auth-source-pick): If choice does not contain a
4186         questioned keyword, set the check to t.
4187
4188 2010-06-12  Romain Francoise  <romain@orebokech.com>
4189
4190         * gnus-util.el (gnus-date-get-time): Move up before first use.
4191
4192 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4193
4194         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
4195         (gnus-article-edit-part): Bind it to make last part that is substituted
4196         or deleted visible.
4197         (gnus-mime-display-single): Buttonize part of which id equals to
4198         gnus-mime-buttonized-part-id.
4199
4200 2010-06-10  Dan Christensen  <jdc@uwo.ca>
4201
4202         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
4203         (gnus-dd-mmm): Use gnus-date-get-time.
4204         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
4205         simplify logic.
4206         (gnus-summary-limit-to-age): Use gnus-date-get-time.
4207         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
4208
4209 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
4210
4211         * auth-source.el (top): Autoload `secrets-list-collections',
4212         `secrets-create-item', `secrets-delete-item'.
4213         (auth-sources): Fix tag string.
4214         (auth-get-source, auth-source-retrieve, auth-source-create)
4215         (auth-source-delete): New defuns.
4216         (auth-source-pick): Rewrite in order to avoid 2 passes.
4217         (auth-source-forget-user-or-password): New parameter USERNAME.
4218         (auth-source-user-or-password): New parameters CREATE-MISSING and
4219         DELETE-EXISTING.  Retrieve password interactively, if needed.
4220
4221 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
4222
4223         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
4224         deleting unused directories when gnus-expert-user is t.
4225
4226 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4227
4228         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
4229         for each temp file when gnus-article-browse-delete-temp is ask.
4230
4231 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4232
4233         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
4234         Lisp calls to delete-backward-char by calls to delete-char.
4235
4236 2010-05-20  Kevin Ryde  <user42@zip.com.au>
4237
4238         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
4239
4240 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
4241
4242         * password-cache.el (password-cache-remove): Fix docstring.
4243
4244 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4245
4246         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
4247         article unless decoding article to be saved.
4248
4249 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4250
4251         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
4252         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
4253         generated within the mm-with-unibyte-current-buffer macro.
4254
4255 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4256
4257         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
4258         to nil when we're in a mml-preview buffer and no group is selected.
4259
4260 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
4261
4262         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
4263         when catching the `C-g'.  Reported by "Leo".
4264
4265 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4266
4267         * message.el (message-forward-make-body-plain)
4268         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
4269         multibyte-string-p.
4270
4271         * lpath.el: Revert.
4272
4273 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4274
4275         * message.el (message-forward-make-body-mml): Assume original message
4276         is multibyte string; error on unibyte.
4277         (message-forward-make-body-plain): Ditto; don't add excessive newline
4278         in body end.
4279
4280         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
4281
4282 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
4283
4284         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
4285         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
4286
4287 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4288
4289         * mm-extern.el (mm-extern-url): Don't use
4290         mm-with-unibyte-current-buffer.
4291         (mm-extern-cache-contents): Use with-current-buffer instead of
4292         save-excursion + set-buffer.
4293
4294 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4295
4296         * mm-util.el (mm-emacs-mule): Remove.
4297
4298 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
4299
4300         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
4301         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
4302         change.
4303
4304 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4305
4306         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
4307         bind the default value of enable-multibyte-characters to nil.
4308
4309 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4310
4311         * message.el (message-forward-make-body-plain)
4312         (message-forward-make-body-mml):
4313         Don't use mm-with-unibyte-current-buffer.
4314
4315 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4316
4317         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
4318
4319 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
4320
4321         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
4322         (Bug#5592).
4323
4324 2010-05-07  Julien Danjou  <julien@danjou.info>
4325
4326         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
4327         it to mm-pipe-part.
4328
4329         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
4330         it is given.
4331
4332 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4333
4334         * binhex.el (binhex-decode-region-internal)
4335         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
4336         (dns-query)
4337         * nnweb.el (nnweb-gmane-search)
4338         * pgg-parse.el (pgg-parse-armor)
4339         * pgg.el (pgg-verify-region)
4340         * sha1.el (sha1-string-external)
4341         * uudecode.el (uudecode-decode-region-internal)
4342         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
4343         XEmacs.
4344
4345         * gnus-art.el (gnus-article-browse-html-parts)
4346         * gnus-group.el (gnus-read-ephemeral-gmane-group)
4347         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
4348         make-temp-file.
4349
4350         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
4351         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
4352         compiling.
4353
4354         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
4355         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
4356         XEmacs when compiling.
4357
4358         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
4359         gnus-pick-mode-off-hook for XEmacs when compiling.
4360         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
4361         gnus-binary-mode-off-hook for XEmacs when compiling.
4362
4363         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
4364         Return nil if char-charset is not available.
4365
4366         * imap.el (imap-disable-multibyte)
4367         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
4368         macros.
4369
4370         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
4371         instead of encode-coding-string.
4372
4373         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
4374         'xemacs) instead of mm-emacs-mule to switch function definitions.
4375         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
4376
4377         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
4378         bind temporary-file-directory for XEmacs;
4379         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
4380         timer-set-function for XEmacs 21.4 and SXEmacs;
4381         bind timer-list for XEmacs 21.4 and SXEmacs;
4382         fbind char-charset and find-charset-region for non-Mule XEmacs;
4383         fbind decode-coding-region, decode-coding-string, detect-coding-region,
4384         encode-coding-region and encode-coding-string for XEmacs having no
4385         file-coding feature.
4386
4387 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
4388
4389         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
4390
4391 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4392
4393         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
4394         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
4395
4396 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
4397
4398         * mm-util.el (mm-decompress-buffer): Use `delete-file';
4399         alias `jka-compr-delete-temp-file' no longer exists.
4400
4401 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4402
4403         Use define-minor-mode in Gnus where applicable.
4404         * mml.el (mml-mode): Use define-minor-mode.
4405         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
4406         (gnus-undo-mode): Use define-minor-mode.
4407         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
4408         (gnus-dead-summary-mode): Use define-minor-mode.
4409         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
4410         Initialize in declaration.
4411         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
4412         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
4413         (gnus-mailing-list-mode): Use define-minor-mode.
4414         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
4415         (gnus-draft-mode): Use define-minor-mode.
4416         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
4417         (gnus-dired-mode): Use define-minor-mode.
4418
4419 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
4420
4421         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
4422         handles on recursive mml-to-mime translation and check them for
4423         boundary delimiter collisions.  Reported by Greg Troxel.
4424
4425 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4426
4427         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
4428
4429 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4430
4431         * mm-util.el (mm-find-buffer-file-coding-system):
4432         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
4433
4434 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
4435
4436         * message.el (message-generate-headers): Record insertion of optional
4437         headers as well.  Otherwise the check to prevent repeated insertion of
4438         optional headers is a no-op.
4439
4440 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
4441
4442         * smime.el: Don't mention CVS.
4443
4444         * nnrss.el (nnrss-fetch): Don't mention CVS.
4445
4446         * nnir.el: Don't mention CVS.
4447
4448 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4449
4450         * gnus-sum.el (gnus-summary-bookmark-make-record):
4451         Add `location' field.
4452
4453 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4454
4455         * lpath.el: Fbind bookmark-default-handler,
4456         bookmark-get-bookmark-record, bookmark-make-record-default,
4457         bookmark-prop-get for Emacs <23 and XEmacs.
4458
4459 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4460
4461         * gnus-sum.el: Add bookmark declarations to silence the compiler.
4462         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
4463         Use with-current-buffer to silence the byte-compiler.
4464         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
4465         bother to require `gnus'.
4466         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
4467
4468 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4469
4470         * gnus-sum.el (gnus-summary-bookmark-make-record)
4471         (gnus-summary-bookmark-jump): New functions.
4472         (gnus-summary-mode): Setup bookmark support.
4473
4474 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
4475
4476         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
4477         if set.
4478
4479 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4480
4481         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
4482         gnus-article-browse-html-save-cid-image; make it work recursively for
4483         forwarded messages as well.
4484         (gnus-article-browse-html-parts): Work when prefix arg is given.
4485         (gnus-article-browse-html-article): Doc fix.
4486
4487 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
4488
4489         * message.el (message-default-mail-headers):
4490         (message-default-headers): Carry the value mail-default-headers over
4491         into message-default-mail-headers, rather than message-default-headers.
4492
4493 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
4494
4495         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
4496         charset.
4497
4498         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
4499         charset into the <meta> tag when the article is encoded to utf-8.
4500
4501 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4502
4503         * gnus-art.el (gnus-article-browse-delete-temp-files):
4504         Delete directories as well.
4505         (gnus-article-browse-html-parts): Work for images that do not specify
4506         file names; delete temp directory when quitting; insert header at the
4507         right place; use file: scheme for image files.
4508
4509 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
4510
4511         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
4512         (gnus-article-browse-html-parts): Use it to make temporary cid image
4513         files in addition to html file so that browser may display them.
4514
4515 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
4516
4517         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
4518
4519 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4520
4521         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
4522
4523 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
4524
4525         * auth-source.el (auth-sources): Change default to be simpler.
4526         Explain about Secret Service API sources.  Improve Customize options.
4527         (auth-source-pick): Change to accept any number of search parameters.
4528         Implement fallbacks iteratively, not recursively.  Add scoring on the
4529         second pass and sort by score.  Call Secret Service API when needed.
4530         (auth-source-user-or-password): Use it.  Call Secret Service API
4531         directly when needed to get the user name and the password.
4532
4533 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
4534
4535         * message.el (message-interactive): Doc fix.
4536         (message-qmail-inject-args): Reflow.
4537         (message-kill-to-signature): Fix typo in docstring.
4538
4539         * smiley.el (smiley-buffer): Fix typo in docstring.
4540
4541 2010-03-24  Glenn Morris  <rgm@gnu.org>
4542
4543         * mail-source.el (gnus-message): Declare.
4544         (mail-source-delete-old-incoming): Require gnus-util.
4545
4546 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4547
4548         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
4549
4550         * message.el (ecomplete-setup): Autoload it for Emacs <23.
4551
4552         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
4553         password-cache's default if it is not bound.
4554         (mml-secure-passphrase-cache-expiry): Default to 16 that is
4555         password-cache-expiry's default if it is not bound.
4556
4557         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
4558         available in Emacs 21.
4559
4560         * lpath.el: Suppress compiler warnings for:
4561         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
4562         XEmacs;
4563         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
4564         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
4565         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
4566
4567 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
4568
4569         * auth-source.el (auth-sources): Fix up definition so extra parameters
4570         are always inline.
4571
4572 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
4573
4574         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
4575         wasn't updated after mismatch.  Clear cached mailbox info correctly
4576         when uidvalidity changes.
4577         (nnimap-group-prefixed-name): New function to avoid some code
4578         duplication.
4579         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
4580         (nnimap-request-group): Use it.
4581         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
4582         (nnimap-update-unseen): Significantly improved speed of Gnus startup
4583         with many imap folders.  This is done by caching the group status from
4584         the imap server persistently in a group parameter `imap-status'.  (This
4585         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
4586         but not persistently, so every Gnus startup was still very slow.)
4587
4588 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
4589
4590         * assistant.el (assistant-render-text): Run `widget-setup' and don't
4591         delete the extra newline.  Otherwise editing of :string and :number
4592         types don't work.
4593
4594 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4595
4596         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
4597         secrets.el dependency.
4598         (auth-sources): Add optional user name.  Add secrets.el configuration
4599         choice (unused right now).
4600
4601 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4602
4603         * gnus-sum.el (gnus-summary-make-menu-bar):
4604         Let `gnus-registry-install-shortcuts' fill in the functions.
4605
4606         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
4607         warnings.
4608         (gnus-registry-misc-menus): Variable to hold registry mark menus.
4609         (gnus-registry-install-shortcuts): Populate and use it in a
4610         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
4611
4612 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
4613
4614         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
4615         In-place substitutions for the group name encoding/decoding.
4616         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
4617         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
4618         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
4619         (nnimap-update-unseen, nnimap-request-list)
4620         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
4621         (nnimap-request-set-mark, nnimap-split-to-groups)
4622         (nnimap-split-articles, nnimap-request-newgroups)
4623         (nnimap-request-create-group, nnimap-request-accept-article)
4624         (nnimap-request-delete-group, nnimap-request-rename-group)
4625         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
4626         `encoded-mbx' for consistency.
4627         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
4628         variable `imap-current-mailbox'.
4629
4630         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
4631         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
4632
4633 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
4634
4635         * pop3.el (pop3-display-message-size-flag): Display message size byte
4636         counts during POP3 download.
4637         (pop3-movemail): Use it.
4638         (pop3-list): Implement listing of available messages.
4639
4640 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
4641
4642         * nnir.el (nnir-get-article-nov-override-function): New function to
4643         override the normal NOV retrieval.
4644         (nnir-retrieve-headers): Use it.
4645
4646 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
4647
4648         * auth-source.el (netrc-machine-user-or-password): Autoload.
4649
4650 2010-03-19  Glenn Morris  <rgm@gnu.org>
4651
4652         Stop message.el from loading about 40 libraries it doesn't always need.
4653         The general approach is to autoload rather than require, and to
4654         require in the specific functions rather than the file.  (Bug#5642)
4655
4656         * gmm-utils.el: Don't require wid-edit.
4657         (widget-create-child-value, widget-convert, widget-default-get):
4658         Autoload.
4659
4660         * gnus-util.el: Don't require time-date, netrc.
4661         (message-fetch-field, gnus-group-name-decode): Declare rather than
4662         autoloading.
4663         (gnus-fetch-field): Require message.
4664         (gnus-decode-newsgroups): Require gnus-group.
4665
4666         * ietf-drums.el: Don't require time-date.
4667
4668         * message.el: Don't require hashcash, canlock, ecomplete.
4669         Do require mail-utils.  Require nnheader only when compiling.
4670         (smtpmail-default-smtp-server): Remove declaration.
4671         (message-send-mail-function): Check smtpmail-default-smtp-server
4672         is bound rather than requiring smtpmail.
4673         (message-auto-save-directory, message-insert-signature):
4674         Use expand-file-name rather than nnheader-concat.
4675         (nnheader-insert-file-contents): Autoload.
4676         (hashcash-wait-async): Declare.
4677         (message-send-mail): Only call gnus-setup-posting-charset if
4678         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
4679         (message-send-mail-with-sendmail): Require sendmail.
4680         (canlock-password, canlock-password-for-verify): Declare.
4681         (message-canlock-password): Require canlock.
4682         (nnheader-get-report): Autoload.
4683         (gnus-setup-posting-charset): Declare.
4684         (message-send-news): Require gnus-msg.
4685         (message-make-references, message-make-in-reply-to): Use mail-header-id
4686         rather than the alias mail-header-message-id.
4687         (ecomplete-add-item, ecomplete-save): Declare.
4688         (message-put-addresses-in-ecomplete): Require ecomplete.
4689         (ecomplete-display-matches): Autoload.
4690
4691         * mm-decode.el: Don't require mailcap, gnus-util.
4692         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
4693         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
4694         Autoload.
4695         (mailcap-mime-extensions): Declare.
4696
4697         * mm-encode.el: Don't require mailcap.
4698         (mailcap-extension-to-mime): Autoload.
4699
4700         * mml-sec.el: Don't require password-cache.
4701
4702         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
4703         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
4704         (mml-minibuffer-read-type): Require mailcap.
4705         (mml-preview): Require gnus-msg.
4706
4707         * mml1991.el: Require password-cache.
4708         (password-cache-expiry): Remove declaration.
4709
4710         * mml2015.el: Require password-cache.
4711         (password-cache-expiry): Remove declaration.
4712
4713         * nneething.el (mailcap): Require mailcap.
4714
4715         * nnheader.el (declare-function): Add compatibility stub.
4716         (message-remove-header): Declare rather than autoload.
4717         (nnheader-replace-header): Require message.
4718
4719         * nnimap.el (declare-function): Add compatibility stub.
4720         (netrc-parse, netrc-machine-user-or-password): Declare.
4721         (nnimap-open-connection): Require netrc.
4722
4723         * nntp.el (declare-function): Add compatibility stub.
4724         (netrc-parse, netrc-machine, netrc-get): Declare.
4725         (nntp-send-authinfo): Require netrc.
4726
4727         * rfc2047.el: Don't require qp.
4728         (quoted-printable-encode-region, quoted-printable-decode-string):
4729         Autoload.
4730
4731         * sieve-mode.el: Don't require easymenu.
4732         (easy-menu-add-item): Autoload it.
4733
4734         * spam-stat.el (time-to-number-of-days): Autoload it.
4735
4736 2010-03-19  Glenn Morris  <rgm@gnu.org>
4737
4738         * password-cache.el (password-cache, password-cache-expiry): Autoload.
4739
4740 2010-03-18  Glenn Morris  <rgm@gnu.org>
4741
4742         * hashcash.el (declare-function): Remove duplicate definition.
4743
4744 2010-03-17  Kevin Ryde  <user42@zip.com.au>
4745
4746         * mml.el (mml-read-tag): Unquote values with `read' to reverse
4747         prin1 in mml-insert-tag (just stripping the quotes gave wrong
4748         value if any backslash escapes).
4749
4750 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4751
4752         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
4753         if it is available.  (bug#5647)
4754
4755         * lpath.el: Suppress compiler warning for coding-system-from-name for
4756         Emacs 21 and XEmacs.
4757
4758 2010-03-14  Juri Linkov  <juri@jurta.org>
4759
4760         * hmac-def.el:
4761         * hmac-md5.el:
4762         * netrc.el: Fix keywords.
4763
4764 2010-02-26  Glenn Morris  <rgm@gnu.org>
4765
4766         * message.el (message-send-mail-function): Change the default, so that
4767         it inherits from a customized send-mail-function.  (Bug#5643)
4768
4769 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4770
4771         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
4772         shell-command-to-string signals an error (bug#5299).
4773
4774 2010-02-24  Glenn Morris  <rgm@gnu.org>
4775
4776         * message.el (message-smtpmail-send-it)
4777         (message-send-mail-with-mailclient): Doc fixes.
4778
4779 2010-02-16  Glenn Morris  <rgm@gnu.org>
4780
4781         * message.el (message-default-mail-headers): Change the default value
4782         to ease the transition from mail-mode to message-mode.  (Bug#5555)
4783
4784 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4785
4786         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
4787         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
4788
4789 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
4790
4791         * time-date.el (date-to-time): Doc fix (Bug#5408).
4792
4793 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
4794
4795         * message.el (message-mail): Just pass yank-action on to message-setup.
4796         (message-setup): Handle (FUN . ARGS) form of yank-action.
4797         (message-with-reply-buffer, message-widen-reply)
4798         (message-yank-original): Handle non-buffer values of
4799         message-reply-buffer (Bug#4080).
4800         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
4801
4802 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
4803
4804         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
4805         Fix typo in docstring.
4806
4807 2010-01-08  Jason Rumney  <jasonr@gnu.org>
4808
4809         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
4810         response.
4811
4812 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4813
4814         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
4815
4816         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4817
4818         * message.el (message-check-news-header-syntax): Protect against a
4819         string that `rfc822-addresses' returns when parsing fails.
4820
4821 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4822
4823         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
4824         (gnus-previous-char-property-change): New functions.
4825
4826         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
4827
4828 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
4829
4830         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
4831         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
4832
4833 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
4834
4835         * message.el (message-exchange-point-and-mark): Rework last change to
4836         avoid using optional arg of exchange-point-and-mark, for backward
4837         compatibility.
4838
4839 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
4840
4841         * message.el (message-exchange-point-and-mark):
4842         Call exchange-point-and-mark with an argument rather than setting
4843         mark-active by hand (Bug#5175).
4844
4845 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4846
4847         * nntp.el (nntp-service-to-port): Work for service expressed with
4848         numeric string; replace [:digit:] with [0-9] for XEmacs.
4849
4850 2009-12-17  Glenn Morris  <rgm@gnu.org>
4851
4852         * gnus-group.el (gnus-bug-group-download-format-alist):
4853         Change emacs entry to debbugs.gnu.org.  Bump :version.
4854
4855 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
4856
4857         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
4858
4859 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
4860
4861         * message.el (message-info): Explain why we use `Info-goto-node'.
4862
4863 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4864
4865         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
4866
4867 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4868
4869         * message.el (message-completion-in-region): New compatibility function.
4870         (message-expand-group): Use it.
4871
4872 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4873
4874         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
4875         with no unread article should be listed if the 2nd arg `predicate' is
4876         given.
4877
4878 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4879
4880         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
4881
4882 2009-11-29  Juri Linkov  <juri@jurta.org>
4883
4884         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
4885         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
4886         on `gnus-recenter'.  (Bug#4698, Bug#4981)
4887
4888 2009-11-26  Kevin Ryde  <user42@zip.com.au>
4889
4890         * sha1.el (sha1-string-external): default-directory "/" in case
4891         otherwise non-existent.  process-connection-type pipe for touch of
4892         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
4893
4894 2009-11-25  Kevin Ryde  <user42@zip.com.au>
4895
4896         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
4897         it's comms related and sgml-mode.el has "comm" on that basis too.
4898
4899 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4900
4901         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
4902         containing tspecial characters if they have been already quoted.
4903
4904 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4905
4906         * dns-mode.el (auto-mode-alist): Purecopy string.
4907
4908 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4909
4910         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
4911
4912 2009-10-24  Glenn Morris  <rgm@gnu.org>
4913
4914         * gnus-art.el (help-xref-stack-item): Define for compiler.
4915
4916 2009-10-21  Kevin Ryde  <user42@zip.com.au>
4917
4918         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
4919
4920 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4921
4922         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
4923
4924 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4925
4926         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
4927         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
4928
4929 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4930
4931         * gnus.el (gnus-overlay-get): New alias to overlay-get.
4932         (gnus-overlays-in): New alias to overlays-in.
4933
4934         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
4935         gnus-overlay-get, and gnus-delete-overlay.
4936         (gnus-summary-show-thread): Make it work as well for systems in which
4937         next-single-char-property-change is not available.
4938         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
4939
4940         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
4941         (gnus-overlay-get): New alias to extent-property.
4942         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
4943
4944         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
4945         SXEmacs.
4946
4947         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
4948         SXEmacs.
4949
4950 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
4951
4952         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
4953
4954 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
4955
4956         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
4957         and XEmacs that don't have `remove-overlays'.
4958
4959 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4960
4961         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
4962         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
4963         selective display.  Use overlays instead.
4964
4965 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
4966
4967         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
4968
4969 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
4970
4971         * spam-stat.el (spam-stat-load): Fix typo in message.
4972
4973 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
4974
4975         * dig.el (dig-invoke): Fix typo in docstring.
4976         (query-dig): Reflow docstring.
4977
4978 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
4979
4980         * gnus-art.el (gnus-article-encrypt-body):
4981         * message.el (message-check-recipients):
4982         * mm-util.el (mm-codepage-setup):
4983         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
4984         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
4985
4986 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
4987
4988         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
4989         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
4990         keys from the menu if mm-{sign,encrypt}-option is 'guided.
4991         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
4992         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
4993
4994 2009-09-21  Kevin Ryde  <user42@zip.com.au>
4995
4996         * dig.el: Add "Keywords: comm", as per net-utils.el.
4997
4998 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4999
5000         * dig.el (dig-mode): Use define-derived-mode.
5001
5002 2009-09-19  Glenn Morris  <rgm@gnu.org>
5003
5004         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
5005
5006 2009-09-18  Glenn Morris  <rgm@gnu.org>
5007
5008         * gnus-diary.el (gnus-diary-check-message):
5009         * message.el (message-insert-formatted-citation-line):
5010         * nnbabyl.el (top-level):
5011         * nndiary.el (nndiary-schedule):
5012         Fix typos in condition-case handlers.
5013
5014 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5015
5016         * gnus-art.el (gnus-article-edit-part): Work for the buffer
5017         configuration that provides the sole article window in a frame;
5018         position point correctly after deleting a part.
5019
5020 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
5021
5022         * spam.el (spam-unregister-on-reregister): Add boolean variable.
5023         (spam-resolve-registrations-routine): Use it to unregister articles
5024         that change status.
5025
5026 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5027
5028         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
5029         with XEmacs.
5030         (parse-time-string-chars): Use it.
5031
5032 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
5033
5034         * imap.el (imap-interactive-login): Better messages.
5035         (imap-open): Fix bug with renamed buffer on reconnect.
5036         (imap-authenticate): Add buffer-local imap-last-authenticator variable
5037         for easier debugging and cleaner code.  On successful (guessed based on
5038         server capabilities) secondary authentication, set imap-state
5039         correctly.
5040         (imap-last-authenticator): Define imap-last-authenticator as a variable
5041         to avoid warnings.
5042
5043 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5044
5045         * nnrss.el (nnrss-request-article): Remove binding of
5046         default-enable-multibyte-characters that has gotten needless by
5047         the 2007-07-13 change in rfc2047-encode-message-header.
5048
5049         * mml.el (mml-insert-multipart): Error on the message header.
5050         (mml-insert-part): Error on the message header; position point at
5051         the end of a MIME tag.
5052
5053 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5054
5055         * time-date.el (autoload): Expand define-obsolete-function-alias into
5056         defalias and make-obsolete for old Emacsen that Gnus supports.
5057         (with-no-warnings): Define it for old Emacsen.
5058         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
5059         is available.
5060         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
5061         float-time is available; suppress compile warning for time-to-seconds.
5062
5063         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
5064         (gnus-float-time): Alias to float-time if it exists.
5065
5066         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
5067         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
5068         float-time is available; suppress compile warning for time-to-seconds.
5069
5070         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
5071         XEmacs.
5072
5073 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
5074
5075         * imap.el (imap-message-map): Docstring fix.
5076
5077 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5078
5079         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
5080         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
5081         Add the optional argument `encoding' that overrides the default.
5082
5083         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
5084         mm-encode-buffer.
5085
5086 2009-09-04  Glenn Morris  <rgm@gnu.org>
5087
5088         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
5089         mm-disable-multibyte, rather than default-enable-multibyte-characters.
5090         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
5091         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
5092         * mm-util.el (mm-with-unibyte-current-buffer)
5093         (mm-find-buffer-file-coding-system):
5094         * yenc.el (yenc-decode-region): Use default-value rather than
5095         default-enable-multibyte-characters.
5096
5097 2009-09-03  Glenn Morris  <rgm@gnu.org>
5098
5099         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
5100         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
5101         than default-enable-multibyte-characters.
5102
5103 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
5104
5105         * gnus-art.el (gnus-article-read-summary-keys):
5106         Fix gnus-buffer-configuration's value temporarily used.
5107
5108 2009-09-02  Glenn Morris  <rgm@gnu.org>
5109
5110         * gnus-util.el (gnus-float-time): New function.
5111         * gnus-delay.el (gnus-delay-article):
5112         * gnus-sum.el (gnus-thread-latest-date):
5113         * gnus-util.el (gnus-user-date): Use gnus-float-time.
5114         * nnspool.el (nnspool-request-newgroups):
5115         Use gnus-float-time rather than time-to-seconds.
5116         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
5117
5118         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
5119         (gnus-header-subject-face, gnus-header-newsgroups-face)
5120         (gnus-header-name-face, gnus-header-content-face):
5121         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
5122         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
5123         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
5124         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
5125         (gnus-cite-face-11):
5126         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
5127         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5128         (gnus-server-closed-face, gnus-server-denied-face)
5129         (gnus-server-offline-face):
5130         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
5131         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
5132         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
5133         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
5134         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
5135         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
5136         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
5137         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
5138         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
5139         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
5140         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
5141         (gnus-summary-selected-face, gnus-summary-cancelled-face)
5142         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
5143         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
5144         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
5145         (gnus-summary-high-undownloaded-face)
5146         (gnus-summary-low-undownloaded-face)
5147         (gnus-summary-normal-undownloaded-face)
5148         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
5149         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
5150         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
5151         (gnus-splash-face):
5152         * message.el (message-header-to-face, message-header-cc-face)
5153         (message-header-subject-face, message-header-newsgroups-face)
5154         (message-header-other-face, message-header-name-face)
5155         (message-header-xheader-face, message-separator-face)
5156         (message-cited-text-face, message-mml-face):
5157         * sieve-mode.el (sieve-control-commands-face)
5158         (sieve-action-commands-face, sieve-test-commands-face)
5159         (sieve-tagged-arguments-face):
5160         * spam.el (spam-face):
5161         Mark face aliases with "-face" in the name as obsolete.
5162
5163 2009-09-01  Glenn Morris  <rgm@gnu.org>
5164
5165         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
5166         than goto-line.
5167
5168 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5169
5170         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
5171         Don't move point if the command is invoked inside the message header.
5172
5173 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5174
5175         * imap.el (imap-send-command): Simplify.
5176         (imap-wait-for-tag): point-max -> buffer-size.
5177
5178 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5179
5180         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
5181         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
5182         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
5183         * nnir.el (nnir-swish-e-index-file):
5184         * gnus-sum.el (gnus-summary-delete-marked-as-read)
5185         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
5186         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
5187         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
5188         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
5189         (gnus-treat-display-xface): Add Emacs version of obsolescence.
5190
5191 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5192
5193         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
5194         Don't save excursion.
5195
5196 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5197
5198         * nnheader.el (nnheader-find-file-noselect):
5199         * mm-util.el (mm-insert-file-contents):
5200         Use (default-value 'major-mode) instead of default-major-mode.
5201
5202 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5203
5204         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
5205
5206 2009-08-26  Glenn Morris  <rgm@gnu.org>
5207
5208         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
5209         than placing in files.el.
5210
5211 2009-08-25  Glenn Morris  <rgm@gnu.org>
5212
5213         * nnir.el (top-level): Don't require cl at run-time.
5214         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
5215         Replace cl-function substitute with gnus-replace-in-string.
5216         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
5217         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
5218         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
5219         simplified expansions.
5220
5221 2009-08-25  Kevin Ryde  <user42@zip.com.au>
5222
5223         * dig.el (dig): Add autoload cookie.
5224
5225 2009-08-22  Glenn Morris  <rgm@gnu.org>
5226
5227         * gnus-art.el (gnus-button-patch): Use forward-line rather than
5228         goto-line.
5229
5230 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
5231
5232         * parse-time.el (parse-time-string-chars): Save match data.
5233
5234 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
5235
5236         * parse-time.el (parse-time-string-chars): Compute using character
5237         classes, to handle non-ascii characters (Bug#3190).
5238
5239 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5240
5241         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
5242
5243         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
5244         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
5245         (gnus-mm-display-part, gnus-mime-display-single)
5246         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
5247         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
5248
5249         * gnus-sum.el
5250         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
5251         (gnus-summary-move-article): Add expirable mark to articles copied or
5252         moved to group that has auto-expire turned on if the option is non-nil.
5253
5254 2009-07-24  Glenn Morris  <rgm@gnu.org>
5255
5256         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
5257         Fix typo.  (Bug#3903)
5258
5259 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5260
5261         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
5262         gnus-article-read-summary-keys rather than gnus-summary-edit-article
5263         that should not be used for draft articles.
5264         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
5265         that has no concern in minor mode keys.
5266         (gnus-article-summary-command, gnus-article-summary-command-nosave):
5267         Abolish.
5268
5269 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5270
5271         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
5272         article without making inquiry to a user for unknown encoding.
5273
5274         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
5275         (nnmaildir--scan): Assume i-node and device number that file-attributes
5276         returns might be cons-cell.
5277
5278         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
5279
5280         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
5281
5282 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
5283
5284         * auth-source.el: Remove docs now in auth.texi.  Don't use
5285         `gnus-message' for logging.  Add new variables `auth-source-debug' and
5286         `auth-source-hide-passwords' and use them.
5287
5288 2009-07-15  Glenn Morris  <rgm@gnu.org>
5289
5290         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
5291
5292 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5293
5294         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
5295         excessive whitespace from the default values of title and description.
5296
5297 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5298
5299         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
5300         mail-fetch-field to fetch Content-Description header in order to
5301         exclude newlines.
5302
5303 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
5304
5305         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
5306         format used by GnuPG 2.0.11.
5307
5308 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5309
5310         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
5311         to deleted part.
5312
5313 2009-05-30  David Engster  <dengste@eml.cc>
5314
5315         * nnmairix.el: Remove old documentation in the commentary block.
5316         (nnmairix-request-group): Do not update active file for nnml back ends.
5317         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
5318         end so that overview files are ignored.
5319         (nnmairix-update-groups): Make updating the groups more robust by using
5320         marks.
5321         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
5322         with dollar characters in message-id.
5323
5324 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
5325
5326         * spam.el: Use dns-query instead of query-dns.  Was renamed on
5327         2008-12-25 in dns.el.
5328
5329 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5330
5331         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
5332         could happen if the text is only composed of spaces and/or tabs.
5333
5334 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
5335
5336         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
5337         when sending a queued message to avoid extra mml tags.
5338
5339 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5340
5341         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
5342
5343 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5344
5345         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
5346         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
5347         rmail-toggle-header for XEmacs;
5348         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
5349
5350 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5351
5352         * gnus-dired.el: Remove autoload for gnus-setup-message.
5353         (gnus-dired-attach): Fake this-command value to prevent Gnus from
5354         displaying Gnus logo; always use compose-mail.
5355
5356 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5357
5358         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
5359
5360 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5361
5362         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
5363         (gnus-nocem-issuers): List currently active issuers; fix custom type.
5364         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
5365         available.
5366         (gnus-nocem-epg-verify): New function.
5367
5368 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
5369
5370         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
5371
5372 2009-02-15  Glenn Morris  <rgm@gnu.org>
5373
5374         * gnus-util.el (rmail-insert-rmail-file-header)
5375         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
5376         autoloads.
5377         (rmail-default-rmail-file): Remove unnecessary declaration.
5378         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
5379
5380 2009-02-14  Glenn Morris  <rgm@gnu.org>
5381
5382         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
5383         variable (only used in gnus-util, which declares it anyway).
5384         (rmail-output-to-rmail-file): Remove autoload of deleted function,
5385         which was only needed by gnus-art (changed to not use it any more).
5386         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
5387         only used in gnus-util, which autoloads it itself.
5388         (rmail-update-summary): Fix autoload.
5389
5390         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
5391         rather than rmail-output-to-rmail-file.
5392
5393 2009-02-07  Glenn Morris  <rgm@gnu.org>
5394
5395         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
5396         autoload of function that no longer exists.
5397         (rmail-toggle-header): Declare.
5398         (message-forward-rmail-make-body): Handle mbox Rmail.
5399
5400 2009-01-31  Glenn Morris  <rgm@gnu.org>
5401
5402         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
5403         2009-01-09 change.
5404
5405 2009-01-31  Dave Love  <fx@gnu.org>
5406
5407         * imap.el (imap-fetch-safe): Bind debug-on-error.
5408         (imap-debug): Add imap-fetch-safe.
5409
5410 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
5411
5412         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
5413         (auth-source-forget-all-cached): New convenience function.
5414         (auth-source-user-or-password): Accept list of modes or a single mode.
5415
5416         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
5417         auth-source modes.
5418
5419         * netrc.el (netrc-machine-user-or-password): Use list of
5420         auth-source modes.
5421
5422         * nnimap.el (nnimap-open-connection): Use list of
5423         auth-source modes.
5424
5425         * nntp.el (nntp-send-authinfo): Use list of
5426         auth-source modes.
5427
5428 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
5429
5430         * auth-source.el: Update docs to reflect epa-file-enable is to be used
5431         now.
5432
5433 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5434
5435         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
5436         coding system in XEmacs; add a workaround for XEmacs.
5437
5438         * lpath.el: Fbind coding-system-aliasee.
5439
5440 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5441
5442         * mm-util.el (mm-coding-system-priorities): Protect against nil value
5443         of current-language-environment.
5444
5445 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
5446
5447         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
5448         available at runtime.
5449
5450 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5451
5452         * gnus-art.el (article-date-ut): Fix end point of narrowing.
5453
5454 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
5455
5456         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
5457         the greatest positive fixnum value doesn't work under an XEmacs with
5458         bignum support; use the most-positive-fixnum constant instead,
5459         available since Emacs 21.1 with cl and XEmacs 21.1.
5460
5461 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5462
5463         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
5464         XEmacs gets not to work.
5465
5466 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5467
5468         * mm-util.el (mm-coding-system-priorities): Allow the value like
5469         "Japanese (UTF-8)" of current-language-environment.
5470
5471 2009-01-09  Glenn Morris  <rgm@gnu.org>
5472
5473         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
5474         with last-command-event.
5475
5476 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
5477
5478         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
5479         in the doc string.
5480
5481         * message.el (message-fix-before-sending): Amend comment.
5482
5483 2009-01-08  Dave Love  <fx@gnu.org>
5484
5485         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
5486
5487 2009-01-07  David Engster  <dengste@eml.cc>
5488
5489         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
5490         simplified server definitions by converting it via
5491         gnus-server-to-method.
5492
5493 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5494
5495         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
5496         parameter's operands.
5497
5498 2009-01-06  David Engster  <dengste@eml.cc>
5499
5500         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
5501         primary select method (for gnus-group-mark-article-as-read).
5502
5503 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
5504
5505         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
5506         `(gnus)Face', not `(gnus)X-Face'.
5507
5508 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5509
5510         * mm-util.el (mm-ucs-to-char): New function.
5511
5512         * mm-url.el (mm-url-decode-entities): Use it.
5513
5514         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
5515         unicode-to-char.
5516
5517 2009-01-05  Dave Love  <fx@gnu.org>
5518
5519         * time-date.el: Require cl for `declare'.
5520
5521 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
5522
5523         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
5524         Dave Love.
5525
5526 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
5527
5528         * message.el (message-fix-before-sending): Add `eight-bit' to
5529         illegible-text check.
5530
5531 2009-01-03  Michael Olson  <mwolson@gnu.org>
5532
5533         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
5534         `headers' is nil.  This can occur if the IMAP server does not have
5535         permissions to read messages from a folder, but can write new messages
5536         to the folder.
5537         (nnimap-request-article-part): Do not insert `data' if it is nil.
5538
5539         * imap.el (imap-parse-fetch): Courier can insert spurious blank
5540         characters which will confuse `read', so skip past them.
5541
5542 2009-01-01  Dave Love  <fx@gnu.org>
5543
5544         * imap.el (imap-string-to-integer): Fix typo.
5545         (imap-fetch-safe): New function.
5546         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
5547
5548         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
5549
5550         * imap.el (imap-process-connection-type, imap-debug, imap-open):
5551         (imap-parse-greeting): Fix doc strings.
5552         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
5553         (imap-parse-flag-list): Make messages unique.
5554         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
5555
5556         * nnimap.el: Fix author email.
5557         (nnimap-split-rule): Add FIXME comment.
5558         (nnimap-debug): Fix doc string.
5559
5560 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5561
5562         * dns.el (dns-set-servers): Check "Address".  Fix typo.
5563
5564 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
5565
5566         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
5567         nslookup if resolv.conf isn't available.
5568         (dns-query): Rename from query-dns.
5569         (dns-query-cached): Rename from query-dns-cached.
5570
5571 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5572
5573         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
5574         overlay-arrow-position and overlay-arrow-string buffer-local; no need
5575         to check if those variables exist (first appeared in Emacs 18.50).
5576
5577 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5578
5579         * mm-util.el (mm-line-number-at-pos): New function.
5580
5581         * spam-report.el (spam-report-process-queue): Use it.
5582
5583 2008-12-24  David Engster  <dengste@eml.cc>
5584
5585         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
5586         parameters that haven't existed as variables as buffer-local variables.
5587
5588 2008-12-23  Dave Love  <fx@gnu.org>
5589
5590         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
5591         cadar.
5592
5593         * sieve-manage.el (sieve-manage-starttls-p): Rename from
5594         imap-starttls-p.
5595         (sieve-manage-starttls-open): Rename from imap-starttls-open.
5596
5597 2008-12-22  Dave Love  <fx@gnu.org>
5598
5599         * imap.el: Fix author email.  Doc fixes.
5600         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
5601         reply.
5602
5603 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
5604
5605         * spam-report.el (spam-report-gmane-max-requests): New constant.
5606         (spam-report-gmane-wait): New variable.
5607         (spam-report-gmane-ham, spam-report-gmane-spam)
5608         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
5609         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
5610         the server.
5611
5612         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
5613         Add explanations.
5614
5615         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
5616         nnheader-accept-process-output and nnheader-read-timeout if available.
5617         (pop3-movemail): Use it.
5618
5619         * message.el (message-check-news-body-syntax): Fix signature check if
5620         there's an attachment.
5621
5622 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
5623
5624         * mm-util.el: Add comments to the mm- emulating functions.
5625
5626 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
5627
5628         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
5629         Reported by Stephen Berman <stephen.berman@gmx.net>.
5630
5631 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5632
5633         * mm-util.el (mm-substring-no-properties): New function.
5634         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
5635         (mm-special-display-p): Enable those lambda forms to be byte compiled.
5636         (mm-string-to-multibyte): Doc fix.
5637
5638         * mml.el (mml-attach-file): Use mm-substring-no-properties.
5639
5640 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
5641
5642         * mml.el (mml-attach-file): Strip text properties from file name.
5643         (Bug#1574)
5644
5645 2008-12-16  Glenn Morris  <rgm@gnu.org>
5646
5647         * mm-util.el (mm-charset-override-alist): Declare for compiler.
5648
5649 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5650
5651         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
5652         knows since the charset specified might be a bogus alias that
5653         mm-charset-synonym-alist provides.
5654
5655 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
5656
5657         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
5658         "ISO_8859-1".
5659
5660         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
5661
5662 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5663
5664         * mm-util.el (mm-charset-eval-alist):
5665         Define it before mm-charset-to-coding-system.
5666         (mm-charset-to-coding-system): Add optional argument `silent';
5667         define it before mm-charset-override-alist.
5668         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
5669         default value if it can be used in Emacs currently running;
5670         silence mm-charset-to-coding-system.
5671
5672 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5673
5674         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
5675         `allow-override' which says whether to use `mm-charset-override-alist'.
5676         (rfc2047-decode-encoded-words): Use it.
5677
5678         * mm-util.el (mm-charset-override-alist): Fix custom type;
5679         add `(gb2312 . gbk)' to choices.
5680
5681 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5682
5683         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
5684         fast.
5685
5686         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
5687
5688         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
5689
5690 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
5691
5692         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
5693         on links.
5694
5695         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
5696
5697 2008-12-03  Lute Kamstra  <lute@gnu.org>
5698
5699         * sha1.el: Remove leading * from docstrings of defcustoms,
5700         deffaces, defconsts and defuns.
5701
5702 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5703
5704         * message.el (message-idna-to-ascii-rhs-1): Protect against local
5705         users' addresses that don't have domain parts.
5706         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
5707         rather than message-narrow-to-head since there will be the message
5708         header separator.
5709
5710 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5711
5712         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
5713         since the result is inserted in a unibyte buffer anyway.
5714         (nnimap-demule-use-string-to-multibyte): Remove.
5715         (nnimap-demule): Alias it to mm-string-to-multibyte.
5716
5717 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
5718
5719         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
5720         variable for debugging bug#464 and bug#1174.
5721         (nnimap-demule): Use it.
5722
5723 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
5724
5725         * gnus-score.el (gnus-score-find-trace): Handle default score in total
5726         score calculation correctly.
5727
5728 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5729
5730         * message.el (message-send-mail): Just set the buffer to unibyte
5731         rather than use mm-with-unibyte-current-buffer which does a lot more.
5732         (message-send-mail-partially): Don't bother with
5733         mm-with-unibyte-current-buffer since it's already been made unibyte by
5734         message-send-mail.
5735
5736 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
5737
5738         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
5739
5740 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
5741
5742         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
5743
5744 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5745
5746         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
5747         require itself and to remove `with-no-warnings'.
5748
5749 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
5750
5751         * starttls.el (starttls-any-program-available): Get the name of the
5752         available TLS layer program.
5753         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
5754         well as the host name in the "opening" message.
5755
5756         * auth-source.el (auth-source-cache, auth-source-do-cache)
5757         (auth-source-user-or-password): Cache passwords and logins by default,
5758         allow override with `auth-source-do-cache'.
5759         (auth-source-forget-user-or-password): Allow users to remove cache
5760         entries if needed.
5761
5762 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
5763
5764         * md4.el (md4-buffer): Fix typo in docstring.
5765         (md4, md4-64): Doc fixes.
5766         (md4-pack-int32): Reflow docstring.
5767
5768 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5769
5770         * ietf-drums.el (ietf-drums-remove-comments): Localize second
5771         condition-case to only the forward-sexp call.
5772
5773 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5774
5775         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
5776         quotes contained.  Make it more robust regardless by an extra
5777         condition-case wrapper.
5778
5779 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5780
5781         * lpath.el: No need to fbind codepage-setup for Emacs 23.
5782
5783 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5784
5785         * nnml.el (nnml-request-expire-articles): Check if the function set to
5786         `nnmail-expiry-target' returns the symbol `delete'.
5787
5788         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
5789
5790         * nnmail.el (nnmail-expiry-target): Fix custom type.
5791
5792 2008-10-02  Glenn Morris  <rgm@gnu.org>
5793
5794         * mm-util.el (mm-codepage-setup): Tweak codepage error.
5795         Silence compiler warning.
5796
5797 2008-10-01  Magnus Henoch  <mange@freemail.hu>
5798
5799         * tls.el (open-tls-stream): Show the actual command being
5800         executed, instead of the format string.
5801
5802 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5803
5804         * lpath.el: Fbind codepage-setup for Emacs 23.
5805
5806 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
5807
5808         * mml.el (mml-menu): Don't assume mml2015 is bound.
5809
5810 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5811
5812         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
5813         exists.
5814
5815 2008-09-27  Glenn Morris  <rgm@gnu.org>
5816
5817         * gnus-util.el (mail-header-remove-comments): Autoload it.
5818
5819 2008-09-27  Andreas Schwab  <schwab@suse.de>
5820
5821         * gnus-util.el (gnus-split-references): Strip comments.
5822         (gnus-parent-id): Likewise.
5823
5824 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
5825
5826         * message.el (message-confirm-send): Fix version.
5827
5828 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5829
5830         * message.el (message-idna-to-ascii-rhs-1): Use
5831         mail-extract-address-components rather than mail-header-parse-addresses
5832         that is an alias by default to ietf-drums-parse-addresses that does not
5833         support non-ASCII names in headers' contents.
5834
5835 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5836
5837         * message.el (message-confirm-send): Fix variable documentation to
5838         avoid the "y/n" wording.
5839
5840 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
5841
5842         * message.el (message-set-auto-save-file-name): Save to a different
5843         filename so multiple messages (especially drafts) can be recovered.
5844
5845 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
5846
5847         * message.el (message-confirm-send): Add appropriate version.
5848
5849 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
5850
5851         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
5852         defvar.
5853
5854 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
5855
5856         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
5857         (mm-pkcs7-enveloped-magic): Ditto.
5858
5859 2008-09-17  Simon Josefsson  <simon@josefsson.org>
5860
5861         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
5862         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
5863
5864 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
5865
5866         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
5867         default, it's better.
5868
5869 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
5870
5871         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
5872         summary line gnus-number property and ignore them (with a warning
5873         message).
5874
5875 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5876
5877         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
5878         macro caddr in the interactive form since it won't be expanded.
5879
5880 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5881
5882         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
5883         `charset'; fix name of function called recursively.
5884         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
5885
5886 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5887
5888         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
5889         (gnus-mime-set-charset-parameters): New function.
5890         (gnus-mime-view-part-as-charset): Use it to correctly display part
5891         specifying wrong charset.
5892
5893 2008-09-08  David Engster  <dengste@eml.cc>
5894
5895         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
5896         in completing-read for back end server.
5897
5898 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
5899
5900         * message.el (message-confirm-send): New variable to confirm sending a
5901         message.
5902         (message-send): Use it.
5903
5904 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
5905
5906         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
5907
5908 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5909
5910         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
5911
5912 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
5913
5914         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
5915         prevent tracking too many groups.
5916         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
5917         Use it.
5918
5919 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
5920
5921         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
5922         moving point to the bottom of the window in order to avoid recentering.
5923
5924 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5925
5926         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
5927
5928         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
5929         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
5930         (gnus-article-beginning-of-window): Fix calculation.
5931
5932 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5933
5934         * gnus-msg.el (gnus-summary-supersede-article)
5935         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
5936         value of gnus-newsgroup-charset to decode non-MIME encoded text in
5937         message header.
5938
5939 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
5940
5941         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
5942         pending output coming after the status change.
5943
5944 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
5945
5946         * message.el:
5947         * gnus-start.el:
5948         * gnus-registry.el: Remove VMS support.
5949
5950 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5951
5952         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
5953         macro.
5954         (rfc2104-hash): Use it.
5955
5956 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
5957
5958         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
5959         (gnus-summary-sort-by-most-recent-date): New commands.
5960         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
5961         and menu entries.
5962
5963 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5964
5965         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
5966         don't redisplay article for raw contents; remove plural articles stuff.
5967
5968         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
5969         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
5970         on gnus-summary-save-article; display results properly.
5971
5972 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5973
5974         * lpath.el: No need to fbind ns-focus-frame.
5975
5976 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5977
5978         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
5979
5980 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5981
5982         * gnus-art.el (gnus-summary-save-in-pipe):
5983         Consider gnus-save-all-headers.
5984
5985 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
5986
5987         * gnus-util.el (ns-focus-frame): Remove declaration.
5988         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
5989         like x.
5990
5991 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
5992
5993         * rfc2104.el (rfc2104-zero): Delete defconst.
5994         (rfc2104-hex-alist): Likewise.
5995         (rfc2104-hex-to-int): Delete func.
5996         (rfc2104-hexstring-to-bitstring): Likewise.
5997         (rfc2104-nybbles): New defconst.
5998         (rfc2104-hash): Rewrite for speed.
5999
6000 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6001
6002         * tls.el (open-tls-stream): Make it work with the 2nd argument
6003         BUFFER that is a string but does not exist as a buffer object, as
6004         mentioned in the doc-string.
6005
6006 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6007
6008         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
6009         SXEmacs.
6010
6011 2008-07-16  Glenn Morris  <rgm@gnu.org>
6012
6013         * gnus-util.el (ns-focus-frame): Declare for compiler.
6014
6015 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6016
6017         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
6018         set as a group parameter.
6019         (gnus-summary-save-in-pipe): Work when it is called independently.
6020         (gnus-summary-pipe-to-muttprint): Don't modify
6021         gnus-summary-pipe-output-default-command.
6022
6023 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6024
6025         * message.el (message-send-mail-with-sendmail):
6026         Display the error message.
6027
6028 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6029
6030         * gnus-art.el (gnus-default-article-saver):
6031         Add gnus-summary-save-in-pipe to choices.
6032         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
6033         gnus-summary-pipe-output-default-command as the default command.
6034         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
6035         instead of gnus-last-shell-command.
6036
6037         * gnus-sum.el (gnus-summary-pipe-output-default-command):
6038         New user option.
6039         (gnus-summary-muttprint-program): Mention the value will be changed.
6040         (gnus-summary-save-article): Force showing of all headers.
6041         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
6042
6043 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
6044
6045         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
6046
6047 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
6048
6049         * nnimap.el (nnimap-id):
6050         * sieve-manage.el (sieve-manage-open): Doc fixes.
6051
6052 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
6053
6054         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
6055         if available.
6056
6057 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6058
6059         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
6060
6061         * nnkiboze.el (nnkiboze-generate-group):
6062         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
6063
6064         * nnmairix.el: Require CL.
6065
6066 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6067
6068         * dgnushack.el: Autoload get-display-table and put-display-table for
6069         XEmacs 21.5.
6070
6071         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
6072         21.4 and SXEmacs.
6073
6074 2008-06-15  David Engster  <dengste@eml.cc>
6075
6076         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
6077
6078 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
6079
6080         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
6081         New macros that expand to an `aset'/`aref' call under Emacs, and to a
6082         runtime choice under XEmacs.
6083
6084         * gnus-sum.el (gnus-summary-set-display-table):
6085         Use `gnus-put-display-table', `gnus-get-display-table',
6086         `gnus-set-display-table' for the display table, instead of `aset'.
6087
6088         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
6089         Use `gnus-put-display-table', `gnus-get-display-table',
6090         `gnus-set-display-table' for the display table.
6091
6092 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
6093
6094         * nnmairix.el: Add autoloads.
6095
6096 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
6097
6098         * nnmairix.el (nnmairix-delete-recreate-group)
6099         (nnmairix-update-and-clear-marks): Fix error messages.
6100
6101 2008-06-14  David Engster  <dengste@eml.cc>
6102
6103         * nnmairix.el: Upgrade to version 0.6.
6104         (nnmairix-group-toggle-propmarks-this-group)
6105         (nnmairix-group-toggle-readmarks-this-group)
6106         (nnmairix-group-delete-recreate-this-group)
6107         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
6108         (nnmairix-remove-tick-mark-original-article): New commands.
6109         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
6110         (nnmairix-propagate-marks-to-nnmairix-groups)
6111         (nnmairix-only-use-registry, nnmairix-allowfast-default)
6112         (nnmairix-marks-cache, nnmairix-version-output): New variables.
6113         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
6114         functions needed for marks propagation and manipulation of read marks.
6115         (nnmairix-update-groups): New function.
6116         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
6117         (nnmairix-determine-original-group-from-registry)
6118         (nnmairix-determine-original-group-from-path)
6119         (nnmairix-get-group-from-file-path, nnmairix-map-range)
6120         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
6121         New helper functions.
6122         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
6123         keystrokes for new commands.
6124         (nnmairix-delete-and-create-on-change): Doc string cleanup.
6125         (nnmairix-request-group): Check allow-fast group parameter.
6126         (nnmairix-request-create-group): Set allow-fast group parameter if
6127         nnmairix-allowfast-default is set.
6128         (nnmairix-close-group): Propagate marks upon closing if needed.
6129         (nnmairix-group-toggle-threads-this-group): Use new.
6130         nnmairix-group-toggle-parameter helper function.
6131         (nnmairix-search): Better check for empty search result.
6132         (nnmairix-goto-original-article): Use new helper functions for
6133         determining original article.
6134         (nnmairix-show-original-article): Make sure message-id is in brackets.
6135         (nnmairix-call-mairix-binary): Change variable name.
6136         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
6137         helper function.
6138         (nnmairix-widget-toggle-activate): Fix doc string.
6139
6140 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6141
6142         * nnir.el: Require edmacro when compiling with XEmacs.
6143         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
6144         available in Emacs 21.
6145
6146 2008-06-11  Glenn Morris  <rgm@gnu.org>
6147
6148         * gnus-util.el (x-focus-frame):
6149         * gnus.el (image-size):
6150         * mm-decode.el (image-size): Declare.
6151
6152         * gnus-picon.el (declare-function): Add compat definition.
6153         (image-size): Declare.
6154
6155         * gnus-group.el (tool-bar-map):
6156         * gnus-sum.el (tool-bar-map): Define for compiler.
6157
6158         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
6159
6160         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
6161
6162         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
6163         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
6164         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
6165         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
6166         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
6167         * sieve-manage.el, spam-report.el, spam.el:
6168         Remove unnecessary eval-and-compile of autoloads.
6169
6170 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
6171
6172         * auth-source.el: Precise Tramp doc.
6173
6174 2008-06-07  Glenn Morris  <rgm@gnu.org>
6175
6176         * nnmairix.el: Remove unnecessary eval-when-compile.
6177
6178 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6179
6180         * lpath.el: Fbind propertize for XEmacs 21.4.
6181
6182 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
6183
6184         * nnir.el: Move here from ../contrib.
6185
6186 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6187
6188         * gnus-util.el (gnus-read-shell-command): New function.
6189         * mm-decode.el (mm-pipe-part):
6190         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
6191
6192 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6193
6194         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
6195
6196 2008-06-03  Glenn Morris  <rgm@gnu.org>
6197
6198         * pop3.el (nnheader-accept-process-output): Autoload it.
6199
6200 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6201
6202         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
6203         are not 2-digit hexadecimal characters that follow `%'s.
6204
6205 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6206
6207         * message.el (message-bogus-recipient-p): Fix type in doc string.
6208         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
6209         (message-bogus-addresses): Rename from message-bogus-address-regexp.
6210         Improve custom options.
6211         (message-bogus-recipient-p): Adjust accordingly.
6212
6213 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
6214
6215         * parse-time.el (parse-time-months, parse-time-weekdays): Add
6216         long-form month and day names.
6217
6218 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6219
6220         * dgnushack.el: Autoload debug, eudc-expand-inline and
6221         pgg-snarf-keys-region for XEmacs.
6222
6223         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
6224
6225         * nnmairix.el: Require edmacro when compiling with XEmacs.
6226
6227 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
6228
6229         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
6230         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
6231
6232 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
6233
6234         * auth-source.el: Add more docs.
6235
6236         * netrc.el (netrc-machine): Always match if the port is not given.
6237
6238 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6239
6240         * nnheader.el (nnheader-read-timeout): Change the default timeout from
6241         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
6242         retrieval faster in some cases, but might make CPU usage larger.
6243         If this has any bad side effects, we might revert this change.
6244
6245         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
6246         seems to make mail retrieval much, much faster.
6247         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
6248         unconditionally.
6249
6250         * gnus-draft.el (gnus-group-send-queue):
6251         Bind message-send-mail-partially-limit to nil to avoid being prompted.
6252
6253 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
6254
6255         * mml.el (mml-attach-buffer): Prompt for `disposition'.
6256
6257         * message.el (message-bogus-address-regexp): Fix and improve custom
6258         type.
6259         (message-setup-hook): Add message-check-recipients as custom option.
6260
6261 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
6262
6263         * message.el (message-cite-function): Remove bogus autoload which crept
6264         in during merge from v5-10.
6265
6266 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
6267
6268         * nnimap.el (nnimap-open-connection): Fix login/password bug.
6269
6270         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
6271
6272         * auth-source.el: Preliminary Tramp docs.
6273         (auth-sources): Change the default auth-sources to use
6274         EPA .gpg files.
6275
6276 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
6277
6278         * nntp.el: Autoload `auth-source-user-or-password'.
6279         (nntp-send-authinfo): Use it.
6280
6281         * nnimap.el: Autoload `auth-source-user-or-password'.
6282         (nnimap-open-connection): Use it.
6283
6284         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
6285         for the gnus-message function.
6286         (auth-source-user-or-password): Use it.
6287
6288 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6289
6290         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
6291         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
6292         (rfc2104-hash): Use it.
6293
6294 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
6295
6296         * gnus-art.el (gnus-article-toggle-truncate-lines):
6297         Don't use `iff' in docstring.
6298
6299 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
6300
6301         * gnus-registry.el: Adjusted copyright dates and added a keyword.
6302
6303         * gnus-util.el (gnus-extract-address-component-name)
6304         (gnus-extract-address-component-email): Convenience functions around
6305         `gnus-extract-address-components'.
6306
6307         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
6308         Use `gnus-extract-address-component-email' to fix bug of comparing full
6309         sender name to `user-mail-address'.
6310
6311 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
6312
6313         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
6314         catch/throw to optimize.
6315         (gnus-registry-find-keywords): Just use member to find a keyword.
6316
6317 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6318
6319         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
6320         is current before calling gnus-server-prepare.
6321         (gnus-server-setup-buffer, gnus-server-update-server)
6322         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
6323
6324 2008-05-04  Juri Linkov  <juri@jurta.org>
6325
6326         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
6327         (mailcap-file-default-commands): Use mailcap-replace-in-string
6328         instead of replace-regexp-in-string, and mailcap-delete-duplicates
6329         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
6330
6331 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
6332
6333         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
6334
6335 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6336
6337         * gnus.el: Bump version to 0.11.
6338
6339 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6340
6341         * gnus.el: No Gnus v0.10 is released.
6342
6343 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6344
6345         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
6346         hooks.
6347         (gnus-update-read-articles): Speed up non-marks-using users.
6348         (gnus-use-marks): Define gnus-use-marks.
6349         (gnus-propagate-marks): Rename variable to something more sensible.
6350
6351 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
6352
6353         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
6354         (gmm-image-load-path-for-library): Fix typos in docstrings.
6355         (gmm-message): Reflow docstring.
6356
6357 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
6358
6359         * mail-source.el (mail-source-set-1, mail-source-bind):
6360         Move auth-source code out of the macro to clean it up and fix bugs.
6361
6362 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
6363
6364         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
6365         by sender if it's equal to user-mail-address, it's likely to be
6366         useless.
6367
6368         * mail-source.el (mail-source-bind): Don't use user or password if they
6369         are not bound.  Unintern them if they are nil.  Don't use server unless
6370         it's bound, and default it to empty string otherwise.
6371
6372 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
6373
6374         * mail-source.el: Load auth-source.el.
6375         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
6376         get user name or password, if auth-sources is set up.
6377
6378         * gnus-registry.el (gnus-registry-split-strategy): New variable for
6379         strategy of splitting with parent.
6380         (gnus-registry-split-fancy-with-parent)
6381         (gnus-registry-post-process-groups): Use it and fix prior
6382         bug (returning a list as the split result).
6383
6384         * auth-source.el (auth-sources): Remove server parameter.
6385         (auth-source-pick, auth-source-user-or-password)
6386         (auth-source-user-or-password-imap)
6387         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6388         (auth-source-user-or-password-sftp)
6389         (auth-source-user-or-password-smtp): Remove server parameter.
6390
6391 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
6392
6393         * smime.el (smime-sign-region, smime-encrypt-region)
6394         (smime-decrypt-region):
6395         Remove redundant calls to `generate-new-buffer-name'.
6396
6397 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
6398
6399         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
6400         Don't use QP for message/rfc822.
6401         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
6402
6403 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6404
6405         * sieve-manage.el (sieve-string-bytes): Remove.
6406         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
6407         correct byte-length only if the process's coding-system is the same as
6408         the one used internally by Emacs to represent strings.
6409
6410 2008-04-22  Juri Linkov  <juri@jurta.org>
6411
6412         * mailcap.el (mailcap-file-default-commands): New function.
6413
6414 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
6415
6416         * message.el (message-signature-separator, message-cite-function):
6417         Change custom version.
6418
6419 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
6420
6421         * tls.el (tls-program): Add -ign_eof argument to call the openssl
6422         commands.
6423         (tls-checktrust): Ditto.
6424
6425 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
6426
6427         * mm-decode.el (mm-display-external): Make temp file read-only.
6428
6429 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
6430
6431         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
6432         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
6433         `C-c C-f d'.
6434
6435 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
6436
6437         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
6438
6439 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
6440
6441         * gnus.el: Bump version to 0.9.
6442
6443 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
6444
6445         * gnus.el: No Gnus v0.8 is released.
6446
6447 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6448
6449         * mail-source.el (mail-source-value):
6450         Prefer fboundp to functionp so it works with macros as well.
6451
6452 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6453
6454         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6455         Fix last change in case the element is not even a symbol.
6456
6457 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6458
6459         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6460         Prefer fboundp to functionp so it works with macros as well.
6461
6462 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
6463
6464         * auth-source.el: Add docs.
6465         (auth-sources): Modify format to support server.
6466         (auth-source-pick, auth-source-user-or-password)
6467         (auth-source-user-or-password-imap)
6468         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6469         (auth-source-user-or-password-sftp)
6470         (auth-source-user-or-password-smtp): Add server parameter.
6471
6472 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
6473
6474         * gnus-registry.el: Initialize the registry when gnus-registry-install
6475         is t.
6476
6477 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6478
6479         * compface.el (uncompface): Make buffer unibyte.
6480
6481 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6482
6483         * mail-source.el (mail-source-value):
6484         Prefer fboundp to functionp so it works with macros as well.
6485
6486 2008-04-05  Glenn Morris  <rgm@gnu.org>
6487
6488         * gnus-ems.el (mm-disable-multibyte): Autoload it.
6489
6490 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6491
6492         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
6493         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
6494
6495         * nnheader.el (nnheader-init-server-buffer): Change buffer's
6496         multibyteness after rather than before erasing it.
6497
6498         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
6499         mm-with-multibyte.
6500         (gnus-request-article-this-buffer): Make sure the proper decoding is
6501         used if gnus-original-article-buffer happens to be unibyte.
6502
6503         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
6504         default-enable-multibyte-characters.
6505
6506         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
6507         default-enable-multibyte-characters.
6508
6509         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
6510
6511         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
6512
6513 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6514
6515         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6516         Fix last change in case the element is not even a symbol.
6517
6518 2008-04-02  Simon Josefsson  <simon@josefsson.org>
6519
6520         * imap.el (imap-enable-exchange-bug-workaround): New variable.
6521         (imap-message-copyuid-1): Use it.
6522         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
6523         J. Williams in
6524         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
6525
6526         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
6527         imap-enable-exchange-bug-workaround.
6528         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
6529
6530 2008-04-01  Simon Josefsson  <simon@josefsson.org>
6531
6532         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
6533         a 100 byte status-checks into a 2-3MB transfer for each group.
6534         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
6535         to enable bug workaround or not.
6536         (nnimap-find-minmax-uid): Only enable workaround conditionally.
6537
6538 2008-03-31  Glenn Morris  <rgm@gnu.org>
6539
6540         * message.el (mml2015-use): Declare for compiler.
6541         (message-info): Require mml2015 when appropriate.
6542
6543 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6544
6545         * Makefile.in (EMACS_COMP): Quote directory name that might contain
6546         whitespace.
6547
6548 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6549
6550         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
6551         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
6552         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
6553         (nntp-service-to-port): New function.
6554         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
6555         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
6556         (nntp-open-netcat-stream): New function.
6557         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
6558
6559 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
6560
6561         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
6562
6563 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6564
6565         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
6566
6567 2008-03-28  Magnus Henoch  <mange@freemail.hu>
6568
6569         * dns.el (dns-write): Use set-buffer-multibyte.
6570
6571 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
6572
6573         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
6574
6575 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6576
6577         * message.el (message-signature-separator): Change default.
6578         Improve custom type.
6579         (message-cite-function): Change default to
6580         message-cite-original-without-signature.
6581
6582         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
6583         toggle.
6584
6585         * message.el (message-check-news-body-syntax): Fix signature check.
6586         (message-setup-1): Mark buffer as unmodified _after_ running
6587         message-setup-hook and handling message-alternative-emails.
6588         (message-shorten-references): Be more strict when building list of
6589         valid references to comply with GNKSA.
6590
6591         * gnus-group.el (gnus-read-ephemeral-bug-group)
6592         (gnus-read-ephemeral-debian-bug-group)
6593         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
6594
6595         * message.el (message-info): Don't use booleanp which isn't supported
6596         in Emacs 21 and XEmacs.
6597
6598 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
6599
6600         * gnus-group.el (gnus-gmane-group-download-format): Rename from
6601         gnus-group-gmane-group-download-format.
6602         (gnus-group-read-ephemeral-gmane-group): Rename from
6603         gnus-group-read-ephemeral-gmane-group.
6604         (gnus-read-ephemeral-gmane-group-url): Rename from
6605         gnus-group-read-ephemeral-gmane-group-url.
6606         (gnus-bug-group-download-format-alist): New variable.
6607         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
6608         (gnus-read-ephemeral-emacs-bug-group): New commands.
6609
6610 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
6611
6612         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
6613         (gnus-visible-headers): Improve custom type.
6614
6615 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
6616
6617         * mml.el (mml-menu): Add workarounds for XEmacs.
6618
6619         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
6620         X-Boundary header.
6621
6622         * message.el (message-simplify-recipients): Fix previous commit.
6623
6624 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6625
6626         * mm-util.el (mm-set-buffer-multibyte): New function.
6627         * mm-decode.el (mm-copy-to-buffer): Use it.
6628
6629         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6630         Prefer fboundp to functionp so it works with macros as well.
6631
6632 2008-03-19  Glenn Morris  <rgm@gnu.org>
6633
6634         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
6635         Accidentally removed in the sync process with Emacs.
6636
6637 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
6638
6639         * message.el (message-alter-recipients-discard-bogus-full-name):
6640         New function.
6641         (message-alter-recipients-function): New variable.
6642         (message-get-reply-headers): Use it.
6643         (message-replace-header): New helper function.
6644         (message-recipients-without-full-name): New variable.
6645         (message-simplify-recipients): New command.
6646
6647         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
6648
6649         * message.el (message-info): Handle EasyPG manual.
6650
6651         * mml.el (mml-menu): Add entry for EasyPG.
6652
6653 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
6654
6655         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
6656         parameter.
6657
6658         * message.el (message-disassociate-draft): Specify drafts group name
6659         fully.
6660
6661 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
6662
6663         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
6664         Eliminate unnecessary duplicates from the match list.
6665
6666 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6667
6668         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
6669
6670         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
6671
6672         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
6673         args of `how-many' of which the XEmacs version doesn't take; declare
6674         Info-index-next as function.
6675
6676 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
6677
6678         * gnus-score.el (gnus-score-headers): Fix handling of
6679         gnus-inhibit-slow-scoring.
6680
6681         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
6682         string.
6683         (gnus-button-url-regexp): Improve handling of parenthesis.
6684         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
6685         (gnus-button-handle-info-keystrokes): Handle index entries.
6686
6687 2008-03-15  Glenn Morris  <rgm@gnu.org>
6688
6689         * parse-time.el (parse-time-string): Simplify.
6690
6691 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6692
6693         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
6694         Incoming* files.
6695
6696 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
6697
6698         * auth-source.el (auth-sources): Rename from auth-source-choices.
6699         (auth-source-pick): Use it.
6700
6701 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6702
6703         * binhex.el (binhex-decode-region-internal):
6704         * uudecode.el (uudecode-decode-region-internal):
6705         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
6706         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
6707         setting default-enable-multibyte-characters.
6708
6709 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
6710
6711         * auth-source.el (auth-source-protocols)
6712         (auth-source-protocols-customize, auth-source-choices): Add and
6713         modified variable customizations and defaults.
6714         (auth-source-pick, auth-source-user-or-password)
6715         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
6716         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6717         (auth-source-user-or-password-sftp)
6718         (auth-source-user-or-password-smtp): Use new variables and provide an
6719         interface to netrc.el.
6720
6721 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6722
6723         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
6724         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
6725         Make sure the nntp port to specify is a string.
6726
6727 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6728
6729         * nntp.el: Use with-current-buffer.
6730         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
6731         dubious mm-with-unibyte-current-buffer.
6732         (nntp-with-open-group-function): New function extracted from
6733         nntp-with-open-group macro.
6734         (nntp-with-open-group): Use the function, so it's easier to debug.
6735         Add indentation and debugging info.
6736         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
6737         Recommend the use of the netcat alternatives.
6738
6739         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
6740         Avoid mm-string-as-multibyte as well.
6741
6742         * nnweb.el (nnweb-insert-html):
6743         Remove use of nnheader-string-as-multibyte.
6744
6745         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
6746         (nnheader-string-as-multibyte): Remove.
6747
6748         * mm-view.el: Use inhibit-read-only.
6749         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
6750         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
6751         or unibyte-string.
6752
6753         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
6754         (mm-uu-yenc-extract): Use with-current-buffer.
6755
6756         * gnus-soup.el (gnus-soup-send-packet): Don't use
6757         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
6758
6759         * nnmh.el: Use with-current-buffer.
6760         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
6761         mm-string-as-multibyte on the output of mm-encode-coding-string.
6762
6763         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
6764         (nnimap-request-move-article): Use with-current-buffer.
6765
6766         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
6767         inserting the handle-buffer's text, so the implicit multibyte->unibyte
6768         conversion uses string-make-unibyte rather than string-as-unibyte.
6769
6770         * gnus-msg.el: Use with-current-buffer.
6771
6772         * message.el (message-ignored-resent-headers): Add "Delivered-To".
6773
6774 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
6775
6776         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
6777         string for caching if it is 'PIN.
6778
6779 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6780
6781         * lpath.el: Consider the case without Emacs/W3.
6782
6783 2008-03-08  Glenn Morris  <rgm@gnu.org>
6784
6785         * time-date.el (date-to-time, time-subtract, time-add)
6786         (safe-date-to-time): Doc fixes.
6787
6788 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
6789
6790         * mail-source.el (mail-source-delete-old-incoming-confirm):
6791         Change default to nil.
6792         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
6793
6794 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6795
6796         * lpath.el: Rearrange.
6797
6798         * gnus-art.el (gnus-narrow-to-page): Position point properly.
6799         (gnus-article-goto-prev-page): Work for articles having ^L's.
6800
6801         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
6802
6803         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
6804
6805 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
6806
6807         * gnus-bookmark.el: Adjust for renames in bookmark.el.
6808         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
6809         (gnus-bookmark-jump): Adjust some variable names.
6810
6811 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
6812
6813         * auth-source.el: New package.
6814         (auth-source-choices): Add customization entry point variable.
6815
6816         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
6817         bug.
6818
6819 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
6820
6821         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
6822         (gnus-registry-initialize, gnus-registry-install-p): Use it.
6823         (gnus-registry-install-shortcuts): Rename from
6824         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
6825         the `gnus-registry-mark-map' keymap dynamically from
6826         `gnus-registry-marks'.  The generated functions update the summary line
6827         when a registry mark is added or deleted, and will call
6828         `gnus-registry-install-p' (see the comments in the code).
6829         (gnus-registry-user-format-function-M): Use concat intelligently.
6830
6831         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
6832         the registry mark functions.
6833
6834 2008-03-05  Glenn Morris  <rgm@gnu.org>
6835
6836         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
6837         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
6838         gnus-art.
6839         (top-level): No need to load own source when compiling.
6840
6841 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
6842
6843         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
6844         Suggested by <chris.anderton@zetnet.co.uk>.
6845
6846 2008-03-04  Glenn Morris  <rgm@gnu.org>
6847
6848         * gnus-sum.el (top-level): No need to require gnus when compiling,
6849         since unconditionally required near start of file.
6850         (gnus-summary-display-while-building): Move definition before use.
6851
6852 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
6853
6854         * gnus-registry.el (gnus-registry-user-format-function-M):
6855         Add formatting function.
6856
6857 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
6858
6859         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
6860         with plists.
6861         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
6862         Use new format.
6863
6864 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6865
6866         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
6867         `where-is-internal' that returns a range of key sequences.
6868
6869 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6870
6871         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
6872
6873         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
6874         (gnus-summary-jump-to-group): Consider windows on other displayed
6875         frames as well.  Similar changes might be needed elsewhere, but that's
6876         the one I've bumped into during my use.
6877
6878         * nndoc.el (nndoc-oe-dbx-type-p):
6879         * gnus-msg.el (gnus-debug):
6880         * gnus-group.el (gnus-update-group-mark-positions):
6881         Use mm-string-to-multibyte.
6882
6883 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
6884
6885         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
6886         doesn't handle NotDashEscaped.
6887
6888         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
6889         (mml-dnd-attach-options): Fix typo in custom choice.
6890
6891         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
6892         Change nndoc-article-type to mbox.
6893         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
6894
6895         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
6896         to nil, instead of html2text.
6897
6898         * imap.el (imap-debug): Add `imap-ping-server'.
6899
6900         * gnus-bookmark.el: Add FIXMEs.
6901
6902         * message.el (message-form-letter-separator)
6903         (message-send-form-letter-delay): New variables.
6904         (message-send-form-letter): Use them.  New command to send form
6905         letters.  Requested by Uwe Siart.
6906         (message-send-mail-function): Doc fix.  Add "Other" custom option.
6907
6908 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
6909
6910         * Update copyright years.
6911
6912 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
6913
6914         Sync from EMACS_22_BASE.
6915
6916         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
6917
6918 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
6919
6920         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
6921         empty author.
6922
6923 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
6924
6925         * gnus-registry.el (gnus-registry-marks): Add variable for
6926         customization of marks and their appearance.
6927         (gnus-registry-read-mark): Use it.
6928         (gnus-registry-do-marks): Add utility function to loop through
6929         `gnus-registry-marks'.
6930         (gnus-registry-install-shortcuts-and-menus): Add function to install
6931         shortcuts and menus.
6932         (gnus-registry-initialize): Use it.
6933         (gnus-registry-default-mark): Clarify documentation.
6934
6935 2008-02-29  Glenn Morris  <rgm@gnu.org>
6936
6937         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
6938         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
6939         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
6940         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
6941         Change defcustom :version from 23.0 to 23.1.
6942
6943 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
6944
6945         * gnus-registry.el (gnus-registry-follow-group-p)
6946         (gnus-registry-post-process-groups): Add functions to aid registry
6947         splitting and improve logging.  Clarify behavior in function
6948         documentation.
6949         (gnus-registry-split-fancy-with-parent): Use them.
6950
6951 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6952
6953         * gnus-art.el: Use with-current-buffer.
6954
6955 2008-02-27  David Engster  <dengste@eml.cc>
6956
6957         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
6958         Express real group name in the response.
6959
6960 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6961
6962         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
6963         (nnmairix-last-server, nnmairix-current-server): Defvar them.
6964         (nnmairix-goto-original-article): Defvar gnus-registry-install and
6965         autoload gnus-registry-fetch-group when compiling.
6966         (nnmairix-request-group-with-article-number-correction):
6967         Remove unreferenced argument passed to nnmairix-call-backend.
6968
6969 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
6970
6971         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
6972         (mm-uu-extract): Improve face for low color ttys.
6973         Reported by Sascha Wilde.
6974
6975 2008-02-27  Glenn Morris  <rgm@gnu.org>
6976
6977         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
6978         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
6979         variables to defconsts.  Convert comments to doc-strings.
6980         (nnmairix-last-server, nnmairix-current-server): Convert from free
6981         variables to defvars.  Convert comments to doc-strings.
6982         (gnus-registry-fetch-group): Autoload.
6983         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
6984         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
6985         (nnmairix-widget-build-editable-fields): Use car cddr rather than
6986         caddr.
6987         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
6988         nnmairix-request-group-with-article-number-correction call.
6989         (nnmairix-fast, nnmairix-group): New, less general names, for free
6990         variables passed from nnmairix-request-group to
6991         nnmairix-request-group-with-article-number-correction.  Declare.
6992         (nnmairix-request-group-with-article-number-correction):
6993         Use nnmairix-fast, nnmairix-group rather than fast, group.
6994
6995 2008-02-26  David Engster  <dengste@eml.cc>
6996
6997         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
6998         version 0.5.
6999
7000 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
7001
7002         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
7003         instead of making an extra function call.  Don't add the current group
7004         to articles only when they have the group.  Use
7005         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
7006         Reported by David <de_bb@arcor.de>.
7007
7008 2008-02-24  Miles Bader  <miles@gnu.org>
7009
7010         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
7011         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
7012         (mm-find-mime-charset-region):
7013         * mm-bodies.el (mm-encode-body):
7014         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
7015
7016 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7017
7018         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
7019         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
7020
7021 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
7022
7023         * mail-source.el (mail-source-delete-incoming): Change default.
7024         Supplement doc string.
7025
7026         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
7027
7028 2008-02-14  Glenn Morris  <rgm@gnu.org>
7029
7030         * time-date.el (format-seconds): New function.
7031
7032 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
7033
7034         * nnmail.el (nnmail-message-id-cache-file): Derive from
7035         `gnus-home-directory'.
7036
7037 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
7038
7039         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
7040         Document negative prefix.
7041
7042         * gnus-group.el (gnus-group-read-group): Document negative prefix.
7043
7044 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7045
7046         * message.el (message-unsent-separator): Add the Exim bounce
7047         separator.
7048
7049 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
7050
7051         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
7052         list.
7053         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
7054         recipient/signer list.
7055
7056 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7057
7058         * Makefile.in (datarootdir): Define.
7059         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
7060         name that might contain whitespace.
7061
7062 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
7063
7064         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
7065         fbound (Emacs 23 unicode), signal an error.
7066
7067 2008-02-08  Glenn Morris  <rgm@gnu.org>
7068
7069         * gnus-art.el (pgg-display-output-buffer): Declare as function.
7070
7071 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
7072
7073         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
7074         ports to the calls to `netrc-machine-user-or-password' in addition to
7075         "imap" and "imaps".
7076
7077 2008-02-01  Zhang Wei  <id.brep@gmail.com>
7078
7079         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
7080
7081         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
7082
7083 2008-02-01  Kenichi Handa  <handa@m17n.org>
7084
7085         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
7086         rfc2104-hexstring-to-bitstring and changed to return a byte list.
7087         (rfc2104-hash): Convert the result of concat to unibyte string.
7088
7089 2008-02-01  Dave Love  <fx@gnu.org>
7090
7091         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
7092         coding-system-for-read.
7093         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
7094
7095 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
7096
7097         * gnus.el (gnus-group-startup-message): Add `find-image' call before
7098         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
7099         <hanche@math.ntnu.no>.
7100
7101 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7102
7103         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
7104
7105         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
7106
7107 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
7108
7109         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
7110         * message.el (message-beginning-of-line): Use featurep instead of bound
7111         tests in order to resolve conditionals at compile time.
7112
7113 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
7114
7115         * mail-source.el (mail-sources): Add `group' choice.
7116
7117         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
7118         parameter `in-group' to control into which group the articles go.
7119         Add treatment of `group' mail-source.
7120
7121 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7122
7123         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
7124
7125         * mm-decode.el (mm-dissect-buffer): Decode description.
7126
7127         * mml.el (mml-to-mime): Encode message header first.
7128
7129 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7130
7131         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
7132         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
7133
7134         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
7135         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
7136
7137 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
7138
7139         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
7140
7141 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7142
7143         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
7144         prefix keys.
7145         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
7146         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
7147         gnus-xmas.el.
7148
7149         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
7150         (gnus-xmas-article-describe-bindings): New function.
7151         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
7152         gnus-xmas-article-describe-bindings.
7153
7154         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
7155
7156 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
7157
7158         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
7159         Add new variables for article mark management.
7160         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
7161         list of extra data entries which, when present, will indicate that the
7162         article ID should not be trimmed from the registry.
7163         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
7164         functions.
7165         (gnus-registry-read-mark): New function to read a mark name from the
7166         user.
7167         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
7168         (gnus-registry-set-article-mark-internal): New functions to add and
7169         remove marks.
7170         (gnus-registry-get-article-marks): New function to show the marks for
7171         an article, or retrieve them for further use.
7172
7173 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7174
7175         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
7176         keys when no argument is given.
7177
7178 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
7179
7180         * imap.el (imap-ping-server): New variable.
7181         (imap-opened): On add extra ping if imap-ping-server is non-nil.
7182         (imap-ping-server): Minor doc string fixes.
7183
7184 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7185
7186         * imap.el (imap-ping-server): New function.
7187         (imap-opened): Call imap-ping-server.
7188
7189 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
7190
7191         * gnus-sum.el (gnus-article-sort-by-random)
7192         (gnus-thread-sort-by-random): Fix doc strings.
7193         Reported by jidanni@jidanni.org.
7194
7195 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7196
7197         * gnus-art.el (gnus-article-describe-bindings): New function.
7198         (gnus-article-read-summary-keys): Use it.
7199         (gnus-article-mode-map): Bind `C-h b' to it.
7200
7201 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7202
7203         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
7204         XEmacs.
7205         (gnus-article-describe-key, gnus-article-describe-key-briefly):
7206         Protect against non-character events.
7207
7208         * lpath.el: Fbind map-keymap for Emacs 21.
7209
7210 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
7211
7212         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
7213         New command.
7214         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
7215         instead of END.  Change name of the temp file.
7216         (gnus-group-gmane-group-download-format): Add doc string.  Make it
7217         customizable.
7218
7219 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7220
7221         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
7222         bind `S W' to gnus-article-wide-reply-with-original; set default
7223         binding to gnus-article-read-summary-send-keys.
7224         (gnus-article-read-summary-keys): Fix the order of keys; display
7225         continuation keys correctly in the echo area; describe bindings
7226         correctly when keys end with `C-h'.
7227         (gnus-article-read-summary-send-keys): New function.
7228         (gnus-article-describe-key, gnus-article-describe-key-briefly):
7229         Work for gnus-article-read-summary-send-keys; display continuation keys
7230         correctly in the echo area.
7231         (gnus-article-reply-with-original): Ignore prefix argument.
7232         (gnus-article-wide-reply-with-original): New function.
7233
7234         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
7235         Emacs 21.
7236
7237 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7238
7239         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
7240         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
7241
7242 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
7243
7244         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
7245         (gnus-group-read-ephemeral-gmane-group): New command.
7246
7247 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
7248
7249         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
7250
7251 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
7252
7253         * message.el (message-send-mail-function): Increase custom version.
7254
7255         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
7256         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
7257
7258 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
7259
7260         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
7261         for the cases where imap-authenticate is called with a nil buffer
7262         parameter.
7263
7264 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7265
7266         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
7267         html parts correctly; support forwarded messages.
7268         (gnus-article-browse-html-article): Remove work buffers.
7269
7270         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
7271         compiling.
7272         (netrc-bound-and-true-p): New macro.
7273         (netrc-parse): Use it instead of bound-and-true-p that is not available
7274         in XEmacs 21.4.
7275
7276 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
7277
7278         * gnus-registry.el (gnus-registry-mark-article)
7279         (gnus-registry-article-marks): Add functionality to mark articles
7280         through the Gnus registry.
7281
7282         * encrypt.el: Clarify documentation for the new pgg method.
7283         (encrypt-file-alist): Add PGG option.
7284         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
7285         functionality.  Abstract password key and messaging to external
7286         functions.
7287         (encrypt-password-key, encrypt-get-passphrase-if-needed)
7288         (encrypt-message-method-and-cipher): Add new convenience external
7289         functions.
7290         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
7291         (encrypt-pgg-process-buffer): Add PGG functionality glue.
7292
7293         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
7294         (netrc-parse): Use encrypt-file-alist to determine if
7295         encrypt-find-model or encrypt-insert-file-contents should be used.
7296
7297         * encrypt.el: Clarify documentation.  Load password-cache or
7298         password, whichever one is found first, instead of autoloading.
7299
7300 2007-12-19  Glenn Morris  <rgm@gnu.org>
7301
7302         * mml.el (message-options-set, message-narrow-to-head)
7303         (message-in-body-p, message-mail-p, message-encode-message-body):
7304         Autoload.
7305         (message-remove-header, message-narrow-to-headers-or-head)
7306         (message-subscribed-p, message-make-mail-followup-to)
7307         (message-position-on-field, message-news-p)
7308         (message-options-set-recipient, message-generate-headers)
7309         (message-sort-headers): Declare as functions.
7310
7311 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
7312
7313         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
7314         convention in doc string.
7315
7316 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7317
7318         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
7319         title to html parts.
7320         (gnus-article-browse-html-article): Pass message header to it.
7321
7322         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
7323
7324 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
7325
7326         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
7327         or password compatible with XEmacs.
7328
7329 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
7330
7331         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
7332         format document.
7333         (gnus-mime-delete-part): Don't write description line if empty.
7334         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
7335
7336 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
7337
7338         * gnus-sum.el (gnus-summary-mark-unread-as-read)
7339         (gnus-summary-mark-read-and-unread-as-read)
7340         (gnus-summary-mark-current-read-and-unread-as-read)
7341         (gnus-summary-mark-unread-as-ticked): Doc fix.
7342         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
7343
7344 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
7345
7346         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
7347         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
7348
7349 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
7350
7351         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
7352         yes-or-no-p.
7353
7354 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7355
7356         * mm-decode.el (mm-add-meta-html-tag): New function.
7357         (mm-save-part-to-file, mm-pipe-part): Use it.
7358
7359         * gnus-art.el (gnus-article-browse-delete-temp-files):
7360         Use gnus-y-or-n-p instead of y-or-n-p.
7361         (gnus-article-browse-html-parts): Work with message/external-body; use
7362         mm-add-meta-html-tag.
7363
7364 2007-12-11  Glenn Morris  <rgm@gnu.org>
7365
7366         * gnus-cache.el: Require gnus-sum not just when compiling.
7367
7368         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
7369
7370         * gnus-int.el (gnus-server-opened, gnus-status-message):
7371         Move definitions before use.
7372
7373         * mm-decode.el: Require gnus-util.
7374         (mm-remove-part): Only call delete-annotation on XEmacs.
7375
7376         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
7377
7378         * nnmail.el: Require gnus-int.
7379
7380         * spam.el: Move `require's before `eval-when-compile's.
7381
7382         * gnus-ems.el (gnus-alive-p):
7383         * gnus-fun.el (message-goto-eoh):
7384         * gnus-util.el (gnus-group-name-decode):
7385         * mail-source.el (gnus-compress-sequence):
7386         * message.el (Info-goto-node, format-spec):
7387         * mm-bodies.el (message-options-get):
7388         * mm-decode.el (mm-view-pkcs7):
7389         * mm-util.el (gmm-write-region):
7390         * mml-smime.el (mml-compute-boundary)
7391         (gnus-completing-read-with-default):
7392         * mml.el (widget-button-press, gnus-make-hashtable):
7393         * mml1991.el (mm-decode-content-transfer-encoding)
7394         (mm-encode-content-transfer-encoding)
7395         (message-options-get, message-options-set):
7396         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
7397         * nnfolder.el (gnus-request-group):
7398         * nnheader.el (ietf-drums-unfold-fws):
7399         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
7400         * smime.el (gnus-run-mode-hooks):
7401         * spam-stat.el (gnus-message): Autoload.
7402
7403         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
7404         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
7405         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
7406         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
7407         Add declare-function compatibility definition.
7408
7409         * gnus-cache.el (nnvirtual-find-group-art):
7410         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
7411         (gnus-add-image, gnus-add-wash-type):
7412         * gnus-group.el (nnkiboze-score-file):
7413         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
7414         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
7415         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
7416         (message-tokenize-header, gnus-get-buffer-create)
7417         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
7418         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
7419         * gnus.el (gnus-group-decoded-name):
7420         * mail-source.el (imap-capability):
7421         * mm-bodies.el (message-options-set):
7422         * mm-decode.el (gnus-configure-windows):
7423         * mm-extern.el (message-goto-body):
7424         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
7425         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
7426         (epg-sub-key-validity, message-options-set):
7427         * mml.el (widget-event-point, gnus-configure-windows):
7428         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
7429         * mml2015.el (epg-check-configuration, epg-configuration)
7430         (message-options-set):
7431         * nndb.el (nndb-request-article):
7432         * nnfolder.el (gnus-request-create-group):
7433         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
7434         * nnmaildir.el (gnus-group-mark-article-read):
7435         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
7436         * rfc1843.el (message-fetch-field):
7437         * spam.el (gnus-extract-address-components):
7438         Declare as functions.
7439
7440 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7441
7442         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
7443
7444         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
7445
7446         * lpath.el: Fbind run-mode-hooks for Emacs 21;
7447         bind show-trailing-whitespace for XEmacs.
7448
7449 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
7450
7451         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
7452         new no-op macro for backward compatibility.
7453
7454         * imap.el (imap-string-to-integer): New function.
7455
7456 2007-12-09  Glenn Morris  <rgm@gnu.org>
7457
7458         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
7459
7460         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
7461         * message.el, mm-view.el, sieve-manage.el, smime.el:
7462         Add declare-function compatibility definition.
7463
7464         * gnus-art.el (w3-region, w3m-region, Info-menu):
7465         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
7466         * gnus-sum.el (gnus-get-predicate):
7467         * gnus-util.el (mm-append-to-file, w32-focus-frame):
7468         * message.el (mail-abbrev-in-expansion-header-p):
7469         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
7470         (w3m-detect-meta-charset, w3m-region):
7471         * sieve-manage.el (password-read, password-cache-add)
7472         (password-cache-remove):
7473         * smime.el (password-read-and-add): Declare as functions.
7474
7475 2007-12-08  David Kastrup  <dak@gnu.org>
7476
7477         * gnus-sum.el (gnus-summary-simplify-subject-query):
7478         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
7479         `message'.
7480
7481 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7482
7483         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
7484         it to bind idna-program, installation-directory, defined-colors, and
7485         face-attribute for XEmacs of the version that compiles defcustom forms.
7486
7487 2007-12-07  Glenn Morris  <rgm@gnu.org>
7488
7489         * gnus-art.el (article-make-date-line): Revert previous change.
7490
7491 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
7492
7493         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
7494
7495 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
7496
7497         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
7498         Call gnus-add-to-range ranges only once with a prepared article-list.
7499
7500 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
7501
7502         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
7503         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
7504         group names with backslashes.
7505         Reported by Tassilo Horn <tassilo@member.fsf.org>.
7506
7507 2007-12-06  Deepak Goel  <deego3@gmail.com>
7508
7509         * gnus-art.el (article-make-date-line):
7510         * gnus-start.el (gnus-load):
7511         * pop3.el (pop3-read-response): Fix buggy call to `error'.
7512
7513 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7514
7515         * gnus-art.el (gnus-use-idna)
7516         * gnus-start.el (gnus-site-init-file)
7517         * message.el (message-use-idna)
7518         * mm-uu.el (mm-uu-hide-markers)
7519         * smiley.el (smiley-style): Revert changes that suppress warnings.
7520
7521 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7522
7523         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
7524         specify charset to html source.
7525         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
7526
7527 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7528
7529         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
7530         idna-program in order to suppress byte compile warning issued by XEmacs
7531         that came to byte compile the default value section of defcustom forms
7532         recently.
7533
7534         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
7535         value of installation-directory.
7536
7537         * message.el (message-use-idna): Don't directly refer to the value of
7538         idna-program.
7539
7540         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
7541
7542         * smiley.el (smiley-style): Don't directly call face-attribute.
7543
7544 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
7545
7546         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
7547
7548         * gnus-dired.el: Reduce Gnus dependencies.
7549         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
7550         Don't require.  Use autoloads instead.
7551         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
7552         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
7553         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
7554         (gnus-dired-mode): Adjust doc string.
7555         (gnus-dired-mail-mode): New variable.
7556         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
7557         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
7558         (gnus-dired-mail-buffers): New function.  Return mail or message
7559         composition buffers.
7560         (gnus-dired-attach): Use it.
7561         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
7562         NO-DECODE.
7563         (gnus-dired-print): Use `gnus-print-buffer' depending on
7564         `gnus-dired-mail-mode'.
7565
7566 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7567
7568         * rfc2047.el (rfc2047-encoded-word-regexp)
7569         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
7570         explaining what regexp patterns are for.
7571
7572 2007-12-04  Glenn Morris  <rgm@gnu.org>
7573
7574         * password.el: Move to password-cache.el.
7575
7576         * mml1991.el (password-read, password-cache-add, password-cache-remove):
7577         * mml2015.el (password-read, password-cache-add, password-cache-remove):
7578         * mml-smime.el (password-read, password-cache-add)
7579         (password-cache-remove):
7580         No need to autoload, since mml-sec requires password.
7581
7582         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
7583         * message.el (gnus-extract-address-components):
7584         * mml-smime.el (gnus-extract-address-components): Define for compiler.
7585
7586         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
7587         password.
7588
7589 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
7590
7591         * mailcap.el: Reduce dependencies.
7592         (mail-header-parse-content-type): Autoload.
7593         (mailcap-delete-duplicates): New alias.
7594         (mailcap-mime-info): Add optional argument NO-DECODE.
7595         (mailcap-mime-types): Use mailcap-delete-duplicates.
7596
7597         * message.el (message-ignored-supersedes-headers): Add "X-ID".
7598
7599 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
7600
7601         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
7602         (imap-parse-status): Upcase status-att for servers that sends them
7603         lower-case (e.g., MS Exchange 2007).
7604
7605 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7606
7607         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
7608         function.
7609
7610         * gnus-uu.el (gnus-uu-decode-yenc): New command.
7611         (gnus-uu-yenc-article): New function.
7612
7613         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
7614
7615         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
7616
7617 2007-12-02  Glenn Morris  <rgm@gnu.org>
7618
7619         * binhex.el (binhex): New custom group.
7620         (binhex-decoder-program, binhex-decoder-switches)
7621         (binhex-use-external): Move to the binhex custom group.
7622
7623         * uudecode.el (uudecode): New custom group.
7624         (uudecode-decoder-program, uudecode-decoder-switches)
7625         (uudecode-use-external): Move to the uudecode custom group.
7626
7627         * netrc.el (top-level): Don't load `encrypt' features.
7628         (netrc-parse): Don't use encrypt.
7629         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
7630
7631         * encrypt.el: Remove file.
7632
7633 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
7634
7635         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
7636         matches on patches.
7637
7638         * gnus-art.el (gnus-article-browse-html-article):
7639         Mention `mm-text-html-renderer' in the doc string.
7640
7641         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
7642         string.  Add comments.
7643
7644         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
7645         if rhs is ASCII.
7646
7647 2007-12-01  Glenn Morris  <rgm@gnu.org>
7648
7649         * mail-source.el (top-level): Require format-spec before
7650         eval-when-compile.
7651
7652 2007-11-30  Glenn Morris  <rgm@gnu.org>
7653
7654         * encrypt.el: Require password, rather than autoloading password-read.
7655
7656 2007-11-29  Glenn Morris  <rgm@gnu.org>
7657
7658         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
7659         (sasl-make-client, sasl-next-step, sasl-step-data)
7660         (sasl-step-set-data): Declare as functions.
7661
7662 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
7663
7664         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
7665
7666 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
7667
7668         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
7669         certs should be verified and what is to be done in the event of a
7670         verification failure.
7671
7672         * gnus.el (gnus-method-to-server): Add an optional parameter so the
7673         caller can indicate whether the cache should be disregarded for this
7674         call.  This way the result of the call is reproducible at all times and
7675         can be considered a canonical server name for the supplied method.
7676         (gnus-agent-method-p): Canonicalize server names by pushing their
7677         method through `gnus-method-to-server' using the no-cache argument.
7678
7679         * gnus-srvr.el (gnus-server-insert-server-line):
7680         Call `gnus-method-to-server' with `no-cache' argument.
7681
7682         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
7683         gnus-agent-possibly-synchronize-flags as this should be called when the
7684         server is actually being opened.
7685         (gnus-agent-possibly-synchronize-flags)
7686         (gnus-agent-possibly-synchronize-flags-server): Move check for the
7687         flags file of an agentized server to the latter function.
7688
7689         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
7690         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
7691         after a connection has been established successfully.
7692
7693 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7694
7695         * gnus-art.el (article-display-face): Force to display face if called
7696         interactively; check if gnus-article-x-face-too-ugly matches author.
7697         (article-display-x-face): Display face even if From header is missing
7698         as article-display-face does.
7699
7700 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
7701
7702         * hashcash.el (message-narrow-to-headers-or-head)
7703         (message-fetch-field, message-goto-eoh)
7704         (message-narrow-to-headers): Declare as functions.
7705
7706 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
7707
7708         * mail-source.el (mail-sources): Default to fetch from file for
7709         compatibility with default of nnmail-spool-file.
7710
7711 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7712
7713         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
7714         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
7715         to look for encoded word that should be encoded again.
7716         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
7717         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
7718         encoding pattern.
7719         (rfc2047-decode-region): Switch strict regexp and loose one according
7720         to rfc2047-allow-irregular-q-encoded-words.
7721
7722 2007-11-25  Romain Francoise  <romain@orebokech.com>
7723
7724         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
7725
7726 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
7727
7728         * tls.el (tls-program): Provide more custom choices from
7729         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
7730         (tls-process-connection-type, tls-success): Remove "*" in doc string.
7731
7732 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7733
7734         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
7735         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
7736
7737         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
7738         `nnmail-spool-file'.
7739
7740         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
7741         `nnmail-spool-file'.
7742
7743         * gnus-move.el (gnus-change-server): Ditto.
7744
7745         * gnus-kill.el (gnus-batch-score): Ditto.
7746
7747         * gnus-cache.el (gnus-jog-cache): Ditto.
7748
7749         * gnus-msg.el (gnus-summary-reply):
7750         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
7751
7752 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7753
7754         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
7755         version.  Minor improvement to doc strings.
7756         (tls-program): Add comment.
7757
7758 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
7759
7760         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
7761         (tls-checktrust): New variable.  Check if GNU TLS complained about a
7762         mismatch between the hostname provided in the certificate and the name
7763         of the host connnecting to.
7764         (open-tls-stream): Use them.  Check certificates against trusted root
7765         certificates.
7766
7767 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7768
7769         * gnus-cache.el (gnus-cache-generate-nov-databases):
7770         Use nnml-generate-nov-databases-directory instead of
7771         nnml-generate-nov-databases-1.
7772
7773 2007-11-24  Glenn Morris  <rgm@gnu.org>
7774
7775         * message.el (message-tool-bar-retro): Update for rename
7776         mail_send.xpm->mail-send.xpm.
7777
7778 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
7779
7780         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
7781         `smime-ldap-search' for Emacs 22 and up.
7782
7783 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7784
7785         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
7786
7787         * message.el (message-send-mail-function): Fix error convention.
7788         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
7789         (message-widen-reply, message-send-mail, message-talkative-question)
7790         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
7791         (message-clone-locals, message-send-news): Use with-current-buffer.
7792         (message-insert-or-toggle-importance): Remove unused var `valid'.
7793         (message-make-references): Remove unused var `new-references'.
7794         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
7795
7796 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
7797
7798         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
7799         (spam-split-symbolic-return-positive): Reflow docstring.
7800         (spam-backends, spam-summary-exit-behavior)
7801         (spam-mark-ham-unread-before-move-from-spam-group)
7802         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
7803         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
7804         (spam-clear-cache, spam-backend-check, spam-install-backend)
7805         (spam-install-statistical-backend, spam-list-of-processors)
7806         (spam-group-processor-p, spam-split, spam-bogofilter-score)
7807         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
7808         (spam-check-crm114, spam-initialize, spam-unload-hook):
7809         Fix typos in docstrings.
7810
7811 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7812
7813         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
7814         been checked if they have never been read and those group levels are
7815         higher than the one that a user specified.
7816
7817 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7818
7819         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
7820         foreign groups unless a group level is specified by a user.
7821         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
7822
7823 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
7824
7825         * message.el (message-send-mail-function): Require sendmail.
7826
7827 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
7828
7829         * message.el (message-send-mail-function): Check for smtpmail too.
7830
7831         * utf7.el (utf7-encode, utf7-decode): Use coding system
7832         `utf-7'/`utf-7-imap' from utf-7.el' if available.
7833
7834         * message.el (message-send-mail-function): New function.
7835         (message-send-mail-function): Set default using
7836         message-send-mail-function.  Adjust doc string.
7837         (message-send-mail-with-mailclient): New function.
7838
7839 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
7840
7841         * smime.el (from):
7842         * rfc2047.el (message-posting-charset):
7843         * qp.el (mm-use-ultra-safe-encoding):
7844         * pop3.el (parse-time-months):
7845         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
7846         * nnml.el (files):
7847         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
7848         (jka-compr-compression-info-list, ange-ftp-path-format)
7849         (efs-path-regexp):
7850         * nndiary.el (files):
7851         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
7852         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
7853         (epg-digest-algorithm-alist, inhibit-redisplay)
7854         (password-cache-expiry):
7855         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
7856         (pgg-output-buffer, password-cache-expiry):
7857         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
7858         (efs-path-regexp):
7859         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
7860         (inhibit-redisplay):
7861         * mm-uu.el (file-name, start-point, end-point, entry)
7862         (gnus-newsgroup-name, gnus-newsgroup-charset):
7863         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
7864         (latin-unity-ucs-list):
7865         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
7866         (mm-uu-binhex-decode-function):
7867         * message.el (gnus-message-group-art, gnus-list-identifiers)
7868         (rmail-enable-mime-composing, gnus-local-organization)
7869         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
7870         (gnus-read-active-file, facemenu-add-face-function)
7871         (facemenu-remove-face-function, gnus-article-decoded-p)
7872         (tool-bar-mode):
7873         * mail-source.el (display-time-mail-function):
7874         * gnus-util.el (nnmail-pathname-coding-system)
7875         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
7876         (gnus-original-article-buffer, gnus-user-agent)
7877         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
7878         (xemacs-codename, sxemacs-codename, emacs-program-version):
7879         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
7880         * gnus-start.el (gnus-agent-covered-methods)
7881         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
7882         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
7883         (gnus-newsgroup-headers, gnus-group-list-mode)
7884         (gnus-group-mark-positions, gnus-newsgroup-data)
7885         (gnus-newsgroup-unreads, nnoo-state-alist)
7886         (gnus-current-select-method, mail-sources)
7887         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
7888         (nnmail-spool-file, gnus-cache-active-hashtb):
7889         * gnus-mh.el (mh-lib-progs):
7890         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
7891         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
7892         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
7893         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
7894         (gnus-group-buffer):
7895         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
7896         (font-lock-set-defaults):
7897         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
7898         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
7899         (gnus-summary-post-menu, total-parts, type, condition, length):
7900         * gnus-agent.el (gnus-agent-read-agentview):
7901         * flow-fill.el (show-trailing-whitespace):
7902         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
7903         eval-and-compile wrappers for byte compiler pacifiers.
7904
7905         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
7906         (mm-display-inline-fontify): Check for featurep 'xemacs not
7907         extent-list.
7908
7909         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
7910         itimer-list.
7911         (mm-create-image-xemacs): Only do something for XEmacs.
7912         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
7913
7914         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
7915
7916         * gnus-registry.el (gnus-adaptive-word-syntax-table):
7917         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
7918
7919 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
7920
7921         * nnimap.el (nnimap-split-download-body):
7922         * gnus-demon.el (gnus-demon):
7923         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
7924
7925 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7926
7927         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
7928         New macros.
7929         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
7930         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
7931         copy data from unibyte buffer to multibyte current buffer.
7932         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
7933         to copy data from unibyte current buffer to multibyte buffer.
7934         (nntp-make-process-buffer): Make process buffer unibyte.
7935
7936         * pop3.el (pop3-open-server): Fix typo in Lisp code.
7937
7938 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
7939
7940         * pop3.el (pop3-open-server): Accept and process data more robustly at
7941         connexion start to avoid spurious "POP SSL connexion failed" errors.
7942
7943 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7944
7945         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
7946         read group names.
7947
7948 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
7949
7950         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
7951
7952 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7953
7954         * nnmail.el (nnmail-parse-active): Make group names unibyte.
7955         (nnmail-save-active): Use a unibyte buffer when saving active file,
7956         which may contain non-ASCII group names.
7957
7958         * nnml.el (nnml-request-group): Decode group names in messages.
7959
7960 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
7961
7962         * message.el (message-citation-line-function)
7963         (message-insert-formatted-citation-line): Fix spelling of
7964         `message-insert-formated-citation-line'.
7965
7966 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
7967
7968         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
7969
7970 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7971
7972         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
7973         nnmail-pathname-coding-system.
7974
7975         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
7976         that a user enters; decode group names in messages.
7977
7978         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
7979
7980 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
7981
7982         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
7983
7984         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
7985
7986         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
7987         risky local variable.
7988
7989         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
7990
7991 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
7992
7993         * encrypt.el: Improve documentation to fix function name typo.
7994         Reported by Daiki Ueno <ueno@unixuser.org>.
7995
7996 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7997
7998         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
7999         even if the point is not in the last page of an article.
8000         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
8001         back to the previous page.
8002
8003 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
8004
8005         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
8006
8007 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8008
8009         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
8010
8011 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8012
8013         * message.el (message-check-news-body-syntax):
8014         Avoid mm-string-as-multibyte.
8015         (message-hide-headers): Don't assume (point-min)==1.
8016
8017 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
8018
8019         * message.el (message-remove-blank-cited-lines): Fix if remove is
8020         given.
8021         (message-bogus-address-regexp): New variable.
8022         (message-bogus-recipient-p): New function.
8023         (message-check-recipients): New command.
8024         (message-syntax-checks): Add `bogus-recipient'.
8025         (message-fix-before-sending): Add `bogus-recipient'.
8026
8027         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
8028         (gnus-treat-body-boundary): Don't test window-system.
8029
8030 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
8031
8032         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
8033
8034 2007-10-28  Miles Bader  <miles@gnu.org>
8035
8036         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
8037         at compile-time too.
8038
8039 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
8040
8041         * gnus-msg.el (gnus-message-setup-hook):
8042         Add `message-remove-blank-cited-lines' to options.
8043
8044 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
8045
8046         * message.el (message-remove-blank-cited-lines): New function.
8047         Suggested by Karl Plästerer.
8048
8049 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8050
8051         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
8052         mapc.
8053
8054         * imap.el (imap-open): Replace mapcar called for effect with mapc.
8055         (top-level): Use mapc to set functions to be traced for debugging.
8056
8057         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
8058         called for effect with while loop.
8059
8060         * message.el (message-talkative-question): Replace mapcar called for
8061         effect with mapc.
8062
8063         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
8064         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
8065         called for effect with dolist.
8066
8067         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
8068
8069         * nndiary.el: Use dolist instead of mapcar to add diary headers to
8070         gnus-extra-headers and nnmail-extra-headers.
8071
8072         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
8073         called for effect with dolist.
8074         (top-level): Use mapc to set functions to be traced for debugging.
8075
8076         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
8077         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
8078         dolist.
8079
8080         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
8081         Replace mapcar called for effect with mapc.
8082         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
8083         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
8084         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
8085         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
8086
8087         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
8088         remove-if that's a cl function.
8089
8090         * webmail.el (webmail-debug): Replace mapcar called for effect with
8091         dolist.
8092
8093         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
8094         with mapc.
8095
8096 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8097
8098         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
8099         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
8100         with while loop.
8101
8102         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
8103         functions from article-* functions.
8104         (gnus-multi-decode-header): Replace mapcar called for effect with
8105         dolist.
8106
8107         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
8108         (gnus-bookmark-show-details): Replace mapcar called for effect with
8109         while loop.
8110
8111         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
8112         called for effect with while loop.
8113
8114         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
8115         with dolist.
8116
8117         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8118         Replace mapcar called for effect with dolist.
8119
8120         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
8121
8122         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
8123         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
8124         Replace mapcar called for effect with dolist.
8125         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
8126         mapc.
8127
8128         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
8129         Replace mapcar called for effect with dolist.
8130         (gnus-topic-list): Replace mapcar called for effect with mapc.
8131
8132         * gnus.el: Use mapc instead of mapcar to add autoloads.
8133
8134 2007-10-23  Richard Stallman  <rms@gnu.org>
8135
8136         * gnus-group.el (gnus-group-highlight): Mark as risky.
8137
8138 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8139
8140         * gnus.el (gnus-server-to-method): Return method found first in
8141         gnus-newsrc-alist.
8142
8143         * gnus-art.el (gnus-article-highlight-signature)
8144         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
8145         button overlay without the front stickiness.
8146
8147 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
8148
8149         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
8150         overview buffer needed a catch to receive its throw.
8151         (gnus-agent-flush-cache): Declare as interactive to make this function
8152         easier to use.
8153
8154 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
8155
8156         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
8157         `next-line'.
8158
8159 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8160
8161         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
8162         exclude address matching message-dont-reply-to-names.
8163
8164 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8165
8166         * gnus-util.el (gnus-string<): New function.
8167
8168         * gnus-sum.el (gnus-article-sort-by-author)
8169         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
8170
8171 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8172
8173         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
8174         the frame-focus tag is set in gnus-buffer-configuration.
8175
8176 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8177
8178         * gnus-art.el (gnus-article-add-button): Make a button overlay without
8179         the front stickiness.
8180
8181 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8182
8183         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
8184         url pattern; remove duplicate one.
8185         (gnus-article-extend-url-button): New function.
8186         (gnus-article-add-buttons): Use it.
8187         (gnus-button-push): Use concatenated url that it makes.
8188
8189 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
8190
8191         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
8192
8193 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8194
8195         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
8196         Don't hardcode point-min==1.
8197
8198 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
8199
8200         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
8201         Fix comment about "iso8859-1".
8202
8203 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
8204
8205         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
8206         ones returned from the verify-function.
8207
8208         * mm-uu.el (mm-uu-pgp-signed-extract-1):
8209         Call mml2015-extract-cleartext-signature if extraction failed.
8210
8211 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
8212
8213         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
8214         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
8215         failed.
8216
8217 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
8218
8219         * Relicense "GPLv2 or later" files to "GPLv3 or later".
8220
8221 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
8222
8223         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
8224         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
8225         recommends to use EasyPG instead of PGG.
8226
8227         * pgg.el: Revert to revision 6.23.2.16.
8228
8229         * pgg-def.el: Revert to revision 6.6.2.14.
8230
8231         * pgg-gpg.el: Revert to revision 6.23.2.34.
8232
8233 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
8234
8235         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
8236         to mark a thread as expirable.  Add variable `hide' to handle hiding of
8237         thread for both the null and zero (kill/expire thread) universal prefix
8238         cases.
8239         (gnus-summary-expire-thread): Add new function to expire a thread,
8240         using gnus-summary-kill-thread.
8241         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
8242         shortcuts for gnus-summary-expire-thread.
8243         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
8244         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
8245
8246 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
8247
8248         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
8249         extras value, so an extras entry can be deleted.
8250         (gnus-registry-delete-extra-entry): Use it.
8251         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
8252         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
8253         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
8254         storage through the gnus-registry, and provide an appropriate API for
8255         it.
8256
8257 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8258
8259         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
8260         Suggested by Leo <sdl.web@gmail.com>.
8261
8262         * gnus.el: Do.
8263
8264 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8265
8266         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
8267         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
8268
8269         * gnus-agent.el (gnus-agent-fetch-headers): Do.
8270
8271         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
8272         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
8273
8274 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8275
8276         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
8277         newline.
8278         (nnmbox-request-accept-article): Don't change article in source buffer;
8279         narrow to header to use message-fetch-field rather than
8280         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
8281         (nnmbox-request-replace-article): Quote lines that'll be misidentified
8282         as delimiters; make sure article ends with newline.
8283         (nnmbox-delete-mail): Correct last position of article to be deleted;
8284         ignore X-Gnus-Newsgroup header in article body.
8285         (nnmbox-save-mail): Quote lines looking like delimiters at the right
8286         positions; make sure article ends with newline.
8287
8288         * message.el (message-display-abbrev): Don't infloop when a user
8289         inserts SPC in the beginning of header.
8290
8291         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
8292         coding-system-for-read and coding-system-for-write for XEmacs having no
8293         file-coding feature.
8294
8295         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
8296
8297 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
8298
8299         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
8300         list of groups not followed by default.  Fix type to be regexp.
8301         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
8302
8303 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
8304
8305         * hmac-def.el (define-hmac-function): Switch from old-style to
8306         new-style backquotes.
8307
8308         * md4.el (md4-make-step): Likewise.
8309
8310 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8311
8312         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
8313         raw-text coding system when saving .newsrc file, which may contain
8314         non-ASCII group names.
8315
8316 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8317
8318         * gnus-cus.el (gnus-score-extra): New widget.
8319         (gnus-score-extra-convert): New function.
8320         (gnus-score-customize): Use it for Extra.
8321
8322 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
8323
8324         * mml2015.el (mml2015-extract-cleartext-signature): New function.
8325         (mml2015-mailcrypt-clear-verify): Use it.
8326         (mml2015-gpg-clear-verify): Use it.
8327         (mml2015-pgg-clear-verify): Use it.
8328         (mml2015-epg-clear-verify): Replace the current part with the output
8329         from GnuPG; don't extract the plaintext by itself.
8330
8331         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
8332         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
8333         mml2015-clear-verify-function; don't touch the armor headers or
8334         dash-escaped text here.
8335
8336 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8337
8338         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
8339         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
8340         parts, or application/octet-stream as a last resort.
8341         (gnus-mime-view-part-as-type): Don't toggle display.
8342         (gnus-mime-view-part-as-charset): Don't turn off display before
8343         querying charset.
8344
8345         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
8346         stuff to undisplayer function in Emacs.
8347         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
8348
8349         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
8350         text/calendar parts.
8351
8352 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8353
8354         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
8355         decoding text/calendar parts.
8356
8357         * message.el (message-forward-make-body-mime): Always mark body as
8358         having no illegible text; remove signed-or-encrypted argument.
8359         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
8360
8361         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
8362         (mml-generate-mime-1): Don't encode body if it is specified to be in
8363         raw form; don't make buffer be unibyte when inserting multibyte string.
8364
8365 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8366
8367         * sha1.el: Fix up comment style.
8368         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
8369         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
8370
8371         * hex-util.el: Fix up comment style.
8372         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
8373
8374         * gnus-salt.el: Use with-current-buffer.
8375         (gnus-pick-setup-message): Fix long-standing typo.
8376
8377 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8378
8379         * imap.el (imap-logout-timeout): New variable.
8380         (imap-logout, imap-logout-wait): New functions.
8381         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
8382
8383         * nnimap.el (nnimap-logout-timeout): New server variable.
8384         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
8385         nnimap-logout-timeout.
8386
8387         * gnus-art.el (gnus-article-summary-command-nosave)
8388         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
8389
8390 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8391
8392         * gnus.el (gnus-maximum-newsgroup): New variable.
8393
8394         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
8395         according to gnus-maximum-newsgroup.
8396
8397         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
8398         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
8399         Limit the range of articles according to gnus-maximum-newsgroup.
8400
8401 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
8402
8403         * gnus-art.el (gnus-sticky-article): Fix problems described in
8404         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
8405         Don't perform gnus-configure-windows here; reuse existing sticky
8406         article buffer.
8407
8408         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
8409         it doesn't exist in gnus-article-mode.
8410
8411 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8412
8413         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
8414         (gnus-agent-decoded-group-name): New function.
8415         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
8416         (gnus-agent-expire-group-1): Use it; decode group name in messages.
8417
8418 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
8419
8420         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
8421         Add binding for gnus-sticky-article.
8422         (gnus-summary-exit): Don't kill sticky article buffers.
8423
8424         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
8425         article buffer.
8426         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
8427         (gnus-kill-sticky-article-buffers): New commands.
8428
8429 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8430
8431         * nntp.el (nntp-xref-number-is-evil): New server variable.
8432         (nntp-find-group-and-number): If it is non-nil, don't trust article
8433         numbers in the Xref header.
8434
8435 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8436
8437         * gnus-agent.el (gnus-agent-read-group): New function.
8438         (gnus-agent-flush-group, gnus-agent-expire-group)
8439         (gnus-agent-regenerate-group): Use it.
8440         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
8441         nnmail-pathname-coding-system.
8442
8443 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8444
8445         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
8446
8447         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
8448         that are unread as unread, and also as selected so that information of
8449         marks having been changed by a user may be updated when exiting group.
8450
8451 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
8452
8453         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
8454
8455 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8456
8457         * gnus-art.el (gnus-mime-display-single): Pass part number that is
8458         calculated ignoring signature parts to gnus-treat-article.
8459
8460 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8461
8462         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
8463         a point here in order to keep the window start.
8464         (gnus-insert-mime-security-button): Make a button overlay without the
8465         front stickiness.
8466         (gnus-mime-display-security): Goto the end of a button.
8467
8468         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
8469
8470 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8471
8472         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
8473         group-name-at-point.
8474         (gnus-group-completing-read): New function that offers decoded
8475         non-ASCII group names for completion.
8476         (gnus-fetch-group, gnus-group-read-ephemeral-group)
8477         (gnus-group-jump-to-group, gnus-group-make-group-simple)
8478         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
8479         (gnus-group-fetch-control): Use it.
8480         (gnus-fetch-group): Use group-name-at-point for the initial value
8481         rather than the default value; use gnus-alive-p.
8482
8483         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
8484         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
8485         (gnus-summary-post-news): Use gnus-group-completing-read.
8486
8487         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
8488         (gnus-read-move-group-name): Decode group name for completion.
8489
8490 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
8491
8492         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
8493         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
8494         Yamaoka slightly modified the code).
8495
8496 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8497
8498         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
8499         (nnmail-split-incoming): Bind it.
8500
8501         * nnml.el (nnml-group-name-charset): New function.
8502         (nnml-decoded-group-name): Use it; don't decode group name if
8503         nnmail-group-names-not-encoded-p is non-nil.
8504         (nnml-encoded-group-name): New function.
8505         (nnml-group-pathname): Inline nnml-decoded-group-name.
8506         (nnml-request-expire-articles): Decode group name in message.
8507         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
8508         nnmail-pathname-coding-system.
8509         (nnml-save-mail, nnml-active-number): Work with decoded group names and
8510         not decoded ones according to nnmail-group-names-not-encoded-p.
8511         (nnml-generate-active-info): Use nnml-encoded-group-name.
8512
8513 2007-08-08  Glenn Morris  <rgm@gnu.org>
8514
8515         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
8516         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
8517         doc-strings and comments.
8518
8519 2007-07-25  Glenn Morris  <rgm@gnu.org>
8520
8521         * Relicense all FSF files to GPLv3 or later.
8522
8523 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8524
8525         * gnus-sum.el (gnus-summary-move-article):
8526         Make gnus-summary-respool-article work.
8527
8528 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
8529
8530         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
8531         string.
8532
8533 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
8534
8535         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
8536         that should be ignored when comparing distant RSS articles with local
8537         ones.
8538         (nnrss-make-hash-index): New function.  Create a hash index according
8539         to the ignored fields.
8540         (nnrss-check-group): Use it.
8541
8542 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8543
8544         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
8545
8546         * gnus-art.el (article-decode-group-name): Decode Xref header too.
8547
8548         * gnus-group.el (gnus-group-make-group): Encode group name here unless
8549         the new optional argument ENCODED is non-nil.
8550         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
8551         coding system for encoding group name.
8552         (gnus-group-make-rss-group): Pass un-encoded group name to
8553         gnus-group-make-group.
8554         (gnus-group-set-info): Tell gnus-group-make-group that group name is
8555         encoded.
8556
8557         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
8558         Encode group name to which articles are moved or copied.
8559         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
8560         coding system for encoding Newsgroup, Followup-To and Xref headers.
8561
8562         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
8563         marks; use nnheader-file-coding-system to write a file.
8564         (nnagent-retrieve-headers): Bind file-name-coding-system to
8565         nnmail-pathname-coding-system.
8566
8567         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
8568
8569         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
8570         (nnml-request-article, nnml-request-create-group)
8571         (nnml-request-rename-group, nnml-find-id)
8572         (nnml-possibly-change-directory, nnml-possibly-create-directory)
8573         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
8574         (nnml-save-marks): Use nnml-group-pathname instead of
8575         nnmail-group-pathname.
8576
8577         (nnml-request-create-group, nnml-request-expire-articles)
8578         (nnml-request-move-article, nnml-request-delete-group)
8579         (nnml-deletable-article-p, nnml-possibly-create-directory)
8580         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
8581         (nnml-open-marks): Bind file-name-coding-system to
8582         nnmail-pathname-coding-system.
8583
8584         (nnml-request-article): Pass server argument to nnml-find-group-number.
8585         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
8586         Pass server argument to nnml-possibly-create-directory.
8587         (nnml-request-accept-article): Pass server argument to
8588         nnml-active-number and nnml-save-mail.
8589         (nnml-find-group-number): Pass server argument to nnml-find-id.
8590         (nnml-request-update-info): Pass server argument to
8591         nnml-marks-changed-p.
8592
8593         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
8594         (nnml-save-mail, nnml-active-number): Add server argument.
8595
8596         (nnml-request-delete-group): Warn if group is missing.
8597         (nnml-get-nov-buffer): Decode group name.
8598         (nnml-generate-active-info): Encode group name.
8599         (nnml-open-marks): Decode group name in messages.
8600
8601 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8602
8603         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
8604         if it is not specified.
8605         (gnus-article-pipe-part, gnus-article-save-part)
8606         (gnus-article-interactively-view-part, gnus-article-copy-part)
8607         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
8608         (gnus-article-inline-part, gnus-article-save-part-and-strip)
8609         (gnus-article-replace-part, gnus-article-delete-part)
8610         (gnus-article-view-part-as-type): Pass raw prefix argument to
8611         gnus-article-part-wrapper.
8612
8613 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8614
8615         * gnus-agent.el (gnus-agent-save-active):
8616         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
8617
8618         * gnus-cache.el (gnus-cache-save-buffers)
8619         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
8620         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
8621         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
8622         (gnus-cache-braid-nov, gnus-cache-braid-heads)
8623         (gnus-cache-generate-active, gnus-cache-rename-group)
8624         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
8625         (gnus-cache-update-overview-total-fetched-for):
8626         Bind file-name-coding-system to nnmail-pathname-coding-system.
8627         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
8628         New variables.
8629         (gnus-cache-decoded-group-name): New function.
8630         (gnus-cache-file-name): Use it.
8631         (gnus-cache-generate-active): Use non-decoded group name for active.
8632
8633         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
8634         right place.
8635         (gnus-write-active-file): Don't break non-ASCII group names.
8636
8637         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
8638         nnmail-pathname-coding-system.
8639
8640         * lpath.el: Bind default-file-name-coding-system,
8641         file-name-coding-system and language-info-alist for XEmacs.
8642
8643         * gnus-uu.el (gnus-uu-decode-save): Typo.
8644
8645 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8646
8647         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
8648
8649 2007-07-14  David Kastrup  <dak@gnu.org>
8650
8651         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
8652         finishing actions if we did not edit the article.
8653
8654 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8655
8656         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
8657         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
8658         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
8659         (gnus-agent-flush-group, gnus-agent-flush-cache)
8660         (gnus-agent-fetch-headers, gnus-agent-load-alist)
8661         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
8662         (gnus-agent-retrieve-headers, gnus-agent-request-article)
8663         (gnus-agent-regenerate-group)
8664         (gnus-agent-update-files-total-fetched-for)
8665         (gnus-agent-update-view-total-fetched-for):
8666         Bind file-name-coding-system to nnmail-pathname-coding-system.
8667         (gnus-agent-group-pathname): Don't encode file names by
8668         nnmail-pathname-coding-system.
8669         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
8670         coding-system-for-write instead of buffer-file-coding-system to
8671         gnus-agent-file-coding-system.
8672
8673         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
8674         Decode group name.
8675
8676         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
8677
8678         * gnus-start.el (gnus-update-active-hashtb-from-killed)
8679         (gnus-read-newsrc-el-file): Make group names unibyte.
8680
8681         * nnmail.el (nnmail-group-pathname): Don't encode file names by
8682         nnmail-pathname-coding-system.
8683
8684         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
8685         (nnrss-request-delete-group): Bind file-name-coding-system to
8686         nnmail-pathname-coding-system.
8687         (nnrss-read-server-data, nnrss-read-group-data):
8688         Bind file-name-coding-system correctly.
8689         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
8690
8691         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
8692         (nntp-server-to-method-cache): New variable.
8693         (nntp-group-pathname): New function that decodes non-ASCII group names.
8694         (nntp-possibly-create-directory, nntp-marks-changed-p)
8695         (nntp-save-marks, nntp-open-marks): Use it.
8696         (nntp-possibly-create-directory, nntp-open-marks):
8697         Bind file-name-coding-system to nnmail-pathname-coding-system.
8698         (nntp-open-marks): Decode group names when bootstrapping marks.
8699
8700         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
8701         Newsgroups and Folowup-To headers.
8702
8703 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8704
8705         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
8706         (gnus-server-closed-face, gnus-server-denied-face)
8707         (gnus-server-offline-face): Remove variable.
8708         (gnus-server-font-lock-keywords): Use faces that are not aliases.
8709
8710         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
8711         of modifying message-stack directly for XEmacs.
8712
8713         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
8714         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
8715         if the coding-system argument is nil for XEmacs.
8716
8717         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
8718         mm-charset-override-alist.
8719
8720         * rfc2047.el: Don't require base64; require rfc2045 for the function
8721         rfc2045-encode-string.
8722         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
8723         to quote the parameter value.
8724
8725 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8726
8727         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
8728         form in gnus-group-name-charset-method-alist.
8729
8730         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
8731         overrides the default layout edit-form.
8732
8733         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
8734
8735         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
8736
8737 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8738
8739         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
8740         as unfetched articles.
8741
8742 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
8743
8744         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
8745
8746 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8747
8748         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
8749         original back end that keeps marks in the local system.
8750
8751 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8752
8753         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
8754         arg of pop-to-buffer for XEmacs.
8755         (gnus-article-read-summary-keys): Ditto; don't restore window
8756         configuration if summary command ends up with neither article buffer
8757         nor summary buffer; describe bindings if summary keys end with C-h.
8758
8759 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8760
8761         * message.el (message-fix-before-sending): Skip raw message part to be
8762         forwarded while checking illegible text.
8763         (message-forward-make-body-mime, message-forward-make-body):
8764         Mark signed or encrypted raw message as having no illegible text.
8765
8766 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8767
8768         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
8769         (gnus-message-with-timestamp-1): New macro.
8770         (gnus-message-with-timestamp): New function.
8771         (gnus-message): Use them.
8772
8773         * nnheader.el (nnheader-message): Use them.
8774
8775 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
8776
8777         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
8778         .newsrc.eld file.
8779
8780 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8781
8782         * gnus-agent.el (gnus-agent-fetch-headers)
8783         (gnus-agent-retrieve-headers):
8784         Bind gnus-decode-encoded-address-function to identity.
8785
8786         * nntp.el (nntp-send-xover-command): Recognize an xover command is
8787         available also when the server returns simply a dot.
8788
8789         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
8790
8791 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8792
8793         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
8794
8795 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8796
8797         * gnus-ems.el (gnus-x-splash): Make it work.
8798
8799         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
8800         from being used.
8801
8802         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
8803
8804 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8805
8806         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
8807         4th and the 5th arguments.
8808
8809         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
8810         the front stickiness.
8811         (gnus-article-summary-command-nosave): Correct the order of the
8812         arguments passed to pop-to-buffer.
8813         (gnus-article-read-summary-keys): Ditto; make it work properly when the
8814         summary command ends up with the article buffer.
8815
8816         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
8817         the same faces.
8818
8819 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
8820
8821         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
8822
8823 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
8824
8825         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
8826         * gnus-sum.el (gnus-summary-highlight):
8827         * pgg.el (pgg-sign-region, pgg-sign):
8828         * mail-source.el (mail-source-delete-old-incoming-confirm):
8829         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
8830
8831 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8832
8833         * gnus-art.el (gnus-mime-view-part-externally)
8834         (gnus-mime-view-part-internally): Fix predicate function passed to
8835         completing-read.
8836
8837         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
8838
8839         * gnus.el (gnus-update-message-archive-method): Add :version.
8840
8841 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8842
8843         * gnus.el (gnus-update-message-archive-method): New variable.
8844
8845         * gnus-start.el (gnus-setup-news): Update saved "archive" method
8846         according to gnus-message-archive-method if
8847         gnus-update-message-archive-method is non-nil.
8848
8849 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8850
8851         * gnus-sum.el (gnus-summary-limit-to-address): New function.
8852         Suggested by Loic Dachary <loic@dachary.org>.
8853         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
8854
8855 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8856
8857         * message.el (message-pop-to-buffer): Add switch-function argument.
8858         (message-mail): Pass switch-function argument to it.
8859
8860 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
8861
8862         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
8863         Improve doc string.
8864
8865 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8866
8867         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
8868         (gnus-header-content)
8869         * gnus-cite.el (gnus-cite-10)
8870         * gnus-srvr.el (gnus-server-closed)
8871         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
8872         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
8873         (gnus-group-mail-3-empty, gnus-group-mail-low)
8874         (gnus-group-mail-low-empty, gnus-splash)
8875         * message.el (message-header-to, message-header-cc)
8876         (message-header-subject, message-header-other, message-header-name)
8877         (message-header-xheader, message-separator, message-cited-text)
8878         (message-mml): Lighten colors of faces used for dark background.
8879
8880 2007-05-24  Simon Josefsson  <simon@josefsson.org>
8881
8882         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
8883         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
8884
8885 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8886
8887         * message.el (message-narrow-to-headers-or-head):
8888         Ignore mail-header-separator in the body.
8889
8890 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8891
8892         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
8893         same as window size.
8894
8895 2007-05-22  Kevin Ryde  <user42@zip.com.au>
8896
8897         * message.el (message-font-lock-keywords): Use message-header-xheader
8898         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
8899         ahead of the anything pattern, to get it recognised.
8900
8901 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8902
8903         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
8904         spam.el loads uses it in the compiled defadvice form.
8905
8906 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
8907
8908         * gnus-sum.el (gnus-articles-to-read)
8909         (gnus-summary-insert-old-articles): Don't truncate group name for
8910         `read-string'.
8911
8912         * gnus-util.el (gnus-limit-string): Delete this function.
8913
8914         * gnus-sum.el (gnus-simplify-subject-fully):
8915         Use `truncate-string-to-width' instead.
8916
8917 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
8918
8919         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
8920         Tell if, on summary exit, the next group has to be selected.
8921         (gnus-summary-exit): Use it.
8922
8923 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
8924
8925         * gnus-art.el (gnus-article-mode): Fix comment about displaying
8926         non-break space.
8927
8928 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8929
8930         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
8931         Check if group is not a directory.
8932         (nnfolder-request-expire-articles): Don't delete articles if the target
8933         group is not available.
8934
8935         * nnml.el (nnml-request-create-group): Properly check if group is not a
8936         file.
8937         (nnml-request-expire-articles): Don't delete articles if the target
8938         group is not available.
8939
8940         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
8941         Don't quote characters that are within parentheses.
8942
8943 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8944
8945         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
8946         (gnus-handle-ephemeral-exit): Select article according to it.
8947
8948 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
8949
8950         * message.el (message-insert-formated-citation-line): Remove newline.
8951         (message-citation-line-format): Add final \n here so that the user can
8952         avoid a blank line.
8953
8954 2007-05-03  Dan Christensen  <jdc@uwo.ca>
8955
8956         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
8957         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
8958         Update lanl/arXiv support.
8959
8960 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
8961
8962         * gnus.el: Bump version number.
8963
8964 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8965
8966         * gnus.el (gnus-version-number): Bump version.
8967
8968 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
8969
8970         * gnus.el: No Gnus v0.6 is released.
8971
8972 2007-04-27  Didier Verna  <didier@xemacs.org>
8973
8974         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
8975         * gmm-utils.el (gmm-regexp-concat): ... here.
8976         * message.el: Don't require 'gnus-util.
8977         (message-dont-reply-to-names): Handle name change above.
8978         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
8979
8980 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8981
8982         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
8983         since the initial value varies according to the system.
8984
8985 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8986
8987         * mm-util.el (mm-charset-synonym-alist): Defcustom.
8988
8989 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
8990
8991         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
8992
8993 2007-04-24  Didier Verna  <didier@xemacs.org>
8994
8995         Improve the type of gnus-ignored-from-addresses.
8996         * gnus-util.el (gnus-orify-regexp): New function.
8997         * message.el (gnus-util): Require it.
8998         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
8999         * gnus-sum.el (gnus-ignored-from-addresses): New function.
9000         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
9001
9002 2007-04-24  Didier Verna  <didier@xemacs.org>
9003
9004         * gnus-sum.el:
9005         * gnus-utils.el: Fix some trailing whitespaces.
9006
9007 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9008
9009         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
9010         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
9011         article's Message-ID; refer parent article in summary buffer.
9012
9013         * message.el (message-bounce): Call mime-to-mml.
9014
9015         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
9016         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
9017         optimize and/or forms properly.
9018
9019 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
9020
9021         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
9022         URL.
9023
9024 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9025
9026         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
9027
9028 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9029
9030         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
9031         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
9032         displayed of multipart/alternative part if it is invoked from summary
9033         buffer.
9034
9035         * mm-view.el (mm-inline-text-html-render-with-w3m)
9036         (mm-inline-text-html-render-with-w3m-standalone)
9037         (mm-inline-render-with-function): Use mail-parse-charset by default.
9038
9039 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
9040
9041         * parse-time.el (parse-time-string-chars): Check if CHAR
9042         is less than the length of parse-time-syntax.
9043
9044 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9045
9046         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
9047         from gnus-newsgroup-processable.
9048
9049 2007-04-16  Didier Verna  <didier@xemacs.org>
9050
9051         * gnus-msg.el (gnus-configure-posting-styles):
9052         Handle message-signature-directory properly with :file syntax.
9053         Reported by "Leo".
9054
9055 2007-04-11  Didier Verna  <didier@xemacs.org>
9056
9057         New user option: message-signature-directory.
9058         * gnus-msg.el (gnus-configure-posting-styles): Support it.
9059         * message.el (message-insert-signature): Ditto.
9060         * message.el (message-signature-file): Doc update.
9061         * message.el (message-signature-directory): New.
9062
9063 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9064
9065         * gnus-msg.el (gnus-inews-yank-articles):
9066         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
9067
9068 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9069
9070         * message.el (message-yank-original): Make sure cited text ends with
9071         newline; don't exchange point and mark.
9072
9073 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
9074
9075         * tls.el (open-tls-stream): Properly handle case where there
9076         is no associated buffer.
9077
9078 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
9079
9080         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
9081         message-yank-original, make sure (< mark TEXT point).
9082
9083 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
9084
9085         * message.el (message-fill-column): New variable.
9086         (message-mode): Use it.  Add comment on a possible new hook.
9087
9088         * nnmail.el (nnmail-spool-file): Mark as obsolete.
9089         (nnmail-get-new-mail): Reformat.
9090
9091         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
9092
9093         * gmm-utils.el: Fix Commentary.
9094         (gmm-tool-bar-from-list): Fix typo in doc string.
9095
9096 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
9097
9098         * message.el (message-yank-original): Don't switch point and mark
9099         unnecessarily to put point and mark as documented.
9100
9101 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9102
9103         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
9104         from the message heads.
9105
9106 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
9107
9108         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
9109         article buffer does not have a window.  This may not be the best
9110         solution but is certainly better than setting the start of the null,
9111         that is the current, window.
9112
9113 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
9114
9115         * gnus-draft.el (gnus-draft-setup-hook): New hook.
9116         (gnus-draft-setup): Run it.
9117
9118         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
9119         gnus-score-fast-scoring.  Allow regexp.
9120         (gnus-score-headers): Use it.
9121
9122         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
9123         XEmacs.
9124
9125         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
9126         string.
9127         (gnus-button-alist): Also catch `<f1> k ...'.
9128         (gnus-treat-display-x-face): Fix doc string.
9129
9130 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9131
9132         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
9133         evaluation of gnus-extended-version to ensure correct generation of the
9134         User-Agent header when message-generate-headers-first is used.
9135
9136 2007-03-24  Simon Josefsson  <simon@josefsson.org>
9137
9138         * hashcash.el (hashcash-generate-payment-async): Don't crash if
9139         hashcash-path is nil.  Don't call callback with incorrect number of
9140         parameters if val is 0.
9141
9142 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9143
9144         * message.el (message-required-news-headers):
9145         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
9146
9147 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
9148
9149         * tls.el (open-tls-stream): In handshake-waiting loop,
9150         don't wait more if there is output available to process.
9151
9152 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
9153
9154         * tls.el (tls-program): Doc fix.
9155
9156 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9157
9158         * message.el (message-generate-new-buffers): Change the meaning of the
9159         nil value; add `standard' to the choices; treat t as `unique'; improve
9160         doc string.
9161         (gnus-select-frame-set-input-focus): Autoload.
9162         (message-buffer-name): Search for the existing message buffer if
9163         message-generate-new-buffers is nil or `standard'; treat the value t of
9164         message-generate-new-buffers as `unique'.
9165         (message-pop-to-buffer): Raise the frame already displaying the message
9166         buffer; clear the echo area after querying.
9167         (message-setup): Pass the `continue' argument to compose-mail.
9168         (message-mail): Prefer `switch-function' if it is given; search for the
9169         existing message buffer if the `continue' argument is non-nil; pass
9170         continue and switch-function arguments to compose-mail by way of
9171         message-setup.
9172         (message-mail-other-window): Adjust argument of message-setup.
9173         (message-mail-other-frame): Ditto.
9174
9175 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9176
9177         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
9178         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
9179         to turn font-lock on when turning gnus-message-citation-mode on.
9180
9181 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
9182
9183         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
9184         (mml-smime-function-alist): New variable; add epg as the backend.
9185         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
9186         mml-smime- functions instead.
9187         * mm-view.el: Require smime.
9188
9189 2007-03-05  Didier Verna  <didier@xemacs.org>
9190
9191         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
9192         instead of just inheritance for posting styles.
9193         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
9194
9195 2007-02-24  Chris Moore  <dooglus@gmail.com>
9196
9197         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
9198         * pgg-pgp.el (pgg-pgp-encrypt-region):
9199         * pgg-gpg.el (pgg-gpg-encrypt-region):
9200         Check pgg-encrypt-for-me if no other recipients.
9201
9202 2007-02-24  John Paul Wallington  <jpw@pobox.com>
9203
9204         * tls.el (tls-certtool-program): Fix custom type.
9205
9206 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9207
9208         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
9209         and point-at-eol instead of line-(beginning|end)-position.
9210
9211         * assistant.el (assistant-parse-buffer): Ditto.
9212
9213         * netrc.el (netrc-parse-services): Ditto.
9214
9215 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
9216
9217         * mml2015.el (mml2015-epg-find-usable-key): New function.
9218         (mml2015-epg-sign): Use it.
9219         (mml2015-epg-encrypt): Use it.
9220
9221 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9222
9223         * message.el (message-make-in-reply-to): Quote name containing
9224         non-ASCII characters.  It will make the RFC2047 encoder cause an error
9225         if there are special characters.  Reported by NAKAJI Hiroyuki
9226         <nakaji@jp.freebsd.org>.
9227
9228 2007-02-27  Didier Verna  <didier@xemacs.org>
9229
9230         Include the group parameters as well as the topic ones in the
9231         inheritance filter process.
9232         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
9233         argument GROUP-PARAMS-LIST.
9234         * gnus-topic.el (gnus-group-topic-parameters): Use it.
9235
9236 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9237
9238         * nntp.el (nntp-never-echoes-commands)
9239         (nntp-open-connection-functions-never-echo-commands): New variables.
9240         (nntp-send-command): Use them.
9241
9242 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
9243
9244         * mml2015.el (mml2015-epg-verify): Simplify.
9245
9246 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9247
9248         * mml.el (mml-content-disposition-alist): New user option.
9249         (mml-content-disposition): New function.
9250         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
9251         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
9252
9253 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
9254
9255         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
9256         verification.
9257
9258 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9259
9260         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
9261         articles posted in the last 24 hours.
9262
9263 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
9264
9265         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
9266
9267 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
9268
9269         * nntp.el (nntp-send-command): Don't wait for echoes when
9270         nntp-open-ssl-stream is used.
9271
9272 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9273
9274         * gnus-cite.el (gnus-test-font-lock-add-keywords)
9275         (gnus-message-add-citation-keywords)
9276         (gnus-message-remove-citation-keywords): Remove.
9277         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
9278         directly, make the variables in font-lock-defaults buffer-local, add
9279         gnus-message-citation-keywords to them and then update the value of
9280         font-lock-keywords.
9281
9282 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9283
9284         * message.el (message-cite-original-1): Don't call
9285         gnus-article-highlight-citation.
9286
9287         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
9288         citations; fix line count.
9289
9290 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9291
9292         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
9293         (gnus-message-add-citation-keywords)
9294         (gnus-message-remove-citation-keywords): Use it; fix the emulating
9295         versions of font-lock-add-keywords and font-lock-remove-keywords to
9296         work with XEmacs correctly.
9297
9298 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9299
9300         * gnus-cite.el (gnus-cite-face-list): Set the values of
9301         gnus-message-max-citation-depth and gnus-message-citation-keywords.
9302         (gnus-message-max-citation-depth): Use defvar rather than defconst.
9303         (gnus-message-cite-prefix-regexp): New variable.
9304         (gnus-message-search-citation-line): Use it; protect against long
9305         citation prefix; fill match data with nil rather than 0 for XEmacs; set
9306         the 0th match data for Emacs.
9307         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
9308         (gnus-message-add-citation-keywords): Append keywords rather than
9309         prepending; emulate font-lock-add-keywords if it is not available.
9310         (gnus-message-remove-citation-keywords):
9311         Emulate font-lock-remove-keywords if it is not available.
9312
9313         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
9314
9315         * message.el (message-cite-prefix-regexp): Set the value of
9316         gnus-message-cite-prefix-regexp.
9317
9318 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9319
9320         * nnweb.el (nnweb-google-parse-1): Update parser.
9321
9322 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
9323
9324         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
9325
9326 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9327
9328         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
9329         regexp.
9330
9331 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9332
9333         * uudecode.el (uudecode-string-to-multibyte): New function emulating
9334         string-to-multibyte.
9335         (uudecode-decode-region-internal): Use it.
9336
9337         * lpath.el: Fbind string-as-multibyte for XEmacs.
9338
9339 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9340
9341         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
9342         Fix custom choice.
9343
9344         * gnus-art.el (gnus-signature-limit): Fix custom choice.
9345
9346 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
9347
9348         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
9349
9350         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
9351         `write-region' to respect `mm-inhibit-file-name-handlers'.
9352
9353 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
9354
9355         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
9356         Use gnus-home-directory instead of "~/" or "$HOME".
9357
9358 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
9359
9360         * encrypt.el (encrypt-insert-file-contents): Add better prompt
9361         to mention filename.
9362         Add comments at beginning regarding usage.
9363         (encrypt-write-file-contents): Change interactive so a string is
9364         acceptable.  If the file has no associated model, show an error instead
9365         of a nonsense prompt.
9366
9367 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
9368
9369         * spam.el (spam-bsfilter-ham-switch): Fix typo.
9370         Thanks to Yoshihiko Yamada for kind notification of this typo.
9371
9372 2007-01-12  Kenichi Handa  <handa@m17n.org>
9373
9374         * uudecode.el (uudecode-decode-region-internal): Make it work in a
9375         multibyte buffer.
9376
9377 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
9378
9379         * gnus-score.el (gnus-score-fast-scoring): New variable.
9380         (gnus-score-headers): Use it.
9381
9382         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
9383
9384         * message.el (message-cite-original-1):
9385         Call gnus-article-highlight-citation if requested.
9386         (message-make-from): Allow name and address as optional arguments.
9387
9388         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
9389
9390         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
9391         bugs to doc string.
9392         (gnus-button-alist): Add mid\\|message-id.
9393         (gnus-button-fetch-group): Extend for use in
9394         `browse-url-browser-function'.
9395         (gnus-button-url-regexp): Try to catch paired parentheses like in
9396         Wikipedia URLs.
9397
9398         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
9399         Suggested by Simon Krahnke <overlord@gmx.li>.
9400
9401 2007-01-13  Romain Francoise  <romain@orebokech.com>
9402
9403         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
9404         Update copyright.
9405
9406 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
9407
9408         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
9409
9410 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
9411
9412         * gnus-registry.el (gnus-registry-unfollowed-groups)
9413         (gnus-registry-split-fancy-with-parent): Fix documentation.
9414
9415 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9416
9417         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
9418         from nnweb groups.
9419
9420 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9421
9422         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
9423         Xref urls.  Erase buffer before requesting head.
9424
9425         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
9426
9427 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
9428
9429         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
9430         customizable.
9431
9432 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
9433
9434         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
9435         no signing key is found.
9436         (mml2015-epg-encrypt): Ask user whether to skip or abort if
9437         no encrypting and/or signing key is found.
9438
9439 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
9440
9441         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
9442
9443 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9444
9445         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
9446         headers read from disk with the ones newly found in the current search.
9447         This should no longer cause problems, because the article numbers in
9448         Gmane's `nov.php' output are ignored since the previous change.
9449
9450 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9451
9452         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
9453
9454 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9455
9456         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
9457         replace-regexp-in-string; bind url-version; fbind display-images-p and
9458         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
9459         find-face and set-itimer-function for Emacs; bind itimer-list for
9460         Emacs.
9461
9462         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
9463
9464 2007-01-01  Romain Francoise  <romain@orebokech.com>
9465
9466         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
9467
9468 2006-12-31  Steve Youngs  <steve@sxemacs.org>
9469
9470         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
9471         `define-minor-mode' macro definition expanded properly.
9472         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
9473         exclude it there.
9474
9475         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
9476         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
9477         `fboundp' test.
9478         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
9479         This is OK to autoload in (S)XEmacs now.
9480
9481 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9482
9483         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
9484         keystroke.
9485         (gnus-summary-limit-to-singletons): Fix typo.
9486
9487         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
9488         else fails.
9489
9490 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9491
9492         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
9493         docstring.
9494
9495         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
9496         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
9497         (gnus-summary-insert-dormant-articles): Fix typo in message.
9498
9499 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
9500
9501         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
9502         nil for XEmacs.
9503         (gnus-message-citation-mode): Don't autoload in XEmacs.
9504
9505         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
9506
9507 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
9508
9509         * nnimap.el (nnimap-expunge-search-string):
9510         Mention nnimap-search-uids-not-since-is-evil in docstring.
9511
9512 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
9513
9514         * spam.el: Revert to make-obsolete-variable because
9515         define-obsolete-variable-alias is not supported in Emacs 21.
9516
9517         * spam.el (spam-ifile-path, spam-ifile-database-path)
9518         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
9519         make-obsolete-variable.
9520         (spam-bsfilter-path, spam-bsfilter-program)
9521         (spam-spamassassin-path, spam-spamassassin-program)
9522         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
9523         Don't use "path" inappropriately.
9524         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
9525         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
9526         variable names.
9527
9528 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
9529
9530         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
9531         summary buffer.
9532
9533         * password.el (password-cache-remove): Use clear-string to burn
9534         password, if available.
9535
9536 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
9537
9538         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
9539
9540         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
9541
9542         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
9543         (gnus-message-highlight-citation): Move defcustom here from
9544         gnus-cite.el.
9545         (gnus-message-citation-mode): Autoload.
9546
9547         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
9548         checks to make it compile with XEmacs.
9549         (gnus-message-citation-mode): New minor mode.
9550         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
9551         (gnus-message-highlight-citation): New variables.
9552         (gnus-message-search-citation-line)
9553         (gnus-message-add-citation-keywords)
9554         (gnus-message-remove-citation-keywords)
9555         (turn-on-gnus-message-citation-mode)
9556         (turn-off-gnus-message-citation-mode): New functions.
9557
9558 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
9559
9560         * gnus-cite.el: Enable highlighting of different citation levels in
9561         message-mode.
9562
9563 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
9564
9565         * message.el (message-make-fqdn): Fix comment.
9566         (message-bogus-system-names): Add ".local".
9567
9568         * spam.el (spam-ifile-path, spam-ifile-program)
9569         (spam-ifile-database-path, spam-ifile-database)
9570         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
9571         Don't use "path" inappropriately.
9572         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
9573         strings.
9574         (spam-check-ifile, spam-ifile-register-with-ifile)
9575         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
9576         Use new variable names.
9577
9578         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
9579         (gnus-treat-display-smileys): Simplify using
9580         gnus-image-type-available-p.
9581
9582         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
9583         available.
9584
9585         * gnus-xmas.el (gnus-xmas-image-type-available-p):
9586         Use `display-images-p' if available.
9587
9588 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9589
9590         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
9591         one after turning on the buffer's multibyteness instead of decoding
9592         them directly in the unibyte buffer that causes unexpected conversion
9593         in Emacs 23 (unicode).
9594
9595 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9596
9597         * message.el (message-generate-hashcash): Fix custom type.
9598
9599 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
9600
9601         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
9602
9603 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
9604
9605         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
9606         disconnect icons.  Add help text.
9607
9608 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
9609
9610         * spam.el (spam-extra-header-to-number): CRM114 spam score is
9611         negated to be consistent with the others we handle.
9612
9613 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9614
9615         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
9616         version of gnus-summary-buffer to something, so that we can use two
9617         article buffers at the same time.
9618
9619 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
9620
9621         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
9622         trigger all the extra headers.
9623         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
9624         sorting.
9625
9626 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9627
9628         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
9629         solid groups.
9630
9631 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
9632
9633         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
9634
9635 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
9636
9637         * legacy-gnus-agent.el: Add Copyright notice.
9638
9639 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
9640
9641         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
9642
9643 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9644
9645         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
9646
9647         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
9648         to make it work reliably in CVS Emacs.
9649         (gnus-summary-limit-strange-charsets-predicate)
9650         (gnus-summary-limit-to-predicate): New functions.
9651
9652 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
9653
9654         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
9655         specifying array size.
9656         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
9657         array if it is too small.
9658         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
9659         (gnus-sort-threads-loop): New function.
9660
9661 2006-12-06  Chris Moore  <dooglus@gmail.com>
9662
9663         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
9664         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
9665
9666 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
9667
9668         * mm-url.el (mm-url-predefined-programs): Call curl with correct
9669         options.
9670
9671 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9672
9673         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
9674         DOS-ing the recipient.
9675
9676         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
9677         the headers when creating the mapping to avoid mismappings.
9678         (nnweb-gmane-create-mapping): Always nix out old mapping.
9679
9680 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9681
9682         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
9683         and mm-verify-option to never.
9684
9685 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9686
9687         * message.el (message-signed-or-encrypted-p): New function.
9688         (message-forward-make-body): Use it.
9689
9690         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
9691         Replace encode-coding-string with mm-encode-coding-string.
9692
9693 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9694
9695         * nneething.el (nneething-decode-file-name):
9696         Replace decode-coding-string with mm-decode-coding-string.
9697
9698         * gnus-int.el (gnus-open-server): Say failed server's name.
9699
9700 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9701
9702         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
9703         strings to a single string.  Quote `errors-file-name'.
9704         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
9705         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
9706         Adjust calls.  Use `shell-quote-argument'.
9707
9708 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
9709
9710         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
9711         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
9712
9713         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
9714         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
9715         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
9716         (gnus-group-make-directory-group, gnus-group-transpose-groups):
9717         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
9718         (gnus-subscribe-newsgroup, gnus-1):
9719         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
9720         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
9721         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
9722         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
9723
9724 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9725
9726         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
9727         keystroke.
9728         (gnus-summary-limit-to-bodies): Implement headersp.
9729
9730 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9731
9732         * dns.el (query-dns): Protect against "Process dns deleted" strings.
9733
9734 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9735
9736         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
9737
9738 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9739
9740         * message.el (message-generate-hashcash): Expand range of values to
9741         include `opportunistic'.
9742         (message-send-mail): Use it.
9743
9744 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9745
9746         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
9747         and comment it.
9748
9749         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
9750
9751 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
9752
9753         * gnus-util.el (gnus-extract-address-components): Improve comment.
9754
9755 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9756
9757         * gnus-util.el (gnus-extract-address-components): Work with address in
9758         which the name portion contains @.
9759
9760         * lpath.el: Fbind custom-autoload.
9761
9762 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
9763
9764         * gnus.el (gnus-start): Move custom group up.
9765         (gnus-select-method): Don't autoload, but make it available for
9766         `customize-variable'.
9767         (gnus-getenv-nntpserver): Don't autoload.
9768
9769 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
9770
9771         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
9772
9773 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
9774
9775         * message.el (message-sendmail-extra-arguments): New variable.
9776         (message-send-mail-with-sendmail): Use it.
9777
9778 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9779
9780         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
9781         mm-with-unibyte-current-buffer to make string unibyte.
9782
9783         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
9784         mm-string-as-multibyte.
9785
9786 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
9787
9788         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
9789         Reported by Werner Koch <wk@gnupg.org>.
9790
9791 2006-11-14  Daiki Ueno  <ueno@p360>
9792
9793         * mml2015.el: Autoload epa-select-keys when compiling.
9794
9795 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
9796
9797         * mml2015.el (mml2015-epg-sign): Save the signing keys in
9798         message-options.
9799         (mml2015-epg-encrypt): Save the recipient keys in message-options.
9800
9801 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
9802
9803         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
9804         EasyPG (< 0.0.6).
9805         (mml2015-always-trust): New user option.
9806         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
9807         prompt.
9808
9809 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9810
9811         * nntp.el (nntp-authinfo-force): New variable.
9812         (nntp-send-authinfo): Use it.
9813
9814 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
9815
9816         * message.el (message-strip-subject-encoded-words): Allow _not_ to
9817         decode encoded words.  Improve prompt.  Add comment about forwarding.
9818         (message-replacement-char): Move up.
9819
9820 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
9821
9822         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
9823         instead of gnus-intersection because arguments of gnus-sorted-nunion
9824         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
9825
9826 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
9827
9828         * message.el (message-strip-subject-encoded-words): Reformat prompt.
9829         (message-simplify-subject-functions):
9830         Enable message-strip-subject-encoded-words by default.
9831
9832 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
9833
9834         * message.el (message-strip-subject-encoded-words): New function.
9835         (message-simplify-subject-functions): New variable.
9836         (message-simplify-subject): Use it.  Fix typo in doc string.
9837         Support message-strip-subject-encoded-words.
9838
9839 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
9840
9841         * gnus-diary.el (gnus-diary-delay-format-function):
9842         * nndiary.el (nndiary-reminders):
9843         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
9844
9845 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
9846
9847         * gnus-art.el (article-hide-boring-headers): Fetch date from
9848         gnus-original-article-buffer to avoid problems with localized date
9849         strings.
9850
9851 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9852
9853         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
9854
9855 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
9856
9857         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
9858         New variables.
9859         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
9860         (mm-charset-synonym-alist): Move some entries to
9861         mm-codepage-iso-8859-list.
9862         (mm-charset-synonym-alist, mm-charset-override-alist):
9863         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
9864
9865 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9866
9867         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
9868
9869 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9870
9871         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
9872         with Emacs 21 and XEmacs.
9873
9874 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
9875
9876         * spam.el (spam-parse-address): New function for better parsing,
9877         catching errors, etc.
9878         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
9879
9880 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9881
9882         * mm-view.el: Add interactive arg to html2text autoload.
9883
9884 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9885
9886         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
9887
9888 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
9889
9890         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
9891         New variables.
9892         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
9893         (mm-charset-synonym-alist): Move some entries to
9894         mm-codepage-iso-8859-list.
9895
9896         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
9897
9898 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
9899
9900         * message.el (message-citation-line-format)
9901         (message-insert-formated-citation-line): Fix implementation of %E, %N
9902         and %n according to the doc string.
9903
9904 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
9905
9906         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
9907         Use car-safe to avoid bad parses.
9908
9909 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9910
9911         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
9912         names.
9913
9914         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
9915
9916 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9917
9918         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
9919         header.
9920
9921         * message.el (message-draft-headers): Add Date.
9922         (message-headers-to-generate): Fix typo in docstring.
9923
9924         * nndraft.el (nndraft-required-headers): New variable.
9925         (nndraft-generate-headers): Use it.
9926
9927         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
9928
9929 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
9930
9931         * gnus-registry.el (gnus-registry-wash-for-keywords)
9932         (gnus-registry-find-keywords): New functions to allow easy searching of
9933         articles that are in the registry.
9934
9935 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
9936
9937         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
9938         Use ietf-drums-parse-address instead of gnus-extract-address-components.
9939         Reported by Damien Elmes <damien@repose.cx>.
9940
9941 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9942
9943         * gnus.el (gnus-mime): Remove unused custom group.
9944
9945 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9946
9947         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
9948         "blank line" when searching for end of armor headers.
9949
9950 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9951
9952         * gmm-utils.el (gmm-write-region): Fix variable name.
9953
9954 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
9955
9956         * gmm-utils.el (gmm-write-region): New function based on compatibility
9957         code from `mm-make-temp-file'.
9958
9959         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
9960
9961         * nnmaildir.el (nnmaildir--update-nov)
9962         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
9963         Use `gmm-write-region'.
9964
9965 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9966
9967         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
9968         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
9969
9970         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
9971
9972         * message.el (message-replacement-char): New variable.
9973         (message-fix-before-sending): Use it.
9974         (message-simplify-subject): New function to remove duplicate code.
9975         (message-reply, message-followup): Use it.
9976
9977         * gnus-sum.el (gnus-summary-make-menu-bar):
9978         Clarify gnus-summary-limit-to-articles.
9979
9980 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9981
9982         * gnus-util.el (gnus-with-local-quit): New macro.
9983
9984         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
9985
9986 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
9987
9988         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
9989         ignore non-string data.
9990
9991 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
9992
9993         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
9994         non-string data (needs to be done in the registry too).
9995
9996 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
9997
9998         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
9999         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
10000         (gnus-registry-split-fancy-with-parent)
10001         (gnus-registry-fetch-simplified-message-subject-fast)
10002         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
10003         Remove text properties on ingress into the registry and when it's saved.
10004         (gnus-registry-clean-empty-function): Fix bug with cleaning the
10005         registry from entries with no groups.
10006
10007 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
10008
10009         * gnus-util.el (gnus-string-remove-all-properties): Add utility
10010         function to remove string properties.
10011
10012 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10013
10014         * gmm-utils.el (gmm): Adjust custom version.
10015
10016         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
10017         Adjust custom version.
10018
10019         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
10020
10021 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10022
10023         * gnus-art.el (gnus-insert-prev-page-button)
10024         (gnus-insert-next-page-button): Simplify.  Reformat.
10025
10026 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
10027
10028         * gnus-art.el (gnus-insert-prev-page-button)
10029         (gnus-insert-next-page-button): Apply gnus-article-button-face.
10030
10031 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
10032
10033         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
10034
10035 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
10036
10037         * gnus-art.el (gnus-insert-mime-button)
10038         (gnus-insert-mime-security-button):
10039         Apply gnus-article-button-face to MIME and security buttons.
10040
10041 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
10042
10043         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
10044         readable.
10045
10046 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10047
10048         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
10049
10050 2006-09-20  Steve Youngs  <steve@sxemacs.org>
10051
10052         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
10053         `browse-url-of-file' instead of `browse-url'.
10054
10055 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10056
10057         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
10058         regexp.  Articles containing quotation were cut prematurely.
10059
10060 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10061
10062         * message.el (message-cite-original-1): Use nobody by default for the
10063         value of From header.
10064         (message-reply): Ditto.
10065
10066 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
10067
10068         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
10069         to the gnus-info.  This fixes a bug of inline-PGP message verification.
10070         Reported by Michael Piotrowski <mxp@dynalabs.de>.
10071
10072 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
10073
10074         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
10075         mails in the doc string.  Add some URLs in comment.
10076         (pop3-movemail): Warn about pop3-leave-mail-on-server.
10077
10078 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10079
10080         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
10081         backslashes handling and the way to find boundaries of quoted strings.
10082
10083 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
10084
10085         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
10086         mml1991-encrypt-to-self is set and mml1991-signers is not set.
10087         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
10088         mml2015-encrypt-to-self is set and mml2015-signers is not set.
10089
10090 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10091
10092         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
10093         doc string.
10094         (gnus-button-regexp, gnus-button-last): Remove unused variables.
10095
10096 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10097
10098         * lpath.el: Fbind epg-check-configuration.
10099
10100 2006-09-06  Simon Josefsson  <jas@extundo.com>
10101
10102         * mml2015.el (mml2015-use): Doc fix, mention epg.
10103
10104 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
10105
10106         * mml2015.el (mml2015-use): Default to epg, if available.
10107
10108 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
10109
10110         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
10111         message-sender.
10112         (mml1991-epg-encrypt): Ditto.
10113         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
10114         message-sender.
10115         (mml2015-epg-encrypt): Ditto.
10116
10117 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
10118
10119         * message.el (message-send-mail-with-sendmail): Look for sendmail in
10120         several common directories.
10121
10122 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
10123
10124         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
10125         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
10126
10127 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10128
10129         * gnus-art.el (article-decode-encoded-words): Make it fast.
10130
10131 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10132
10133         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
10134
10135         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
10136         in quoted string into `\'.
10137
10138 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10139
10140         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10141         Use standard-syntax-table.
10142
10143 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10144
10145         * gnus-art.el (gnus-decode-address-function): New variable.
10146         (article-decode-encoded-words): Use it to decode headers which are
10147         assumed to contain addresses.
10148         (gnus-mime-delete-part): Remove useless `or'.
10149
10150         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
10151         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
10152         (gnus-nov-parse-line): Use it to decode From header.
10153         (gnus-get-newsgroup-headers): Ditto.
10154         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
10155
10156         * mail-parse.el (mail-decode-encoded-address-region): New alias.
10157         (mail-decode-encoded-address-string): New alias.
10158
10159         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10160         New function.
10161         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
10162         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
10163         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
10164         (rfc2047-decode-string): Ditto.
10165         (rfc2047-decode-address-region): New function.
10166         (rfc2047-decode-address-string): New function.
10167
10168 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
10169
10170         * message.el (message-caesar-buffer-body): Allow rotating headers.
10171
10172         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
10173
10174         * message.el (message-insert-formated-citation-line): Fix %f.
10175         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
10176
10177 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10178
10179         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
10180         (gnus-bookmark-mouse-available-p): New macro.
10181         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
10182         (gnus-bookmark-bmenu-show-infos): Use it.
10183         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
10184         (gnus-bookmark-bmenu-hide-infos): Ditto.
10185         (gnus-bookmark-remove-properties): New function.
10186         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
10187         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
10188         (gnus-bookmark-write-file): Bind coding-system-for-write.
10189         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
10190         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
10191         group before selecting it.
10192         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
10193         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
10194         quit-window if it is not available; use gnus-mouse-2 and bind it to
10195         gnus-bookmark-bmenu-select-by-mouse.
10196         (gnus-bookmark-show-details): Remove unused variable `details-list'.
10197         (gnus-bookmark-bmenu-select-by-mouse): New function.
10198
10199 2006-08-13  Romain Francoise  <romain@orebokech.com>
10200
10201         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
10202         space.
10203
10204 2006-08-10  Romain Francoise  <romain@orebokech.com>
10205
10206         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
10207         (dns-mode-soa-auto-increment-serial): New user option.
10208         (dns-mode-soa-maybe-increment-serial): New function.
10209         (dns-mode): Add the latter to `write-contents-functions'.
10210
10211 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10212
10213         * compface.el (uncompface): Use binary rather than raw-text-unix.
10214
10215 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10216
10217         * compface.el (uncompface): Make sure the eol conversion doesn't take
10218         place when communicating with the external programs.
10219         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
10220
10221 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10222
10223         * nnheader.el (nnheader-insert-head): Fix typo in comment.
10224
10225 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10226
10227         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
10228         Make it more robust by parsing author and date independently.
10229
10230 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10231
10232         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
10233
10234 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
10235
10236         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
10237         first matching secret key.
10238         (mml2015-epg-encrypt): Ditto.
10239
10240         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
10241         first matching secret key.
10242         (mml1991-epg-encrypt): Ditto.
10243
10244         * mml2015.el (mml2015-encrypt-to-self): New user option.
10245         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
10246         mml2015-epg-encrypt-to-self is set.
10247
10248         * mml1991.el (mml1991-encrypt-to-self): New variable.
10249         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
10250         mml1991-epg-encrypt-to-self is set.
10251
10252         * mml2015.el (mml2015-signers): New user option.
10253         (mml2015-epg-sign): Reflect the value of mml2015-signers.
10254         (mml2015-epg-encrypt): Allow to select signing keys.
10255
10256         * mml1991.el (mml1991-signers): New variable.
10257         (mml1991-epg-sign): Reflect the value of mml1991-signers.
10258         (mml1991-epg-encrypt): Allow to select signing keys.
10259
10260 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10261
10262         * nnheader.el (nnheader-insert-head): Make it work even if the file
10263         uses CRLF for the line-break code.
10264
10265 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
10266
10267         * mml2015.el: Require mml-sec instead of password.
10268         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
10269         (mml2015-cache-passphrase): Inherit the default value from
10270         mml-secure-cache-passphrase.
10271         (mml2015-passphrase-cache-expiry): Inherit the default value from
10272         mml-secure-passphrase-cache-expiry.
10273
10274         * mml1991.el: Require mml-sec instead of password.
10275         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
10276         (mml1991-cache-passphrase): Inherit the default value from
10277         mml-secure-cache-passphrase.
10278         (mml1991-passphrase-cache-expiry): Inherit the default value from
10279         mml-secure-passphrase-cache-expiry.
10280
10281         * mml-sec.el: Require password.
10282         (mml-secure-verbose): New user option.
10283         (mml-secure-cache-passphrase): New user option.
10284         (mml-secure-passphrase-cache-expiry): New user option.
10285
10286 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
10287
10288         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
10289         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
10290         andreas@altroot.de (Andreas Vögele).
10291
10292         FIXME: Use `tiny change'?
10293
10294 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10295
10296         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
10297         workaround for the url package included with Emacs.
10298
10299         * nnweb.el (nnweb-google-create-mapping): Update regexp.
10300
10301 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10302
10303         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
10304         correctly.  This fixes a bug caused by the 2006-05-12 change.
10305
10306 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
10307
10308         * nnmail.el (nnmail-article-group): If splitting raises an error, give
10309         some information about the error when saying that the `bogus' mail
10310         group will be used.
10311
10312 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
10313
10314         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
10315         string.
10316
10317 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
10318
10319         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
10320
10321 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10322
10323         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
10324
10325 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
10326
10327         * mml1991.el (mml1991-function-alist): Add epg.
10328         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
10329         (mml1991-epg-encrypt): New functions.
10330
10331 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
10332
10333         * mml2015.el (mml2015-verbose): New variable.
10334         (mml2015-cache-passphrase): Ditto.
10335         (mml2015-passphrase-cache-expiry): Ditto.
10336         (mml2015-function-alist): Add epg.
10337         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
10338         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
10339         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
10340         New functions.
10341
10342 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10343
10344         * message.el (message-cite-original-1): Preserve region when removing
10345         quoted text due to X-No-Archive in order to avoid bogus attribution
10346         when citing multiple messages.
10347
10348 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10349
10350         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
10351         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
10352
10353 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
10354
10355         * gnus-diary.el (gnus-user-format-function-d)
10356         (gnus-user-format-function-D): Autoload.
10357
10358         * imap.el (Commentary): Fix typo.
10359
10360         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
10361         2006-04-22 contribution.
10362
10363 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10364
10365         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
10366         It didn't really fix the bogosity I'm seeing with solid web groups.
10367
10368 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10369
10370         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
10371         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
10372         created using server names.  If we use the feature without declaring
10373         it, Gnus does not properly manage server and group state.
10374
10375         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
10376         bound.
10377
10378 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10379
10380         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
10381         looking up the method using GROUP's prefix before inventing a new one.
10382         It is used on killed/unknown groups in various places where returning
10383         an all-new method isn't expected by the caller.
10384
10385         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
10386         and match semantics of gnus-group-real-prefix.
10387
10388 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
10389
10390         * nnmail.el (nnmail-broken-references-mailers): New variable.
10391         (nnmail-ignore-broken-references): New function generalizing
10392         nnmail-fix-eudora-headers.
10393         (nnmail-fix-eudora-headers): Now obsolete.
10394
10395         * gnus-art.el (gnus-button-handle-custom):
10396         Support `customize-apropos*'.
10397
10398 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10399
10400         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
10401
10402         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
10403         articles.
10404
10405 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
10406
10407         * message.el (message-cite-reply-above): New variable.
10408         (message-yank-original): Use it.
10409
10410 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10411
10412         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
10413
10414 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
10415
10416         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
10417         as read.
10418
10419         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
10420
10421 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
10422
10423         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
10424         (gnus-bookmark-default-file): Use gnus-directory.
10425         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
10426         Remove "*" in doc string.
10427         (gnus-bookmark-write-file): Simplify.
10428         (gnus-bookmark-maybe-sort-alist): Use `when'.
10429         (gnus-bookmark-get-bookmark): Fix typo in doc string.
10430         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
10431         Add FIXME about Emacs 21 and XEmacs compatibility.
10432         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
10433         compatibility.
10434         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
10435         compatibility.
10436         (gnus-bookmark-menu-heading): Fix version.
10437
10438 2006-06-19  Bastien Guerry  <bzg@altern.org>
10439
10440         * gnus-bookmark.el: New file.
10441
10442 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10443
10444         * message.el (message-syntax-checks): Doc fix.
10445
10446 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10447
10448         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
10449         unsubscribed groups as if they were killed ones.  It causes duplicate
10450         entries in gnus-newsrc-alist.
10451
10452 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10453
10454         * message.el (message-syntax-checks): Doc fix.
10455         (message-send-mail): Add check for continuation headers.
10456         (message-check-news-header-syntax): Fix regexp used to check for
10457         continuation headers.
10458
10459 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10460
10461         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
10462
10463 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
10464
10465         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
10466
10467 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10468
10469         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
10470         default-truncate-lines.
10471
10472 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10473
10474         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
10475         to fill the utf-8 entry.
10476
10477         * lpath.el: Fbind unicode-precedence-list.
10478
10479 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10480
10481         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
10482
10483 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
10484
10485         * gnus-agent.el (directory-files-and-attributes): Move all the way
10486         forward (the third and final move).
10487         (gnus-agent-read-agentview): Trap reconstruction errors due to
10488         nonexistent directory.  Handle by returning nil.
10489
10490 2006-05-30  Didier Verna  <didier@xemacs.org>
10491
10492         * message.el (message-dont-reply-to-names): Update the custom type.
10493         * message.el (message-dont-reply-to-names): New defsubst: potentially
10494         convert a list of regexps into a single one.
10495         * message.el (message-get-reply-headers): Use it.
10496         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
10497
10498 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10499
10500         * gnus-agent.el (directory-files-and-attributes): Move forward.
10501
10502 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
10503
10504         * gnus-ml.el (gnus-mailing-list-subscribe)
10505         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
10506         (gnus-mailing-list-message): Fix doc strings.
10507
10508 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10509
10510         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
10511         of doing it manually.
10512
10513 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
10514
10515         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
10516         comment.
10517
10518 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
10519
10520         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
10521         (gnus-agent-read-agentview): Fix handling of end-of-file error.
10522         (gnus-agent-read-local): All symbols allocated in my-obarray.
10523         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
10524         (gnus-agent-regenerate-group): Check numeric names to see if they are
10525         messages or groups.
10526         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
10527         better way of do this...)
10528
10529         * gnus-cache.el (gnus-agent-total-fetched-for):
10530         Ignore 'dummy.group' (there should be a better way of do this...)
10531
10532 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10533
10534         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
10535         (gnus-saved-headers): Ditto.
10536         (gnus-default-article-saver): Mention functions may have properties.
10537         (gnus-article-save): Override gnus-save-all-headers and
10538         gnus-saved-headers by :headers property which saver function may have.
10539         (gnus-summary-save-in-file): Add :headers property.
10540         (gnus-summary-write-to-file): Ditto.
10541
10542         * gnus-sum.el (gnus-summary-save-article): Bind
10543         gnus-prompt-before-saving to t when saving many articles in a file;
10544         always show all headers.
10545
10546         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
10547
10548 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
10549
10550         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
10551         marks.
10552
10553         * message.el (message-indent-citation): Add optional arguments to allow
10554         using it outside of message buffers.
10555
10556         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
10557         (gnus-article-treat-unfold-headers): Use it.
10558         (gnus-article-truncate-lines): New variable.
10559         (gnus-article-mode): Use it.
10560         (gnus-article-toggle-truncate-lines): New function.
10561
10562         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
10563         Add gnus-article-toggle-truncate-lines.
10564
10565         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
10566         coding system in XEmacs, use binary.
10567
10568 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10569
10570         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
10571         after-load-alist.
10572
10573         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
10574         this function should save decoded articles.
10575         (gnus-summary-write-to-file): Use property to specify this function
10576         should save decoded articles and specify gnus-summary-save-in-file
10577         should be used to save articles other than the first one when saving
10578         many articles.
10579         (gnus-summary-save-body-in-file): Use property to specify this
10580         function should save decoded articles.
10581         (gnus-summary-write-body-to-file): Use property to specify this
10582         function should save decoded articles and specify
10583         gnus-summary-save-body-in-file should be used to save articles other
10584         than the first one when saving many articles.
10585
10586         * gnus-sum.el (gnus-summary-save-article): Simplify.
10587
10588 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10589
10590         * gnus-art.el (gnus-default-article-saver):
10591         Add gnus-summary-write-body-to-file.
10592         (gnus-article-save-coding-system): Don't use coding system object
10593         in XEmacs.
10594         (gnus-read-save-file-name): Add optional `dir-var' argument which
10595         specifies directory in which files are saved; work even if optional
10596         `variable' argument is not specified.
10597         (gnus-summary-write-to-file): Read file name.
10598         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
10599         (gnus-summary-write-body-to-file): New function.
10600
10601         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
10602         (gnus-summary-local-variables): Add it.
10603         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
10604         (gnus-summary-save-article): Remove optional `decode' argument;
10605         determine whether to decode articles by the value of
10606         gnus-default-article-saver; when saving many files using
10607         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
10608         it first and use gnus-summary-save-in-file or
10609         gnus-summary-save-body-in-file thereafter unless
10610         gnus-prompt-before-saving is always; move point to article which
10611         will be saved.
10612         (gnus-summary-save-article-file): Revert.
10613         (gnus-summary-write-article-file): Revert.
10614         (gnus-summary-save-article-body-file): Revert.
10615         (gnus-summary-write-article-body-file): New function.
10616
10617 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10618
10619         * gnus-art.el (gnus-default-article-saver): Doc fix.
10620         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
10621         from gnus-summary-save-article-coding-system, and default to a
10622         certain coding system.
10623         (gnus-output-to-file): Add coding cookie and encode text according
10624         to gnus-article-save-coding-system; don't use mm-append-to-file.
10625
10626         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
10627         gnus-art.el and rename to gnus-article-save-coding-system.
10628         (gnus-summary-save-article): Require gnus-art; don't show all
10629         headers if it decodes articles; don't add coding cookie here;
10630         don't bind mm-text-coding-system-for-write.
10631         (gnus-summary-save-article-file): Save decoded articles.
10632         (gnus-summary-write-article-file): When saving many files, use
10633         gnus-summary-write-to-file first and gnus-summary-save-in-file
10634         thereafter unless gnus-prompt-before-saving is always.
10635         (gnus-summary-save-article-body-file): Save decoded articles.
10636
10637         * lpath.el: Fbind select-safe-coding-system for XEmacs.
10638
10639 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10640
10641         * nnrss.el (nnrss-check-group): Bind hash-index.
10642
10643 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
10644
10645         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
10646         its hash index.  Store this hash in `nnrss-group-data'.
10647         (nnrss-read-group-data): Update accordingly.
10648
10649 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10650
10651         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
10652         entry.
10653
10654         * gnus-sum.el (gnus-summary-make-menu-bar):
10655         Add gnus-article-browse-html-article.
10656
10657 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
10658
10659         * gnus-sum.el (gnus-summary-mime-map):
10660         Add gnus-article-browse-html-article.
10661
10662         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
10663
10664 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10665
10666         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
10667         suitable coding systems in customize.
10668
10669 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
10670
10671         * mail-source.el (mail-sources): Fix custom type.
10672
10673 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
10674
10675         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
10676         (gnus-summary-expire-articles-now): Shorten prompt.
10677
10678         * gmm-utils.el (wid-edit): Require.
10679         (defun-gmm): Rename from `gmm-defun-compat'.
10680         (gmm-image-search-load-path): Use it.
10681         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
10682
10683 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10684
10685         * gnus-sum.el (gnus-summary-save-article-coding-system):
10686         New variable.
10687         (gnus-summary-save-article): Add optional `decode' argument.
10688         If it is set and gnus-summary-save-article-coding-system is non-nil,
10689         save decoded article.
10690         (gnus-summary-write-article-file): Save decoded article if
10691         gnus-summary-save-article-coding-system is non-nil.
10692
10693         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
10694         type.
10695
10696 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10697
10698         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
10699
10700 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10701
10702         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
10703         first to test gnus-single-article-buffer which may be buffer-local.
10704
10705         * gnus-sum.el (gnus-summary-setup-buffer):
10706         Make gnus-single-article-buffer buffer-local and nil in ephemeral
10707         group; make gnus-article-buffer, gnus-article-current, and
10708         gnus-original-article-buffer always buffer-local.
10709         (gnus-summary-exit): Kill article buffer belonging to ephemeral
10710         group.
10711         (gnus-handle-ephemeral-exit): Don't move to next summary line.
10712
10713 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
10714
10715         * nnml.el (nnml-request-compact-group): Compressed files might not
10716         have .gz extension.
10717
10718 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10719
10720         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
10721         (mm-copy-to-buffer): Use with-current-buffer.
10722         (mm-display-part): Simplify.
10723         (mm-inlinable-p): Add optional arg `type'.
10724
10725 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10726
10727         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
10728         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
10729         Try harder to show the attachment internally or externally using
10730         gnus-mime-view-part-as-type.
10731
10732 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
10733
10734         * message.el (message-from-style, message-signature-separator)
10735         (message-user-organization-file, message-send-mail-function)
10736         (message-citation-line-function, message-yank-prefix)
10737         (message-indent-citation-function, message-signature)
10738         (message-signature-file, message-signature-insert-empty-line):
10739         Remove autoloads.
10740
10741         * gnus-art.el (gnus-buttonized-mime-types):
10742         Remove "multipart/signed".  Revert 2006-04-26 change.
10743
10744 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10745
10746         * gnus.el (gnus-version-number): Bump version.
10747
10748 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10749
10750         * gnus.el: No Gnus v0.5 is released.
10751
10752 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10753
10754         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
10755         fetching articles by message-id.
10756
10757 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10758
10759         * message.el (hashcash): Require hashcash as normal.
10760
10761         * ecomplete.el (ecomplete-highlight-match-line):
10762         Use point-at-eol.
10763         (ecomplete-highlight-match-line): Use `highlight', because that
10764         face exists in both Emacs and XEmacs.
10765
10766         * message.el (message-display-abbrev): Use point-at-bol.
10767
10768         * mail-source.el: Don't require timer/timer-funcs.
10769
10770         * gnus-async.el: Ditto.
10771
10772         * password.el: Ditto.
10773
10774         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
10775
10776         * mm-url.el: Ditto.
10777
10778         * gnus-xmas.el: Don't require timer-funcs.
10779
10780         * mm-util.el: Require timer/timer-funcs.
10781
10782 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10783
10784         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
10785         Close.
10786
10787 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10788
10789         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
10790         unibyte after clear-decrypt function runs.
10791
10792         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
10793         returns as a unibyte string.
10794
10795 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10796
10797         * lpath.el: Revert.
10798
10799         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
10800         (pgg-gpg-process-sentinel): Revert.
10801
10802         * pgg-pgp.el (pgg-pgp-process-region): Revert.
10803         (pgg-pgp-lookup-key): Revert.
10804
10805         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
10806         (pgg-pgp5-lookup-key): Revert.
10807
10808         * pgg.el (pgg-fetch-key): Revert.
10809
10810 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10811
10812         * lpath.el: Fbind string-as-multibyte for XEmacs.
10813
10814         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
10815         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
10816         (mml1991-pgg-encrypt): Ditto.
10817
10818         * pgg-gpg.el (pgg-string-to-multibyte): New function.
10819         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
10820         a multibyte buffer.
10821
10822         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
10823         (pgg-pgp-lookup-key): Ditto.
10824
10825         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
10826         (pgg-pgp5-lookup-key): Ditto.
10827
10828         * pgg.el (pgg-fetch-key): Ditto.
10829
10830 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
10831
10832         * message.el (message-user-organization-file): Check several
10833         locations of the organization file.
10834
10835         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
10836         Add gnus-article-view-part-as-type.
10837
10838         * gnus-art.el (gnus-article-view-part-as-type): New function.
10839
10840         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
10841         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
10842
10843         * mml.el: Simplify autoload.
10844         (mml-mode): defvar dnd-protocol-alist instead of using
10845         symbol-value.
10846         (mml-default-directory): New variable.
10847         (mml-minibuffer-read-file): Use it.
10848         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
10849
10850         * message.el (message-citation-line-format): New variable.
10851         (message-insert-formated-citation-line): New function.
10852         (message-citation-line-function):
10853         Add `message-insert-formated-citation-line' to custom type.
10854
10855         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
10856         to doc string.
10857
10858         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
10859         depending on mm-verify-option.
10860
10861 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10862
10863         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
10864         binding pgg-* variables; reimplement the section which prevents
10865         MIME header from being signed.
10866         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
10867         pgg-text-mode; remove a blank line at the top of body.
10868
10869         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
10870         lines at the top of body; use gnus-newsgroup-charset if there's no
10871         Charset header.
10872
10873 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10874
10875         * message.el (message-self-insert-commands): Doc fix.
10876
10877         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
10878         (mm-uu-pgp-encrypted-test): Ditto.
10879         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
10880         between header and body; return application/pgp-encrypted handle
10881         if decryption failed; decode decrypted body by charset.
10882
10883         * mm-decode.el (mm-automatic-display): Don't make application/pgp
10884         element match to application/pgp-*.
10885
10886 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10887
10888         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
10889         HTML.
10890
10891 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10892
10893         * mail-source.el (mail-source-call-script): Message the error
10894         string.
10895
10896 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10897
10898         * gnus-util.el (gnus-byte-compile): Use it.
10899
10900 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
10901
10902         * gnus-util.el (kill-empty-logs): New function.
10903
10904 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10905
10906         * message.el (message-mail-alias-type): Doc fix.
10907         (message-mail-alias-type-p): New function.
10908         (message-send): Use it.
10909         (message-mode): Ditto.
10910         (message-strip-forbidden-properties): Ditto.
10911
10912         * ecomplete.el (ecomplete-database-file-coding-system):
10913         New variable.
10914         (ecomplete-save): Use it.
10915         (ecomplete-setup): Use it.
10916
10917 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10918
10919         * message.el (message-self-insert-commands): New variable.
10920         (message-strip-forbidden-properties): Use it.
10921
10922 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10923
10924         * message.el (message-put-addresses-in-ecomplete): Use a regexp
10925         that doesn't make XEmacs choke.
10926
10927 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
10928
10929         * gnus-util.el (gnus-replace-in-string):
10930         Prefer replace-regexp-in-string over of replace-in-string.
10931
10932 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10933
10934         * gnus-util.el (gnus-select-frame-set-input-focus):
10935         Use select-frame-set-input-focus if it is available in XEmacs; use
10936         definition defined in Emacs 22 for old Emacsen.
10937
10938         * dgnushack.el: Autoload unmorse-region for XEmacs.
10939
10940         * lpath.el: Bind cursor-in-non-selected-windows and
10941         select-frame-set-input-focus for XEmacs.
10942
10943 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10944
10945         * mm-view.el (mm-inline-text): Use equal instead of equalp.
10946
10947 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
10948
10949         * gnus-registry.el (gnus-registry-cache-save): Remove text
10950         properties when saving via the temp buffer.
10951
10952 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10953
10954         * message.el (message-generate-hashcash): Honor custom type.
10955
10956 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10957
10958         * message.el (message-generate-hashcash): Default to non-nil when
10959         hashcash is found.
10960
10961         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
10962         (gnus-refer-thread-limit): Increase default to 500.
10963
10964         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
10965
10966         * flow-fill.el (fill-flowed): Allow delete-space.
10967
10968 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10969
10970         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
10971         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
10972         Remove autoloads.
10973
10974 2006-04-18  Simon Josefsson  <jas@extundo.com>
10975
10976         * message.el (message-generate-hashcash): Default to.
10977
10978 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10979
10980         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
10981         concatenating segments rather than before concatenating them.
10982
10983 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
10984
10985         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
10986
10987 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10988
10989         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
10990
10991         * message.el (message-forward-make-body-plain):
10992         Allow message-forward-ignored-headers to be a list.
10993         (message-remove-ignored-headers): Factor out into function.
10994         (message-forward-make-body-mml): Use it.
10995
10996         * imap.el (imap-quote-specials): New function.
10997         (imap-login-auth): Quote specials.
10998
10999         * rfc2231.el (rfc2231-parse-string): Remove dead code.
11000         (rfc2231-parse-string): Allow concatanation of parameters that
11001         aren't contiguous.  The test case is
11002           (mail-header-parse-content-type "message/external-body;
11003             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
11004             access-type=LOCAL-FILE;
11005             name*1*=plugh%2fhello-sailor%2fbing.pdf")
11006
11007 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11008
11009         * nntp.el (nntp-accept-process-output): Return the value of
11010         `nnheader-accept-process-output'.
11011
11012 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11013
11014         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
11015         (gnus-button-alist): Recognize more diff formats.
11016         (gnus-button-patch): Strip directory.
11017
11018 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
11019
11020         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
11021         Emacs 22 when setting focus.
11022
11023 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11024
11025         * gnus-art.el (gnus-article-treat-types): Do treatment of
11026         text/x-verbatim parts.
11027         (gnus-button-patch): New command.
11028
11029         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
11030         addresses that contain invalid characters.
11031
11032 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11033
11034         * message.el (message-put-addresses-in-ecomplete):
11035         Use gnus-replace-in-string.
11036         (message-is-yours-p): Use the more correct
11037         mail-header-parse-address instead of
11038         mail-extract-address-components.
11039         (message-put-addresses-in-ecomplete): Fix typo.
11040
11041         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
11042         keystroke.
11043
11044         * gnus-art.el (gnus-treatment-function-alist): Change order of
11045         newsgroups/generic header folding to avoid double-folding.
11046
11047         * message.el (message-hidden-headers): Add X-Draft-From.
11048
11049         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
11050         New command.
11051         (gnus-summary-repeat-search-article-backward): New command.
11052
11053         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
11054         groups in the parent topic.
11055
11056 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
11057
11058         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
11059         (spam-extra-header-to-number): Return the CRM114 number as a
11060         number instead of a string.
11061
11062 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11063
11064         * gnus-art.el (gnus-face-properties-alist): Move here from
11065         gnus-fun.
11066
11067         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
11068
11069 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11070
11071         * message.el (message-strip-forbidden-properties): Only display on
11072         self-insert-command.
11073
11074         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
11075         reindent.
11076         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
11077
11078 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
11079
11080         * smiley.el (smiley-style): Fix typo.
11081
11082 2006-03-23  Kenichi Handa  <handa@m17n.org>
11083
11084         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
11085         instead of set-buffer-multibyte.
11086
11087 2006-03-23  Kenichi Handa  <handa@m17n.org>
11088
11089         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
11090         buffer and then decode the buffer text if necessary.
11091         (rfc2231-encode-string): Be sure to work on multibyte buffer at
11092         first, and after mm-encode-body, change the buffer to unibyte.
11093
11094 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11095
11096         * hashcash.el (hashcash-insert-payment-async-2):
11097         Use message-goto-eoh instead of doing it manually.
11098         (mail-add-payment): Use message-narrow-to-header instead of trying
11099         to do the same itself.
11100
11101         * message.el (message-hidden-headers): Add Face.
11102
11103         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
11104         reparenting code.
11105         (gnus-summary-reparent-children): Refactored out code.
11106         (gnus-summary-thread-map): New keystroke.
11107         (gnus-summary-reparent-children): Make into command.
11108
11109         * smiley.el (smiley-style): Default to `medium' if using a large
11110         font.
11111
11112         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
11113         does it itself.
11114
11115         * message.el (message-point-in-header-p): Simplify definition.
11116
11117 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11118
11119         * nnagent.el (nnagent-request-set-mark): Silence log file
11120         writing.
11121         (nnagent-request-set-mark): Use write-region instead of
11122         append-to-file.
11123
11124         * gnus-sum.el (gnus-read-header): Fudge article number if using a
11125         strange select method.
11126
11127         * ecomplete.el (ecomplete-display-matches): Get highlightling
11128         right.
11129         (ecomplete-display-matches): Use literals.
11130         (ecomplete-display-matches): Disable message logging.
11131
11132         * message.el (message-display-abbrev): Small optimization.
11133
11134         * ecomplete.el (ecomplete-display-matches): Allow automatic
11135         display.
11136
11137         * message.el (message-strip-forbidden-properties):
11138         Display abbrevs.
11139         (message-display-abbrev): Get automatic display right.
11140
11141         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
11142         keystrokes.
11143
11144 2006-04-13  Romain Francoise  <romain@orebokech.com>
11145
11146         TODO: Backport to v5-10!
11147
11148         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
11149         Move here (and rename) from gnus-registry.el.
11150
11151         * gnus-registry.el: Require gnus-util.
11152         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
11153
11154 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11155
11156         * gnus-group.el (gnus-group-catchup-current):
11157         Change if-then-else-if-then-else into cond.
11158         (gnus-group-catchup): Indent.
11159         (group-name-at-point): New function.
11160         (gnus-fetch-group): Provide default from thing at point.
11161
11162 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11163
11164         * message.el (message-display-abbrev): Fix regexp.
11165
11166         * ecomplete.el (ecomplete-highlight-match-line):
11167         Reimplement choosing.
11168         (ecomplete-highlight-match-line): Fix up code rewrite, remove
11169         dead variables.
11170
11171         * message.el (message-newline-and-indent): Remove debugging.
11172         (message-display-abbrev): Use new implementation.
11173
11174 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
11175
11176         * gnus-art.el (gnus-article-mode):
11177         Set cursor-in-non-selected-windows to nil.
11178
11179         * smiley.el: Revert previous change.
11180         (smiley-data-directory): defvar it before using it in the
11181         defcustom of `smiley-style'.
11182
11183 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11184
11185         * message.el (message-newline-and-indent): New function.
11186
11187         * ecomplete.el: Implement more bits.
11188
11189         * message.el (message-put-addresses-in-ecomplete): Clean up the
11190         string.
11191
11192         * ecomplete.el (ecomplete-add-item): Chop off decimals.
11193
11194         * gnus-sum.el (gnus-summary-save-parts):
11195         Bind gnus-summary-save-parts-counter and use it to make unique file
11196         names.
11197
11198         * gnus-art.el (gnus-ignored-headers): Add some more headers.
11199
11200         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
11201         parameter to say whether to actually parse the individual
11202         addresses.
11203
11204         * message.el (message-put-addresses-in-ecomplete): New function.
11205         (ecomplete): Require.
11206         (message-mail-alias-type): Add ecomplete as an option.
11207
11208 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
11209
11210         * flow-fill.el (fill-flowed): Remove trailing space from blank
11211         quoted lines.
11212
11213 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11214
11215         * smiley.el (smiley-style): Move definition later to avoid a
11216         compilation warning.
11217
11218 2006-04-12  Kenichi Handa  <handa@m17n.org>
11219
11220         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
11221         buffer and then decode the buffer text if necessary.
11222         (rfc2231-encode-string): Be sure to work on multibyte buffer at
11223         first, and after mm-encode-body, change the buffer to unibyte.
11224         Use mm-disable-multibyte instead of set-buffer-multibyte.
11225
11226 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11227
11228         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
11229         Content-Type header instead of Content-Disposition header.
11230         (gnus-mime-inline-part): Ditto.
11231         (gnus-mime-view-part-as-charset): Ignore charset that the part
11232         specifies.
11233
11234         * mm-decode.el (mm-display-part): Work with external parts and
11235         usual parts similarly.
11236
11237         * mm-extern.el (mm-inline-external-body): Use mm-display-part
11238         instead of gnus-display-mime.
11239
11240         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
11241         instead of with-temp-buffer.
11242
11243         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
11244         tag to summarized topics part in order to encode non-ASCII text.
11245
11246 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
11247
11248         * smiley.el (smiley-style): New variable.
11249         (smiley-directory): New function.
11250         (smiley-data-directory): Derive from `smiley-style' using
11251         `smiley-directory'.
11252         (smiley-regexp-alist): Add new entries.
11253
11254         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
11255         (gnus-article-browse-delete-temp): Add :version.
11256
11257 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
11258
11259         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
11260         the sieve region.
11261
11262 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11263
11264         * gnus.el (gnus-version-number): Bump version.
11265
11266 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
11267
11268         * gnus.el: No Gnus v0.4 is released.
11269
11270 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11271
11272         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
11273         layout.
11274
11275         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
11276         unknown charset.
11277
11278         * message.el (message-header-synonyms): Add Original-To to the
11279         default.
11280
11281         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
11282         optional parameter.
11283
11284 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
11285
11286         * gnus-fun.el (gnus): Require it for gnus-directory.
11287
11288 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11289
11290         * gnus-fun.el (gnus-face-properties-alist): Add :version.
11291
11292 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
11293
11294         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
11295
11296 2006-04-05  Simon Josefsson  <jas@extundo.com>
11297
11298         * password.el (password-reset): New function.
11299
11300 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
11301
11302         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
11303         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
11304
11305 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11306
11307         * nnweb.el (nnweb-google-create-mapping): Update regexp.
11308         Some whitespace was matched into the url, which broke browsing hits
11309         > 100 when mm-url-use-external was nil.
11310
11311 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11312
11313         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
11314         Check gnus-extra-headers for 'Newsgroups.
11315
11316         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
11317         bound.
11318
11319 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
11320
11321         * pgg-gpg.el: Clean up process buffers every time gpg processes
11322         complete.
11323
11324 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
11325
11326         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
11327         doc string.
11328
11329 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
11330
11331         * pgg-gpg.el (pgg-gpg-process-filter)
11332         (pgg-gpg-wait-for-completion): Check if buffer is alive.
11333
11334         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
11335         lines, temporary fix.
11336
11337 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11338
11339         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
11340
11341 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
11342
11343         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
11344         default-enable-multibyte-characters.  This reverts the change from
11345         revision 6.17 which is no longer necessary because the passphrase
11346         is sent separately now.  GnuPG messages are unreadable under
11347         multibyte locales with default-enable-multibyte-characters set to
11348         nil.
11349
11350 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
11351
11352         * message.el (message-tool-bar-gnome): Move "spell".
11353
11354 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
11355
11356         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
11357         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
11358         instead.
11359
11360 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
11361
11362         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
11363         Improve newsgroups handling for NNTP overviews which don't include
11364         Newsgroups.
11365
11366 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11367
11368         * message.el (message-resend): Bind message-generate-hashcash to nil.
11369
11370 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11371
11372         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
11373         when searching for already-paid recipients.
11374
11375 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
11376
11377         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
11378         passphrases when it is not needed.
11379         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
11380         passphrase stuff from gpg, should only be necessary when you use
11381         gpg with a smartcard.
11382
11383 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11384
11385         * mml.el (mml-insert-mime): Ignore cached contents of
11386         message/external-body part.
11387
11388         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
11389         (mm-insert-part): Ditto.
11390
11391 2006-03-23  Simon Josefsson  <jas@extundo.com>
11392
11393         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
11394         Reiner.
11395         (pgg-gpg-use-agent-p): Use it again.
11396
11397 2006-03-23  Simon Josefsson  <jas@extundo.com>
11398
11399         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
11400         older emacsen.
11401         (pgg-gpg-use-agent-p): Don't use it.
11402
11403 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
11404
11405         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
11406         if we can.
11407
11408 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
11409
11410         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
11411         (pgg-gpg-update-agent): New function.
11412         (pgg-gpg-use-agent-p): New function.
11413         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
11414         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
11415         (pgg-gpg-sign-region): Use it.
11416
11417 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11418
11419         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
11420         Reported by Ralf Wachinger <rwachinger@gmx.de>.
11421
11422 2006-03-21  Simon Josefsson  <jas@extundo.com>
11423
11424         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
11425         <wilde@sha-bang.de>.
11426         (pgg-gpg-use-agent): New variable.
11427         (pgg-gpg-process-region): Use it.
11428         (pgg-gpg-encrypt-region): Likewise.
11429         (pgg-gpg-encrypt-symmetric-region): Likewise.
11430         (pgg-gpg-decrypt-region): Likewise.
11431         (pgg-gpg-sign-region): Likewise.
11432         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
11433
11434 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11435
11436         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
11437
11438         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
11439         Add comment on version.
11440
11441 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
11442
11443         * smiley.el: Add missing test smiley.
11444
11445 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11446
11447         * mm-decode.el (mm-with-part): New macro.
11448         (mm-get-part): Use it; work with message/external-body as well.
11449         (mm-save-part): Treat name and filename equally.
11450
11451         * mm-extern.el (mm-extern-cache-contents): New function.
11452         (mm-inline-external-body): Use it; force the part to be displayed;
11453         move undisplayer added to the cached handle to the parent.
11454
11455         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
11456         (gnus-mime-view-part-as-type): Work with message/external-body.
11457
11458         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
11459
11460 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11461
11462         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
11463         images in image-load-path.  [Sync with image.el, revision 1.60, in
11464         Emacs.]
11465
11466 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11467
11468         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
11469         path rather than symbol.  Always return list of directories.
11470         Guarantee that image directory comes first.  [Sync with image.el,
11471         revision 1.59, in Emacs.]
11472
11473         * message.el (message-make-tool-bar): Adjust to new API of
11474         `gmm-image-load-path-for-library'.
11475
11476         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11477
11478         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
11479
11480 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11481
11482         * gnus-art.el (gnus-article-only-boring-p):
11483         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
11484         intangible text.
11485         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
11486
11487 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
11488
11489         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
11490         Use `defun' instead of `gmm-defun-compat'.
11491
11492 2006-03-14  Simon Josefsson  <jas@extundo.com>
11493
11494         * message.el (message-unique-id): Don't use message-number-base36
11495         if (user-uid) is a float.
11496         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
11497
11498 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11499
11500         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
11501
11502         * gnus-art.el (gnus-mime-display-single): Make sure there is an
11503         empty line between a part and a message part.
11504
11505 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
11506
11507         * smiley.el: Add more test smileys.
11508         (smiley-data-directory, smiley-regexp-alist)
11509         (gnus-smiley-file-types): Fix doc strings.
11510         (smiley-update-cache): Clear smiley-cached-regexp-alist before
11511         adding new elements.
11512         (smiley-mouse-map): Unused code.  Make it a comment.
11513
11514 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11515
11516         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
11517         scan latest NoCeM messages instead of old ones.
11518         (gnus-nocem-check-article): Fix regexps so as to match to PGP
11519         delimiters that are recently used.
11520         (gnus-nocem-load-cache): Add autoload cookie.
11521
11522         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
11523
11524         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
11525         level which is larger than gnus-use-nocem is specified.
11526
11527         * gnus-group.el (gnus-group-get-new-news): Ditto.
11528
11529 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
11530
11531         * gnus-util.el (gnus-tool-bar-update): New function.
11532
11533         * gnus-group.el (gnus-group-update-tool-bar): New variable.
11534         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
11535
11536         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
11537
11538         * gnus-group.el (gnus-group-redraw-when-idle)
11539         (gnus-group-redraw-check): Remove.
11540         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
11541
11542 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11543
11544         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
11545         if optional last element is specified in splits (FIELD VALUE...).
11546
11547 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
11548
11549         * message.el (message-make-tool-bar): Rename gmm-image-load-path
11550         to gmm-image-load-path-for-library.  Call with no-error argument.
11551         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
11552
11553         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11554
11555         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
11556
11557         * gmm-utils.el (gmm-image-load-path): Remove alias.
11558
11559 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
11560
11561         * gmm-utils.el (gmm-image-load-path): Add alias.
11562
11563         * nnml.el (nnml-generate-nov-databases-directory): Rename from
11564         nnml-generate-nov-databases-1.
11565         (nnml-generate-nov-databases): Use it.
11566         (nnml-generate-nov-databases-directory): Document no-active
11567         argument.
11568
11569         * gmm-utils.el (gmm-image-load-path-for-library): Return single
11570         directory if path is t.  Add no-error.
11571
11572         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
11573         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
11574
11575         * gnus-art.el (gnus-article-browse-delete-temp-files):
11576         Simplify resetting gnus-article-browse-html-temp-list.
11577
11578         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
11579         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
11580         Add example to docstring.  Rename local variables.  Move error
11581         checks to default case in cond and simplify.
11582
11583 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11584
11585         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
11586         handle is multipart when calling it recursively.
11587         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
11588
11589 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
11590
11591         * nnimap.el (nnimap-request-update-info-internal): Optimize.
11592         Don't `gnus-uncompress-range' to avoid excessive memory usage.
11593
11594 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11595
11596         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
11597         is loaded.
11598
11599         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
11600         loaded.
11601
11602 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11603
11604         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
11605         to "Emacs 23 (unicode)" in doc string.
11606
11607         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
11608         "Emacs 23 (unicode)" in comment.
11609
11610 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11611
11612         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
11613
11614         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
11615         characters 160 through 255 in Emacs 23.
11616
11617 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
11618
11619         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
11620         gnus-article-browse-html-temp.
11621         (gnus-article-browse-delete-temp): Make it customizable.
11622         Add `file'.  Adjust doc string.
11623         (gnus-article-browse-delete-temp-files): Add argument.
11624         Allow query for each file.  Adjust doc string.
11625         (gnus-article-browse-html-parts):
11626         Add `gnus-article-browse-delete-temp-files' to
11627         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
11628
11629 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
11630
11631         * gnus-art.el (gnus-article-browse-html-temp)
11632         (gnus-article-browse-delete-temp): New variables.
11633         (gnus-article-browse-delete-temp-files): New function.
11634         (gnus-article-browse-html-parts): Use it.
11635
11636 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
11637
11638         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
11639
11640         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
11641         string.
11642
11643         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
11644         gnus-summary-insert-new-articles when unplugged.
11645         Remove gnus-summary-search-article-forward.
11646
11647         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
11648         display-visual-class instead of display-color-cells.
11649
11650 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11651
11652         * dgnushack.el: Autoload customize-group for XEmacs.
11653
11654         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
11655         message/* containing non-ASCII text properly.
11656
11657 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
11658
11659         * message.el: Require gmm-utils, remove autoloads.
11660         (message-tool-bar): Set default based on
11661         gmm-tool-bar-style.
11662         (message-tool-bar-gnome): Add gmm-customize-mode.
11663
11664         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
11665         gmm-tool-bar-style.
11666         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
11667
11668         * gnus-group.el (gnus-group-tool-bar): Set default based on
11669         gmm-tool-bar-style.
11670         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
11671
11672         * gmm-utils.el (gmm-image-directory): Rename variable from
11673         gmm-image-load-path.
11674         (gmm-image-load-path): Use gmm-image-directory.
11675         (gmm-customize-mode): New function.
11676         (gmm-tool-bar-style): New variable.
11677
11678         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
11679         gnus-group-redraw-line-number.
11680         (gnus-group-redraw-check): Simplify.
11681         (gnus-group-tool-bar-update): Remove redraw check.
11682         (gnus-group-make-tool-bar): Add redraw check.
11683
11684 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
11685
11686         * gnus-art.el (gnus-button): Add missing parentheses.
11687
11688 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11689
11690         * lpath.el: Fbind line-number-at-pos.
11691
11692 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11693
11694         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
11695
11696 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
11697
11698         * gnus-art.el (gnus-button): New face.
11699         (gnus-article-button-face): Use it.
11700
11701         * gnus-sum.el (gnus-summary-tool-bar-gnome):
11702         Add gnus-summary-next-page.  Re-order.
11703
11704         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
11705         next-node are now included.
11706         (gnus-group-redraw-line-number): New internal variable.
11707         (gnus-group-redraw-check): Helper function for updating the tool
11708         bar.
11709         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
11710
11711         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
11712
11713         * spam.el (spam-spamassassin-score-regexp): New internal variable.
11714         (spam-extra-header-to-number, spam-check-spamassassin-headers):
11715         Use it to match format of Spamassassin 3.0 and later.
11716         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
11717         (spam-check-bogofilter)
11718         (spam-bogofilter-register-with-bogofilter): Fix args of
11719         `gnus-error' calls.
11720
11721 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
11722
11723         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
11724         unnecessary interaction when sending queued mails.
11725         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
11726
11727 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
11728
11729         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
11730         first or last are nil.
11731
11732 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11733
11734         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
11735
11736 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11737
11738         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
11739
11740 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11741
11742         * dns.el (query-dns): Protect more against buggy tcp output.
11743
11744 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11745
11746         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
11747         nov.php.
11748
11749 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11750
11751         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
11752         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
11753         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
11754         output on the server side.
11755         (nnweb-google-create-mapping): Update regexps and add some
11756         progress indication.
11757
11758 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
11759
11760         * gnus-group.el (gnus-group-tool-bar-gnome):
11761         Fix gnus-agent-toggle-plugged.  Re-order icons.
11762         (gnus-group-tool-bar-gnome):
11763         Add gnus-group-{prev,next}-unread-group.
11764         (gnus-group-tool-bar-gnome): Re-order icons.
11765
11766         * gnus-sum.el (gnus-summary-tool-bar-gnome):
11767         Move gnus-summary-insert-new-articles.
11768
11769         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
11770         Fix comments.
11771
11772         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
11773         also available in Emacs 21.3.
11774
11775         * message.el (message-fix-before-sending): Change "Emacs 22" to
11776         "Emacs 23 (unicode)" in comment.
11777
11778         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
11779         "Emacs 23 (unicode)" in comment.
11780
11781         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
11782         comment.
11783         (mm-coding-system-p): Add comment about no-MULE XEmacs.
11784
11785         * mm-view.el (mm-fill-flowed): Add :version.
11786
11787 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11788
11789         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
11790         and load-path.
11791
11792 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
11793
11794         * message.el: Autoload gmm-image-load-path.
11795         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
11796         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
11797         consitency.
11798
11799         * gmm-utils.el (gmm-image-load-path): Also search in
11800         "../etc/images".  Don't set gmm-image-load-path if we don't find
11801         the image.
11802
11803 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11804
11805         * gmm-utils.el (gmm-image-load-path): Don't make
11806         `gmm-image-load-path' include subdirectories which the second arg
11807         `image' might specify.
11808
11809         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
11810         subdirectory to icon file names.
11811
11812         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
11813
11814 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11815
11816         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
11817         gmm-image-load-path calls.
11818
11819         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11820
11821         * message.el (message-make-tool-bar): Ditto.
11822
11823         * mml.el (mml-preview): Add comment concerning tool bar icons.
11824
11825         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
11826         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
11827
11828         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
11829         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
11830
11831         * message.el (message-tool-bar-gnome): Use new icon names.
11832         (message-make-tool-bar): Use `gmm-image-load-path'.
11833
11834         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
11835         New functions from MH-E.
11836         (gmm-image-load-path): New variable from MH-E.
11837         (gmm-image-load-path): New function from MH-E.  Add arguments
11838         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
11839         *-image-load-path-called-flag.
11840
11841 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
11842
11843         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
11844
11845 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
11846
11847         * nnimap.el (nnimap-request-move-article): Change folder back to
11848         source group before deleting.
11849
11850 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
11851
11852         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
11853
11854         * gnus-art.el (mm-url-insert-file-contents-external):
11855         Autoload mm-url.
11856
11857         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
11858
11859 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11860
11861         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
11862         coding system which mm-charset-to-coding-system returns for a
11863         given charset is valid.
11864
11865 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
11866
11867         * html2text.el (html2text-remove-tag-list):
11868         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
11869
11870 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
11871
11872         * gnus-cus.el: Revert 2005-10-17 change.
11873
11874 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11875
11876         * gnus-art.el (article-strip-banner):
11877         Call article-really-strip-banner only when the regexp match is made.
11878
11879 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11880
11881         * gnus-art.el (article-strip-banner):
11882         Use gnus-extract-address-components instead of
11883         mail-header-parse-addresses to make it work with non-ASCII text;
11884         remove mail-encode-encoded-word-string.
11885
11886         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
11887         values which are surrounded with \"...\"; make it never cause a
11888         Lisp error; give up parsing of parameters if it failed in
11889         extracting type.
11890
11891 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
11892
11893         * smime.el (smime-cert-by-ldap-1): Fix bug where
11894         `smime-ldap-search' returns results without userCertificates.
11895
11896 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11897
11898         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
11899
11900 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11901
11902         * spam.el (spam-check-spamassassin-headers): Adapt format for
11903         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
11904         <ari@mbf.ocn.ne.jp>.
11905         (spam-list-of-processors): Add spam-use-gmane.
11906
11907 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11908
11909         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
11910         make-temp-file; make it work with XEmacs as well.
11911
11912         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
11913         mm-make-temp-file.
11914
11915         * mm-decode.el (mm-display-external): Use the 3rd arg of
11916         mm-make-temp-file.
11917         (mm-create-image-xemacs): Ditto.
11918
11919 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11920
11921         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
11922         with message-narrow-to-headers.
11923         (gnus-draft-setup): Narrow to header to run message-fetch-field.
11924         (gnus-draft-check-draft-articles): New function.
11925         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
11926
11927 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11928
11929         * gnus-art.el (gnus-article-browse-html-parts):
11930         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
11931         Don't use suffix argument for mm-make-temp-file for Emacs 21
11932         compatibility.  Remove useless `format'.
11933
11934 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11935
11936         * nnweb.el (nnweb-google-wash-article): Update regexps.
11937         (nnweb-group-alist): Use defvoo instead of defvar.
11938
11939 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11940
11941         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
11942         re-loading nn* modules.
11943
11944 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
11945
11946         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
11947         for `tool-bar-mode' and don't check it's default-value.
11948
11949         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11950
11951         * message.el (message-make-tool-bar): Ditto.
11952
11953         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
11954         `substring'.  Shorten tmp-file name.
11955
11956         * gnus.el: Remove bogus comment.
11957
11958 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
11959
11960         * gnus-art.el (gnus-article-browse-html-parts): New function.
11961         (gnus-article-browse-html-article): New function for viewing html
11962         articles with a browser.
11963
11964 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
11965
11966         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
11967         in elisp.
11968         (pgg-gpg-encrypt-symmetric-region): Ditto.
11969         (pgg-gpg-sign-region): Ditto.
11970
11971         * pgg-def.el (pgg-text-mode): New variable.
11972
11973         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
11974         (mml2015-pgg-encrypt): Ditto.
11975
11976         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
11977         (mml1991-pgg-encrypt): Ditto.
11978
11979 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11980
11981         * nnfolder.el (nnfolder-insert-newsgroup-line):
11982         Use message-make-date instead of current-time-string.
11983
11984         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
11985         to gnus-decoded which mm-uu might set.
11986
11987 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11988
11989         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
11990         don't decode quoted parameters; remove misimported Emacs code.
11991         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11992         (rfc2231-decode-encoded-string): Don't use split-string which
11993         behaves differently according to Emacs version; use
11994         mm-decode-coding-region to convert charset to coding-system.
11995         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11996         (rfc2231-encode-string): Remove misimported Emacs code.
11997
11998 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11999
12000         * gnus-art.el (article-decode-charset): Don't use ignore-errors
12001         when calling mail-header-parse-content-type.
12002         (article-de-quoted-unreadable): Ditto.
12003         (article-de-base64-unreadable): Ditto.
12004         (article-wash-html): Ditto.
12005
12006         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
12007         calling mail-header-parse-content-type and
12008         mail-header-parse-content-disposition.
12009         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
12010         mail-header-parse-content-type.
12011
12012         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
12013         insert charset and format parameters; encode description after
12014         inserting it to buffer.
12015         (mml-insert-parameter): Fold lines properly even if a parameter is
12016         segmented into two or more lines; change the max column to 76.
12017
12018         * rfc1843.el (rfc1843-decode-article-body): Don't use
12019         ignore-errors when calling mail-header-parse-content-type.
12020
12021         * rfc2231.el (rfc2231-parse-string): Return at least type if
12022         possible; don't cause an error even if it fails in parsing of
12023         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12024         (rfc2231-encode-string): Don't break lines at the beginning, leave
12025         it to mml-insert-parameter.
12026
12027         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
12028         calling mail-header-parse-content-type.
12029
12030 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
12031
12032         * spam-report.el (spam-report-gmane-use-article-number):
12033         Improve doc string.
12034         (spam-report-gmane-internal): Check if a suitable header was found
12035         in the article.
12036
12037 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12038
12039         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
12040         (rfc2231-encode-string): Make param*=value always begin with LWSP.
12041
12042 2006-02-05  Romain Francoise  <romain@orebokech.com>
12043
12044         Update copyright notices of all files in the gnus directory.
12045
12046 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12047
12048         * nnweb.el (nnweb-request-group): Avoid growing overview files.
12049
12050 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12051
12052         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
12053         segmented lines of parameter value to cope with Thunderbird 1.5
12054         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
12055         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12056         (rfc2231-encode-string): Don't make lines exceeding 76 column.
12057
12058 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
12059
12060         * mml.el (mml-generate-mime-1): Correct the order of inline signed
12061         parts.
12062
12063 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12064
12065         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
12066         there's only one active file for all servers.
12067         (nnweb-request-scan): Make sure nnweb-articles is initialized on
12068         solid groups.  Gnus might have used a FAST request to select the group.
12069         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
12070         and nnweb-search redundantly in the active file.
12071         (nnweb-request-list): Don't list bogus groups.  There can only be one.
12072         (nnweb-request-create-group): Don't use ARGS.
12073         (nnweb-possibly-change-server, nnweb-request-group): Remove some
12074         initialisations.  Let nnoo do the work.
12075
12076 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12077
12078         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
12079         Say the part has been decoded.
12080
12081         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
12082
12083 2006-01-31  Kevin Ryde  <user42@zip.com.au>
12084
12085         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
12086         mailcap-viewer-test-cache when there's no 'test clause, since that
12087         will invert the meaning of a "nil" test previously determined by
12088         mailcap-mailcap-entry-passes-test.
12089
12090 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12091
12092         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
12093         compiling.
12094
12095         * gnus-sum.el: Ditto.
12096
12097         * message.el: Don't bind tool-bar-map when compiling.
12098
12099 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
12100
12101         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
12102
12103 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12104
12105         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
12106         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
12107         current Google Groups.
12108
12109 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
12110
12111         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
12112         and tool-bar-mode.
12113
12114         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
12115         and tool-bar-mode.
12116
12117         * message.el (message-tool-bar-update): Simplify.
12118         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
12119
12120         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
12121         gnus-summary-buffer.
12122         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
12123         gnus-summary-reply.
12124
12125         * gmm-utils.el (gmm): Add :version.
12126
12127 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12128
12129         * Makefile.in (clean): New rule.
12130         (distclean): Use it.
12131
12132 2006-01-26  Steve Youngs  <steve@sxemacs.org>
12133
12134         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
12135         Don't autoload.
12136
12137 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12138
12139         * gmm-utils.el (gmm-verbose): Add :group.
12140
12141 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
12142
12143         * message.el: Change some comments WRT tool-bars.
12144
12145         * gnus-sum.el (gnus-summary-tool-bar)
12146         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
12147         (gnus-summary-tool-bar-zap-list): New variables.
12148         (gnus-summary-make-tool-bar): Complete rewrite using
12149         `gmm-tool-bar-from-list'.
12150
12151         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
12152         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
12153         New variables.
12154         (gnus-group-make-tool-bar): Complete rewrite using
12155         `gmm-tool-bar-from-list'.
12156         (gnus-group-tool-bar-update): New function.
12157
12158         * message.el (message-mode-field-menu): Add "Show hidden Headers".
12159
12160 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12161
12162         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
12163         is dissected into a single part of which the type is the same as
12164         the given one; decode charset.
12165
12166 2006-01-21  Kevin Ryde  <user42@zip.com.au>
12167
12168         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
12169         into alists as symbol not string, since that's what
12170         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
12171         look for.
12172
12173 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
12174
12175         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
12176         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
12177
12178         * message.el (message-tool-bar-gnome): Use gmm-ignore.
12179
12180 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12181
12182         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
12183         (gnus-xmas-mime-security-button-menu): New function.
12184
12185         * gnus-art.el (gnus-mime-security-button-commands): New variable.
12186         (gnus-mime-security-button-menu): New definition.
12187         (gnus-mime-security-button-map): Use them.
12188         (gnus-mime-security-button-menu): New function.
12189         (gnus-insert-mime-security-button): Addition to help echo.
12190         (gnus-mime-security-run-function, gnus-mime-security-save-part)
12191         (gnus-mime-security-pipe-part): New functions.
12192
12193         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
12194         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
12195
12196         * mm-decode.el (mm-handle-set-disposition): Remove.
12197         (mm-handle-set-description): Remove.
12198
12199 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12200
12201         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
12202         (mm-w3m-standalone-supports-m17n-p): New function.
12203         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
12204         w3m usage.
12205
12206         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
12207         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
12208
12209 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
12210
12211         * message.el (message-tool-bar-zap-list):
12212         Use gmm-tool-bar-zap-list as custom type.
12213         (message-tool-bar-update): New function.
12214         (message-tool-bar, message-tool-bar-gnome)
12215         (message-tool-bar-retro): Add message-tool-bar-update.
12216         (message-tool-bar-gnome): Add flyspell-buffer.
12217
12218         * gnus-util.el (gnus-error): Describe `args'.
12219
12220         * gmm-utils.el (gmm-error): Describe `args'.
12221         (gmm-tool-bar-zap-list): New widget.
12222         (gmm-tool-bar-from-list): Improve description of `zap-list'.
12223
12224 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12225
12226         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
12227         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
12228         the number of recursive calls.
12229
12230         * mm-decode.el (mm-handle-set-disposition): New macro.
12231         (mm-handle-set-description): New macro.
12232
12233 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12234
12235         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
12236         encoding.
12237
12238 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
12239
12240         * message.el (message-tool-bar-zap-list, message-tool-bar)
12241         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
12242         (message-tool-bar-local-item-from-menu): Remove.
12243         (message-tool-bar-map): Replace by `message-make-tool-bar'.
12244         (message-make-tool-bar): New function.
12245         (message-mode): Use `message-make-tool-bar'.
12246
12247         * gmm-utils.el: New file.
12248         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
12249         (gmm-lazy): New widget copied from `nnmail.el'.
12250         (gmm-tool-bar-from-list): New function for creating customizable
12251         tool bars.
12252         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
12253         output.
12254         (gmm): Add :prefix to defgroup.
12255
12256 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
12257
12258         * gmm-utils.el (gmm-widget-p): New function.
12259
12260 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
12261
12262         * mml.el (mml-attach-file): Describe `description' in doc string.
12263         (mml-menu): Add Emacs MIME manual and PGG manual.
12264
12265 2006-01-20  Richard M. Stallman  <rms@gnu.org>
12266
12267         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
12268
12269 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
12270
12271         * nntp.el (nntp-end-of-line): Doc fix.
12272
12273 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
12274
12275         * imap.el (imap-open): Handle case where buffer is a buffer
12276         object.
12277
12278 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12279
12280         * gnus-delay.el (gnus-delay): Don't autoload.
12281         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
12282         to be re-loaded when customizing the `gnus-delay' group.
12283
12284 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
12285
12286         * message.el (message-insert-citation-line): Use newlines.
12287
12288 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
12289
12290         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12291         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
12292         these routines, so the passphrase can be managed externally and
12293         passed in to the system.
12294         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12295         pgg-add-passphrase-to-cache function.
12296
12297         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12298         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
12299         these routines, so the passphrase can be managed externally and
12300         passed in to the system.
12301         (pgg-pgp5-sign-region): Use new name of
12302         pgg-add-passphrase-to-cache function.
12303
12304 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
12305
12306         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12307         part of the decoded armor to find the key-identifier.
12308         (pgg-gpg-lookup-key-owner): New function to return the
12309         human-readable identifier of a key owner.
12310         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
12311         itself.
12312         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
12313         the key value) if we have a key and can match it against a secret
12314         key.  Also, added a note pointing out fact that the prompt only
12315         indicates the first matching key.
12316
12317         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
12318         pgg-decrypt-region.
12319         (pgg-add-passphrase-to-cache): Rename from
12320         `pgg-add-passphrase-cache' to reduce confusion (all callers
12321         changed).
12322         (pgg-remove-passphrase-from-cache): Rename from
12323         `pgg-remove-passphrase-cache' to reduce confusion (all callers
12324         changed).
12325         (pgg-read-passphrase, pgg-add-passphrase-cache)
12326         (pgg-remove-passphrase-cache): Add informative docstrings.
12327         (pgg-decrypt): Convey provided passphrase in subordinate call to
12328         pgg-decrypt-region.
12329
12330 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
12331
12332         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
12333         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
12334         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
12335         'passphrase' argument, so the passphrase can be managed externally
12336         and then passed in to the system.
12337
12338         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
12339         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
12340         so the passphrase cache can be used reliably with identifiers
12341         besides a pgp packet's key id.
12342
12343         * pgg-gpg.el (pgg-gpg-encrypt-region)
12344         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12345         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
12346         these routines, so the passphrase can be managed externally and
12347         passed in to the system.
12348
12349         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
12350         'notruncate' argument, so the passphrase cache can be used
12351         reliably with identifiers besides a pgp packet's key id.
12352
12353 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
12354
12355         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
12356         symmetric encryption.
12357         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
12358         encrypted session key.
12359         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
12360         message ask for the passphrase in a proper way.
12361
12362         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
12363         New user commands for symmetric encryption.
12364
12365 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12366
12367         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
12368
12369         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
12370
12371 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
12372
12373         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
12374
12375 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12376
12377         * mm-decode.el (mm-inlined-types): Add application/pgp.
12378         (mm-automatic-display): Ditto.
12379
12380         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
12381         part as text.
12382
12383 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12384
12385         * nnrss.el: Update copyright.
12386         (nnrss-opml-import): Query whether to subscribe to each entry.
12387
12388         * gnus-art.el:
12389         * gnus-sum.el:
12390         * gnus-xmas.el:
12391         * messagexmas.el:
12392         * mm-uu.el:
12393         * mm-view.el: Update copyright.
12394
12395 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
12396
12397         * message.el (message-info): New function.
12398         (message-mode-menu): Add it.
12399         Update copyright.
12400
12401         * ChangeLog: Fix and update copyright.
12402
12403 2006-01-13  Romain Francoise  <romain@orebokech.com>
12404
12405         * message.el (message-forward-subject-name-subject): Prefer the
12406         address to 'nowhere' if the sender has no name.
12407         Fix typo.  Update copyright year.
12408
12409 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12410
12411         * gnus-art.el (article-wash-html):
12412         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
12413         (gnus-article-wash-html-with-w3m-standalone): New function.
12414
12415         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
12416         mm-inline-text-html-render-with-w3m-standalone.
12417         (mm-text-html-washer-alist): Map w3m-standalone to
12418         gnus-article-wash-html-with-w3m-standalone.
12419         (mm-inline-text-html-render-with-w3m-standalone): New function.
12420
12421 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
12422
12423         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
12424         Improve LaTeX.
12425
12426 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12427
12428         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
12429         (nnrss-request-article): Render text/plain parts as HTML.
12430
12431         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
12432         the buffer.
12433
12434 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12435
12436         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
12437         custom definition of `gnus-posting-styles'.
12438
12439         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
12440         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
12441
12442 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12443
12444         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
12445         Use nntp for bug archive.
12446
12447 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12448
12449         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
12450         parts.
12451         (nnrss-normalize-date): New function converts ISO 8601 date into
12452         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
12453         (nnrss-check-group): Use it.
12454
12455 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12456
12457         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
12458
12459         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
12460         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
12461         (nnrss-insert-w3): Ditto.
12462
12463 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12464
12465         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
12466         the articles to be forwarded including the case where neither a
12467         number of articles nor a region is specified.
12468
12469 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12470
12471         * nnrss.el (nnrss-request-article): Fix last change; fill
12472         text/plain parts.
12473
12474 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12475
12476         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
12477         in text/plain part.
12478         (nnrss-check-group): Don't add excessive newline to dc:subject.
12479
12480 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
12481
12482         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
12483         article.
12484
12485 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12486
12487         * nnml.el: Don't require gnus-bcklg.  Autoload it.
12488         (nnml-use-compressed-files, nnml-save-mail): Support other
12489         comression programs such as bzip2.
12490
12491 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12492
12493         * dns.el (query-dns): Make sure we check the buffer size before
12494         removing tcp headers.
12495
12496 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12497
12498         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
12499         remove MIME buttons associated with multipart/alternative parts.
12500         (gnus-mime-display-alternative): Tag buttons using `article-type'
12501         text property.
12502
12503         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
12504         associated with multipart/alternative parts.
12505
12506         * gnus-art.el (gnus-signature-separator): Fix custom type.
12507
12508         * mm-decode.el (mm-inlined-types): Fix custom type.
12509         (mm-keep-viewer-alive-types): Ditto.
12510         (mm-automatic-display): Ditto.
12511         (mm-attachment-override-types): Ditto.
12512         (mm-inline-override-types): Ditto.
12513         (mm-automatic-external-display): Ditto.
12514
12515 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12516
12517         * spam-report.el (spam-report-user-mail-address)
12518         (spam-report-user-agent): New variables.
12519         (spam-report-url-ping-plain): Use spam-report-user-agent.
12520
12521 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
12522
12523         * gnus-art.el (gnus-button-handle-custom): Do not just use
12524         `customize-apropos' for any "M-x customize-*" button but the
12525         function called for.  Accept both the function name and its
12526         argument in order to achieve this.
12527         (gnus-button-alist): Remove support for "custom:" URL's.
12528         Pass function name to `gnus-button-handle-custom' in case of "M-x
12529         customize-*" buttons.
12530
12531 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12532
12533         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
12534         multipart/alternative and add xref to mm-discouraged-alternatives
12535         in doc string.
12536
12537         * mm-decode.el (mm-discouraged-alternatives): Add xref to
12538         gnus-buttonized-mime-types in doc string.
12539
12540 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
12541
12542         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
12543         Suggest image/.* in the doc string.
12544
12545 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
12546
12547         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
12548         message-marks (Debian bug #342521).
12549
12550 2005-12-12  Simon Josefsson  <jas@extundo.com>
12551
12552         * password.el (password-read-from-cache): Add.
12553         (password-read): Use it.
12554
12555 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12556
12557         * rfc2047.el (rfc2047-charset-to-coding-system):
12558         Recognize us-ascii as a MIME charset.
12559
12560         * mm-bodies.el (mm-decode-content-transfer-encoding):
12561         Protect against the case where the 2nd arg TYPE is nil.
12562
12563 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
12564
12565         * pop3.el (pop3-stream-type): Fix custom version.
12566
12567         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
12568
12569 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12570
12571         * mm-decode.el (mm-display-external): Add missing cdr.
12572
12573 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12574
12575         * mm-decode.el (mm-display-external): Use nametemplate (defined in
12576         RFC1524) if it is in mailcap or add a suffix according to
12577         mailcap-mime-extensions when generating a temp filename; postpone
12578         deleting a temp file for 2 seconds for some wrappers, shell
12579         scripts, and so on, which might exit right after having started a
12580         viewer command as a background job.
12581
12582 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
12583
12584         * nntp.el (nntp-marks-directory): Fix custom group.
12585
12586         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
12587         steps when < 10.
12588
12589         * gnus-start.el (gnus-no-server-1):
12590         Mention `gnus-level-default-subscribed' in doc string.
12591
12592 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12593
12594         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
12595         parens.
12596
12597 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12598
12599         * gnus-xmas.el (gnus-use-toolbar): Revert.
12600         (gnus-xmas-setup-toolbar): Use global default-toolbar if
12601         gnus-use-toolbar is default.
12602
12603         * messagexmas.el (message-use-toolbar): Revert.
12604         (message-setup-toolbar): Use global default-toolbar if
12605         message-use-toolbar is default.
12606
12607 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12608
12609         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
12610         according to default-toolbar-visible-p.
12611
12612         * messagexmas.el (message-use-toolbar): Ditto.
12613
12614 2005-11-26  Dave Love  <fx@gnu.org>
12615
12616         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
12617         (tls-program, tls-success): Provide openssl alternative.
12618
12619         * starttls.el: Doc fixes.
12620         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
12621         SERVICE to PORT.
12622
12623         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
12624         port null or service name.
12625         (starttls-negotiate): Autoload.
12626
12627 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12628
12629         * message.el (message-kill-to-signature): Fix interactive spec.
12630
12631 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12632
12633         * pop3.el (pop3-open-server): Recognize a string as a service name.
12634
12635 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
12636
12637         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
12638
12639 2005-11-23  Dave Love  <fx@gnu.org>
12640
12641         Add pop3s, pop3/starttls.
12642
12643         * pop3.el (pop3-authentication-scheme): Clarify doc.
12644         (open-tls-stream, starttls-open-stream): Autoload.
12645         (pop3-stream-type): New.
12646         (pop3-open-server): Use it.
12647
12648         * mail-source.el (mail-sources): Fix some :types.  Add stream type
12649         for POP.
12650         (mail-source-keyword-map): Add :stream for POP.
12651         (mail-source-fetch-pop): Use pop3-stream-type.
12652
12653 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12654
12655         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
12656         of current-time-string.
12657
12658 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
12659
12660         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
12661         date header.
12662
12663 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
12664
12665         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
12666         it can seriously impact performance as it bypasses the agent's
12667         local caches.
12668
12669 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
12670
12671         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
12672         must be explicitly online rather than "not explicitly offline" for
12673         its flags to be synchronized.
12674
12675         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
12676         that gnus-uu-unmark-thread will function correctly.
12677
12678         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
12679         1024K is instead displayed as 1M.
12680
12681 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12682
12683         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
12684
12685 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
12686
12687         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
12688
12689 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
12690
12691         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
12692         error message to display actual error condition.
12693         (gnus-agent-save-local): Avoid saving symbols that are bound to
12694         nil as they simply result in a warning message in
12695         gnus-agent-read-local.
12696
12697 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12698
12699         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
12700         rather than make-variable-buffer-local for file-precious-flag.
12701
12702 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
12703
12704         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
12705         for duplicates which are removed.  The invalid sort check then
12706         triggers a rescan after the sort as sorting may have moved
12707         duplicate entries such that they can be cheaply detected.
12708
12709 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12710
12711         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
12712
12713 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
12714
12715         * gnus-agent.el (gnus-agent-article-alist-save-format):
12716         Change internal variable to a custom variable.  Change default value
12717         from compressed(2) to uncompressed(1).
12718         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
12719         support for uncompressed agentview files.  Taken together, reading
12720         the agentview file should now be 6-7 times faster.
12721
12722 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
12723
12724         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
12725         as a buffer-local variable.  This avoids creating truncated
12726         dribble files as a result of a hang up, eg.
12727
12728 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
12729
12730         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
12731         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
12732         XEmacs.
12733
12734 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
12735
12736         * gnus-start.el (gnus-start-draft-setup):
12737         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
12738
12739         * gnus.el (gnus-splash): Change custom group.
12740         (gnus-group-get-parameter, gnus-group-parameter-value):
12741         Describe allow-list argument.
12742
12743         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
12744         string.
12745
12746 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
12747
12748         * gnus-art.el (gnus-default-article-saver): Add user-defined
12749         `function' to custom type.
12750
12751 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
12752
12753         * imap.el (imap-open): Handle case where buffer is a buffer
12754         object.
12755
12756 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12757
12758         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
12759         long lines.
12760         (gnus-cache-delete-group): Wrap doc strings.
12761
12762         * gnus-agent.el (gnus-agent-rename-group)
12763         (gnus-agent-delete-group): Wrap doc strings.
12764
12765 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12766
12767         * messagexmas.el (message-use-toolbar): Change the valid values
12768         into default, top, bottom, left, and right.
12769         (message-toolbar-thickness): New variable.
12770         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
12771         well.
12772         (message-setup-toolbar): Make it work.
12773
12774         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
12775         (gnus-use-toolbar): Change the valid values into default, top,
12776         bottom, left, and right.
12777         (gnus-toolbar-thickness): New variable.
12778         (gnus-xmas-setup-toolbar): New function.
12779         (gnus-xmas-setup-group-toolbar): Use it.
12780         (gnus-xmas-setup-summary-toolbar): Use it.
12781
12782 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12783
12784         * gnus-start.el (gnus-1): Add "native" to
12785         gnus-predefined-server-alist.
12786
12787         * gnus.el (gnus-method-to-server): Don't add "native" to the
12788         lists here, because that leads to problems when
12789         gnus-select-method is bound.
12790
12791 2005-11-09  Simon Josefsson  <jas@extundo.com>
12792
12793         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
12794         use (not sort-by-date) instead.
12795
12796 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12797
12798         * gnus-delay.el (gnus-delay-group): Don't autoload.
12799         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
12800         to be re-loaded when customizing the `gnus-delay' group.
12801
12802 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
12803
12804         * message.el: Revert last changes.
12805         (message-insert-citation-line): Use newlines.
12806
12807 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
12808
12809         * message.el (message-courtesy-message)
12810         (message-mark-insert-begin, message-mark-insert-end)
12811         (message-elide-ellipsis, message-cancel-message)
12812         (message-add-header, message-change-subject)
12813         (message-cross-post-followup-to-header)
12814         (message-cross-post-insert-note, message-reduce-to-to-cc)
12815         (message-widen-reply, message-delete-not-region)
12816         (message-kill-to-signature, message-insert-signature)
12817         (message-insert-importance-high, message-insert-importance-low)
12818         (message-insert-or-toggle-importance)
12819         (message-insert-disposition-notification-to)
12820         (message-indent-citation, message-yank-original)
12821         (message-cite-original-without-signature, message-cite-original)
12822         (message-insert-citation-line, message-position-on-field)
12823         (message-fix-before-sending, message-send-mail-partially)
12824         (message-send-mail, message-send-mail-with-sendmail)
12825         (message-send-mail-with-qmail, message-send-news)
12826         (message-check-news-header-syntax, message-generate-headers)
12827         (message-insert-courtesy-copy, message-fill-address)
12828         (message-fill-header, message-shorten-references)
12829         (message-setup-1, message-cancel-news)
12830         (message-forward-make-body-plain, message-forward-make-body-mime)
12831         (message-forward-make-body-mml, message-encode-message-body)
12832         (message-forward-make-body-digest-plain)
12833         (message-forward-make-body-digest-mime)
12834         (message-use-alternative-email-as-from): Insert `hard-newline'
12835         instead of ordinary newlines.
12836
12837 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12838
12839         * message.el (message-generate-headers): Downcase the argument
12840         given to message-check-element.
12841
12842 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
12843
12844         * nntp.el (nntp-authinfo-rejected): New error condition.
12845         (nntp-wait-for): Use new error condition to signal authentication
12846         error.
12847         (nntp-retrieve-data): Rethrow new error condition to break out of
12848         recursive call to nntp-send-authinfo.
12849
12850 2005-11-08  Romain Francoise  <romain@orebokech.com>
12851
12852         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
12853         (gnus-summary-exit-map): Bind to `Z p'.
12854         (gnus-summary-make-menu-bar): Add menu item.
12855
12856 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
12857
12858         * gnus-art.el (gnus-article-treat-custom): Add `first'.
12859         (gnus-treat-*): Add `first' in all doc strings.
12860
12861         * gnus-group.el (gnus-group-compact-group): Fix typo.
12862
12863 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12864
12865         * gnus.el (gnus-parameters-case-fold-search): New variable.
12866         (gnus-parameters-get-parameter): Use it.
12867
12868         * gnus-score.el (gnus-home-score-file): Doc fix.
12869
12870 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
12871
12872         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
12873
12874 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12875
12876         * mm-util.el (mm-special-display-p): New function.
12877
12878         * mml.el (mml-preview): Use it; doc fix.
12879
12880 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
12881
12882         * imap.el (imap-open): Handle case where buffer is a buffer object.
12883
12884 2005-10-29  Romain Francoise  <romain@orebokech.com>
12885
12886         * message.el (message-fix-before-sending): Fix comment.
12887
12888 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
12889
12890         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
12891
12892 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
12893
12894         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
12895         Used in gnus-score.el.
12896
12897 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
12898
12899         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
12900
12901 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
12902
12903         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
12904         whitespace removed in revision 7.8.  Use concatenated string to
12905         protect trailing whitespace.
12906
12907 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
12908
12909         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
12910         (nnimap-request-expire-articles): Use it to avoid sending 'UID
12911         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
12912         Courier IMAP ("some version from 2004").  Mostly based on similar
12913         code in the same function.
12914
12915 2005-10-26  Didier Verna  <didier@xemacs.org>
12916
12917         * gnus-group.el (gnus-group-compact-group): Invalidate original
12918         article buffer.
12919         * gnus-srvr.el (gnus-server-compact-server): Ditto.
12920         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
12921         NOV database and in article itself.
12922         Invalidate article backlog.
12923
12924 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12925
12926         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
12927
12928 2005-10-26  Simon Josefsson  <jas@extundo.com>
12929
12930         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
12931         part of 2004-07-25 change.
12932
12933 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12934
12935         * message.el (message-display-completion-list): New function.
12936         (message-expand-group): Use it; make sure the Completions buffer
12937         is modifiable.
12938 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
12939
12940         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
12941         user-mail-name is an empty string.
12942
12943 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12944
12945         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
12946         depending on gnus-score-decay-constant.
12947
12948         * encrypt.el (encrypt-insert-file-contents)
12949         (encrypt-write-file-contents): Don't use `gnus-message'.
12950
12951         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
12952         arguments.
12953         (mm-uu-type-alist): Add message-marks and insert-marks.
12954         Pass arguments to mm-uu-verbatim-marks-extract.
12955         (mm-uu-hide-markers): New variable.
12956         (mm-uu-extract): Use face similar to `gnus-cite-3'.
12957
12958         * gnus-fun.el (gnus-convert-image-to-x-face-command)
12959         (gnus-convert-image-to-face-command): Use "convert" by default to
12960         allow other input image formats.
12961         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
12962         accordingly.
12963
12964 2005-10-23  Simon Josefsson  <jas@extundo.com>
12965
12966         * imap.el (imap-gssapi-program): Align command line parameters
12967         with latest GNU SASL.
12968         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
12969
12970 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12971
12972         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
12973         HTML.
12974         (nnslashdot-request-article): Ditto.
12975
12976         * lpath.el (featurep): Add nobreak-char-display.
12977
12978 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
12979
12980         * mail-source.el (mail-source-fetch-pop): Require pop3.
12981         (mail-source-check-pop): Ditto.
12982
12983 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12984
12985         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
12986         errors.
12987
12988 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
12989
12990         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
12991         (gnus-treat-strip-leading-blank-lines): Improve doc string.
12992
12993         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
12994
12995         * mm-bodies.el (mm-decode-string):
12996         Call `mm-charset-to-coding-system' with allow-override argument.
12997
12998 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12999
13000         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
13001         (rfc2047-charset-to-coding-system): New function.
13002         (rfc2047-decode-encoded-words): New function.
13003         (rfc2047-decode-region): Use them.
13004         (rfc2047-decode-cte): Remove.
13005         (rfc2047-parse-and-decode): Remove.
13006         (rfc2047-decode): Remove.
13007
13008 2005-10-15  Kenichi Handa  <handa@m17n.org>
13009
13010         * rfc2047.el (rfc2047-decode-cte): New function.
13011         (rfc2047-decode-region): Change the way to decode successive
13012         encoded-words: decode B- or Q-encoding in each encoded-word,
13013         concatenate them, and decode it as charset.
13014
13015 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13016
13017         * lpath.el: Fbind codepage-setup for XEmacs.
13018
13019 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
13020
13021         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
13022         widget-move-and-invoke.
13023         (gnus-custom-mode): Use gnus-custom-map.
13024
13025 2005-10-15  Bill Wohler  <wohler@newt.com>
13026
13027         * message.el (message-tool-bar-map): Rename image file from
13028         mail_send to mail/send.
13029
13030 2005-10-16  Masatake YAMATO  <jet@gyve.org>
13031
13032         * message.el (message-expand-group): Pass the common
13033         prefix substring of completion to `display-completion-list'.
13034
13035 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
13036
13037         * mml-sec.el (mml-secure-method): New internal variable.
13038         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
13039         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
13040         New functions using mml-secure-method.
13041
13042         * mml.el (mml-mode-map): Add key bindings for those functions.
13043         (mml-menu): Simplify security menu entries.  Suggested by Jesper
13044         Harder <harder@myrealbox.com>.
13045         (mml-attach-file, mml-attach-buffer, mml-attach-external):
13046         Goto end of message if point is the headers of the message.
13047
13048         * message.el (message-in-body-p): New function.
13049
13050         * assistant.el: Autoload gnus-util and netrc.
13051
13052         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
13053         Use `mm-charset-override-alist' only when decoding.
13054
13055         * mm-bodies.el (mm-decode-body):
13056         Call `mm-charset-to-coding-system' with allow-override argument.
13057
13058         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
13059         `filename' from Content-Disposition if Content-Type doesn't
13060         provide `name'.
13061         (gnus-mime-view-part-as-type): Set default instead of
13062         initial-input.
13063
13064 2005-10-09  Daniel Brockman  <daniel@brockman.se>
13065
13066         * format-spec.el (format-spec): Propagate text properties of % spec.
13067
13068 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
13069
13070         * gnus-art.el (gnus-treat-predicate): Add `first'.
13071
13072 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
13073
13074         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
13075         (mm-charset-override-alist): New variable.
13076         (mm-charset-to-coding-system): Use it.
13077         (mm-codepage-setup): New helper function.
13078         (mm-charset-eval-alist): New variable.
13079         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
13080         Warn about unknown charsets.
13081
13082         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
13083
13084 2005-10-04  David Hansen  <david.hansen@gmx.net>
13085
13086         * nnrss.el (nnrss-request-article): Add support for the comments tag.
13087         (nnrss-check-group): Ditto.
13088
13089 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
13090
13091         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
13092         Rename x-gnus-verbatim to x-verbatim.
13093         (mm-uu-type-alist): Fix regexp for verbatim-marks.
13094
13095         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
13096         x-verbatim.
13097
13098         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
13099
13100         * gnus-util.el (gnus-remove-duplicates): Remove.
13101
13102         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
13103         instead of gnus-remove-duplicates.
13104
13105         * message.el (message-remove-duplicates): Remove.
13106         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
13107         message-remove-duplicates.
13108
13109         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
13110         available, else use implementation from `delete-dups'.
13111
13112         * message.el (message-insert-expires): New function.
13113         (message-mode-map): Add key binding.
13114         (message-mode-field-menu): Add menu entry.
13115         (message-mode): Document it.
13116         (message-make-expires-date): Use `message-make-date'.
13117
13118 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
13119
13120         * message.el (message-make-expires-date): New function.
13121
13122 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13123
13124         * Makefile.in (list-installed-shadows): New entry.
13125         (install): Use it.
13126         (remove-installed-shadows): New entry.
13127
13128         * dgnushack.el (dgnushack-default-load-path): New variable.
13129         (dgnushack-find-lisp-shadows): New function.
13130         (dgnushack-remove-lisp-shadows): New function.
13131
13132 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13133
13134         * Makefile.in (install-el-elc): New entry.
13135         (install): Use it so that .el files are necessarily installed.
13136
13137 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13138
13139         * time-date.el: Autoload parse-time-string, XEmacs needs it.
13140
13141 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13142
13143         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
13144         function rather than the diff-mode.el package.
13145         (mm-display-external): Use with-current-buffer.
13146         (mm-viewer-completion-map, mm-viewer-completion-map):
13147         Move initialization inside declaration.
13148
13149 2005-09-29  Simon Josefsson  <jas@extundo.com>
13150
13151         * spam.el: Load hashcash when compiling, to avoid warnings.
13152         Don't autoload mail-check-payment.
13153         (spam-check-hashcash): Define unconditionally, since hashcash.el
13154         is part of Gnus now.  Ignore errors from payment checking.
13155
13156 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
13157
13158         * message.el (message-bold-region, message-unbold-region):
13159         Rename from `bold-region' and `unbold-region'.
13160
13161         * message.el: Remove useless autoloads.
13162
13163 2005-09-28  Simon Josefsson  <jas@extundo.com>
13164
13165         * message.el (message-use-idna): Default to t.
13166         (message-use-idna): Test whether encoding works too.  Doc fix.
13167
13168 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13169
13170         * nntp.el (nntp-warn-about-losing-connection): Remove.
13171
13172 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
13173
13174         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
13175         customizable.  Change default value.
13176         (mm-uu-diff-groups-regexp): Change default value.
13177         (mm-uu-type-alist): Add doc string.
13178         (mm-uu-configure): Add doc string.  Make it interactive.
13179         (mm-uu-tex-groups-regexp): New variable.
13180         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
13181         (mm-uu-type-alist): Add LaTeX documents.
13182         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
13183         of "text/verbatim".
13184         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
13185
13186         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
13187         instead of "text/verbatim".
13188
13189         * message.el (message-mark-inserted-region)
13190         (message-mark-insert-file): Use slrn style marks when called with
13191         prefix argument.
13192
13193 2005-09-27  Simon Josefsson  <jas@extundo.com>
13194
13195         * message.el (message-idna-to-ascii-rhs-1): Reformat.
13196
13197 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
13198
13199         * message.el (message-remove-duplicates): New function.
13200         Implementation borrowed from `gnus-remove-duplicates'.
13201         (message-idna-to-ascii-rhs): Also encode idna addresses in
13202         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
13203         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
13204         only ask about the same idna domain once per header and also tell
13205         in what header to replace the idna domain.
13206
13207         * gnus-art.el (article-decode-idna-rhs): Also decode idna
13208         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
13209         (article-decode-idna-rhs): Fix regexp so that all idna-address in
13210         a header is decoded and not just the last one.
13211
13212 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13213
13214         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
13215         has been decoded.
13216
13217         * mm-decode.el (mm-automatic-display): Add text/verbatim.
13218         (mm-insert-part): Don't modify text if it has been decoded.
13219
13220         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
13221         decoded.
13222
13223         * mm-view.el (mm-inline-text): Don't strip text props unless
13224         decoding enriched or richtext parts.
13225
13226 2005-09-25  Romain Francoise  <romain@orebokech.com>
13227
13228         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
13229         * gnus-start.el (gnus-subscribe-interactively):
13230         * gnus-uu.el (gnus-uu-grab-articles):
13231         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
13232         space.
13233
13234 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
13235
13236         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
13237         * mm-view.el (mm-view-pkcs7-decrypt):
13238         * gnus-sum.el (gnus-summary-limit-to-extra)
13239         (gnus-summary-respool-article, gnus-read-move-group-name):
13240         * gnus-score.el (gnus-summary-increase-score):
13241         * gnus-util.el (gnus-completing-read-with-default):
13242         * gnus-art.el (gnus-read-save-file-name)
13243         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
13244         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
13245         * message.el (message-check-news-header-syntax):
13246         Follow convention for reading with the minibuffer.
13247
13248 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
13249
13250         * spam-report.el (spam-report-url-ping-plain):
13251         Use gnus-extended-version as User-Agent.
13252
13253         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
13254         default value is nil.
13255
13256         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
13257         (mm-uu-verbatim-marks-extract): New function.
13258         (mm-uu-extract): New face.
13259         (mm-uu-copy-to-buffer): Use it.
13260
13261         * spam-report.el (spam-report-gmane-ham): Rename from
13262         `spam-report-gmane-unspam'.
13263         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
13264         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
13265
13266         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
13267         Autoload.
13268         (spam-report-gmane-unregister-routine):
13269         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
13270
13271 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
13272
13273         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
13274         (spam-report-gmane-unregister-routine): Add support for gmane
13275         unregistration.
13276
13277         * spam-report.el (spam-report-gmane-unspam)
13278         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
13279         (spam-report-gmane): Change to take a single article and do unspam
13280         registration.
13281
13282 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13283
13284         * mm-url.el (mm-url-decode-entities): Fix regexp.
13285
13286 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13287
13288         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
13289         default to nil, to be able to use Gnus at all.  If the default
13290         switches to something else, then the function should be fixed not
13291         be exceedingly slow.
13292
13293 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
13294
13295         * gnus-start.el (gnus-activate-group): If the server is nil, don't
13296         fail hard.
13297
13298         * spam-report.el: Add better Keywords line.
13299
13300         * spam.el: Add Maintainer and better Keywords line.
13301
13302 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13303
13304         * gnus-art.el (gnus-article-replace-part)
13305         (gnus-mime-replace-part): New functions.
13306         (gnus-mime-action-alist, gnus-mime-button-commands)
13307         (gnus-mime-save-part-and-strip): Add file argument.
13308         (gnus-article-part-wrapper): Add interactive argument.
13309
13310         * gnus-sum.el (gnus-summary-mime-map):
13311         Add `gnus-article-replace-part'.
13312
13313 2005-09-19  Didier Verna  <didier@xemacs.org>
13314
13315         The nnml compaction feature:
13316         * nnml.el (nnml-request-compact-group): New function.
13317         * nnml.el (nnml-request-compact): New function.
13318         * gnus-int.el (gnus-request-compact-group): New function.
13319         * gnus-int.el (gnus-request-compact): New function.
13320         * gnus-group.el (gnus-group-compact-group): New function.
13321         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
13322         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
13323         * gnus-srvr.el (gnus-server-compact-server): New function.
13324         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
13325         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
13326
13327 2005-09-18  Deepak Goel  <deego@gnufans.org>
13328
13329         * sieve.el (sieve-help): Fix `message' call: first arg should be a
13330         format spec.
13331
13332 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13333
13334         * gnus.el (gnus-group-startup-message): Bind image-load-path.
13335
13336 2005-09-15  Romain Francoise  <romain@orebokech.com>
13337
13338         * message.el (message-fill-paragraph): Clarify docstring.
13339
13340 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13341
13342         * gnus-art.el (gnus-mime-display-part): Protect against broken
13343         MIME messages.
13344
13345 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13346
13347         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
13348         before parsing header.
13349
13350 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
13351
13352         * html2text.el (html2text-replace-list): Add new entities.
13353
13354 2005-09-11  Romain Francoise  <romain@orebokech.com>
13355
13356         * message.el (message-alternative-emails): Improve docstring.
13357         (message-setup-1): Call `message-use-alternative-email-as-from'
13358         after `message-setup-hook' to give it precedence over posting
13359         styles, etc.
13360         (message-use-alternative-email-as-from): Add docstring.
13361         Remove the original From header if present.
13362
13363         * nnml.el (nnml-compressed-files-size-threshold): New variable.
13364         (nnml-save-mail): Use it.
13365
13366         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
13367         articles.  Add new argument `silent'.
13368         (gnus-uu-mark-all): Report the total number of marked articles.
13369
13370 2005-09-10  Romain Francoise  <romain@orebokech.com>
13371
13372         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
13373         (gnus-uu-mark-series): Likewise.
13374
13375 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
13376
13377         * spam-report.el (spam-report-gmane): Fix generation of spam
13378         report URL.
13379
13380 2005-09-10  Simon Josefsson  <jas@extundo.com>
13381
13382         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
13383         t, based on discussion on the ding list with Robert Epprecht
13384         <epprecht@solnet.ch>.
13385
13386 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
13387
13388         * spam-report.el (spam-report-gmane): Make it work without
13389         X-Report-Spam header.  Gmane now only provides Archived-At.
13390         This is only used if `spam-report-gmane-use-article-number' is nil.
13391         (spam-report-gmane-spam-header): Remove.  Not used anymore.
13392
13393         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
13394         make `gnus-summary-sort-by-recipient' work with threading.
13395
13396         * nnweb.el (nnweb-google-wash-article): Print a message if article
13397         is not available.
13398
13399 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13400
13401         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
13402         change.  Decode text/* parts content before displaying.
13403
13404 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
13405
13406         * mml-smime.el: Remove defvar of gnus-extract-address-components.
13407
13408 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13409
13410         * mm-view.el (mm-display-inline-fontify): Disable support modes.
13411
13412         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
13413         url-package-name, url-package-version,
13414         w3m-cid-retrieve-function-alist, w3m-current-buffer,
13415         w3m-display-inline-images, and w3m-minor-mode-map.
13416
13417 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
13418
13419         * message.el (message-tab-body-function): Fix mismatched custom type.
13420
13421         * gnus.el (gnus-group-change-level-function): Ditto.
13422
13423         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
13424
13425         * gnus-art.el (gnus-signature-limit)
13426         (gnus-article-mime-part-function): Ditto.
13427
13428 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13429
13430         * mml.el (mml-mode): Silence the byte compiler.
13431
13432         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
13433         using `(sit-for 0)' before moving the point to the specified part;
13434         skip unbuttonized parts.
13435         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
13436         return to the summary window if gnus-auto-select-part is non-nil.
13437
13438 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
13439
13440         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
13441         New variables.
13442         (mml-dnd-attach-file, mml-mode): Use them.
13443
13444         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
13445         Make fetching article by MID work again for Google Groups.
13446         Add FIXME concerning gnus-group-make-web-group.
13447
13448         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
13449         Don't depend on Gnus by using mail-extract-address-components if
13450         gnus-extract-address-components is not bound.
13451
13452 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13453
13454         * gnus-art.el (gnus-mime-display-security): Don't display the
13455         signature, but only the signed part.
13456
13457 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13458
13459         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
13460
13461         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
13462         list, not listp.
13463
13464 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
13465
13466         * mm-encode.el (mm-encode-content-transfer-encoding):
13467         Likewise when encoding.
13468
13469         * mm-bodies.el (mm-decode-content-transfer-encoding):
13470         De-canonicalize CRLF for all text content types, not just
13471         text/plain.
13472
13473 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13474
13475         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
13476         valid article; point arrow and cursor at the MIME button.
13477
13478 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13479
13480         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
13481         Suggested by Dan Christensen <jdc@uwo.ca>.
13482
13483         * mm-decode.el (mm-save-part): Enable change of prompt.
13484
13485 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
13486
13487         * gnus-msg.el (gnus-inews-add-send-actions):
13488         Make `message-post-method' lambda parameter ARG `&optional'.
13489
13490 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
13491
13492         * gnus-sum.el (gnus-summary-mime-map):
13493         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
13494         gnus-article-jump-to-part.
13495
13496         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
13497         (gnus-article-edit-part): Use it.
13498         (gnus-article-part-wrapper): Add no-handle argument.
13499         (gnus-article-save-part-and-strip, gnus-article-delete-part):
13500         New functions.
13501
13502 2005-08-29  Romain Francoise  <romain@orebokech.com>
13503
13504         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
13505         docstring.
13506         (gnus-face-from-file): Likewise.
13507
13508 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
13509
13510         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
13511         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
13512         non-nil.
13513         (gnus-auto-select-part): New variable.
13514         (gnus-article-jump-to-part): New function.
13515         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
13516         (gnus-mime-delete-part): Allow selecting specified part after
13517         deleting or stripping parts.
13518         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
13519         part if argument is bogus.
13520
13521 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
13522
13523         * gnus-art.el (w3m-minor-mode-map):
13524         * gnus-spec.el (gnus-newsrc-file-version):
13525         * gnus-util.el (nnmail-active-file-coding-system)
13526         (gnus-original-article-buffer, gnus-user-agent):
13527         * gnus.el (gnus-ham-process-destinations)
13528         (gnus-parameter-ham-marks-alist)
13529         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
13530         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
13531         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
13532         * mm-decode.el (gnus-current-window-configuration):
13533         * mm-extern.el (gnus-article-mime-handles):
13534         * mm-url.el (url-current-object, url-package-name)
13535         (url-package-version):
13536         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
13537         (smime-keys, w3m-cid-retrieve-function-alist)
13538         (w3m-current-buffer, w3m-display-inline-images)
13539         (w3m-minor-mode-map):
13540         * mml-smime.el (gnus-extract-address-components):
13541         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
13542         (gnus-newsrc-hashtb, message-default-charset)
13543         (message-deletable-headers, message-options)
13544         (message-posting-charset, message-required-mail-headers)
13545         (message-required-news-headers):
13546         * mml1991.el (mc-pgp-always-sign):
13547         * mml2015.el (mc-pgp-always-sign):
13548         * nnheader.el (nnmail-extra-headers):
13549         * rfc1843.el (gnus-decode-encoded-word-function)
13550         (gnus-decode-header-function, gnus-newsgroup-name):
13551         * spam-stat.el (gnus-original-article-buffer): Add defvars.
13552
13553 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
13554
13555         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
13556         the end of the date treatments.
13557
13558 2005-08-15  Simon Josefsson  <jas@extundo.com>
13559
13560         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
13561         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
13562         Capello and Romain Francoise.
13563         (pgg-fetch-key-function): Remove, not used?
13564         (pgg-insert-url-with-w3): Require url, to get
13565         url-insert-file-contents regardless of where it is defined.
13566
13567 2005-08-13  Romain Francoise  <romain@orebokech.com>
13568
13569         * message.el (message-cite-original-1): New function.
13570         (message-cite-original): Use it.
13571         (message-cite-original-without-signature): Ditto.
13572
13573 2005-08-08  Romain Francoise  <romain@orebokech.com>
13574
13575         * message.el (message-yank-empty-prefix): New variable.
13576         (message-indent-citation): Use it.
13577         (message-cite-original-without-signature): Respect X-No-Archive.
13578
13579 2005-08-08  Simon Josefsson  <jas@extundo.com>
13580
13581         * pgg.el: Autoload url-insert-file-contents instead of loading
13582         w3/url.
13583         (pgg-insert-url-with-w3): Don't load url here.
13584
13585 2005-08-07  Jesper Harder  <harder@phys.au.dk>
13586
13587         * message.el (message-kill-to-signature): Don't insert newline at
13588         bol.
13589         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
13590
13591 2005-08-06  Romain Francoise  <romain@orebokech.com>
13592
13593         * message.el (message-user-fqdn): Fix typo in docstring.
13594
13595 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
13596
13597         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
13598
13599         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
13600
13601 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13602
13603         * mm-bodies.el (mm-encode-body): Use coding system rather than
13604         charset to encode text.
13605
13606         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
13607         number of charsets if utf-8 is available (XEmacs).
13608
13609 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
13610
13611         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
13612         taken from `gnus-button-mid-or-mail-regexp'.
13613         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
13614         (gnus-button-alist): Improve regexp for domain part of the MIDs
13615         for news:localpart@domain buttons.
13616         (gnus-button-ctan-directory-regexp): Update.
13617
13618 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13619
13620         * sieve-manage.el (sieve-manage-interactive-login):
13621         Use make-local-variable rather than make-variable-buffer-local.
13622         (sieve-manage-open): Ditto.
13623         (sieve-manage-authenticate): Ditto.
13624
13625         * mml.el (mml-generate-mime-1): Make the content type default to
13626         text/plain if the filename is not specified.
13627
13628 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13629
13630         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
13631         instead of insert-buffer.
13632
13633         * message.el (message-yank-original): Ditto; set the mark at the
13634         end of the yanked message.
13635
13636 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13637
13638         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
13639         lines to scroll rather than to stop it.
13640
13641         * mml.el (mml-generate-default-type): Add doc string.
13642         (mml-generate-mime-1): Use mm-default-file-encoding or make it
13643         default to application/octet-stream when determining the content
13644         type if it is not specified for the part or the mml contents; add
13645         a comment about mml-generate-default-type.
13646
13647 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
13648
13649         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
13650         make it default to application/octet-stream when determining the
13651         content type if it is not specified for the external contents.
13652
13653 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13654
13655         * rfc2231.el (rfc2231-parse-string): Take care that not only a
13656         segmented parameter but also other parameters might be there.
13657
13658 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13659
13660         * mm-decode.el (mm-display-external): Delete temp file, directory
13661         and buffer immediately if the external process is exited.
13662
13663 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13664
13665         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
13666         fewer lines than that of scroll-margin.
13667         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
13668
13669 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13670
13671         * gnus-art.el (gnus-article-next-page): Revert.
13672         (gnus-article-beginning-of-window): New macro.
13673         (gnus-article-next-page-1): Use it.
13674         (gnus-article-prev-page): Ditto.
13675         (gnus-article-edit-part): Use insert-buffer-substring instead of
13676         insert-buffer.
13677         (gnus-article-edit-exit): Ditto.
13678
13679         * gnus-util.el (gnus-beginning-of-window): Remove.
13680         (gnus-end-of-window): Remove.
13681
13682         * lpath.el: Don't bind header-line-format and scroll-margin.
13683
13684 2005-07-25  Simon Josefsson  <jas@extundo.com>
13685
13686         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
13687         to have the url package without w3.  Reported by Daiki Ueno
13688         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
13689
13690 2005-07-20  Didier Verna  <didier@xemacs.org>
13691
13692         * gnus-diary.el: Remove the description comment (nndiary is now
13693         properly documented in the Gnus manual).
13694         Fix the spelling of "Back End".
13695         * nndiary.el: Ditto.
13696         Fix the copyright notice.
13697
13698 2005-07-18  Romain Francoise  <romain@orebokech.com>
13699
13700         * gnus-sum.el (gnus-summary-to-prefix)
13701         (gnus-summary-newsgroup-prefix): New variables.
13702         (gnus-summary-from-or-to-or-newsgroups): Use them.
13703
13704 2005-07-17  Romain Francoise  <romain@orebokech.com>
13705
13706         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
13707         space as it's generally not especially interesting to the user.
13708
13709 2005-07-16  Romain Francoise  <romain@orebokech.com>
13710
13711         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
13712         nil to avoid prompting and file modification if one of the
13713         messages at the top of the nnfolder file contains a copyright
13714         notice.
13715         Update copyright notice.
13716
13717         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
13718         instead of `current-time-string' as the latter creates a time
13719         string that is not RFC 2822 compliant (it lacks the zone).
13720         Update copyright notice.
13721
13722 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13723
13724         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
13725         for text/rtf.  Display default in prompt.  Pass default for M-n.
13726
13727         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
13728
13729 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13730
13731         * gnus-msg.el (gnus-button-mailto):
13732         Remove save-selected-window-window hackery because it relies on
13733         save-selected-window internals.
13734
13735 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13736
13737         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
13738         (gnus-article-next-page-1): Use gnus-beginning-of-window.
13739         (gnus-article-prev-page): Ditto.
13740
13741         * gnus-util.el (gnus-beginning-of-window): New function.
13742         (gnus-end-of-window): New function.
13743
13744         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
13745
13746 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
13747
13748         * gnus-score.el (gnus-score-edit-all-score):
13749         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
13750         gnus-message.
13751
13752 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13753
13754         * gnus-msg.el (gnus-button-mailto):
13755         Remove save-selected-window-window hackery because it relies on
13756         save-selected-window internals.
13757
13758 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13759
13760         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
13761         add-minor-mode.
13762         (gnus-binary-mode): Ditto.
13763
13764         * gnus-topic.el (gnus-topic-mode): Ditto.
13765
13766 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
13767
13768         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
13769         (gnus-article-prev-page): Take scroll-margin into consideration.
13770
13771 2005-07-04  Lute Kamstra  <lute@gnu.org>
13772
13773         Update FSF's address in GPL notices.
13774
13775 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
13776
13777         * gnus.el (gnus-exit):
13778         * gnus-group.el (gnus-group-icons):
13779         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
13780
13781         * gnus-nocem.el (gnus-nocem):
13782         * message.el (message-various, message-buffers, message-sending)
13783         (message-interface, message-forwarding, message-insertion)
13784         (message-headers, message-news, message-mail):
13785         * pgg-gpg.el (pgg-gpg):
13786         * pgg-parse.el (pgg-parse):
13787         * pgg-pgp.el (pgg-pgp):
13788         * pgg-pgp5.el (pgg-pgp5):
13789         * pop3.el (pop3): Finish `defgroup' description with period.
13790
13791 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13792
13793         * gnus-art.el (article-display-face): Improve the efficiency.
13794         (article-display-x-face): Ditto; remove grey x-face stuff.
13795
13796 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13797
13798         * gnus-art.el (article-display-face): Correct the position in
13799         which Faces are inserted.
13800
13801 2005-06-29  Didier Verna  <didier@xemacs.org>
13802
13803         * gnus-art.el (article-display-face): Display faces in correct
13804         order.
13805
13806 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13807
13808         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
13809         (gnus-fill-real-hashtb): Use hash table instead of obarray.
13810         (gnus-nocem-check-article): Fetch the Type header.
13811         (gnus-nocem-message-wanted-p): Fix the way to examine types.
13812         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
13813         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
13814         make sure gnus-nocem-hashtb is initialized.
13815         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
13816         (gnus-nocem-unwanted-article-p): Ditto.
13817
13818         * pgg.el (pgg-verify): Return the verification result.
13819
13820 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13821
13822         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
13823         is ascii.
13824
13825 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
13826
13827         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
13828         `show-nonbreak-escape'.
13829
13830 2005-06-23  Lute Kamstra  <lute@gnu.org>
13831
13832         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
13833
13834         * dig.el (dig-mode):
13835         * smime.el (smime-mode): Use gnus-run-mode-hooks.
13836
13837 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
13838
13839         * nnimap.el (nnimap-split-download-body): Fix spellings.
13840
13841 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
13842
13843         * gnus-art.el (gnus-article-encrypt-body):
13844         * gnus-cus.el (gnus-score-customize):
13845         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
13846         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
13847
13848 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
13849
13850         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
13851         header by looking for magic "MII" at the beginnig.
13852
13853 2005-06-16  Miles Bader  <miles@gnu.org>
13854
13855         * gnus-xmas.el (gnus-xmas-group-startup-message):
13856         Use renamed gnus-splash face.
13857
13858         * assistant.el (assistant-field): Remove "-face" suffix from face name.
13859         (assistant-field-face): New backward-compatibility alias for renamed
13860         face.
13861         (assistant-render-text): Use renamed assistant-field face.
13862
13863         * spam.el (spam): Remove "-face" suffix from face name.
13864         (spam-face): New backward-compatibility alias for renamed face.
13865         (spam-face, spam-initialize): Use renamed spam face.
13866
13867         * message.el (message-header-to, message-header-cc)
13868         (message-header-subject, message-header-newsgroups)
13869         (message-header-other, message-header-name)
13870         (message-header-xheader, message-separator, message-cited-text)
13871         (message-mml): Remove "-face" suffix from face names.
13872         (message-header-to-face, message-header-cc-face)
13873         (message-header-subject-face, message-header-newsgroups-face)
13874         (message-header-other-face, message-header-name-face)
13875         (message-header-xheader-face, message-separator-face)
13876         (message-cited-text-face, message-mml-face):
13877         New backward-compatibility aliases for renamed faces.
13878         (message-font-lock-keywords): Use renamed message faces.
13879
13880         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
13881         (sieve-test-commands, sieve-tagged-arguments):
13882         Remove "-face" suffix from face names.
13883         (sieve-control-commands-face, sieve-action-commands-face)
13884         (sieve-test-commands-face, sieve-tagged-arguments-face):
13885         New backward-compatibility aliases for renamed faces.
13886         (sieve-control-commands-face, sieve-action-commands-face)
13887         (sieve-test-commands-face, sieve-tagged-arguments-face):
13888         Use renamed sieve faces.
13889
13890         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
13891         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
13892         (gnus-group-news-3-empty, gnus-group-news-4)
13893         (gnus-group-news-4-empty, gnus-group-news-5)
13894         (gnus-group-news-5-empty, gnus-group-news-6)
13895         (gnus-group-news-6-empty, gnus-group-news-low)
13896         (gnus-group-news-low-empty, gnus-group-mail-1)
13897         (gnus-group-mail-1-empty, gnus-group-mail-2)
13898         (gnus-group-mail-2-empty, gnus-group-mail-3)
13899         (gnus-group-mail-3-empty, gnus-group-mail-low)
13900         (gnus-group-mail-low-empty, gnus-summary-selected)
13901         (gnus-summary-cancelled, gnus-summary-high-ticked)
13902         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
13903         (gnus-summary-high-ancient, gnus-summary-low-ancient)
13904         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
13905         (gnus-summary-low-undownloaded)
13906         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
13907         (gnus-summary-low-unread, gnus-summary-normal-unread)
13908         (gnus-summary-high-read, gnus-summary-low-read)
13909         (gnus-summary-normal-read, gnus-splash):
13910         Remove "-face" suffix from face names.
13911         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
13912         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
13913         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
13914         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
13915         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
13916         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
13917         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
13918         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
13919         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
13920         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
13921         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
13922         (gnus-summary-selected-face, gnus-summary-cancelled-face)
13923         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
13924         (gnus-summary-normal-ticked-face)
13925         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
13926         (gnus-summary-normal-ancient-face)
13927         (gnus-summary-high-undownloaded-face)
13928         (gnus-summary-low-undownloaded-face)
13929         (gnus-summary-normal-undownloaded-face)
13930         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
13931         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
13932         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
13933         (gnus-splash-face):
13934         New backward-compatibility aliases for renamed faces.
13935         (gnus-group-startup-message): Use renamed gnus faces.
13936
13937         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
13938         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
13939         (gnus-server-agent): Remove "-face" suffix from face names.
13940         (gnus-server-agent-face, gnus-server-opened-face)
13941         (gnus-server-closed-face, gnus-server-denied-face)
13942         (gnus-server-offline-face):
13943         New backward-compatibility aliases for renamed faces.
13944         (gnus-server-agent-face, gnus-server-opened-face)
13945         (gnus-server-closed-face, gnus-server-denied-face)
13946         (gnus-server-offline-face): Use renamed gnus faces.
13947
13948         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
13949         Remove "-face" suffix from face names.
13950         (gnus-picon-xbm-face, gnus-picon-face):
13951         New backward-compatibility aliases for renamed faces.
13952
13953         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
13954         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
13955         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
13956         (gnus-cite-11): Remove "-face" suffix from face names.
13957         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
13958         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
13959         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
13960         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
13961         New backward-compatibility aliases for renamed faces.
13962         (gnus-cite-attribution-face, gnus-cite-face-list)
13963         (gnus-article-boring-faces): Use renamed gnus faces.
13964
13965         * gnus-art.el (gnus-signature, gnus-header-from)
13966         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
13967         (gnus-header-content): Remove "-face" suffix from face names.
13968         (gnus-signature-face, gnus-header-from-face)
13969         (gnus-header-subject-face, gnus-header-newsgroups-face)
13970         (gnus-header-name-face, gnus-header-content-face):
13971         New backward-compatibility aliases for renamed faces.
13972         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
13973
13974         * gnus-sum.el (gnus-summary-selected-face)
13975         (gnus-summary-highlight): Use renamed gnus faces.
13976         * gnus-group.el (gnus-group-highlight): Likewise.
13977
13978 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
13979
13980         * gnus-sieve.el (gnus-sieve-article-add-rule):
13981         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
13982         * spam-stat.el (spam-stat-buffer-change-to-spam)
13983         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
13984
13985         * message.el (message-is-yours-p):
13986         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
13987
13988 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13989
13990         * mm-view.el (mm-inline-text): Withdraw the last change.
13991
13992 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13993
13994         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
13995         executing enriched-decode.
13996
13997 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13998
13999         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
14000         charset of tar files.
14001
14002 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
14003
14004         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
14005
14006 2005-06-04  Lute Kamstra  <lute@gnu.org>
14007
14008         * nnfolder.el (nnfolder-read-folder): Make sure that undo
14009         information is never recorded.
14010
14011 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14012
14013         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
14014
14015 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14016
14017         * pop3.el (pop3-apop): Run md5 in the binary mode.
14018
14019         * starttls.el (starttls-set-process-query-on-exit-flag):
14020         Use eval-and-compile.
14021
14022 2005-05-31  Simon Josefsson  <jas@extundo.com>
14023
14024         * smime.el (smime-replace-in-string): Define.
14025         (smime-cert-by-ldap-1): Use it.
14026
14027 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14028
14029         * gnus-art.el (article-display-x-face): Replace
14030         process-kill-without-query by gnus-set-process-query-on-exit-flag.
14031
14032         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
14033         set-process-query-on-exit-flag or process-kill-without-query.
14034
14035         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
14036         loop instead of replace-regexp.
14037
14038         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
14039         instead of process-kill-without-query if it is available.
14040
14041         * lpath.el: Fbind ldap-search-entries.
14042
14043         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
14044         instead of find-file-hooks if it is available.
14045
14046         * mml1991.el: Bind pgg-default-user-id when compiling.
14047
14048         * mml2015.el: Bind pgg-default-user-id when compiling.
14049
14050         * nndraft.el (nndraft-request-associate-buffer):
14051         Use write-contents-functions instead of write-contents-hooks if it is
14052         available.
14053
14054         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
14055         instead of find-file-hooks if it is available.
14056
14057         * nntp.el (nntp-open-connection): Replace
14058         process-kill-without-query by gnus-set-process-query-on-exit-flag.
14059         (nntp-open-ssl-stream): Ditto.
14060         (nntp-open-tls-stream): Ditto.
14061
14062         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
14063         set-process-query-on-exit-flag or process-kill-without-query.
14064         (starttls-open-stream-gnutls): Use it instead of
14065         process-kill-without-query.
14066         (starttls-open-stream): Ditto.
14067
14068 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
14069
14070         * smime.el (smime-cert-by-ldap-1): Don't use
14071         replace-regexp-in-string.
14072
14073 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
14074
14075         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
14076
14077         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
14078         in PEM format.  Adjust to the XEmacs compability.
14079
14080 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
14081
14082         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
14083         by `string-to-number'.
14084         * gnus-agent.el (gnus-agent-regenerate-group)
14085         (gnus-agent-fetch-articles): Ditto.
14086         * gnus-art.el (gnus-button-fetch-group): Ditto.
14087         * gnus-cache.el (gnus-cache-generate-active)
14088         (gnus-cache-articles-in-group): Ditto.
14089         * gnus-group.el (gnus-group-set-current-level)
14090         (gnus-group-insert-group-line): Ditto.
14091         * gnus-score.el (gnus-score-set-expunge-below)
14092         (gnus-score-set-mark-below, gnus-summary-score-effect)
14093         (gnus-summary-score-entry): Ditto.
14094         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
14095         (gnus-soup-pack): Ditto.
14096         * gnus-spec.el (gnus-xmas-format): Ditto.
14097         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
14098         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
14099         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
14100         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
14101         * nndb.el (nndb-get-remote-expire-response): Ditto.
14102         * nndiary.el (nndiary-parse-schedule-value)
14103         (nndiary-string-to-number, nndiary-request-replace-article)
14104         (nndiary-request-article): Ditto.
14105         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
14106         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
14107         * nneething.el (nneething-make-head): Ditto.
14108         * nnfolder.el (nnfolder-request-article)
14109         (nnfolder-retrieve-headers): Ditto.
14110         * nnheader.el (nnheader-file-to-number): Ditto.
14111         * nnkiboze.el (nnkiboze-request-article): Ditto.
14112         * nnmail.el (nnmail-process-unix-mail-format)
14113         (nnmail-process-babyl-mail-format): Ditto.
14114         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
14115         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
14116         (nnmh-request-create-group, nnmh-request-list-1)
14117         (nnmh-request-group, nnmh-request-article): Ditto.
14118         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
14119         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
14120         * nnsoup.el (nnsoup-make-active): Ditto.
14121         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
14122         * nntp.el (nntp-find-group-and-number)
14123         (nntp-retrieve-headers-with-xover): Ditto.
14124         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
14125         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
14126         (pgg-format-key-identifier): Ditto.
14127         * pop3.el (pop3-last, pop3-stat): Ditto.
14128         * qp.el (quoted-printable-decode-region): Ditto.
14129
14130         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
14131         of concat.
14132
14133 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14134
14135         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
14136
14137         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
14138
14139         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
14140
14141         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
14142
14143         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
14144
14145         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
14146
14147         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
14148         (gnus-carpal-mode): Ditto.
14149
14150         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
14151         (gnus-browse-mode): Ditto.
14152
14153         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
14154
14155         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
14156
14157 2005-05-29  Richard M. Stallman  <rms@gnu.org>
14158
14159         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
14160
14161 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14162
14163         * gnus-util.el (gnus-run-mode-hooks): New function.
14164
14165         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
14166
14167         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
14168         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
14169
14170 2005-05-27  Lute Kamstra  <lute@gnu.org>
14171
14172         * dns-mode.el (dns-mode): Specify customization group.
14173
14174 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
14175
14176         * gnus-agent.el (gnus-agent-make-mode-line-string):
14177         Use mode-line-highlight as mouse-face.
14178
14179 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14180
14181         * canlock.el (canlock): Change the parent group to news.
14182
14183         * deuglify.el (gnus-outlook-deuglify): Add :group.
14184
14185         * dig.el (dig): Add :group.
14186
14187         * dns-mode.el (dns-mode): Add :group.
14188
14189         * encrypt.el (encrypt): Add :group.
14190
14191         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
14192         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
14193         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
14194         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
14195         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
14196
14197         * gnus-diary.el (gnus-diary): Add :group.
14198
14199         * gnus.el (gnus-group-news-1-face): Add :group.
14200         (gnus-group-news-1-empty-face): Ditto.
14201         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
14202         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
14203         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
14204         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
14205         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
14206         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
14207         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
14208         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
14209         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
14210         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
14211         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
14212         (gnus-summary-high-ticked-face): Ditto.
14213         (gnus-summary-low-ticked-face): Ditto.
14214         (gnus-summary-normal-ticked-face): Ditto.
14215         (gnus-summary-high-ancient-face): Ditto.
14216         (gnus-summary-low-ancient-face): Ditto.
14217         (gnus-summary-normal-ancient-face): Ditto.
14218         (gnus-summary-high-undownloaded-face): Ditto.
14219         (gnus-summary-low-undownloaded-face): Ditto.
14220         (gnus-summary-normal-undownloaded-face): Ditto.
14221         (gnus-summary-high-unread-face): Ditto.
14222         (gnus-summary-low-unread-face): Ditto.
14223         (gnus-summary-normal-unread-face): Ditto.
14224         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
14225         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
14226
14227         * hashcash.el (hashcash): New custom group.
14228         (hashcash-default-payment): Add :group.
14229         (hashcash-payment-alist): Ditto.
14230         (hashcash-default-accept-payment): Ditto.
14231         (hashcash-accept-resources): Ditto.
14232         (hashcash-path): Ditto.
14233         (hashcash-extra-generate-parameters): Ditto.
14234         (hashcash-double-spend-database): Ditto.
14235         (hashcash-in-news): Ditto.
14236
14237         * message.el (message-minibuffer-local-map): Add :group.
14238
14239         * netrc.el (netrc): Add :group.
14240
14241         * sieve-manage.el (sieve-manage-log): Add :group.
14242         (sieve-manage-default-user): Diito.
14243         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
14244         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
14245         (sieve-manage-authenticators): Ditto.
14246         (sieve-manage-authenticator-alist): Ditto.
14247         (sieve-manage-default-port): Ditto.
14248
14249         * sieve-mode.el (sieve-control-commands-face): Add :group.
14250         (sieve-action-commands-face): Ditto.
14251         (sieve-test-commands-face): Ditto.
14252         (sieve-tagged-arguments-face): Ditto.
14253
14254         * smime.el (smime): Add :group.
14255
14256         * spam-report.el (spam-report): Add :group.
14257
14258         * spam.el (spam, spam-face): Add :group.
14259
14260 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14261
14262         * nntp.el (nntp-next-result-arrived-p): Some news servers may
14263         return \n.\n.\n at the end of articles.  Protect against that.
14264         (nntp-with-open-group): Allow debugging.
14265
14266         * nnheader.el (mail-header-set-extra): Make into a function
14267         because I just could't understand how to quote the list properly.
14268
14269         * dns.el (query-dns-cached): New function.
14270
14271 2005-05-26  Lute Kamstra  <lute@gnu.org>
14272
14273         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
14274
14275 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14276
14277         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
14278
14279         * gnus-art.el: Don't autoload mail-extract-address-components.
14280
14281         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
14282         eval-and-compile to evaluate it.
14283
14284         * hashcash.el: Don't autoload executable-find.
14285
14286         * nndb.el: Don't declare the nndb back end two or more times; don't
14287         autoload news-reply-mode, news-setup, cancel-timer and telnet.
14288
14289         * nntp.el: Autoload format-spec instead of format; use
14290         eval-and-compile to evaluate autoload forms.
14291
14292 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
14293
14294         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
14295
14296 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14297
14298         * gnus.el (gnus-version-number): Bump version.
14299
14300 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14301
14302         * gnus.el: No Gnus v0.3 is released.
14303
14304 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14305
14306         * lpath.el (featurep): Bind show-nonbreak-escape.
14307
14308 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14309
14310         * gnus-art.el (gnus-article-edit-part): Disable undo.
14311
14312 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14313
14314         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
14315         gnus-article-date-lapsed-new-header is t if date timer is active;
14316         skip headers in which the original date value is empty.
14317         (gnus-article-save-original-date): Redefine it as a macro.
14318         (gnus-display-mime): Use it.
14319
14320 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14321
14322         * gnus-art.el (article-date-ut): Support converting date in
14323         forwarded parts as well.
14324         (gnus-article-save-original-date): New function.
14325         (gnus-display-mime): Use it.
14326
14327 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
14328
14329         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
14330         enclosure element of <item>.
14331
14332 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
14333
14334         * message.el (message-kill-buffer-query): Rename from
14335         `message-kill-buffer-query-if-modified'.  Add :version.
14336
14337 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14338
14339         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
14340         window layout.
14341
14342 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14343
14344         * mml.el: Autoload dnd when compiling.
14345
14346 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
14347
14348         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
14349         x-dnd-*.
14350
14351 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14352
14353         * qp.el (quoted-printable-encode-region): Save excursion.
14354
14355 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
14356
14357         * message.el (message-kill-buffer-query-if-modified): Add new variable
14358         so the user can kill a modified message buffer quickly.
14359         (message-kill-buffer): Use it.
14360
14361 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14362
14363         * lpath.el: Fbind display-time-event-handler; don't fbind
14364         string-to-multibyte.
14365
14366         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
14367
14368 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14369
14370         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
14371         contained in text because xml.el decodes entities) with LFs.
14372
14373 2005-04-11  Lute Kamstra  <lute@gnu.org>
14374
14375         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
14376         differently.
14377
14378 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14379
14380         * mm-util.el (mm-detect-coding-region): Typo.
14381
14382 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14383
14384         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
14385
14386 2005-04-06  Deepak Goel  <deego@gnufans.org>
14387
14388         * spam-stat.el (spam-stat-score-buffer): Add a call to a
14389         user-function allow user modifications of the scores.
14390         (spam-stat-score-buffer-user): New function, to allow
14391         user-computed modifications to the score.
14392         (spam-stat-score-buffer-user-functions): List of additional
14393         scoring functions.
14394         (spam-stat-error-holder): Global temporary error holder.
14395         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
14396         variable.
14397
14398 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
14399
14400         * gnus-registry.el (gnus-registry-clean-empty-function)
14401         (gnus-registry-trim, gnus-registry-fetch-groups)
14402         (gnus-registry-delete-group): Groups that match
14403         `gnus-registry-ignored-groups' are removed from the registry
14404         entries, not just ignored for splitting.  This helps clean up the
14405         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
14406         to get all the groups a message ID is in.
14407
14408         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
14409         (spam-stat-split-fancy): Change "threshhold" to "threshold".
14410         (spam-stat-score-buffer-user-functions): Add :number custom type.
14411
14412 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14413
14414         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
14415         argument in XEmacs.
14416
14417         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
14418         (nnrss-request-group): Decode group name first.
14419         (nnrss-request-article): Make a text/plain article if mml-to-mime
14420         failed.
14421         (nnrss-get-encoding): Return a compatible encoding according to
14422         nnrss-compatible-encoding-alist.
14423         (nnrss-find-el): Use consp instead of listp.
14424         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
14425
14426 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14427
14428         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
14429         which Emacs 20 doesn't support.
14430         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
14431
14432 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
14433
14434         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
14435         silence the byte compiler inside the defun.
14436
14437         * gnus-demon.el (parse-time-string): Add autoload.
14438
14439         * gnus-delay.el (parse-time-string): Add autoload.
14440
14441         * gnus-art.el (parse-time-string): Add autoload.
14442
14443         * nnultimate.el (parse-time): Require for `parse-time-string'.
14444
14445 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
14446
14447         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
14448
14449         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
14450
14451         * smime.el (smime-ldap-host-list): Add :version.
14452
14453 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
14454
14455         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
14456         pass it to `gnus-browse-read-group'.
14457         (gnus-browse-read-group): Add NUMBER argument and pass it to
14458         `gnus-group-read-ephemeral-group'.
14459
14460         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
14461         argument and pass it to `gnus-group-read-group'.
14462
14463 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
14464
14465         * mm-util.el (mm-xemacs-find-mime-charset): Only call
14466         mm-xemacs-find-mime-charset-1 if we have the mule feature
14467         available at runtime.
14468
14469 2005-03-25  Werner Lemberg  <wl@gnu.org>
14470
14471         * nnmaildir.el: Replace `illegal' with `invalid'.
14472
14473 2005-03-23  Lute Kamstra  <lute@gnu.org>
14474
14475         * time-date.el: Add comment on time value formats.
14476         Don't require parse-time.
14477         (with-decoded-time-value): New macro.
14478         (encode-time-value): New function.
14479         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
14480         (days-to-time): Return a valid time value when arg is huge.
14481         (time-since): Use time-subtract.
14482         (time-to-number-of-days): Use time-to-seconds.
14483
14484 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14485
14486         * gnus-start.el (gnus-display-time-event-handler):
14487         Check display-time-timer at runtime rather than only at load time
14488         in case display-time-mode is turned off in the mean time.
14489
14490 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
14491
14492         * nnimap.el (nnimap-open-connection): Print which authinfo file is
14493         used.
14494
14495         * nneething.el (nneething-map-file-directory): Derive from
14496         `gnus-directory'.
14497
14498         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
14499         the To/Cc button.
14500
14501 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
14502
14503         * nnmaildir.el (nnmaildir-request-accept-article):
14504         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
14505
14506 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
14507
14508         * gnus-async.el: Require timer-funcs at compile time when in
14509         XEmacs for `run-with-idle-timer'.
14510
14511 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
14512
14513         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
14514         autoloaded function.
14515
14516 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14517
14518         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
14519
14520 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
14521
14522         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
14523
14524 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14525
14526         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
14527         Add gnus-expert-user to default.
14528
14529 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
14530
14531         * nnimap.el (nnimap-open-server): Ditto.
14532
14533         * imap.el (imap-authenticate): Fix typo.
14534
14535 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
14536
14537         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
14538         buffer (since IMAP server might return FETCH response out of
14539         order, and the nntp buffer must be sorted).
14540
14541 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
14542
14543         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
14544         comparison on string.
14545
14546         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
14547         (gnus-agent-score): Rename category keywords to match gnus-cus.
14548         (gnus-agent-summary-fetch-series): Modify to protect against
14549         gnus-agent-summary-fetch-group clearing processable flags.
14550         (gnus-agent-synchronize-group-flags): Update live group buffer as
14551         synchronization may occur due to the user toggle the plugged
14552         status.
14553         (gnus-agent-fetch-group-1): Clear downloadable flag when article
14554         successfully downloaded.
14555         (gnus-agent-expire-group-1): Avoid using markers when the overview
14556         is in ascending order; greatly improves performance.
14557         (gnus-agent-regenerate-group):
14558         Use gnus-agent-synchronize-group-flags to reset read status in both
14559         gnus and server.
14560         (gnus-agent-update-files-total-fetched-for): Fix initial size.
14561
14562 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
14563
14564         * message.el: Don't autoload former message-utils variables.
14565         (message-strip-subject-trailing-was): Change doc string.
14566
14567         * nnweb.el: Fixes for `gnus-group-make-web-group'.
14568         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
14569         (nnweb-google-search): Add "hl=en" here.
14570         (nnweb-google-parse-1, nnweb-google-create-mapping):
14571         Don't hardcode URL.
14572
14573 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
14574
14575         * message.el (message-get-reply-headers, message-followup):
14576         Mention related variables `message-use-followup-to' and
14577         `message-use-mail-followup-to', in the information buffer.
14578
14579         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
14580         of broken groups(-beta).google.com.
14581
14582 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
14583
14584         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
14585         parameter to invoked gnus-request-move-article; remove the
14586         redundant gnus-sum-hint-move-is-internal variable; apply the marks
14587         all at once instead of once per article.
14588         (gnus-summary-remove-process-mark): Accept a list of articles as
14589         well as a single article for processing.
14590
14591         * gnus-int.el (gnus-request-move-article): Add move-is-internal
14592         parameter.
14593
14594         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
14595
14596         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
14597
14598         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
14599         parameter.
14600
14601         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
14602         parameter.
14603
14604         * nnimap.el (nnimap-request-move-article): Add move-is-internal
14605         parameter and remove the gnus-sum-hint-move-is-internal variable.
14606
14607         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
14608         parameter.
14609
14610         * nndraft.el (nndraft-request-move-article): Add move-is-internal
14611         parameter.
14612
14613         * nndiary.el (nndiary-request-move-article): Add move-is-internal
14614         parameter.
14615
14616         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
14617
14618         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
14619         parameter.
14620
14621         * nnagent.el (nnagent-request-move-article): Add move-is-internal
14622         parameter.
14623
14624 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14625
14626         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
14627         a more conservative way.
14628
14629 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14630
14631         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
14632         buffer, so it moves the window's cursor.
14633
14634 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
14635
14636         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
14637         `mm-dissect-multipart' and receive the from field as an (optional)
14638         argument from `mm-dissect-multipart'.
14639         (mm-dissect-multipart): Receive the from field as an argument and
14640         pass it on when we call `mm-dissect-buffer' on MIME parts.
14641         Fixes verification/decryption of signed/encrypted MIME parts.
14642
14643 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
14644
14645         * gnus-sum.el (gnus-summary-move-article):
14646         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
14647         whatever it calls (right now, only nnimap-request-move article
14648         respects it).
14649
14650         * nnimap.el (nnimap-request-move-article):
14651         When gnus-sum-hint-move-is-internal is set, don't do the extra
14652         nnimap-request-article.
14653
14654 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
14655
14656         * nnheader.el (nnheader-find-file-noselect): Add doc string.
14657
14658         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
14659         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
14660
14661         * gnus-sum.el (gnus-summary-caesar-message):
14662         Apply `gnus-treat-article' after rotation.
14663
14664         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
14665         doc string.
14666
14667 2005-02-22  Simon Josefsson  <jas@extundo.com>
14668
14669         * encrypt.el (encrypt-password-cache-expiry): Remove (use
14670         `password-cache-expiry' instead).  Reported by Arne Jørgensen
14671         <arne@arnested.dk>.
14672         (encrypt): Add password-cache and password-cache-expiry as group
14673         members.
14674
14675 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
14676
14677         * smime.el (smime-ldap-host-list): Doc fix.
14678         (smime-ask-passphrase): Use `password-read-and-add' to read (and
14679         cache) password.
14680         (smime-sign-region): Use it.
14681         (smime-decrypt-region): Use it.
14682         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
14683         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
14684         fails.
14685         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
14686         certificate from DER to PEM format rather than calling openssl.
14687
14688         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
14689
14690         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
14691         for signing/encryption.
14692
14693         * mml.el (mml-parse-1): Use them.
14694
14695 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
14696
14697         * nnrss.el (nnrss-verbose): Remove.
14698         (nnrss-request-group): Use `nnheader-message' instead.
14699
14700 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
14701
14702         * nnrss.el (nnrss-verbose): New variable.
14703         (nnrss-request-group): Make it say nnrss is requesting a group.
14704
14705 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
14706
14707         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
14708         Handle news URL with given port correctly.
14709
14710 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14711
14712         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
14713         containing special characters.
14714
14715         * gnus-sum.el (gnus-summary-edit-article): Ditto.
14716
14717         * mml.el (mime-to-mml): Ditto.
14718
14719         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
14720         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
14721         (rfc2047-decode-region): Quote decoded words containing special
14722         characters when rfc2047-quote-decoded-words-containing-tspecials
14723         is non-nil.
14724
14725 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
14726
14727         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
14728
14729         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
14730
14731 2005-02-15  Simon Josefsson  <jas@extundo.com>
14732
14733         * nnimap.el (nnimap-debug): Doc fix.
14734
14735         * imap.el (imap-debug): Doc fix.
14736
14737 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14738
14739         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
14740
14741 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
14742
14743         * gnus.el (spam-contents): Improve docs for spam-contents
14744         parameter in its variable incarnation.
14745
14746 2005-02-14  Simon Josefsson  <jas@extundo.com>
14747
14748         * smime-ldap.el: Use require instead of load-library for ldap.
14749         (smime-ldap-search): Indent.
14750         (smime-ldap-search-internal): Shorten line.
14751
14752         * smime.el (smime-cert-by-dns): Add doc-string.
14753         (smime-cert-by-ldap-1): Indent.
14754
14755         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
14756         mml-smime-get-dns-ldap.
14757         (mml-smime-encrypt-query): Use new function.  Default to ldap.
14758
14759 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
14760
14761         * smime.el: Require smime-ldap.
14762         (smime-ldap-host-list): New variable.
14763         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
14764
14765         * mml-smime.el (mml-smime-encrypt-query): New function.
14766         (mml-smime-encrypt-query): Use it.
14767
14768         * smime-ldap.el: New file.
14769
14770 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14771
14772         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
14773
14774 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
14775
14776         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
14777         argument in doc string.  Make query for type more clear.
14778
14779 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
14780
14781         * gnus.el (gnus-group-startup-message): Search for gnus images in
14782         etc/images/gnus.
14783         * mm-util.el (mm-image-load-path): Likewise.
14784         * smiley.el (smiley-data-directory): Search for smilies in
14785         etc/images/smilies.
14786
14787 2005-02-09  Kim F. Storm  <storm@cua.dk>
14788
14789         Change Emacs release version from 21.4 to 22.1 throughout.
14790         Change Emacs development version from 21.3.50 to 22.0.50.
14791
14792 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14793
14794         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
14795
14796         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
14797         non-Mule XEmacs as well.
14798         (mm-decompress-buffer): Signal an error intentionally if it does
14799         not decompress compressed data because auto-compression-mode is
14800         disabled.
14801
14802 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
14803
14804         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
14805         an ID in the registry even if it has no groups.
14806
14807 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14808
14809         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
14810         merge it into mm-decompress-buffer.
14811         (gnus-mime-copy-part): Use the MIME part charset, the value which
14812         a user specified or gnus-newsgroup-charset for decoding, like
14813         gnus-mime-inline-part does; set buffer-file-coding-system to tell
14814         save-buffer what was used.  Suggested by Kevin Ryde
14815         <user42@zip.com.au>.
14816         (gnus-mime-inline-part): Allow the name parameter as well as the
14817         filename parameter; force decompressing of compressed data; always
14818         display contents being not decoded as unibyte.
14819
14820         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
14821         as well as the filename parameter.
14822
14823         * mm-util.el (mm-decompress-buffer):
14824         Merge gnus-mime-jka-compr-maybe-uncompress.
14825         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
14826         of compressed data.
14827
14828 2005-02-08  Simon Josefsson  <jas@extundo.com>
14829
14830         * imap.el (imap-log): Doc fix.
14831
14832 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14833
14834         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
14835         the coding cookies; decompress compressed parts.
14836
14837         * mml.el (mml-generate-mime-1): Add the charset parameter according
14838         to the value which a user specified manually or the coding cookie.
14839
14840         * mm-util.el (mm-string-to-multibyte): New function.
14841         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
14842         (mm-coding-system-to-mime-charset): New function.
14843         (mm-decompress-buffer): New function.
14844         (mm-find-buffer-file-coding-system): New function.
14845
14846         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
14847         (mm-display-inline-fontify): Rewrite for decoding and decompressing
14848         parts.
14849
14850 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14851
14852         * mm-view.el (mm-display-inline-fontify): Decode a part according
14853         to the charset parameter.
14854
14855 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14856
14857         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
14858         prefix arg is neither nil nor a number, as info specifies.
14859
14860 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14861
14862         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
14863         timestamps.
14864
14865 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
14866
14867         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
14868         groups error checking and notify user.
14869
14870 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
14871
14872         * message.el (message-send-mail-function): Check existence of
14873         sendmail-program first before using default value
14874         `message-send-mail-with-sendmail'.  Otherwise use more generic
14875         `smtpmail-send-it'.
14876
14877 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14878
14879         * nntp.el (nntp-request-update-info): Always return nil.
14880
14881 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14882
14883         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
14884
14885 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14886
14887         * message.el (message-beginning-of-line): Change the behavior when
14888         invoked between BOL and : so that it first moves backward.
14889
14890 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14891
14892         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
14893         article buffer when editing of the article is discarded.
14894         (gnus-article-prepare): Revert.
14895
14896 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14897
14898         * gnus-art.el (gnus-article-prepare):
14899         Remove message-strip-forbidden-properties from the local hook.
14900
14901 2005-01-27  Simon Josefsson  <jas@extundo.com>
14902
14903         * password.el (password-cache-add): Only start one timer per key.
14904         Reported by Derek Atkins <warlord@MIT.EDU>.
14905
14906 2005-01-26  Steve Youngs  <steve@sxemacs.org>
14907
14908         * run-at-time.el: Remove.  It is no longer needed as
14909         timer-funcs.el in the xemacs-base package has a working version of
14910         `run-at-time'.
14911
14912         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
14913
14914         * password.el: Require timer-funcs instead of run-at-time in
14915         XEmacs.
14916         Remove `password-run-at-time' macro.
14917         (password-cache-add): Use `run-at-time' instead of
14918         `password-run-at-time'.
14919
14920         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
14921         Remove `nnheader-cancel-function-timers' alias,
14922         `cancel-function-timers' exists in XEmacs in timer-funcs.
14923
14924         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
14925         for `run-with-idle-timer'.
14926
14927         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
14928         for `run-at-time'.
14929
14930         * mm-url.el: Require timer-funcs at compile time when in XEmacs
14931         for `with-timeout'.
14932
14933         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
14934         the same as for XEmacs 21.4.
14935         No need to ignore `run-with-idle-timer', this function exists in
14936         XEmacs now in timer-funcs.el in the xemacs-base package.
14937         (dgnushack-compile): No need to delete
14938         run-at-time.el from the list of files to compile because it
14939         doesn't exist anymore.
14940
14941 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14942
14943         * mml.el (mml-generate-mime-1): Convert string into unibyte when
14944         inserting " *mml*" buffer's contents into a unibyte temp buffer.
14945
14946 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
14947
14948         * mail-source.el (mail-source-fetch-imap): Search for ^From case
14949         sensitively.
14950
14951 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
14952
14953         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
14954
14955 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14956
14957         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
14958         which will be inserted according to the multibyteness of a buffer
14959         rather than the type of contents.  Suggested by ARISAWA Akihiro
14960         <ari@mbf.ocn.ne.jp>.
14961
14962         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
14963         of string which old xml.el may return rather than a string.
14964
14965 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14966
14967         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
14968
14969 2005-01-16  Simon Josefsson  <jas@extundo.com>
14970
14971         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
14972         idn/idna.el isn't available.
14973         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
14974         <michael@waxrat.com>.
14975
14976         * hashcash.el: Remove non-FSF copyright header.
14977
14978         * hashcash.el (hashcash-extra-generate-parameters): New variable.
14979         (hashcash-generate-payment): Use it.
14980         (hashcash-generate-payment-async): Use it.
14981
14982 2005-01-15  Simon Josefsson  <jas@extundo.com>
14983
14984         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
14985         Suggested by Raymond Scholz <ray-2005@zonix.de>.
14986
14987         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
14988         gnus-summary-idna-message.
14989         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
14990         (gnus-summary-idna-message): New function.
14991
14992 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
14993
14994         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
14995         gnus-novice-user.
14996
14997 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14998
14999         * nnrss.el (nnrss-request-delete-group): Delete entries in
15000         nnrss-group-alist as well.
15001         (nnrss-save-server-data): Insert newline.
15002
15003 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
15004
15005         * gnus.el (gnus-user-agent): Use list of symbols instead of
15006         symbols.  Display full version number for (S)XEmacs.
15007         Optionally display (S)XEmacs codename.
15008
15009         * gnus-util.el (gnus-emacs-version): Update for new
15010         `gnus-user-agent'.
15011
15012         * gnus-msg.el (gnus-extended-version): Make it possible to omit
15013         Gnus version.
15014
15015 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
15016
15017         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
15018         which is unreadable in some setups.
15019
15020 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15021
15022         * gnus-spec.el (gnus-update-format-specifications): Flush the
15023         group format spec cache if it doesn't support decoded group names.
15024
15025 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
15026
15027         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
15028         Allow to apply decay on score files matching a regexp.
15029
15030 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15031
15032         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
15033         compatibility in %g and %c.
15034
15035 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15036
15037         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
15038         name for only %g and %c.
15039         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
15040         of gnus-tmp-group to decoded group name.
15041         (gnus-group-make-rss-group): Exclude `/'s from group names.
15042
15043 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15044
15045         * nnrss.el (nnrss-get-encoding): Fix regexp.
15046
15047 2004-12-27  Simon Josefsson  <jas@extundo.com>
15048
15049         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
15050         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
15051         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
15052
15053 2004-12-17  Kim F. Storm  <storm@cua.dk>
15054
15055         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
15056
15057         * gnus-sum.el (gnus-summary-mode-map): Likewise.
15058
15059 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
15060
15061         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
15062
15063 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15064
15065         * nnrss.el: Require rfc2047 and mml.
15066         (nnrss-file-coding-system): New variable.
15067         (nnrss-format-string): Redefine it as an inline function.
15068         (nnrss-decode-group-name): New function.
15069         (nnrss-string-as-multibyte): Remove.
15070         (nnrss-retrieve-headers): Decode group name; don't use
15071         nnrss-format-string.
15072         (nnrss-request-group): Decode group name.
15073         (nnrss-request-article): Decode group name; allow a Message-ID as
15074         well as an article number; don't use nnrss-format-string; encode a
15075         Message-ID string which may contain non-ASCII characters; use
15076         mml-to-mime to compose a MIME article.
15077         (nnrss-request-expire-articles): Decode group name.
15078         (nnrss-request-delete-group): Decode group name.
15079         (nnrss-fetch): Clarify error message.
15080         (nnrss-read-server-data): Use insert-file-contents instead of load;
15081         bind file-name-coding-system; use multibyte buffer.
15082         (nnrss-save-server-data): Bind coding-system-for-write to the
15083         value of nnrss-file-coding-system; bind file-name-coding-system;
15084         add coding cookie.
15085         (nnrss-read-group-data): Use insert-file-contents instead of load;
15086         bind file-name-coding-system; use multibyte buffer.
15087         (nnrss-save-group-data): Bind coding-system-for-write to the
15088         value of nnrss-file-coding-system; bind file-name-coding-system.
15089         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
15090         make it work with non-ASCII text.
15091         (nnrss-find-el): Make it work with old xml.el as well.
15092
15093 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
15094
15095         * nnrss.el (nnrss-get-encoding): New function.
15096         (nnrss-fetch): Use unibyte buffer initially; bind
15097         coding-system-for-read while performing mm-url-insert; remove ^Ms;
15098         decode contents according to the encoding attribute.
15099         (nnrss-save-group-data): Add coding cookie.
15100         (nnrss-mime-encode-string): New function.
15101         (nnrss-check-group): Use it to encode subject and author.
15102
15103 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
15104
15105         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
15106         imaginary variable.
15107
15108 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15109
15110         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
15111         correctly even if there are wide characters.
15112
15113 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
15114
15115         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
15116         downcased symbol names; make a new cache instead of reusing
15117         bbdb-hashtable.
15118
15119 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
15120
15121         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
15122         concatenating segments rather than before concatenating them.
15123         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
15124
15125         * message.el (message-get-reply-headers): Bind `extra'.
15126
15127 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15128
15129         * message.el (message-extra-wide-headers): New variable.
15130         (message-get-reply-headers): Use it.
15131
15132 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15133
15134         * gnus-agent.el (gnus-agent-group-path): Decode group name.
15135         (gnus-agent-group-pathname): Ditto.
15136
15137         * gnus-cache.el (gnus-cache-file-name): Decode group name.
15138
15139         * gnus-group.el (gnus-group-make-group): Decode group name.
15140         (gnus-group-make-rss-group): Register the group data after opening
15141         the nnrss group.
15142
15143 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
15144
15145         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
15146         by expiry now get marked as read.
15147
15148 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15149
15150         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
15151
15152 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
15153
15154         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
15155         unify Latin characters in XEmacs.
15156         (mm-find-mime-charset-region): Use it.
15157
15158 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15159
15160         * gnus-util.el (gnus-delete-directory): New function.
15161
15162         * gnus-agent.el (gnus-agent-delete-group): Use it.
15163
15164         * gnus-cache.el (gnus-cache-delete-group): Use it.
15165
15166 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15167
15168         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
15169         names.
15170
15171 2004-12-16  Simon Josefsson  <jas@extundo.com>
15172
15173         * hashcash.el (hashcash-payment-alist): Fix custom :type.
15174
15175 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15176
15177         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
15178
15179         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
15180         (gnus-group-set-current-level): Decode group name.
15181
15182 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
15183
15184         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
15185         failed.
15186
15187 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15188
15189         * gnus-group.el (gnus-group-delete-group): Decode group name.
15190         (gnus-group-make-rss-group): Encode group name.
15191         (gnus-group-catchup-current): Decode group name.
15192         (gnus-group-kill-group): Decode group name.
15193
15194 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15195
15196         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
15197
15198 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15199
15200         * gnus-group.el (gnus-group-make-rss-group):
15201         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
15202
15203         * gnus-start.el (gnus-setup-news): Honor user's setting to
15204         gnus-message-archive-method.  Suggested by Lute Kamstra
15205         <lute@gnu.org>.
15206
15207 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
15208
15209         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
15210         global counterparts of the buffer-local variables.
15211
15212 2004-11-16  Romain Francoise  <romain@orebokech.com>
15213
15214         * gnus-sum.el (gnus-summary-exit): Don't clear the global
15215         counterparts of the buffer-local variables.
15216
15217 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15218
15219         * message.el (message-forbidden-properties): Fix typo in doc
15220         string.
15221
15222 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15223
15224         * gnus-util.el (gnus-replace-in-string): Add doc string.
15225
15226         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
15227         to avoid problems when splitting mails with many recipients.
15228
15229 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15230
15231         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
15232         pop-to-buffer, covered by the subsequent gnus-configure-windows.
15233
15234 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
15235
15236         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
15237         if there is no hashtable in memory or file modification time is
15238         newer than cached timestamp.
15239
15240 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
15241
15242         * gnus-sum.el (gnus-summary-limit-to-recipient):
15243         Implement not-matching option.
15244
15245 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
15246
15247         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
15248         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
15249         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15250         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
15251         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
15252         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
15253
15254 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15255
15256         * message.el (message-forward-make-body-mml): Remove headers
15257         according to message-forward-ignored-headers if a message is decoded.
15258
15259 2004-12-02  Romain Francoise  <romain@orebokech.com>
15260
15261         * message.el (message-forward-make-body-plain): Always remove
15262         headers according to message-forward-ignored-headers.
15263
15264 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
15265
15266         * spam.el (spam-summary-prepare-exit): Remove the
15267         gnus-summary-limit pop for now, it has problems with ham marks for
15268         me.
15269
15270 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
15271
15272         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
15273         correctly.
15274
15275 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
15276
15277         * format-spec.el (format-spec): Message the char.
15278
15279 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
15280
15281         * gnus-art.el (gnus-split-methods): Reformat comments.
15282
15283         * spam.el (spam-summary-prepare-exit): Remove article limits
15284         before exiting the summary buffer.
15285
15286 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15287
15288         * lpath.el: Remove bbdb-create-internal, bbdb-records,
15289         spam-BBDB-register-routine and spam-enter-ham-BBDB.
15290
15291         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
15292         order to silence the byte compiler.
15293
15294         * spam.el: Fix the way to silence the byte compiler, which
15295         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
15296         bbdb-search-simple, spam-BBDB-register-routine,
15297         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
15298         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
15299         spam-stat-buffer-is-spam, spam-stat-load,
15300         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
15301         spam-stat-save and spam-stat-split-fancy.
15302
15303 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15304
15305         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
15306         which may confuse users.
15307         (canlock-password-for-verify): Ditto.
15308
15309         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
15310
15311         * gnus-art.el (gnus-emphasis-alist): Ditto.
15312
15313         * gnus-registry.el (gnus-registry-max-entries): Ditto.
15314
15315         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
15316
15317         * gnus-start.el (gnus-save-killed-list): Ditto.
15318
15319         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
15320         (gnus-sum-thread-tree-root): Ditto.
15321         (gnus-sum-thread-tree-false-root): Ditto.
15322         (gnus-sum-thread-tree-single-indent): Ditto.
15323
15324         * message.el (message-courtesy-message): Ditto.
15325         (message-archive-note): Ditto.
15326         (message-subscribed-address-file): Ditto.
15327         (message-user-fqdn): Ditto.
15328
15329         * spam-report.el (spam-report-gmane-regex): Ditto.
15330
15331         * spam.el (spam-blackhole-good-server-regex): Ditto.
15332
15333 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15334
15335         * mml.el (mml-preview): Widen the message buffer before copying
15336         the contents to the preview buffer; sort headers before previewing.
15337
15338         * message.el (message-hidden-headers): Fix the way to avoid a bug
15339         in the `repeat' widget in Emacs 21.3 or earlier.
15340
15341 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15342
15343         * message.el (message-hidden-headers): Default to "^References:".
15344         Improve customization type.  Suggested by Reiner Steib
15345         <Reiner.Steib@gmx.de>.
15346
15347 2004-11-25  Romain Francoise  <romain@orebokech.com>
15348
15349         * message.el (message-strip-forbidden-properties): Remove check for
15350         obsolete `message-hidden' text property, hidden headers are not
15351         accessible in the buffer anymore.
15352
15353 2004-11-22  Romain Francoise  <romain@orebokech.com>
15354
15355         * message.el (message-header-format-alist): Add `From' in list
15356         so that it can be sorted.
15357         (message-fix-before-sending): Widen and sort headers before
15358         sending.
15359         (message-hide-headers): Use narrowing to hide headers by moving
15360         them to the top of the buffer and narrowing to the region
15361         underneath.
15362
15363 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15364
15365         * message.el (message-strip-forbidden-properties):
15366         Bind buffer-read-only (etc) to nil.
15367
15368 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15369
15370         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
15371         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
15372
15373 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
15374
15375         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
15376
15377 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15378
15379         * dns.el (query-dns): Use sit-for to time instead of
15380         accept-process-output, since that doesn't seem to work on udp
15381         sockets.
15382
15383 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15384
15385         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
15386
15387 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
15388
15389         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
15390         doc string.  Improve doc string.
15391
15392 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15393
15394         * nntp.el (nntp-request-update-info): Return nil if
15395         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
15396         may not call gnus-activate-group which uselessly issues the GROUP
15397         commands for all nntp groups and wastes time.  Reported by Romain
15398         Francoise <romain@orebokech.com>.
15399
15400         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
15401
15402 2004-11-15  Simon Josefsson  <jas@extundo.com>
15403
15404         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
15405         headers separately.
15406         (gnus-button-openpgp): New function, inspired by Jochen Küpper
15407         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
15408
15409 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
15410
15411         * gnus-start.el (gnus-convert-old-newsrc):
15412         Assign legacy-gnus-agent to 5.10.7.
15413
15414 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15415
15416         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
15417         start of the lines.
15418
15419 2004-11-14  Magnus Henoch  <mange@freemail.hu>
15420
15421         * hashcash.el (hashcash-default-payment): Change default to 20.
15422         (hashcash-default-accept-payment): Change default to 20.
15423         (hashcash-process-alist): New variable.
15424         (hashcash-generate-payment-async): Add.
15425         (hashcash-already-paid-p): Add.
15426         (hashcash-insert-payment): Don't generate payments twice.
15427         (hashcash-insert-payment-async): Add.
15428         (hashcash-insert-payment-async-2): Add.
15429         (hashcash-cancel-async): Add.
15430         (hashcash-wait-async): Add.
15431         (hashcash-processes-running-p): Add.
15432         (hashcash-wait-or-cancel): Add.
15433         (mail-add-payment): New optional argument.  Conditionally start
15434         asynchronous calculation.
15435         (mail-add-payment-async): Add.
15436
15437         * message.el (message-send-mail): Wait for asynchronous hashcash
15438         results.  Don't clobber existing X-Hashcash headers.
15439         (message-setup-1): Call mail-add-payment-async when
15440         message-generate-hashcash is non-nil.
15441
15442 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15443
15444         * message.el (message-use-alternative-email-as-from): Examine the
15445         From header as well; use message-make-from in order to include a
15446         user's full name.
15447
15448 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15449
15450         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
15451         default; improve customization type.
15452         (gnus-emphasis-custom-with-format): New macro.
15453         (gnus-emphasis-custom-value-to-external): New function.
15454         (gnus-emphasis-custom-value-to-internal): New function.
15455
15456 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15457
15458         * dns.el (query-dns): Resolve reverse addresses.
15459
15460 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15461
15462         * gnus-group.el (gnus-group-get-new-news): Use it.
15463
15464         * gnus-start.el (gnus-check-reasonable-setup): New function.
15465
15466 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15467
15468         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
15469         "Args out of range" error.  Reported by Arnaud Giersch
15470         <arnaud.giersch@free.fr>.
15471
15472 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
15473
15474         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
15475
15476 2004-11-04  Richard M. Stallman  <rms@gnu.org>
15477
15478         * spam.el (spam group): Add :version.
15479
15480         * pgg-def.el (pgg group): Add :version.
15481
15482 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15483
15484         * gnus-art.el (gnus-article-edit-article): Don't associate the
15485         article buffer with a draft file.  This is a temporary measure
15486         against the 2004-08-22 change to gnus-article-edit-mode.
15487
15488 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15489
15490         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
15491         (html2text-format-tags): Remove unused variable `attr'.
15492
15493 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
15494
15495         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
15496
15497         * tls.el (tls-process-connection-type, tls-success)
15498         (tls-certtool-program): Add :version.
15499
15500         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
15501         (starttls-extra-arguments, starttls-process-connection-type)
15502         (starttls-connect, starttls-failure, starttls-success): Add :version.
15503
15504         * spam-stat.el (spam-stat): Add :version.
15505
15506         * sieve.el (sieve): Add :version.
15507
15508         * sha1.el (sha1): Add :version.
15509         (sha1-use-external): Remove redundant version.
15510
15511         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
15512         (nnmail-cache-ignore-groups, nnmail-spool-hook)
15513         (nnmail-split-fancy-match-partial-words)
15514         (nnmail-split-lowercase-expanded): Add :version.
15515
15516         * nndiary.el (nndiary): Add :version.
15517
15518         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
15519
15520         * mml-sec.el (mml-default-sign-method)
15521         (mml-default-encrypt-method, mml-signencrypt-style-alist):
15522         Add :version.
15523
15524         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
15525
15526         * mm-url.el (mm-url-use-external, mm-url-program)
15527         (mm-url-arguments): Add :version.
15528
15529         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
15530         (mm-attachment-file-modes, mm-decrypt-option)
15531         (mm-w3m-safe-url-regexp): Add :version.
15532
15533         * message.el (message-cite-prefix-regexp)
15534         (message-sendmail-envelope-from, message-minibuffer-local-map)
15535         (message-user-fqdn, message-completion-alist): Add :version.
15536
15537         * gnus-win.el (gnus-configure-windows-hook)
15538         (gnus-use-frames-on-any-display): Add :version.
15539
15540         * gnus-art.el (gnus-article-address-banner-alist)
15541         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
15542         (gnus-treat-from-picon, gnus-treat-mail-picon)
15543         (gnus-treat-x-pgp-sig): Add :version.
15544
15545         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
15546         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
15547         (gnus-summary-article-delete-hook)
15548         (gnus-summary-display-while-building): Add :version.
15549
15550         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
15551         (gnus-get-top-new-news-hook): Add :version.
15552
15553         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15554         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
15555
15556         * gnus-registry.el (gnus-registry): Add :version.
15557
15558         * gnus-spec.el (gnus-use-correct-string-widths)
15559         (gnus-make-format-preserve-properties): Add :version.
15560
15561         * gnus.el (gnus-group-charter-alist)
15562         (gnus-group-fetch-control-use-browse-url)
15563         (gnus-install-group-spam-parameters): Add :version.
15564
15565         * gnus-diary.el (gnus-diary): Add :version.
15566
15567         * gnus-delay.el (gnus-delay): Add :version.
15568
15569         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
15570         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
15571         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
15572         Add :version.
15573
15574         * gnus-agent.el (gnus-agent-max-fetch-size)
15575         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
15576         (gnus-agent-prompt-send-queue): Add :version.
15577
15578         * deuglify.el (gnus-outlook-deuglify): Add :version.
15579
15580         * html2text.el: Beautify code.  Improve doc strings.
15581         Some checkdoc cleanup.
15582         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
15583
15584 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
15585
15586         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
15587
15588 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
15589
15590         * gnus-registry.el (gnus-registry-hashtb): Create the registry
15591         when package is loaded.
15592
15593         * spam.el (spam-summary-score-preferred-header): Add global preference
15594         for people who want to override the default SpamAssassin over
15595         Bogofilter preference (when both are set).
15596         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
15597         (spam-user-format-function-S):
15598         Check spam-summary-score-preferred-header.
15599         (spam-extra-header-to-number): Add X-Bogosity header parsing.
15600         (spam-user-format-function-S): Format the score correctly.
15601
15602 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15603
15604         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
15605         signature file.  Suggested by Manoj Srivastava
15606         <srivasta@golden-gryphon.com>.
15607
15608         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
15609         iso-2022-jp even in the Japanese language environment.
15610         Suggested by Jason Rumney <jasonr@gnu.org>.
15611
15612 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15613
15614         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
15615         use the same characters as the dummy marks; make it free from
15616         getting affected by the language environment.
15617         (gnus-summary-read-group-1): Update mark positions only when the
15618         format spec is updated.
15619
15620         * gnus-spec.el (gnus-update-format-specifications): Return a list
15621         of updated types.
15622
15623 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15624
15625         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
15626         of boundp to check if display-warning is available.
15627
15628 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
15629
15630         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
15631
15632 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15633
15634         * nnspool.el (nnspool-spool-directory): Use news-path if the
15635         news-directory variable is not bound.
15636
15637         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
15638         function instead of display-warning if it is not available.
15639
15640 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
15641
15642         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
15643         v5-10: Use `point-at-bol'.
15644
15645 2004-10-26  Simon Josefsson  <jas@extundo.com>
15646
15647         * hashcash.el: Fix URL in comment, reported by Cheng Gao
15648         <chenggao@gmail.com>.
15649
15650 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
15651
15652         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
15653         instead.
15654
15655 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
15656
15657         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
15658         to remove a server from the nnimap-server-buffer-alist.
15659         (nnimap-open-connection, nnimap-close-server): Use it.
15660
15661         * gnus-encrypt.el: Remove file in favor of encrypt.el.
15662
15663 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
15664
15665         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
15666         running the major-mode function.
15667
15668 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15669
15670         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
15671         dummy marks in the right way.
15672
15673 2004-10-18  David Edmondson  <dme@dme.org>
15674
15675         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
15676         excessively.
15677
15678 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
15679
15680         * gnus-util.el (gnus-split-references): Accept a nil references
15681         string and go on blissfully.
15682
15683         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
15684         cases where the references string is non-nil but has no references.
15685
15686         * encrypt.el: Add autoload tags.
15687
15688         * spam.el (spam-resolve-registrations-routine): Remove article
15689         from unregistration list too.  Reported by David Hanak
15690         <dhanak@isis.vanderbilt.edu>
15691
15692 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
15693
15694         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
15695         nil.  Change custom type.
15696
15697 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
15698
15699         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
15700
15701         * gnus-sum.el (gnus-summary-move-article): Use it.
15702
15703 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
15704
15705         * encrypt.el: Add autoload cookies.
15706
15707         * spam.el (spam-backend-article-list-property)
15708         (spam-backend-get-article-todo-list)
15709         (spam-backend-put-article-todo-list)
15710         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
15711         Resolve registrations separately.
15712         (spam-register-routine): Format comments.
15713         (spam-unregister-routine, spam-register-routine): Always call with
15714         specific-articles, no default list.
15715         (spam-summary-prepare-exit): Use the spam-classifications function.
15716
15717         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
15718         gnus-encrypt.el.
15719
15720         * encrypt.el: Copied from gnus-encrypt.el.
15721
15722         * gnus-encrypt.el: Commented that it's obsolete.
15723
15724 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
15725
15726         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
15727         (gnus-score-save): Use it.
15728
15729         * message.el (message-bury): Use `window-dedicated-p'.
15730
15731 2004-10-15  Simon Josefsson  <jas@extundo.com>
15732
15733         * pop3.el (top-level): Don't require nnheader.
15734         (pop3-read-timeout): Add.
15735         (pop3-accept-process-output): Add.
15736         (pop3-read-response, pop3-retr): Use it.
15737
15738 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
15739
15740         * spam.el (spam-register-routine): Move comment.
15741         (spam-verify-bogofilter): Use 'unknown for the initial
15742         spam-bogofilter-valid state, not 'never.
15743
15744         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
15745         for netrc-machine.
15746
15747         * nnimap.el (nnimap-open-connection):
15748         Use netrc-machine-user-or-password.
15749
15750 2004-10-17  Richard M. Stallman  <rms@gnu.org>
15751
15752         * gnus-registry.el (gnus-registry-unload-hook):
15753         Set as a variable with add-hook.
15754
15755         * nnspool.el (nnspool-spool-directory): Use news-directory instead
15756         of news-path.
15757
15758         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
15759
15760         * spam.el: Delete duplicate `provide'.
15761         (spam-unload-hook): Set as a variable with add-hook.
15762
15763 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
15764
15765         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
15766         in the doc string.
15767
15768         * message.el (message-ignored-news-headers)
15769         (message-ignored-supersedes-headers)
15770         (message-ignored-resent-headers)
15771         (message-forward-ignored-headers): Improve custom type.
15772
15773 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15774
15775         * message.el (message-tokenize-header): Fix 2004-09-06 change
15776         which used point-min in the wrong place.
15777
15778 2004-10-12  Simon Josefsson  <jas@extundo.com>
15779
15780         * tls.el (tls-certtool-program): New variable.
15781         (tls-certificate-information): New function, based on
15782         ssl-certificate-information.
15783
15784 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15785
15786         * compface.el: Move the version of ELisp-based uncompface program
15787         to the contrib directory because of the copyright problem.
15788
15789 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
15790
15791         * message.el (message-kill-buffer): Raise the current frame.
15792
15793 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
15794
15795         * gnus-sum.el: Mention that multibyte characters don't work as marks.
15796
15797         * gnus.el (message-y-or-n-p): Autoload.
15798
15799         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
15800         (pop3-password-required, pop3-authentication-scheme)
15801         (pop3-leave-mail-on-server): Make customizable.
15802         (pop3): New custom group.
15803         (pop3-retr): Remove `sleep-for' statements.
15804         Suggested by Dave Love <fx@gnu.org>.
15805
15806         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
15807         Windows/DOS.
15808
15809         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15810         (imap-parse-body): Fix incorrect use of `assert'.
15811         Suggested by Dave Love <fx@gnu.org>.
15812
15813         * mml.el (mml-minibuffer-read-disposition): Require match.
15814         Suggested by Dave Love <fx@gnu.org>.
15815
15816 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
15817
15818         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
15819         doc string.
15820
15821 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15822
15823         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
15824
15825 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
15826
15827         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
15828         instead of calling `mm-insert-inline', to decode text/* parts
15829         before displaying them.
15830
15831 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15832
15833         * mm-uu.el (mm-uu-text-plain-type): New variable.
15834         (mm-uu-pgp-signed-extract-1): Use it.
15835         (mm-uu-pgp-encrypted-extract-1): Use it.
15836         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
15837         bind mm-uu-text-plain-type with that value.
15838         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
15839         mm-uu-dissect.
15840
15841 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15842
15843         * gnus-group.el (gnus-update-group-mark-positions):
15844         * gnus-sum.el (gnus-update-summary-mark-positions):
15845         * message.el (message-check-news-body-syntax):
15846         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
15847         of string-as-multibyte.
15848
15849 2004-10-05  Juri Linkov  <juri@jurta.org>
15850
15851         * gnus-group.el (gnus-update-group-mark-positions):
15852         * gnus-sum.el (gnus-update-summary-mark-positions):
15853         * message.el (message-check-news-body-syntax):
15854         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
15855         8-bit unibyte values to a multibyte string for search functions.
15856
15857 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15858
15859         * mm-uu.el (mm-uu-dissect): Allow optional arg.
15860         (mm-uu-dissect-text-parts): New function.
15861
15862         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
15863         dissect text parts.
15864
15865         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
15866         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
15867
15868         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
15869
15870         * gnus-topic.el (gnus-topic-hierarchical-parameters):
15871         Use gnus-current-topics instead of gnus-current-topic.
15872
15873 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
15874
15875         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
15876
15877 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
15878
15879         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
15880         where approriate.
15881
15882         * nnml.el (nnml-generate-active-info): do.
15883
15884         * nndiary.el (nndiary-generate-active-info): do.
15885
15886         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
15887         (gnus-topic-move): do.
15888
15889         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
15890         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
15891
15892         * gnus-srvr.el (gnus-server-prepare)
15893         (gnus-server-open-all-servers): do.
15894
15895         * gnus-msg.el (gnus-summary-cancel-article)
15896         (gnus-summary-resend-message)
15897         (gnus-summary-mail-crosspost-complaint): do.
15898
15899         * gnus-move.el (gnus-change-server): do.
15900
15901         * gnus-group.el (gnus-group-unmark-all-groups)
15902         (gnus-group-set-current-level): do.
15903
15904 2004-10-04  Simon Josefsson  <jas@extundo.com>
15905
15906         * message.el (message-generate-hashcash): Doc fix.
15907
15908 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
15909
15910         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
15911         avoid infinite recursion via gnus-get-function.
15912
15913 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
15914
15915         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
15916
15917         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
15918
15919         * nnmail.el (nnmail-split-history): do.
15920
15921         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
15922         (nnml-request-delete-group): do.
15923
15924         * nnslashdot.el (nnslashdot-read-groups): do.
15925
15926         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
15927         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
15928
15929         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
15930         (nnspool-sift-nov-with-sed): Use last.
15931         (nnspool-retrieve-headers-with-nov): Use mapc.
15932         (nnspool-request-newgroups): Use dolist.
15933         (nnspool-request-group): Use last.
15934
15935         * nntp.el (nntp-read-server-type): Use dolist.
15936
15937         * nnvirtual.el (nnvirtual-create-mapping)
15938         (nnvirtual-update-read-and-marked): Use dolist.
15939         (nnvirtual-convert-headers): Simplify.
15940
15941 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
15942
15943         * gnus-agent.el (gnus-agent-synchronize-group-flags):
15944         Add support for sync'ing tick marks.
15945
15946 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15947
15948         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
15949         there's no visible header.
15950
15951 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
15952
15953         * gnus-agent.el (gnus-agent-synchronize-group-flags):
15954         When necessary, pass full group name to gnus-request-set-marks.
15955
15956 2004-10-01  Simon Josefsson  <jas@extundo.com>
15957
15958         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
15959         acroread.
15960
15961 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15962
15963         * spam-report.el (spam-report-gmane): Fix interactive.
15964
15965         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
15966
15967         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
15968         when writing file.
15969         (gnus-agent-synchronize-flags): Don't default to being
15970         interactive.
15971
15972 2004-09-30  Simon Josefsson  <jas@extundo.com>
15973
15974         * message.el (message-generate-hashcash): Add.
15975         (message-send-mail): Use it, call mail-add-payment.
15976
15977 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
15978
15979         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
15980
15981 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
15982
15983         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
15984         gnus-requst-update-info with explicit code to sync the in-memory
15985         info read flags with the marks being sync'd to the backend.
15986
15987         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
15988
15989 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
15990
15991         * spam.el (spam-verify-bogofilter): Add new function.
15992         (spam-check-bogofilter)
15993         (spam-bogofilter-register-with-bogofilter): Use it.
15994         (spam-verify-bogofilter): Add small fixes.
15995
15996 2004-09-28  Simon Josefsson  <jas@extundo.com>
15997
15998         * hashcash.el (hashcash-generate-payment): Revert.
15999
16000 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16001
16002         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16003         Use gnus-extract-references instead of gnus-split-references.
16004
16005         * gnus-util.el (gnus-extract-references): Add new function, analogous
16006         to gnus-split-references but extracts only the message-ID without
16007         anything extra.
16008
16009         * hashcash.el (hashcash-generate-payment)
16010         (hashcash-check-payment): Do the right thing if hashcash-path is
16011         nil (because the hashcash program could not be found).
16012
16013         * spam.el (spam-use-hashcash): Remove comment.
16014
16015 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
16016
16017         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
16018         (gnus-cache-enter-article, gnus-cache-remove-article)
16019         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
16020
16021         * gnus-async.el (gnus-async-prefetch-remove-group): do.
16022
16023         * gnus-art.el (article-hide-boring-headers)
16024         (article-translate-strings, article-display-face)
16025         (gnus-article-mime-match-handle-first)
16026         (gnus-article-highlight-headers)
16027         (gnus-article-add-buttons-to-head): do.
16028
16029 2004-09-27  Simon Josefsson  <jas@extundo.com>
16030
16031         * hashcash.el: New version, from
16032         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
16033         ../contrib/.
16034
16035 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16036
16037         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
16038
16039 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
16040
16041         * gnus-dup.el (gnus-dup-open): Use mapc.
16042         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
16043
16044         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
16045         Reported by Stefan Wiens <s.wi@gmx.net>.
16046
16047         * gnus.el (gnus-shutdown): Use dolist.
16048
16049         * gnus-undo.el (gnus-undo): Use mapc.
16050
16051         * nnrss.el (nnrss-generate-active): do.
16052
16053         * message.el (message-cite-original-without-signature)
16054         (message-cite-original): Use mapc.
16055         (message-do-actions, message-make-forward-subject): Use dolist.
16056
16057 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
16058
16059         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
16060         deletion to remove entire duplicate line.  Fixes merged article
16061         number bug.
16062
16063 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
16064
16065         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
16066         servers that are offline.  Avoids having gnus-agent-toggle-plugged
16067         first ask if you want to open a server and then, even when you
16068         responded with no, asking if you want to synchronize the server's
16069         flags.
16070         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
16071         multi-line expressions.
16072         (gnus-agent-synchronize-group-flags): New internal function.
16073         Updates marks in memory (in the info structure) AND in the
16074         backend.
16075
16076         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
16077
16078         * nnagent.el (nnagent-request-set-mark):
16079         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
16080         method, to ensure that synchronization updates marks in the
16081         backend and in the info (in memory) structure.
16082
16083 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16084
16085         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
16086         convention fully; don't miss the root article of a thread; make
16087         the X-Draft-From header with correct article numbers.
16088
16089 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
16090
16091         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
16092         unless plugged.  Disable the agent so that an open failure causes
16093         an error.
16094
16095         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
16096         Revert 2004-09-21 change.  The backend must be opened while
16097         synchronizing flags even when the backend stores the flags
16098         locally.
16099
16100 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
16101
16102         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
16103         in `header' match.  Reported by Svend Tollak Munkejord.
16104
16105         * message.el (message-cite-original): Fix use of
16106         `message-cite-articles-with-x-no-archive'.
16107
16108 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16109
16110         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
16111         (gnus-window-to-buffer): Ditto.
16112
16113         * mml.el (mml-preview-buffer): New variable.
16114         (mml-preview): Manage window layout with gnus-buffer-configuration.
16115
16116         * gnus-msg.el (gnus-setup-message): Put article numbers into the
16117         X-Draft-From header even if those articles aren't quoted.
16118
16119 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
16120
16121         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
16122         (gnus-request-set-mark, gnus-request-update-mark): Use new
16123         g-s-t-u-l-m to decide to use backend even when unplugged.
16124
16125 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16126
16127         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
16128         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
16129
16130 2004-09-20  Simon Josefsson  <jas@extundo.com>
16131
16132         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
16133         "utf-16-le".
16134
16135 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16136
16137         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
16138
16139 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
16140
16141         * uudecode.el (uudecode-use-external): Add :version.
16142
16143         * smime.el (smime-CA-file, smime-encrypt-cipher)
16144         (smime-dns-server): Add :version.
16145
16146         * smiley.el (gnus-smiley-file-types): Add :version.
16147
16148         * sha1.el (sha1-use-external): Add :version.
16149
16150         * pgg-def.el (pgg-query-keyserver): Add :version.
16151
16152         * nnmail.el (nnmail-fancy-expiry-targets)
16153         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
16154         Add :version.
16155
16156         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
16157         (nnimap-retrieve-groups-asynchronous): Add :version.
16158         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
16159
16160         * mml.el (mml-content-disposition-parameters)
16161         (mml-insert-mime-headers-always): Add :version.
16162
16163         * mm-util.el (mm-coding-system-priorities): Add :version.
16164
16165         * mm-decode.el (mm-inline-text-html-with-images)
16166         (mm-keep-viewer-alive-types, mm-external-terminal-program)
16167         (mm-verify-option): Add :version.
16168         (mm-text-html-renderer): Change :version.
16169
16170         * message.el (message-fcc-externalize-attachments)
16171         (message-required-headers, message-draft-headers)
16172         (message-subject-trailing-was-query)
16173         (message-subject-trailing-was-ask-regexp)
16174         (message-subject-trailing-was-regexp, message-mark-insert-begin)
16175         (message-mark-insert-end, message-archive-header)
16176         (message-archive-note, message-cross-post-default)
16177         (message-cross-post-note, message-followup-to-note)
16178         (message-cross-post-note-function, message-use-mail-followup-to)
16179         (message-subscribed-address-functions)
16180         (message-subscribed-address-file, message-subscribed-addresses)
16181         (message-subscribed-regexps, message-allow-no-recipients)
16182         (message-yank-cited-prefix, message-signature-insert-empty-line)
16183         (message-hidden-headers, message-hierarchical-addresses)
16184         (message-mail-user-agent, message-use-idna)
16185         (message-valid-fqdn-regexp)
16186         (message-strip-special-text-properties, message-header-synonyms)
16187         (message-beginning-of-line, message-tab-body-function): Add :version.
16188         (message-insert-canlock, message-wide-reply-confirm-recipients):
16189         Change :version.
16190
16191         * mail-source.el (mail-source-ignore-errors): Add :group, :type
16192         and :version.
16193         (mail-source-delete-old-incoming-confirm)
16194         (mail-source-movemail-program): Add :version.
16195
16196         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
16197         (gnus-agent-cache, gnus-agent): Change :version.
16198
16199         * gnus-util.el (gnus-use-byte-compile): Change :version.
16200
16201         * gnus-sum.el (gnus-summary-make-false-root-always)
16202         (gnus-summary-default-high-score)
16203         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
16204         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
16205         (gnus-read-all-available-headers, gnus-article-emulate-mime)
16206         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
16207         (gnus-sum-thread-tree-single-indent)
16208         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
16209         (gnus-sum-thread-tree-leaf-with-other)
16210         (gnus-sum-thread-tree-single-leaf): Add :version.
16211         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
16212         (gnus-article-loose-mime): Change :version.
16213
16214         * gnus-start.el (gnus-backup-startup-file)
16215         (gnus-save-startup-file-via-temp-buffer): Add :version.
16216
16217         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
16218         (gnus-server-offline-face): Add :version.
16219
16220         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
16221
16222         * gnus-msg.el (gnus-gcc-externalize-attachments)
16223         (gnus-debug-files, gnus-debug-exclude-variables)
16224         (gnus-discouraged-post-methods): Change :version.
16225         (gnus-confirm-mail-reply-to-news)
16226         (gnus-confirm-treat-mail-like-news): Add :version.
16227
16228         * gnus-int.el (gnus-server-unopen-status): Add :version.
16229
16230         * gnus-group.el (gnus-group-jump-to-group-prompt)
16231         (gnus-large-ephemeral-newsgroup)
16232         (gnus-fetch-old-ephemeral-headers): Add :version.
16233
16234         * gnus-fun.el (gnus-x-face-directory)
16235         (gnus-convert-pbm-to-x-face-command)
16236         (gnus-convert-image-to-x-face-command)
16237         (gnus-convert-image-to-face-command): Add :version.
16238
16239         * gnus-delay.el (gnus-delay-default-hour): Add :version.
16240
16241         * gnus-cite.el (gnus-cite-blank-line-after-header)
16242         (gnus-article-boring-faces): Add :version.
16243
16244         * gnus-art.el (gnus-buttonized-mime-types)
16245         (gnus-inhibit-mime-unbuttonizing)
16246         (gnus-treat-display-face)
16247         (gnus-treat-body-boundary): Change :version.
16248         (gnus-body-boundary-delimiter, gnus-picon-databases)
16249         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
16250         (gnus-treat-date-english, gnus-treat-fold-headers)
16251         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
16252         (gnus-treat-mail-picon, gnus-treat-wash-html)
16253         (gnus-article-encrypt-protocol)
16254         (gnus-use-idna, gnus-article-over-scroll)
16255         (gnus-mime-display-multipart-alternative-as-mixed)
16256         (gnus-mime-display-multipart-related-as-mixed)
16257         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
16258         (gnus-ctan-url, gnus-button-ctan-handler)
16259         (gnus-button-handle-ctan-bogus-regexp)
16260         (gnus-button-ctan-directory-regexp)
16261         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
16262         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
16263         (gnus-button-man-level, gnus-button-emacs-level)
16264         (gnus-button-message-level, gnus-button-browse-level): Add :version.
16265
16266         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
16267         (gnus-agent-go-online): Change :version.
16268         (gnus-agent-expire-unagentized-dirs)
16269         (gnus-agent-auto-agentize-methods): Add :version.
16270
16271         * flow-fill.el (fill-flowed-display-column)
16272         (fill-flowed-encode-column): Add :version.
16273
16274         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
16275         (gnus-outlook-deuglify-unwrap-max)
16276         (gnus-outlook-deuglify-cite-marks)
16277         (gnus-outlook-deuglify-unwrap-stop-chars)
16278         (gnus-outlook-deuglify-no-wrap-chars)
16279         (gnus-outlook-deuglify-attrib-cut-regexp)
16280         (gnus-outlook-deuglify-attrib-verb-regexp)
16281         (gnus-outlook-deuglify-attrib-end-regexp)
16282         (gnus-outlook-display-hook): Add :version.
16283
16284         * binhex.el (binhex-use-external): Add :version.
16285
16286 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
16287
16288         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
16289         and `invisible'.
16290
16291 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
16292
16293         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
16294         in gnus-registry-trim.
16295
16296 2004-09-13  Simon Josefsson  <jas@extundo.com>
16297
16298         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
16299
16300         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
16301
16302         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
16303         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
16304         <yamaoka@jpl.org>.
16305         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
16306         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
16307         <yamaoka@jpl.org>.
16308
16309         * sieve.el (sieve-manage-mode): Ditto.
16310
16311 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
16312
16313         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
16314
16315 2004-09-11  Simon Josefsson  <jas@extundo.com>
16316
16317         * dns-mode.el: Add.
16318
16319         * mm-view.el (mm-display-dns-inline): Add.
16320
16321         * mm-decode.el (mm-inline-media-tests): Add text/dns.
16322         (mm-automatic-display): Ditto.
16323
16324         * mailcap.el (mailcap-mime-data): Add text/dns.
16325         (mailcap-mime-extensions): Map .soa to text/dns.
16326
16327 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
16328
16329         * gnus-art.el (article-decode-mime-words, article-babel)
16330         (gnus-article-highlight-signature, gnus-article-add-buttons)
16331         (gnus-signature-toggle): Remove unnecessary bindings of
16332         `inhibit-read-only' inherited from v5.10 merge.
16333
16334 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
16335
16336         * nntp.el (nntp): New customization group.
16337         (nntp-authinfo-file): Add customization group.
16338
16339         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
16340
16341         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
16342
16343         * gnus.el (to-address, to-list, subscribed)
16344         (large-newsgroup-initial): Ditto.
16345
16346         * flow-fill.el (fill-flowed-display-column)
16347         (fill-flowed-encode-column): Ditto.
16348
16349 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16350
16351         * message.el (message-tokenize-header, message-send-mail-with-qmail):
16352         Use point-min rather than 1.
16353         (message-send-mail): Use buffer-size rather than point-max.
16354
16355         * gnus-sum.el (gnus-summary-search-article-forward):
16356         Signal a specific `search-failed' rather than a generic `error'.
16357
16358         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
16359         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
16360         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
16361
16362 2004-09-10  Simon Josefsson  <jas@extundo.com>
16363
16364         * nndb.el (require): Remove tcp and duplicate cl.
16365
16366 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16367
16368         * gnus-agent.el (directory-files-and-attributes): Move forward.
16369
16370 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
16371
16372         * gnus-agent.el (directory-files-and-attributes):
16373         Optionally defined to support XEmacs.
16374
16375 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
16376
16377         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
16378         to avoid run-time CL dependencies.
16379         (gnus-agent-unfetch-articles): New function.
16380         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
16381         article numbers even when local .overview file is missing.
16382         (gnus-agent-read-article-number): New function.  Only accepts
16383         27-bit article numbers.
16384         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
16385         Use gnus-agent-read-article-number.
16386         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
16387         from backend while recognizing that article numbers in .overview
16388         must be valid.
16389         (gnus-agent-update-files-total-fetched-for):
16390         Use directory-files-and-attributes to improve performance.
16391         * gnus-int.el (gnus-request-move-article):
16392         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
16393         improve performance.
16394
16395         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
16396         some users confused by references to .newsrc when they only have a
16397         .newsrc.eld file.
16398         (gnus-convert-mark-converter-prompt)
16399         (gnus-convert-converter-needs-prompt): Fix use of property list.
16400         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
16401         New function.  Used internally to only display 'gnus converting
16402         files' message when actually necessary.
16403
16404         * gnus-sum.el (): Remove (require 'gnus-agent) as required
16405         methods now autoloaded.
16406
16407 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16408
16409         * gnus-sum.el (gnus-summary-insert-subject): Remove list
16410         identifiers.
16411
16412 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
16413
16414         * gnus-picon.el: Fix indentation and closing parenthesis.
16415
16416 2004-09-01  Simon Josefsson  <jas@extundo.com>
16417
16418         * message.el (message-canlock-generate): Require sha1, not
16419         sha1-el.  (Can we get rid of this require altogether?  It is ugly
16420         to require within a function.  Sadly, if sha1.el isn't loaded, the
16421         let binding in m-c-g will hide the defcustom definition, which is
16422         bad.)
16423
16424         * canlock.el: Require sha1, not sha1-el.
16425
16426         * message.el: Don't autoload sha1 (there is a autoload cookie in
16427         sha1.el).
16428
16429         * sha1-el.el: Rename to sha1.el.
16430
16431 2004-08-30  Juanma Barranquero  <lektu@terra.es>
16432
16433         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
16434
16435 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16436
16437         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
16438
16439 2004-08-30  Kim F. Storm  <storm@cua.dk>
16440
16441         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
16442
16443         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
16444         Add :group 'nnimap.
16445
16446 2004-08-30  Andreas Schwab  <schwab@suse.de>
16447
16448         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
16449         ?* and ?\;.
16450
16451         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
16452         and ?\' to symbol instead of whitespace.
16453
16454 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16455
16456         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
16457
16458         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
16459         instead of re-search-forward.
16460
16461         * gnus-uu.el (gnus-uu-save-article): Ditto.
16462         (gnus-uu-post-encode-uuencode): Ditto.
16463
16464         * html2text.el (html2text-clean-list-items): Ditto.
16465         (html2text-clean-dtdd): Ditto.
16466         (html2text-format-tags): Ditto.
16467
16468         * message.el (message-send-mail-with-sendmail): Fix regexp.
16469         (message-fill-field-general): Use search-forward instead of
16470         re-search-forward.
16471         (unbold-region): Ditto.
16472
16473         * nnrss.el (nnrss-request-article): Ditto.
16474
16475         * nnslashdot.el (nnslashdot-request-article): Ditto.
16476
16477         * nnweb.el (nnweb-gmane-wash-article): Ditto.
16478
16479         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
16480         "Unrecognized menu descriptor" error in XEmacs.
16481
16482 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
16483
16484         * gnus-sum.el (gnus-read-header): Don't remove a header for the
16485         parent article of a sparse article in the thread hashtb.
16486
16487 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
16488
16489         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
16490         (nnmail-expand-newtext): Lowercase expanded entries if
16491         nnmail-split-lowercase-expanded is non-nil.
16492
16493 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16494
16495         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
16496
16497         * gnus-group.el (gnus-group-line-format-alist): Convert the value
16498         of gnus-tmp-news-method into string under XEmacs.  It will be
16499         passed to gnus-correct-length which takes only a string argument.
16500
16501 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16502
16503         * gnus-util.el (gnus-bind-print-variables): New macro.
16504         (gnus-prin1): Use it.
16505         (gnus-prin1-to-string): Use it.
16506         (gnus-pp): New function.
16507         (gnus-pp-to-string): New function.
16508
16509         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
16510         Replace pp-to-string with gnus-pp-to-string.
16511         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
16512         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
16513         * gnus-msg.el (gnus-debug): Ditto.
16514         * gnus-score.el (gnus-score-save): Ditto.
16515         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
16516         gnus-pp-to-string.
16517         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
16518         with gnus-pp.
16519         * score-mode.el (gnus-score-pretty-print): Ditto.
16520         * webmail.el (webmail-debug): Ditto.
16521
16522 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16523
16524         * gnus-art.el (article-display-face, article-display-x-face):
16525         Use buffer-read-only.
16526
16527 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16528
16529         * gnus-art.el (article-hide-list-identifiers):
16530         Bind inhibit-read-only as t.
16531
16532 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
16533
16534         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
16535
16536 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16537
16538         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
16539         (gnus-narrow-to-page): Don't assume point-min == 1.
16540         (gnus-article-edit-mode): Derive from message-mode.
16541
16542         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
16543         point-min == 1.
16544
16545         * imap.el (imap-parse-address-list, imap-parse-body-ext):
16546         Disable incorrect use of `assert'.
16547
16548         * message.el (message-mode): Set comment-start-skip.
16549
16550
16551 2004-08-22  Sam Steingold  <sds@gnu.org>
16552
16553         * pop3.el (pop3-leave-mail-on-server): New user variable.
16554         (pop3-movemail): Delete mail only when it is nil.
16555
16556 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
16557
16558         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
16559
16560         * mml.el (mml-preview): Use `pop-to-buffer'.
16561
16562         * message.el (message-goto-mail-followup-to): Insert after "To".
16563         (message-carefully-insert-headers): Add comment.
16564
16565         * gnus.el: Remove unused variable `gnus-article-check-size'.
16566
16567         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
16568
16569         * gnus-art.el (gnus-button-alist):
16570         Improve `gnus-button-handle-library' entry.
16571
16572 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
16573
16574         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
16575         Use downcase, since XEmacs capitalizes error messages differently.
16576
16577 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
16578
16579         * nntp.el: Add (require 'gnus) due to reference to
16580         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
16581
16582 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
16583
16584         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
16585         Bind `mm-fill-flowed'.
16586
16587         * mm-decode.el (mm-dissect-singlepart): Check it.
16588
16589 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
16590
16591         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
16592         'imap' for netrc parsing.
16593
16594 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
16595
16596         * mailcap.el (mailcap-mime-data): Mark as risky.
16597
16598 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16599
16600         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
16601         may be included in the encoded word.
16602         (rfc2047-encode): Don't append a space if the encoded word
16603         includes close parenthesis.
16604
16605 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16606
16607         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
16608         of text within parentheses.
16609
16610 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
16611
16612         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
16613         (gnus-encrypt-write-file-contents): Make the password key the file
16614         name PLUS the cipher, not just the cipher.  Also remove failed
16615         passwords from the cache.
16616
16617 2004-08-06  Simon Josefsson  <jas@extundo.com>
16618
16619         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
16620         Doc fix.
16621
16622 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16623
16624         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
16625         LWSP.
16626
16627 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
16628
16629         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16630         Try to append in-reply-to: data to the references: header.
16631
16632         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
16633         (netrc-parse): Use gnus-encrypt.el functions.
16634
16635         * gnus-encrypt.el: Add new file for encryption support; currently
16636         does only a few GPG ciphers and an internal XOR cipher.
16637
16638         * password.el: Add comments on using password-read-and-add.
16639         (password-read-and-add): Add function to read and add the
16640         password to the cache at once.
16641
16642 2004-07-28  Simon Josefsson  <jas@extundo.com>
16643
16644         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
16645         parameter (but don't use it, for now).
16646
16647         * imap.el (imap-ssl-open): Use imap-process-connection-type,
16648         instead of hard coding to nil.
16649
16650 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16651
16652         * mm-view.el (mm-inline-image-emacs): Open lines under an image
16653         as mm-inline-image-xemacs does.
16654
16655 2004-07-26  Simon Josefsson  <jas@extundo.com>
16656
16657         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
16658         Revert part of 2004-07-17 change below.
16659
16660 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16661
16662         * rfc2047.el (rfc2047-encode-region): Don't infloop.
16663         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
16664
16665 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16666
16667         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
16668         quotes that actually start with ">" at the beginning of the
16669         lines.
16670
16671 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16672
16673         * rfc2047.el (rfc2047-encode-region): Fix last change.
16674         (rfc2047-encode-parameter): Remove useless concat.
16675
16676 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16677
16678         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
16679         encode special characters; fix some kind of misconfigured headers;
16680         signal a real error if debug-on-quit or debug-on-error is non-nil.
16681         (rfc2047-encode-max-chars): New variable.
16682         (rfc2047-encode-1): Use it.
16683         (rfc2047-encode-parameter): New function.
16684
16685         * mml.el (mml-insert-parameter): Remove an excessive space.
16686
16687 2004-07-17  Simon Josefsson  <jas@extundo.com>
16688
16689         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
16690         Kai Grossjohann <kai@emptydomain.de>.
16691         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
16692         (gnus-group-make-menu-bar): Ditto.
16693
16694         * gnus-util.el (gnus-group-server): Add.
16695
16696 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
16697
16698         * message.el (message-clone-locals): Clone sendmail and smtp
16699         variables.
16700
16701 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16702
16703         * rfc2047.el (rfc2047-encode-region): Fix last change.
16704
16705 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16706
16707         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
16708         characters as non-special.
16709
16710 2004-07-09  Simon Josefsson  <jas@extundo.com>
16711
16712         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
16713         Users will lose all flag changes made while unplugged with
16714         e.g. nntp unless flag synchronization happens, thus `nil' is not a
16715         good default.  See numerous reports on ding mailing list.
16716
16717 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16718
16719         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
16720         add generate-head-function and generate-article-function to the
16721         rfc822-forward entry.
16722         (nndoc-rfc822-forward-generate-article): New function.
16723         (nndoc-rfc822-forward-generate-head): New function.
16724
16725         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
16726
16727 2004-07-06  Dan Christensen  <jdc@uwo.ca>
16728
16729         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
16730         respect display group parameter and gnus-summary-expunge-below.
16731         (gnus-articles-to-read): Remove unused reference to display group
16732         parameter.
16733
16734 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16735
16736         * nnheader.el (nnheader-uniquify-message-id): New experimental
16737         variable.
16738         (nnheader-nov-read-message-id): Use it.
16739
16740         * spam-report.el (spam-report-gmane): Add interactive.
16741
16742 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16743
16744         * mm-encode.el (mm-content-transfer-encoding-defaults):
16745         Use qp-or-base64 for the application/* types.
16746
16747 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
16748
16749         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
16750
16751 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
16752
16753         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
16754         trim value.
16755
16756 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
16757
16758         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
16759         New macro and function.
16760         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
16761
16762 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16763
16764         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
16765         after-load-alist.
16766
16767 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16768
16769         * gnus-group.el (gnus-group-get-new-news-this-group):
16770         Don't update info that isn't there.
16771
16772 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
16773
16774         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
16775         entry.
16776
16777 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16778
16779         * mm-view.el (mm-inline-render-with-function): Use multibyte
16780         buffer; decode html source by charset.
16781
16782         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
16783
16784         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
16785         Mule-UCS is loaded under XEmacs.
16786         (mm-mime-mule-charset-alist): Avoid duplicated entries.
16787
16788 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
16789
16790         * nnheader.el (nnheader-max-head-length): Increase to 8192.
16791
16792 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16793
16794         * mm-util.el (mm-coding-system-p): Return a coding-system.
16795         (mm-mime-mule-charset-alist): Use shift_jis instead of
16796         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
16797         entries for the mime charsets iso-2022-jp-3 and shift_jis.
16798         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
16799         instead of japanese-shift-jis and iso-latin-1 respectively in
16800         order to share the default value with both Emacs and XEmacs-mule.
16801         (mm-mule-charset-to-mime-charset):
16802         Make mm-coding-system-priorities effective.
16803         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
16804         while predicating of candidates upon the priorities.
16805
16806 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
16807
16808         * gnus-sum.el (gnus-summary-make-menu-bar):
16809         Add gnus-uu-invert-processable.
16810
16811         * gnus.el: Autoload gnus-uu-invert-processable.
16812
16813 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16814
16815         * mm-util.el (mm-with-multibyte-buffer): New macro.
16816
16817         * rfc2047.el (rfc2047-encode-string): Use it.
16818         (rfc2047-encode-region): Move point to the end of the region after
16819         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
16820
16821 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16822
16823         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
16824         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
16825
16826 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16827
16828         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
16829         (gnus-cite-parse): Ignore quoted envelope From_.
16830         Suggested by Karl Chen <quarl@nospam.quarl.org>.
16831
16832 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
16833
16834         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
16835         invalid addresses.
16836
16837 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
16838
16839         * spam.el: Change section markers, revise TODO list.
16840         (spam-backends): Make new master list of all installed backends.
16841         (spam-summary-exit-behavior): Add new variable to determine how
16842         messages moves are done at summary exit.
16843         (spam-move-spam-nonspam-groups-only)
16844         (spam-process-ham-in-nonham-groups)
16845         (spam-process-ham-in-spam-groups): Remove variables, the
16846         spam-summary-exit-behavior variable should be used to manage this
16847         behavior.
16848         (spam-old-ham-articles, spam-old-spam-articles): Remove.
16849         (spam-old-articles): Add variable, replacing spam-old-ham-articles
16850         and spam-old-spam-articles.
16851         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
16852         Add empty variables, placeholders for the backends they represent.
16853         (spam-set-difference): Move, unchanged.
16854         (spam-list-of-processors): Declare OBSOLETE, not used anymore
16855         unless the user has a processor variable.
16856         (spam-classifications, spam-classification-valid-p)
16857         (spam-backend-properties, spam-backend-property-valid-p)
16858         (spam-backend-function-type-valid-p)
16859         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
16860         (spam-report-articles-gmane, spam-report-articles-resend):
16861         Remove functions, they are not needed.
16862         (spam-install-backend-super, spam-backend-list)
16863         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
16864         (spam-backend-function, spam-backend-ham-registration-function)
16865         (spam-backend-spam-registration-function)
16866         (spam-backend-ham-unregistration-function)
16867         (spam-backend-spam-unregistration-function)
16868         (spam-backend-statistical-p, spam-backend-mover-p)
16869         (spam-install-backend-alias, spam-install-checkonly-backend)
16870         (spam-install-mover-backend, spam-install-nocheck-backend)
16871         (spam-install-backend, spam-install-statistical-backend)
16872         (spam-install-statistical-checkonly-backend): Add backend installation
16873         support.
16874         (spam-summary-prepare-exit): Rewrite to use the new backend code.
16875         (spam-group-processor-p): Use the new backend code and respect the
16876         summary exit behavior.
16877         (spam-mark-spam-as-expired-and-move-routine): Remove.
16878         (spam-summary-prepare): Change to use the new spam-old-articles
16879         variable.
16880         (spam-copy-or-move-routine, spam-copy-spam-routine)
16881         (spam-move-spam-routine, spam-copy-ham-routine)
16882         (spam-move-ham-routine): Add code to copy/move ham or spam.
16883         (spam-fetch-field-fast): Improve doc and code, plus allow the
16884         'number request.
16885         (spam-list-of-checks, spam-list-of-statistical-checks):
16886         Remove variables.
16887         (spam-split, spam-find-spam): Use the new backend code.
16888         (spam-registration-functions): Remove variable.
16889         (spam-unregister-routine): Add convenience wrapper.
16890         (spam-log-undo-registration, spam-register-routine)
16891         (spam-log-processing-to-registry)
16892         (spam-log-unregistration-needed-p): Rename "check" to "backend"
16893         where possible.
16894         (spam-check-gmane-xref, spam-check-regex-headers)
16895         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
16896         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
16897         (spam-check-bogofilter-headers, spam-check-spamoracle)
16898         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
16899         (spam-check-crm114-headers): Use the spam-split-group that
16900         spam-split prepares, no need to determine it every time.
16901
16902         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
16903         to the nnheader-parse-naked-head call.
16904
16905         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
16906
16907         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
16908         the nnheader-nov-read-message-id call.
16909
16910 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16911
16912         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
16913         gnus-activate-group twice.  Suggested by Markus Peter
16914         <warp@spin.de>.
16915
16916 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16917
16918         * gnus-art.el (gnus-article-time-format): Exchange the order of
16919         day and month in the default value; fix customization type.
16920         (article-date-ut): Use add-text-properties.
16921         (article-make-date-line): Use message-make-date instead of
16922         current-time-string.
16923
16924         * message.el (message-fetch-field): Don't use set-text-properties.
16925         (message-make-date): Simplify.
16926
16927         * messagexmas.el (message-xmas-make-date): New function.
16928         (message-xmas-redefine): Defalias message-make-date to it.
16929
16930 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16931
16932         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
16933         (rfc2047-encode-region): Treat text within parentheses as special;
16934         show the original text when error has occurred.
16935
16936         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
16937         already-computed method to gnus-activate-group.
16938
16939         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
16940         same select-methods identical Lisp objects.
16941
16942         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
16943         object when modifying the info.
16944
16945 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16946
16947         * gnus-srvr.el (gnus-server-set-info): Remove the server from
16948         gnus-opened-servers since it has never been opened with the new
16949         configuration yet.
16950
16951 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16952
16953         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
16954         arg to nnheader-generate-fake-message-id.
16955
16956 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
16957
16958         * nnheader.el (nnheader-generate-fake-message-id): Accept a
16959         number and build a fake message ID localized to a group and
16960         article number (so it's repeatable from that point on).
16961         (nnheader-fake-message-id-p): Change regex to accomodate new fake
16962         ID format.
16963
16964         * gnus-sum.el (gnus-get-newsgroup-headers):
16965         Call nnheader-generate-fake-message-id with the article number.
16966
16967 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
16968
16969         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
16970         end-of-buffer.
16971
16972 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16973
16974         * message.el (message-ignored-supersedes-headers): Add Approved.
16975
16976 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16977
16978         * rfc2047.el (rfc2047-encode-message-header): Remove useless
16979         goto-char.
16980         (rfc2047-encode): Fold the line before encoding.
16981
16982 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16983
16984         * rfc2047.el (rfc2047-encode-message-header): Disabled header
16985         folding -- not all headers can be folded, and this should be done
16986         by the message composition mode.  Probably.  I think.
16987
16988 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16989
16990         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
16991         fast.
16992
16993         * gnus-ems.el (gnus-remove-image): Don't use
16994         message-text-with-property; remove only the image found first.
16995
16996         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
16997         found first.
16998
16999 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
17000
17001         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
17002
17003 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17004
17005         * message.el (message-text-with-property): Make it fast and accept
17006         optional arguments.
17007         (message-strip-forbidden-properties): Use it.
17008         (message-fix-before-sending): Follow the m-t-w-p change.
17009
17010         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
17011
17012 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17013
17014         * gnus-art.el (article-hide-headers): Don't change the buffer
17015         mistakenly when performing mml-preview even if
17016         gnus-single-article-buffer is nil.
17017
17018 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
17019
17020         * message.el (message-expand-name-databases): New user option.
17021         (message-expand-name): Use it.
17022
17023 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
17024
17025         * spam.el (spam-report-articles-resend)
17026         (spam-report-resend-register-routine): Allow ham reporting.
17027         (spam-report-resend-register-ham-routine): Add wrapper.
17028         (spam-registration-functions): Add ham resending functions.
17029         (spam-list-of-processors): Add ham resend processor.
17030
17031         * gnus.el (ham-resend-to): Add new group parameter.
17032         (spam-process): Add ham resend option.
17033
17034         * spam-report.el (spam-report-resend): Allow reporting ham.
17035         (spam-report-resend-ham): Add wrapper.
17036
17037 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17038
17039         * message.el (message-cite-articles-with-x-no-archive):
17040         New variable.
17041         (message-cite-original): Use it.
17042
17043 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17044
17045         * message.el (message-cite-original): Respect X-No-Archive.
17046
17047 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17048
17049         * gnus-art.el (article-hide-headers): Refer to the values for
17050         gnus-ignored-headers and gnus-visible-headers in the summary
17051         buffer since a user may have set them as group parameters.
17052
17053 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
17054
17055         * assistant.el (assistant-node-name): Add convenience function.
17056         (assistant-render-text, assistant-render-node): Add error handling,
17057         plus handle multiple next nodes.
17058         (assistant-find-next-node): Comment out for now.
17059         (assistant-find-next-nodes): Add function, returns list of next
17060         nodes.
17061
17062 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
17063
17064         * mail-source.el (mail-source-directory): Fix doc-string.
17065
17066 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
17067
17068         * assistant.el (assistant-render-text, assistant-eval): Add :set
17069         widget type, which is different because it takes and returns a
17070         list.  Much hilarity ensues.
17071
17072 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
17073
17074         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
17075
17076         * gnus-group.el (gnus-group-get-new-news-this-group):
17077         Add doc-string.
17078
17079         * gnus-start.el (gnus-activate-group): Add doc-string.
17080
17081 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17082
17083         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
17084
17085 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
17086
17087         * assistant.el (assistant-render-text): Try to add a :set
17088         widget, more to come.
17089
17090         * spam.el (spam-group-spam-contents-p): Handle empty groupname
17091         strings.
17092         (spam-report-articles-resend)
17093         (spam-register-routine): Do registration iff any articles warrant
17094         it.
17095         (spam-summary-prepare-exit): Change log message for nil group
17096         destinations.
17097
17098 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
17099
17100         * spam.el (spam-report-resend-register-routine):
17101         Allow spam-report-resend-to to be a group parameter or a global value.
17102
17103 2004-05-26  Simon Josefsson  <jas@extundo.com>
17104
17105         * starttls.el: Merge with my GNUTLS based starttls.el.
17106         (starttls-gnutls-program, starttls-use-gnutls)
17107         (starttls-extra-arguments, starttls-process-connection-type)
17108         (starttls-connect, starttls-failure, starttls-success):
17109         New variables.
17110         (starttls-program, starttls-extra-args): Doc fix.
17111         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
17112         New functions.
17113         (starttls-negotiate, starttls-open-stream):
17114         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
17115         function if it is set.
17116
17117 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17118
17119         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
17120         structured fields.
17121
17122 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17123
17124         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
17125
17126 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
17127
17128         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
17129         Add variable.
17130         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
17131         assigning the spam-mark to new messages.
17132
17133 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
17134
17135         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
17136
17137 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17138
17139         * dgnushack.el: Autoload customize-set-variable for XEmacs.
17140
17141         * rfc2047.el (rfc2047-encodable-p): Don't move point.
17142         (rfc2047-decode): Treat the ascii coding-system as raw-text by
17143         default.
17144
17145 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
17146
17147         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
17148         correct data.
17149
17150 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
17151
17152         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
17153         (spam-group-processor-p): Fix function.
17154         (spam-group-processor-multiple-p)
17155         (spam-group-spam-processor-report-gmane-p)
17156         (spam-group-spam-processor-report-resend-p)
17157         (spam-group-spam-processor-bogofilter-p)
17158         (spam-group-spam-processor-blacklist-p)
17159         (spam-group-spam-processor-ifile-p)
17160         (spam-group-ham-processor-ifile-p)
17161         (spam-group-spam-processor-spamoracle-p)
17162         (spam-group-spam-processor-crm114-p)
17163         (spam-group-ham-processor-bogofilter-p)
17164         (spam-group-spam-processor-stat-p)
17165         (spam-group-ham-processor-stat-p)
17166         (spam-group-ham-processor-whitelist-p)
17167         (spam-group-ham-processor-BBDB-p)
17168         (spam-group-ham-processor-spamoracle-p)
17169         (spam-group-ham-processor-copy-p): Remove functions with some
17170         prejudice against unneeded code.
17171         (spam-report-articles-resend)
17172         (spam-report-resend-register-routine): Allow the group/topic
17173         spam-resend-to value to override spam-report-resend-to.
17174         (spam-summary-prepare-exit): Invoke spam-group-processor-p
17175         properly now.
17176
17177         * gnus.el (spam-resend-to): Add group/topic parameter.
17178         (spam-process): Move the OBSOLETE processors to the end of the
17179         choices.
17180
17181 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
17182
17183         * spam-report.el (spam-report-resend-to, spam-report-resend):
17184         Start with resend-to set to nil, and then ask the user if necessary.
17185         (spam-report-resend): spam-report-resend takes a list of articles, not
17186         separate article numbers.
17187
17188 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17189
17190         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
17191         addition to emacs-w3m.
17192
17193 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17194
17195         * assistant.el (assistant-authinfo-data): New function.
17196         (assistant-eval): Eval for entire assistant.
17197
17198         * netrc.el (netrc-services-file): New variable.
17199         (netrc-parse-services): New function.
17200         (netrc-find-service-name): New function.
17201         (netrc-find-service-number): New function.
17202         (netrc-port-equal): New function.
17203         (netrc-machine): Use it.
17204
17205         * nnimap.el (nnimap-open-connection): Use netrc.
17206
17207         * gnus-util.el (gnus-netrc-get): Remove aliases.
17208
17209         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
17210
17211         * assistant.el (wid-edit): Fix compilation.
17212
17213         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
17214
17215 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
17216
17217         * gnus-util.el (gnus-set-file-modes): New function.  (small
17218         patch).
17219
17220 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17221
17222         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
17223
17224         * assistant.el (assistant-render-node): Fix up rendering and
17225         read-only text.
17226         (assistant-render-node): Reset.
17227         (assistant-make-read-only): Not sticky.
17228
17229 2004-05-20  Danny Siu  <dsiu@adobe.com>
17230
17231         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
17232         centered even when gnus-auto-center-summary is t.
17233
17234 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17235
17236         * dns.el (dns-get-txt-answer): New function.
17237         (dns-read-txt): Ditto.
17238         (query-dns): Use it.
17239
17240 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17241
17242         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
17243         active for foreign groups even if the group level is higher than
17244         the specified value.
17245
17246 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17247
17248         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
17249         non-active groups.
17250
17251         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
17252
17253 2004-05-20  Magnus Henoch  <mange@freemail.hu>
17254
17255         * dns.el (dns-read-type): Add support for SVR.  (small patch)
17256
17257 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
17258
17259         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
17260         (spam-crm114-header, spam-crm114-spam-switch)
17261         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
17262         (spam-crm114-positive-spam-header)
17263         (spam-crm114-database-directory, spam-list-of-processors)
17264         (spam-group-spam-processor-crm114-p)
17265         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
17266         (spam-generic-score, spam-list-of-checks)
17267         (spam-list-of-statistical-checks, spam-registration-functions)
17268         (spam-check-crm114-headers, spam-crm114-score)
17269         (spam-check-crm114, spam-crm114-register-with-crm114)
17270         (spam-crm114-register-spam-routine)
17271         (spam-crm114-unregister-spam-routine)
17272         (spam-crm114-register-ham-routine)
17273         (spam-crm114-unregister-ham-routine): Add CRM114 support.
17274         From asjo@koldfront.dk (Adam Sjøgren).
17275
17276         * gnus.el: Add spam-use-crm114.
17277
17278         * spam.el (spam-list-of-processors, spam-registration-functions):
17279         Add spam-use-resend.
17280         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
17281         (spam-report-articles-gmane): Add doc fix.
17282         (spam-report-articles-resend, spam-report-resend-register-routine):
17283         Add wrappers around spam-report-resend-to.
17284
17285         * spam-report.el (spam-report-resend-to, spam-report-resend):
17286         Add support for resending spam.
17287         (spam-report-gmane): Fix line length >80.
17288
17289         * gnus.el (spam-process): Add spam-use-resend.
17290
17291 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17292
17293         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
17294         number of processed spam messages.
17295         (spam-ham-copy-or-move-routine): Return the number of processed
17296         ham messages.
17297         (spam-summary-prepare-exit): Use the above values to decide
17298         whether status messages shouled be displayed.
17299
17300 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17301
17302         * rfc2047.el (rfc2047-encode-function-alist): Rename from
17303         `rfc2047-encoding-function-alist' in order to avoid conflicting
17304         with the old version.
17305         (rfc2047-encode-region): Concatenate words containing non-ASCII
17306         characters in structured fields; don't encode space-delimited
17307         ASCII words even in unstructured fields; don't break words at
17308         char-category boundaries.
17309         (rfc2047-encode-1): New function.
17310         (rfc2047-encode): Use it; encode text so that it occupies the
17311         maximum width within 76-column; work correctly on Q encoding for
17312         iso-2022-* charsets.
17313         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
17314         sure not to break a line just after the header name.
17315         (rfc2047-b-encode-region): Remove.
17316         (rfc2047-b-encode-string): New function.
17317         (rfc2047-q-encode-region): Remove.
17318         (rfc2047-q-encode-string): New function.
17319
17320         * mm-util.el (mm-replace-in-string): New function.
17321
17322 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17323
17324         * gnus-msg.el (gnus-inews-make-draft-meta-information):
17325         Really get it right.
17326         (gnus-inews-make-draft): Really.
17327
17328 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
17329
17330         * nnmh.el (nnmh-request-list-1): Don't check the link count
17331         before descending.  (small patch)
17332
17333 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17334
17335         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
17336         stuff.
17337
17338         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
17339         Match on real group name.
17340
17341         * gnus-art.el (gnus-signature-limit): Doc fix.
17342
17343         * gnus-msg.el (gnus-inews-make-draft): Quote list.
17344
17345         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
17346
17347 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
17348
17349         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
17350         isn't a string.
17351
17352 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17353
17354         * gnus-draft.el (gnus-draft-send):
17355         Bind rfc2047-encode-encoded-words.
17356
17357         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
17358         (rfc2047-encodable-p): Say that =? needs encoding.
17359         (rfc2047-encode-encoded-words): New variable.
17360
17361         * gnus-group.el (gnus-group-select-group): Doc fix.
17362
17363         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
17364
17365         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
17366         to nil.
17367
17368         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
17369
17370         * nnheader.el (nnheader-get-lines-and-char): New function.
17371
17372 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
17373
17374         * gnus-msg.el (gnus-summary-followup-with-original):
17375         Document yanking of region when active.
17376
17377 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17378
17379         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
17380         groups if the group level is higher than the specified value.
17381
17382 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17383
17384         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
17385         (gnus-group-jump-to-group): Add prefix argument using
17386         `gnus-group-jump-to-group-prompt'.  Query before jumping to
17387         non-active group.
17388
17389         * compface.el (uncompface): Be verbose when changing
17390         `uncompface-use-external'.
17391
17392         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
17393         handle manual section.
17394
17395 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17396
17397         * gnus-art.el (gnus-button-alist): Revert previous change.
17398
17399 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17400
17401         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
17402
17403 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17404
17405         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
17406         whether backend can accept message.
17407
17408         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
17409
17410 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
17411
17412         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
17413         Avoid creating directory when nntp-marks-is-evil is true.
17414         Reported by Reiner Steib.
17415
17416 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17417
17418         * gnus-picon.el (gnus-picon-style): New variable.
17419         (gnus-picon-insert-glyph): Add optional `nostring' argument.
17420         (gnus-picon-transform-address): Support `gnus-picon-style'.
17421         From Jesper Harder <harder@ifa.au.dk>.
17422
17423 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17424
17425         * message.el (message-fill-field): Return point.
17426         (message-generate-headers): Go to end of field.
17427
17428         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
17429         stuff for non-living groups.
17430
17431 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
17432
17433         * gnus-art.el (gnus-article-followup-with-original)
17434         (gnus-article-reply-with-original): gnus-mark-active-p ->
17435         gnus-region-active-p.
17436
17437 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
17438
17439         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
17440         only when there is spam or ham to be processed.
17441
17442 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17443
17444         * mail-source.el (mail-source-delete-crash-box): Refactor.
17445         (mail-source-fetch): Use it.
17446         (mail-source-fetch-file): Ditto.
17447         (mail-source-fetch-directory): Run postscript in loop.
17448         (mail-source-fetch-pop): Delete.
17449         (mail-source-fetch-maildir): Ditto.
17450         (mail-source-fetch-imap): Ditto.
17451
17452         * imap.el (imap-authenticators): Comment out sasl.
17453
17454         * message.el (message-skip-to-next-address): New function.
17455         (message-fill-header-address): Refactor.
17456         (message-fill-address): Use it.
17457         (message-delete-address): Use it.
17458         (message-fill-header-general): Refactor.
17459         (message-fill-field-address): Rename.
17460         (message-narrow-to-field): Find the start of the header.
17461         (message-header-format-alist): Don't pre-fill.
17462         (message-fill-header): Remove.
17463         (message-insert-header): New function.
17464         (message-shorten-references): Use it.
17465
17466         * rfc2047.el (rfc2047-field-value): Strip props.
17467
17468         * mail-parse.el (mail-header-make-address): New alias.
17469
17470         * ietf-drums.el (ietf-drums-make-address): New function.
17471
17472         * imap.el: Add compiler directives.
17473
17474         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
17475
17476         * gnus-art.el (article-decode-idna-rhs): Don't use
17477         message-idna-inside-rhs-p.
17478
17479 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17480
17481         * message.el (message-idna-inside-rhs-p): Remove.
17482         (message-idna-to-ascii-rhs-1): Use proper address parsing.
17483
17484         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
17485         false positives.
17486
17487 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
17488
17489         * imap.el (imap-sasl-make-mechanisms): Use sasl.
17490
17491 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17492
17493         * nneething.el (nneething-file-name): Don't create spurious
17494         files.
17495
17496         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
17497         (gnus-inews-do-gcc): Remove sleep.
17498
17499         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
17500         part under point.
17501
17502         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
17503         (gnus-agent-regenerate-group): Using nil messages aren't valid.
17504
17505 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
17506
17507         * spam.el (spam-summary-prepare-exit): Fix (length).
17508
17509 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
17510
17511         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
17512         as expired without moving it" message when there are spam
17513         messages left.
17514
17515 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
17516
17517         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
17518         header is not nil.
17519
17520 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
17521
17522         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
17523         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
17524         (nntp-marks-changed-p): New arg SERVER.
17525         (nntp-request-update-info): Adjust caller.
17526
17527 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
17528
17529         * nntp.el (nntp-save-marks): Pass missing arg.
17530
17531 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
17532
17533         * nntp.el: Support marks.
17534         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
17535         (nntp-marks-modtime, nntp-marks-directory): New variables.
17536         (nntp-request-set-mark, nntp-request-update-info)
17537         (nntp-possibly-create-directory, nntp-marks-changed-p)
17538         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
17539         New functions.
17540
17541 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
17542
17543         * gnus-xmas.el (gnus-xmas-select-lowest-window)
17544         (gnus-xmas-redefine): Rename.
17545
17546         * gnus-score.el (gnus-score-insert-help):
17547         Use gnus-select-lowest-window.
17548
17549         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
17550         appt-select-lowest-window and rename to gnus-select-lowest-window.
17551
17552         * gnus.el: do.
17553
17554 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17555
17556         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
17557         encodings of MIME-encoded words, in order to improve
17558         interoperability with several broken MUAs.
17559
17560 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17561
17562         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
17563         tags, only when charsets are not specified in headers.
17564         (mm-inline-text-html-render-with-w3m): Ditto.
17565
17566         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
17567         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
17568
17569 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17570
17571         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
17572         instead of MIME-decoded from fields when checking
17573         `gnus-article-address-banner-alist'.
17574
17575 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
17576
17577         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
17578         description rather than subject.
17579
17580 2004-05-02  Steve Youngs  <steve@youngs.au.com>
17581
17582         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
17583
17584 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17585
17586         * gnus.el (gnus-version-number): Bump.
17587
17588 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17589
17590         * gnus.el: No Gnus v0.2 is released.
17591
17592 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17593
17594         * gnus-agent.el (gnus-agent-read-agentview):
17595         Inline gnus-uncompress-range.
17596
17597 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17598
17599         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
17600         `exec-installed-p'.
17601
17602 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17603
17604         * gnus.el (spam-process, spam-autodetect-methods):
17605         Add bsfilter and bsfilter-headers.
17606
17607         * spam.el (spam-bsfilter): New customize group.
17608         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
17609         (spam-bsfilter-header, spam-bsfilter-probability-header)
17610         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
17611         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
17612         (spam-bsfilter-database-directory): New options.
17613         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
17614         (spam-list-of-statistical-checks, spam-registration-functions):
17615         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
17616         (spam-bsfilter-score): New command.
17617         (spam-check-bsfilter-headers, spam-check-bsfilter)
17618         (spam-bsfilter-register-with-bsfilter)
17619         (spam-bsfilter-register-spam-routine)
17620         (spam-bsfilter-unregister-spam-routine)
17621         (spam-bsfilter-register-ham-routine)
17622         (spam-bsfilter-unregister-ham-routine): New functions.
17623         (spam-generic-score): Support bsfilter; Accept an optional argument
17624         to recalcurate spam score even if scoring header has already been
17625         added.
17626         (spam-bogofilter-score, spam-spamassassin-score): Accept an
17627         optional argument to recalcurate spam score even if scoring header
17628         has already been added.
17629
17630 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
17631
17632         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
17633         strings!  Reported by David D. Smith <davidsmith@acm.org>.
17634         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
17635         link is missing.
17636
17637 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
17638
17639         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
17640         (html2text-get-attr): Rewrite.
17641
17642         * message.el (message-setup-1): Remove redundant put-text-property
17643         on mail-header-separator.
17644
17645 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
17646
17647         * gnus-registry.el (gnus-registry-cache-whitespace)
17648         (gnus-registry-action, gnus-registry-spool-action)
17649         (gnus-registry-split-fancy-with-parent): Change message levels
17650         from 5 to 3 or 7, as needed.
17651
17652         * spam.el (spam-summary-prepare-exit)
17653         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
17654         (spam-split, spam-find-spam, spam-log-undo-registration)
17655         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
17656         level from 5 to 6.
17657
17658 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17659
17660         * gnus-ems.el: Autoload appt-select-lowest-window (revert
17661         2004-03-04 change).
17662
17663 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
17664
17665         * sieve-manage.el (sieve-manage-open):
17666         * nnweb.el (nnweb-insert-html):
17667         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
17668         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
17669         * nnspool.el (nnspool-request-group):
17670         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
17671         * nnml.el (nnml-request-update-info):
17672         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
17673         (nnmh-request-create-group, nnmh-update-gnus-unreads):
17674         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
17675         (nnimap-request-set-mark):
17676         * nnfolder.el (nnfolder-request-update-info):
17677         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
17678         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
17679         * gnus-uu.el (gnus-uu-find-articles-matching):
17680         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
17681         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
17682         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
17683         * gnus-nocem.el (gnus-nocem-scan-groups):
17684         * gnus-int.el (gnus-start-news-server):
17685         * gnus-group.el (gnus-group-make-kiboze-group)
17686         (gnus-group-browse-foreign-server):
17687         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
17688         Use mapc when appropriate.
17689
17690 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
17691
17692         FIXME: Make separate entries for each person.
17693
17694         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
17695         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
17696         <shields@msrl.com>:
17697
17698         * spam.el (spam-necessary-extra-headers): Get the extra headers we
17699         may need for spam sorting and scoring.
17700         (spam-user-format-function-S): Add user format function suitable for
17701         general use.
17702         (spam-article-sort-by-spam-status): Add sorting function for summary
17703         sorting.
17704         (spam-extra-header-to-number): Add function to get a score from a
17705         header.
17706         (spam-summary-score): Add function to get a numeric score from the
17707         headers.
17708         (spam-generic-score): Fix function doc, was in wrong place.
17709         (spam-initialize): Take symbols when it's run, and install the
17710         extra headers that spam-necessary-extra-headers thinks we need.
17711
17712 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
17713
17714         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
17715         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
17716
17717 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
17718
17719         * gnus-sum.el (gnus-set-global-variables)
17720         (gnus-build-all-threads, gnus-get-newsgroup-headers)
17721         (gnus-article-get-xrefs, gnus-summary-best-group)
17722         (gnus-summary-next-article, gnus-summary-enter-digest-group)
17723         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
17724         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
17725         Use with-current-buffer.
17726
17727 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
17728
17729         * spam.el (spam-summary-prepare-exit): Simplify logic.
17730         (spam-fetch-article-header): Read the article header if it's not
17731         available.
17732         (spam-list-articles): Simplify logic.
17733         (spam-filelist-register-routine): Fix bug with unregister-list.
17734
17735         * gnus-registry.el: Fix comments at beginning.
17736
17737 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
17738
17739         * message.el (message-cater-to-broken-inn): Remove.
17740         (message-shorten-references): Make sure the total folded length of
17741         References is shorter than 998 characters to cater to a bug in INN
17742         2.3.  Also, don't pretend that references aren't folded -- this
17743         hasn't worked for a while.
17744
17745 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17746
17747         * gnus-agent.el (gnus-agentize):
17748         gnus-agent-send-mail-real-function no longer set to current value
17749         of message-send-mail-function but rather a lambda that calls
17750         message-send-mail-function.  The change makes the agent real-time
17751         responsive to user changes to message-send-mail-function.
17752
17753 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17754
17755         * legacy-gnus-agent.el
17756         (gnus-agent-convert-to-compressed-agentview): Fix typos with
17757         help from Florian Weimer <fw@deneb.enyo.de>
17758
17759 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17760
17761         * nnmail.el (nnmail-cache-insert): Revert last change.
17762
17763 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17764
17765         * nnmail.el (nnmail-cache-insert): Always check whether
17766         nnmail-cache-ignore-groups matches a group name.
17767
17768 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
17769
17770         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
17771         (spam-find-spam, spam-log-processing-to-registry)
17772         (spam-log-registered-p, spam-log-unregistration-needed-p)
17773         (spam-log-undo-registration): Use gnus-message instead of
17774         gnus-error, none of these errors are fatal.
17775
17776         * gnus-registry.el (gnus-registry-clean-empty-function)
17777         (gnus-registry-clean-empty): Remove only empty entries without
17778         extra data.
17779
17780 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
17781
17782         * spam-stat.el (spam-stat-buffer-change-to-spam)
17783         (spam-stat-buffer-change-to-non-spam): Change (error) to
17784         (gnus-message 8) invocation.
17785
17786 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17787
17788         * nntp.el (nntp-via-netcat-command): New variable.
17789         (nntp-via-netcat-switches): New variable.
17790         (nntp-open-via-rlogin-and-netcat): New function.
17791         (nntp-open-connection-function): Doc fix.
17792         (nntp-telnet-command): Doc fix.
17793         (nntp-end-of-line): Doc fix.
17794         (nntp-via-rlogin-command): Doc fix.
17795         (nntp-via-user-name): Doc fix.
17796         (nntp-via-address): Doc fix.
17797
17798 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17799
17800         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
17801         error in Emacs 21.1.
17802
17803 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
17804
17805         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
17806
17807 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17808
17809         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
17810         (gnus-agent-with-refreshed-group): New macro.
17811         (gnus-agent-rename-group): New function.
17812         (gnus-agent-delete-group): New function.
17813         (gnus-agent-save-group-info): Use gnus-command-method when
17814         `method' parameter is nil.  Don't write nil entries into the
17815         active file.
17816         (gnus-agent-get-group-info): New function.
17817         (gnus-agent-fetch-articles):
17818         Use gnus-agent-update-files-total-fetched-for to increment disk space
17819         used.
17820         (gnus-agent-fetch-headers, gnus-agent-save-alist):
17821         Use gnus-agent-update-view-total-fetched-for to increment disk space
17822         used.
17823         (gnus-agent-get-local): Add optional parameters to avoid calling
17824         gnus-group-real-name and gnus-find-method-for-group.
17825         (gnus-agent-set-local): Delete stored entry if either min, or max,
17826         are nil.
17827         (gnus-agent-fetch-session): Reworded error/quit messages.
17828         On quit, use gnus-agent-regenerate-group to record existance of any
17829         articles fetched to disk before the quit occurred.
17830         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
17831         gnus-agent-update-view-total-fetched-for, and
17832         gnus-agent-update-files-total-fetched-for to decrement disk space
17833         used.
17834         (gnus-agent-retrieve-headers):
17835         Use gnus-agent-update-view-total-fetched-for to increment disk space
17836         used.
17837         (gnus-agent-regenerate-group): Replace gnus-group-update-group
17838         with gnus-agent-update-files-total-fetched-for to decrement disk
17839         space and fresh group buffer.
17840         (gnus-agent-inhibit-update-total-fetched-for): New variable.
17841         (gnus-agent-need-update-total-fetched-for): New variable.
17842         (gnus-agent-update-files-total-fetched-for): New function.
17843         (gnus-agent-update-view-total-fetched-for): New function.
17844         (gnus-agent-total-fetched-for): New function.
17845
17846         * gnus-cache.el (gnus-cache-save-buffers):
17847         Use gnus-cache-update-overview-total-fetched-for to change disk space
17848         used by this group.
17849         (gnus-cache-possibly-enter-article):
17850         Use gnus-cache-update-file-total-fetched-for to increment disk space
17851         used by this group.
17852         (gnus-cache-possibly-remove-article):
17853         Use gnus-cache-update-file-total-fetched-for to decrement disk space
17854         used by this group.
17855         (gnus-cache-generate-nov-databases): Purge total fetched cache.
17856         (gnus-cache-rename-group): New function.
17857         (gnus-cache-delete-group): New function.
17858         (gnus-cache-inhibit-update-total-fetched-for): New variable.
17859         (gnus-cache-need-update-total-fetched-for): New variable.
17860         (gnus-cache-with-refreshed-group): New macro.
17861         (gnus-cache-update-file-total-fetched-for): New function.
17862         (gnus-cache-update-overview-total-fetched-for): New function.
17863         (gnus-cache-rename-group-total-fetched-for): New function.
17864         (gnus-cache-delete-group-total-fetched-for): New function.
17865         (gnus-cache-total-fetched-for): New function.
17866
17867         * gnus-group.el: Require gnus-sum and autoload functions to
17868         resolve warnings when gnus-group.el compiled alone.
17869         (gnus-group-line-format): Documented new %F.
17870         (size of Fetched data) group line format; identifies disk space
17871         used by agent and cache.
17872         (gnus-group-line-format-alist): Defined new F format.
17873         (gnus-total-fetched-for): New function.
17874         (gnus-group-delete-group): No longer update
17875         gnus-cache-active-altered as gnus-request-delete-group now keeps
17876         the cache in sync.
17877         (gnus-group-list-active): Let the agent store a server's active
17878         list if currently plugged.
17879
17880         * gnus-int.el (gnus-request-delete-group):
17881         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
17882         local disk in sync with the server.
17883         (gnus-request-rename-group):
17884         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
17885         local disk in sync with the server.
17886
17887         * gnus-start.el (gnus-get-unread-articles):
17888         Cosmetic simplification to logic.
17889
17890         * gnus-util.el (gnus-rename-file): New function.
17891
17892 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
17893
17894         * mm-util.el (mm-image-load-path): Handle nil in load-path.
17895
17896 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
17897
17898         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
17899         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
17900
17901 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
17902
17903         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
17904         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
17905
17906 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
17907
17908         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
17909
17910 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
17911
17912         * spam.el (spam-set-difference): Add function to replace
17913         gnus-set-difference in spam.el.
17914         (spam-summary-prepare-exit): Use spam-set-difference.
17915
17916 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
17917
17918         * gnus-registry.el (gnus-registry-cache-file): Update to use
17919         gnus-dribble-directory OR gnus-home-directory OR ~.
17920         (gnus-registry-split-fancy-with-parent): Fix doc.
17921
17922 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17923
17924         * message.el (message-exchange-point-and-mark):
17925         Use message-mark-active-p.  Suggested by Jesper Harder
17926         <harder@ifa.au.dk>.
17927
17928 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17929
17930         * message.el (message-exchange-point-and-mark): Don't activate
17931         region if it was inactive.  Suggested by Hiroshi Fujishima
17932         <pooh@nature.tsukuba.ac.jp>.
17933
17934 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17935
17936         * gnus-art.el (article-display-face): Display Faces in the same
17937         order as X-Faces.
17938
17939 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17940
17941         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
17942
17943 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17944
17945         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
17946         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
17947         (gnus-article-mime-hierarchy): Remove.
17948         (gnus-article-mime-hierarchy-next): Remove.
17949         (gnus-article-mode): Revert 2004-03-19 change.
17950         (gnus-article-setup-buffer): Revert 2004-03-19 change.
17951         (gnus-insert-mime-button): Revert 2004-03-19 change.
17952         (gnus-mime-accumulate-hierarchy): Remove.
17953         (gnus-mime-enter-multipart): Remove.
17954         (gnus-mime-leave-multipart): Remove.
17955         (gnus-mime-display-part): Revert 2004-03-19 change.
17956         (gnus-mime-display-alternative): Revert 2004-03-19 change.
17957
17958         * mml.el (mml-preview): Revert 2004-03-19 change.
17959
17960 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
17961
17962         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
17963
17964 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17965
17966         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
17967         t while entering a file name using the mm-with-multibyte macro.
17968         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
17969
17970         * mm-util.el (mm-with-multibyte): New macro.
17971
17972 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17973
17974         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
17975         New user option.
17976         (gnus-mime-multipart-functions): Doc and customization fix.
17977         (gnus-article-mime-hierarchy): New variable.
17978         (gnus-article-mime-hierarchy-next): New variable.
17979         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
17980         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
17981         gnus-article-mime-hierarchy-next to nil.
17982         (gnus-insert-mime-button): Show hierarchy numbers.
17983         (gnus-mime-accumulate-hierarchy): New function.
17984         (gnus-mime-enter-multipart): New function.
17985         (gnus-mime-leave-multipart): New function.
17986         (gnus-mime-display-part): Recompute hierarchical MIME structure.
17987         (gnus-mime-display-alternative): Show hierarchy numbers.
17988
17989         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
17990         gnus-article-mime-hierarchy-next to nil.
17991
17992 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
17993
17994         * dns.el: Don't require gnus-xmas.
17995
17996 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
17997
17998         * mml.el (mml-generate-mime-1): Don't use format=flowed with
17999         inline PGP.
18000         (mml-menu): Disable mml-quote-region if mark is inactive.
18001
18002 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18003
18004         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
18005         when the group's active is not available.
18006
18007 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18008
18009         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
18010         error.
18011
18012 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
18013
18014         * imap.el (imap-store-password): New variable.
18015         (imap-interactive-login): Use it.
18016         Suggested by Mark Plaksin <happy@mcplaksin.org>.
18017
18018 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18019
18020         * gnus-art.el (gnus-article-read-summary-keys): Restore new
18021         window-start and hscroll to summary window.
18022
18023 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18024
18025         * gnus-start.el (gnus-convert-old-newsrc): Only write the
18026         conversion message to newsrc-dribble when an actual conversion is
18027         performed.
18028
18029 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
18030
18031         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
18032
18033 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18034
18035         * mm-decode.el (mm-complicated-handles): New function reviving
18036         former definition of mm-multiple-handles.
18037
18038         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
18039         (gnus-mime-delete-part): Use it.
18040
18041 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18042
18043         * gnus-agent.el (gnus-agent-read-local):
18044         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
18045         avoid the implicit assumption that they will always be equal.
18046         (gnus-agent-save-local): Bind buffer-file-coding-system, not
18047         coding-system-for-write, as the with-temp-file macro first prints
18048         to a buffer then saves the buffer.
18049
18050 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18051
18052         * gnus-art.el (gnus-article-edit-part): New function.
18053         (gnus-mime-save-part-and-strip): Use it; do query instead of
18054         signaling an error; don't use mm-multiple-handles.
18055         (gnus-mime-delete-part): Ditto.
18056
18057 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18058
18059         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
18060         old file versions.
18061         (gnus-group-prepare-hook): Remove function that converted list
18062         form of gnus-agent-expire-days to group properties.
18063
18064         * gnus-int.el: Autoload gnus-agent-regenerate-group.
18065         (gnus-request-accept-article): Re-indented.
18066
18067         * gnus-start.el (gnus-convert-old-newsrc): Registered new
18068         converters to handle old agent file formats.  Add logic for a
18069         "backup before upgrading warning".
18070         (gnus-convert-mark-converter-prompt): Developers can mark
18071         functions as needing (default), or not needing,
18072         gnus-convert-old-newsrc's "backup before upgrading warning".
18073         (gnus-convert-converter-needs-prompt): Tests whether the user
18074         should be protected from potentially irreversable changes by the
18075         function.
18076
18077         * legacy-gnus-agent.el: New.  Provides converters that are only
18078         loaded when gnus-convert-old-newsrc needs to call them.
18079
18080 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18081
18082         * mail-source.el (mail-source-touch-pop): Doc fix.
18083
18084         * message.el (message-smtpmail-send-it): Doc fix.
18085
18086 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
18087
18088         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
18089
18090         * nnmail.el (nnmail-split-fancy): do.
18091
18092         * gnus-kill.el (gnus-kill, gnus-execute): do.
18093
18094 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
18095
18096         * gnus-sum.el (gnus-widget-reversible-match)
18097         (gnus-widget-reversible-to-internal)
18098         (gnus-widget-reversible-to-external): New functions.
18099         (gnus-widget-reversible): New widget.
18100         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
18101
18102 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
18103
18104         * gnus-sum.el (gnus-thread-sort-functions)
18105         (gnus-article-sort-functions): Document `(not F)' items.
18106
18107 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
18108
18109         * spam.el (spam-use-gmane-xref): Add new backend.
18110         (spam-gmane-xref-spam-group): Add variable to control the name of the
18111         Gmane spam group.
18112         (spam-blackhole-servers, spam-blackhole-good-server-regex)
18113         (spam-regex-headers-spam, spam-regex-headers-ham)
18114         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
18115         (spam-list-of-checks): Add spam-use-gmane-xref to list of
18116         backends and checks.
18117         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
18118
18119         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
18120         an autodetect method.
18121
18122 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18123
18124         * gnus-int.el (gnus-request-accept-article): Inform the agent that
18125         articles are being added to a group.
18126         (gnus-request-replace-article): Inform the agent that articles
18127         need to be uncached as the cached contents are no longer valid.
18128
18129 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18130
18131         * binhex.el: Don't autoload executable-find.
18132
18133         * canlock.el: Don't autoload mail-fetch-field.
18134
18135         * dgnushack.el: Autoload c-mode for XEmacs.
18136
18137         * gnus-ems.el: Don't autoload appt-select-lowest-window.
18138
18139         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
18140         rmail-dont-reply-to and rmail-output.
18141
18142         * gnus-score.el: Don't autoload ffap-string-at-point.
18143
18144         * gnus-setup.el: Don't autoload sc-cite-original.
18145
18146         * imap.el: Don't autoload base64-decode-string,
18147         base64-encode-string and md5.
18148
18149         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
18150         and rmail-msg-restore-non-pruned-header.
18151
18152         * mm-decode.el: Don't autoload executable-find.
18153
18154         * mm-url.el: Don't autoload executable-find.
18155
18156         * mm-view.el: Don't autoload diff-mode.
18157
18158         * nndb.el: Don't autoload news-reply-mode, news-setup,
18159         cancel-timer and telnet.
18160
18161         * password.el: Don't autoload run-at-time for Emacs.
18162
18163         * sha1-el.el: Don't autoload executable-find.
18164
18165         * sieve-mode.el: Don't autoload c-mode.
18166
18167         * uudecode.el: Don't autoload executable-find.
18168
18169 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18170
18171         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
18172         (gnus-agent-possibly-alter-active): Avoid null in numeric
18173         comparison.
18174         (gnus-agent-set-local): Refuse to save null in local object table.
18175         (gnus-agent-regenerate-group): The REREAD parameter can now be a
18176         list of articles that will be marked as unread.
18177
18178 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18179
18180         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
18181
18182 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
18183
18184         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
18185         language tags.
18186
18187 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
18188
18189         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
18190         Don't bind "obarray".
18191
18192         * gnus-sum.el (gnus-thread-sort-functions):
18193         Add `gnus-thread-sort-by-most-recent-number' and
18194         `gnus-thread-sort-by-most-recent-date'.
18195         Reported by Kai Grossjohann <kai@emptydomain.de>.
18196
18197 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18198
18199         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
18200
18201 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18202
18203         * gnus-cus.el (gnus-agent-customize-category):
18204         Remove ignore-errors macro reference that required cl to be loaded at
18205         run-time.
18206
18207         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
18208         single-interval range of the form (min . max).  Previously the
18209         range had to look like ((min . max)).  Likewise, return
18210         (min . max) rather than ((min . max)).
18211         (gnus-range-map): Use gnus-range-normalize to accept
18212         single-interval range.
18213
18214         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
18215         the cache, but not the agent, now appear with their usual face.
18216
18217         * dgnushack.el (loaddir): New variable that is bound to the
18218         directory containing the dgnushack.el file. Use loaddir, rather
18219         than srcdir, to update load-path. Change lets dgnushack compile
18220         code in directories other than GNUS/lisp.
18221
18222 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18223
18224         * lpath.el: Don't bind w3m-safe-url-regexp.
18225
18226         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
18227         w3m-safe-url-regexp variable buffer-local.
18228
18229         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
18230
18231 2004-02-27  Simon Josefsson  <jas@extundo.com>
18232
18233         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
18234         gnus-group-real-prefix.
18235         (gnus-summary-move-article): Use it, instead of
18236         gnus-group-real-prefix.
18237
18238 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18239
18240         * lpath.el: Bind w3m-safe-url-regexp.
18241
18242         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
18243         w3m-safe-url-regexp variable buffer-local and set it as the value
18244         of mm-w3m-safe-url-regexp.
18245
18246         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
18247
18248         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
18249         parsing gnus-posting-styles when the message is not for replying.
18250
18251         * dgnushack.el: Autoload sgml-mode for XEmacs.
18252
18253         * nnrss.el (nnrss-opml-export):
18254         Use mm-set-buffer-file-coding-system instead of
18255         set-buffer-file-coding-system.
18256
18257 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
18258
18259         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
18260         of checkdoc.el).
18261         * nnrss.el: do.
18262         * gnus-mlspl.el: do.
18263         * gnus-ml.el: do.
18264         * gnus-srvr.el: do.
18265
18266         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
18267
18268 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
18269
18270         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
18271         Corrections to custom-manual links.
18272
18273         * gnus-art.el (gnus-article): Ditto.
18274
18275         * mm-decode.el (mime-display, mime-security): Ditto.
18276
18277 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
18278
18279         * flow-fill.el: Typo.
18280
18281 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
18282
18283         * spam-wash.el: New file.
18284
18285 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
18286
18287         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
18288
18289 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
18290
18291         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
18292         to be run with new-articles as LIST1, not LIST2.
18293         (spam-registration-functions): Add spam-use-ham-copy as a nil
18294         registration backend.
18295
18296 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
18297
18298         * spam-stat.el (spam-stat-washing-hook): New option.
18299         (spam-stat-buffer-words): Use it.
18300         (spam-stat-process-directory, spam-stat-test-directory):
18301         Use insert-file-contents-literally.
18302         (spam-stat-coding-system): New variable.
18303         (spam-stat-load, spam-stat-save): Use it.
18304
18305 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18306
18307         * spam-report.el (spam-report-plug-agent):
18308         Quote spam-report-url-to-file and spam-report-url-ping-plain.
18309
18310 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
18311
18312         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
18313         Allow / in mailto URLs.
18314
18315 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18316
18317         * spam-report.el (spam-report-process-queue): Fix interactive use.
18318         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
18319         (spam-report-unplug-agent): Doc fixes.
18320         (spam-report-url-ping-mm-url, spam-report-url-to-file)
18321         (spam-report-agentize, spam-report-deagentize): Autoload.
18322
18323 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18324
18325         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
18326
18327         * message.el (message-setup-fill-variables): Add mml tags to
18328         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
18329         <ajk@iu.edu>.
18330         (message-mode): Don't modify paragraph-separate there.
18331
18332 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18333
18334         * compface.el (uncompface-use-external): Default to undecided.
18335         (uncompface-use-external-threshold): New variable.
18336         (uncompface-float-time): New macro.
18337         (uncompface): Determine whether to use the external decoder if
18338         uncompface-use-external is undecided.
18339
18340 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18341
18342         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
18343         after images.
18344
18345         * gnus-art.el (gnus-mime-display-single): Remove dead code.
18346
18347 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
18348
18349         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
18350
18351         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
18352
18353         * gnus-sum.el (gnus-summary-limit-to-age)
18354         (gnus-summary-limit-children): do.
18355
18356         * gnus-int.el (gnus-request-scan): do.
18357
18358         * gnus-group.el (gnus-group-suspend): do.
18359
18360         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
18361
18362         * gnus-cite.el (gnus-cite-parse-attributions): do.
18363
18364         * gnus-agent.el (gnus-summary-set-agent-mark)
18365         (gnus-agent-regenerate-group): do.
18366
18367         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
18368
18369         * binhex.el (binhex-decode-region-internal): do.
18370
18371 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18372
18373         * gnus-fun.el (gnus-face-properties-alist): New user option.
18374         (gnus-display-x-face-in-from): Use it.
18375
18376         * gnus-art.el (article-display-face): Ditto.
18377
18378         * compface.el (uncompface-use-external): Default to nil.
18379
18380 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
18381
18382         * nntp.el (nntp-erase-buffer): New function.
18383         (nntp-retrieve-data, nntp-send-command)
18384         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
18385         (nntp-possibly-change-group): Use it.
18386
18387         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
18388         Use with-current-buffer.
18389
18390 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
18391
18392         * compface.el: Merge the ELisp-based uncompface program.
18393         (compface): New customization group.
18394         (uncompface-use-external): New user option.
18395         (uncompface): Call uncompface-internal if uncompface-use-external
18396         is nil.
18397         (uncompface-internal): New function.  Note that there are also
18398         some other functions and variables added for this function.
18399
18400 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
18401
18402         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
18403         if necessary.
18404
18405 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
18406
18407         * spam-report.el (spam-report-unplug-agent)
18408         (spam-report-plug-agent, spam-report-deagentize)
18409         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
18410         Add support for the Agent in spam-report: when unplugged, report to a
18411         file; when plugged, submit all the requests.
18412
18413         * spam.el (spam-register-routine): Fix message about
18414         registration.
18415
18416 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
18417
18418         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
18419         dependencies.
18420         (rfc2047-encode): Use it.
18421
18422         * gnus-art.el (gnus-button-marker-list): Move before first
18423         reference.
18424
18425         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
18426         (imap-parse-body): Fix format string mismatch.
18427
18428         * gnus-score.el (gnus-summary-increase-score): do.
18429
18430         * nnrss.el (nnrss-close): New function.
18431
18432 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
18433
18434         * nnrss.el (nnrss-make-filename): New function.
18435         (nnrss-request-delete-group, nnrss-read-server-data)
18436         (nnrss-save-server-data, nnrss-read-group-data)
18437         (nnrss-save-group-data): Use it.
18438         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
18439         (nnrss-read-server-data, nnrss-read-group-data): Use load.
18440         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
18441
18442 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
18443
18444         * mml.el (mml-compute-boundary-1): Don't uncompress files.
18445
18446 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
18447
18448         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
18449         files.
18450
18451         * message.el (message-generate-headers-first): Don't quote nil
18452         and t in docstrings.
18453
18454         * imap.el (imap-id): do.
18455
18456         * gnus-agent.el (gnus-agent-consider-all-articles)
18457         (gnus-agent-queue-mail): do.
18458
18459 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
18460
18461         * spam-report.el (spam-report-process-queue): New function.
18462         Process requests from `spam-report-requests-file'.
18463         (spam-report-process-queue): Doc fix.
18464
18465 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
18466
18467         * spam.el (spam-register-routine)
18468         (spam-log-processing-to-registry, spam-log-registered-p)
18469         (spam-log-unregistration-needed-p, spam-log-undo-registration):
18470         Change "check" to "spam-check" for semi-clarity.
18471
18472 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
18473
18474         * pop3.el: Require nnheader.
18475
18476         * mml-smime.el: Require cl.  Autoload message-fetch-field.
18477
18478         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
18479
18480         * gnus-picon.el: Require cl.
18481
18482         * gnus-fun.el: Require gnus-ems and gnus-util.
18483
18484         * gnus.el (gnus-method-to-server): Move defsubst before first use.
18485
18486         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
18487
18488         * gnus-art.el (gnus-article-edit-mode): Define before first
18489         reference.
18490
18491 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
18492
18493         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
18494         (gnus-uu-post-encoded): Use point-at-bol.
18495
18496         * gnus-topic.el (gnus-group-active-topic-p): do.
18497
18498         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
18499
18500         * gnus-group.el (gnus-group-kill-region): do.
18501
18502         * gnus-art.el (article-date-ut): do.
18503
18504         * message.el (message-fetch-field): Remove redundant
18505         case-fold-search binding.
18506         (message-narrow-to-field): Simplify.
18507
18508 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
18509
18510         * spam.el (spam-directory): Derive from `gnus-directory'.
18511
18512         * spam-report.el (spam-report-url-to-file)
18513         (spam-report-requests-file): New function and variable for offline
18514         reporting.
18515         (spam-report-url-ping-function): Add `spam-report-url-to-file'
18516         and user defined function.
18517         (spam-report-url-ping-mm-url): Remove doubled slash.
18518
18519 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
18520
18521         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
18522
18523 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
18524
18525         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
18526         Fix format string mismatch.
18527
18528         * sieve.el (sieve-deactivate-all): do.
18529
18530         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
18531
18532         * nnlistserv.el (nnlistserv-kk-wash-article): do.
18533
18534         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
18535
18536         * mm-bodies.el (mm-7bit-chars): Don't include \r.
18537
18538 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
18539
18540         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
18541         the list of checks.
18542
18543 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
18544
18545         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
18546         padding.
18547
18548 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
18549
18550         * mm-view.el (mm-fill-flowed): New variable.
18551         (mm-inline-text): Use it.
18552
18553 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
18554
18555         * spam.el (spam-spamassassin-register-ham-routine)
18556         (spam-spamassassin-register-spam-routine): Fix function names.
18557
18558 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18559
18560         * gnus.el (gnus-tmp-grouplens): Remove.
18561         (gnus-summary-line-format): Remove grouplens.
18562
18563         * gnus-group.el (gnus-group-line-format): Ditto.
18564
18565         * gnus-spec.el (gnus-format-specs): Ditto.
18566         (gnus-update-format-specifications): Flush the group format spec
18567         cache if there's the grouplens stuff.
18568         (gnus-parse-simple-format): Replace %l with the empty string.
18569
18570 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
18571
18572         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
18573         omission.
18574
18575 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18576
18577         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
18578         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
18579
18580 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
18581
18582         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
18583         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
18584         New macros and functions.
18585         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
18586         Handle > NLINK_MAX messages.
18587         * nnmaildir.el (nnmaildir-request-set-mark):
18588         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
18589
18590 2004-01-25  Alex Schroeder  <alex@gnu.org>
18591
18592         * spam-stat.el (spam-stat-process-directory-age): New option.
18593         (spam-stat-process-directory): Use it.
18594
18595 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
18596
18597         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
18598         (spam-stat-save): Accept prefix argument.
18599
18600 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
18601
18602         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
18603         links" error.
18604
18605 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18606
18607         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
18608         the rest of the and/or forms.
18609
18610 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
18611
18612         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
18613         compatibility with old .newsrc.eld files.
18614
18615         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
18616
18617         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
18618
18619         * gnus-start.el (gnus-1): do.
18620
18621         * gnus-group.el (gnus-group-line-format-alist): do.
18622
18623         * gnus.el (gnus-use-grouplens, gnus-visual): do.
18624
18625         * gnus-gl.el: Remove.
18626
18627 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18628
18629         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
18630         marks consisting of a single range {for example, (3 . 5)} rather
18631         than a list of a single range { ((3 . 5)) }.
18632
18633 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
18634
18635         * spam-stat.el (spam-stat-store-gnus-article-buffer):
18636         Use with-current-buffer.
18637         (spam-stat-store-current-buffer): Use insert-buffer-substring to
18638         avoid consing a string.
18639
18640         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
18641         Remove obsolete entries for big5 and gb2312.
18642
18643 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18644
18645         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
18646         uncompressed list.
18647
18648 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
18649
18650         * spam-stat.el (spam-stat-strip-xref): New function.
18651         (spam-stat-process-directory): Use it.
18652
18653         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
18654         here -- it's done in message-fetch-field.
18655
18656 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18657
18658         * gnus-agent.el (gnus-agent-queue-mail)
18659         (gnus-agent-prompt-send-queue): New variables.
18660         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
18661         * gnus-draft.el (gnus-group-send-queue): Pass the group name
18662         "nndraft:queue" along to gnus-draft-send.
18663         Use gnus-agent-prompt-send-queue.
18664         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
18665         is "nndraft:queue".  Suggested by Gaute Strokkenes
18666         <gs234@srcf.ucam.org>
18667
18668         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
18669         (agent-enable-undownloaded-faces): Add.
18670         (gnus-agent-cat-groups): Use eval-and-compile, not
18671         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
18672         method of gnus-agent-cat-groups even when the buffer has been
18673         evaled.
18674         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
18675         delete gnus-agent-save-active-1.
18676         (gnus-agent-save-groups): Delete.  Identical to
18677         gnus-agent-save-active.
18678         (gnus-agent-write-active): No longer adjust agent's copy of active
18679         file as agent's adjustments are now stored in their own
18680         file.  Remove optional parameter.
18681         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
18682         servers.  Add use of min/max range limits from server's local
18683         file.
18684         (gnus-agent-save-alist): Remove unused optional argument.
18685         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
18686         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
18687         (gnus-agent-set-local): A per-server file that keeps min/max range
18688         limits for articles known to the agent.  Provides a fast mechanism
18689         for altering many active ranges.
18690         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
18691         active file (local makes it unnecessary).
18692         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
18693
18694         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
18695         (agent-enable-undownloaded-faces): Add.
18696
18697         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
18698         disable it when sending to "nndraft:queue".
18699         (gnus-group-send-queue): Add safety check to avoid sending queue
18700         when unplugged.
18701
18702         * gnus-group.el (gnus-group-catchup): Use new
18703         gnus-sequence-of-unread-articles, not
18704         gnus-list-of-unread-articles, to avoid exhausting memory with huge
18705         numbers of articles.  Use gnus-range-map to avoid having to
18706         uncompress the unread list.
18707         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
18708         Fix invalid ange-ftp reference.
18709
18710         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
18711         (gnus-sorted-range-intersection): Intersection of two ranges
18712         without requiring that they first be uncompressed.
18713
18714         * gnus-start.el (gnus-activate-group): Unless blocked by the
18715         caller, possibly expand the active range to include both cached
18716         and agentized articles.
18717         (gnus-convert-old-newsrc): Rewrote in anticipation of having
18718         multiple version-dependent converters.
18719         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
18720         gnus-agent-save-active.
18721         (gnus-save-newsrc-file): Save dirty agent range limits.
18722
18723         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
18724         gnus-agent-possibly-alter-active.
18725         (gnus-adjust-marked-articles): Faster handling of simple lists.
18726
18727 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
18728
18729         * spam-stat.el (spam-stat-test-directory): New optional argument
18730         displays a list of files detected.  Suggested by Andrew Cohen
18731         <cohen@andy.bu.edu>.
18732         (spam-stat-buffer-words-with-scores): Don't narrow and change
18733         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
18734
18735 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
18736
18737         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
18738         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
18739         (spam-spamassassin-arguments)
18740         (spam-spamassassin-spam-flag-header)
18741         (spam-spamassassin-positive-spam-flag-header)
18742         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
18743         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
18744         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
18745         (spam-list-of-processors, spam-list-of-checks)
18746         (spam-list-of-statistical-checks, spam-registration-functions)
18747         (spam-check-spamassassin-headers, spam-check-spamassassin)
18748         (spam-spamassassin-score)
18749         (spam-spamassassin-register-with-sa-learn)
18750         (spam-spamassassin-register-spam-routine)
18751         (spam-spamassassin-register-ham-routine)
18752         (spam-assassin-register-spam-routine)
18753         (spam-assassin-register-ham-routine): Add SpamAssassin support.
18754         (spam-bogofilter-score): Fix to show article before scoring.
18755
18756 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
18757
18758         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
18759         default scoring function.
18760         (spam-generic-score): Call spam-spamassassin-score if
18761         spam-use-spamassassin or spam-use-spamassassin-headers is on;
18762         spam-bogofilter-score otherwise.
18763
18764         * gnus.el (spam-process, spam-autodetect-methods):
18765         Add spamassassin and spamassassin-headers.
18766
18767 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
18768
18769         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
18770         Suppress unnecessary messages.
18771
18772 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
18773
18774         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
18775         make-hash-table.
18776
18777 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18778
18779         * canlock.el (base64-encode-string): Don't autoload it.
18780
18781 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18782
18783         * run-at-time.el: Remove useless (require 'itimer),
18784         eval-and-compile and (featurep 'xemacs).
18785
18786 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
18787
18788         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
18789         GROUP is a virtual group.
18790
18791 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
18792
18793         * gnus.el: Autoload `message-y-or-n-p'.
18794
18795 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
18796
18797         * pgg-parse.el: Remove unnecessary (require 'custom).
18798
18799         * pgg-def.el: do.
18800
18801         * nnmail.el: do.
18802
18803         * gnus-undo.el: do.
18804
18805         * gnus-picon.el: do.
18806
18807         * gnus-util.el: do.
18808
18809 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
18810
18811         * gnus-sum.el (gnus-pick-line-number): Add autoload.
18812
18813 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18814
18815         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
18816         handle, as well as a list.
18817
18818         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
18819         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
18820         (mm-w3m-cid-retrieve): Simplify.
18821
18822 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
18823
18824         * message.el (message-kill-to-signature): Allow prefix arg to
18825         specify number of lines to keep before signature.
18826
18827 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
18828
18829         * message.el (message-kill-to-signature): Change docstring.
18830
18831 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18832
18833         * canlock.el: Always require sha1-el.
18834         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
18835
18836         * message.el: Autoload sha1 only when compiling.
18837
18838         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
18839         eudc-expand-inline for XEmacs.
18840
18841 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18842
18843         * message.el (message-canlock-generate): Require sha1-el.
18844
18845 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
18846
18847         * message.el (message-expand-name): Silence the byte compiler.
18848
18849         * lpath.el: Add detect-coding-system.
18850
18851         * dgnushack.el (dgnushack-compile): Remove obsolete check for
18852         cus-edit.
18853
18854 2004-01-13  Simon Josefsson  <jas@extundo.com>
18855
18856         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
18857         Invoke gnus-score-mode.
18858         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
18859
18860         * gnus-range.el (gnus-compress-sequence): Doc fix.
18861         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
18862
18863 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
18864
18865         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
18866
18867 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
18868
18869         * spam.el (spam-get-article-as-string): Update to use
18870         gnus-request-article-this-buffer, much simpler.
18871         (spam-get-article-as-buffer): Remove.
18872
18873 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
18874
18875         * message.el (message-expand-name): Use EUDC if the user uses that.
18876
18877 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
18878
18879         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
18880         character for the encoding to avoid consing a string.
18881
18882         * rfc2047.el (rfc2047-decode-string): Don't cons a string
18883         unnecessarily.
18884
18885         * mm-util.el (mm-replace-chars-in-string): Remove.
18886
18887         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
18888         of mm-replace-chars-in-string.
18889
18890 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
18891
18892         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
18893
18894         * mm-util.el (mm-subst-char-in-string): Support inplace.
18895
18896         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
18897         a new string in every iteration.  Use shy groups.
18898
18899 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
18900
18901         * gnus-srvr.el (gnus-browse-unsubscribe-group):
18902         * gnus-soup.el (gnus-soup-group-brew):
18903         * gnus-msg.el (gnus-put-message):
18904         * gnus-move.el (gnus-group-move-group-to-server):
18905         * gnus-kill.el (gnus-batch-score):
18906         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
18907         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
18908         (gnus-group-update-group, gnus-group-read-group)
18909         (gnus-group-make-group, gnus-group-make-help-group)
18910         (gnus-group-make-archive-group, gnus-group-make-directory-group)
18911         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
18912         (gnus-group-sort-by-unread, gnus-group-catchup)
18913         (gnus-group-unsubscribe-group, gnus-group-kill-group)
18914         (gnus-group-yank-group, gnus-group-set-info)
18915         (gnus-group-list-groups):
18916         * gnus.el (gnus-generate-new-group-name):
18917         * gnus-delay.el (gnus-delay-send-queue):
18918         * nnvirtual.el (nnvirtual-catchup-group):
18919         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
18920         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
18921         (gnus-group-prepare-topics, gnus-topic-check-topology):
18922         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
18923         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
18924         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
18925         (gnus-group-make-articles-read):
18926         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
18927         (gnus-group-change-level, gnus-kill-newsgroup)
18928         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
18929         (gnus-get-unread-articles, gnus-make-articles-unread)
18930         (gnus-make-ascending-articles-unread): Use accessor
18931         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
18932         to get group information for improved readability.
18933
18934
18935 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18936
18937         * gnus-art.el (article-decode-mime-words, article-babel)
18938         (gnus-article-highlight-signature, gnus-article-add-buttons)
18939         (gnus-signature-toggle): Use gnus-with-article-buffer.
18940
18941         * gnus-art.el (gnus-article-highlight-headers)
18942         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
18943
18944         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
18945         (gnus-article-set-globals, gnus-request-article-this-buffer)
18946         (gnus-button-message-id, gnus-article-maybe-hide-headers)
18947         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
18948         (gnus-mime-display-alternative): Use with-current-buffer.
18949
18950 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18951
18952         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
18953         also under 80 char limit, and call gnus-error if needed.
18954         (spam-fetch-article-header): Fix - it was a
18955         buffer-local variable (gnus-newsgroup-data).
18956         (spam-find-spam): Use spam-generate-fake-headers, forget about
18957         spam-insert-fake-headers.
18958         (spam-insert-fake-headers): Remove.
18959
18960 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18961
18962         * deuglify.el (gnus-article-outlook-unwrap-lines)
18963         (gnus-outlook-rearrange-article)
18964         (gnus-outlook-repair-attribution-outlook)
18965         (gnus-outlook-repair-attribution-block)
18966         (gnus-outlook-repair-attribution-other): Remove redundant
18967         save-excursion.
18968
18969 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18970
18971         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
18972         (spam-fetch-field-subject-fast)
18973         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
18974         (spam-fetch-article-header): Add functions to deal with Gnus
18975         internals for fast retrieval of article header data.
18976         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
18977
18978 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18979
18980         * pop3.el (pop3-md5): Remove.
18981         (pop3-apop): Replace pop3-md5 with md5.
18982
18983         * mm-bodies.el: base64 is always built-in.
18984
18985         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18986         Use with-current-buffer.
18987
18988 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18989
18990         * canlock.el (canlock-insert-header): Remove excessive grouping in
18991         regexp.
18992
18993         * gnus-sum.el (gnus-summary-read-document): Ditto.
18994
18995         * gnus-uu.el (gnus-uu-part-number): Ditto.
18996
18997         * html2text.el (html2text-remove-tags): Ditto.
18998         (html2text-format-tags): Ditto.
18999         (html2text-format-single-elements): Ditto.
19000
19001         * mml.el (mml-parse-1): Ditto.
19002
19003 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
19004
19005         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
19006
19007         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
19008
19009         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
19010
19011         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
19012
19013 2003-11-15  Simon Josefsson  <jas@extundo.com>
19014
19015         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
19016         (pgg-gpg-lookup-key): Use regexp match instead of
19017         split-string (split-string is different between emacs 21.2 and
19018         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
19019
19020 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
19021
19022         * gnus-art.el (gnus-mime-view-all-parts)
19023         (gnus-article-part-wrapper, gnus-article-view-part):
19024         Use with-current-buffer.
19025
19026 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
19027
19028         * spam.el (spam-disable-spam-split-during-ham-respool)
19029         (spam-spamoracle-database, spam-cache-lookups)
19030         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
19031         (spam-group-ham-mark-p, spam-group-spam-mark-p)
19032         (spam-group-ham-marks, spam-group-spam-marks)
19033         (spam-group-spam-contents-p, spam-group-ham-contents-p)
19034         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
19035         also add spam-use-blackholes to the statistical checks.
19036         (spam-fetch-field-fast): Add interface to fetching fields, may
19037         become a macro.
19038         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
19039         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
19040         (spam-insert-fake-headers): Fake an article when needed.
19041         (spam-find-spam): Fake article when possible.
19042         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
19043         (spam-check-bogofilter-headers): Use message-fetch-field instead
19044         of nnmail-fetch-field.
19045
19046 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
19047
19048         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
19049
19050 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
19051
19052         * spam.el (spam-split): Do not require spam-use-CHECK to be
19053         enabled if that check is passed to spam-split explicitly; also
19054         fix so 'spam doesn't get converted to spam-split-group when
19055         spam-split-symbolic-return is t.
19056         (spam-find-spam): Find registrations of the article and use those
19057         instead of re-running spam-split to find the spam/ham
19058         classification of the article.
19059         (spam-log-processing-to-registry, spam-log-registered-p)
19060         (spam-log-unregistration-needed-p, spam-log-undo-registration):
19061         Use gnus-error instead of gnus-message.
19062         (spam-log-registration-type): Add function to determine the
19063         classification of a message based on registry entries; will
19064         return nil if both 'spam and 'ham are found.
19065         (spam-check-BBDB): Expand all the BBDB macros here so we can have
19066         a reasonably fast local cache without the loading errors.
19067         (spam-cache-lookups): Set to t by default.
19068         (spam-find-spam): Don't try to guess spam-cache-lookups.
19069         (spam-enter-whitelist, spam-enter-blacklist): Clear the
19070         spam-caches entry.
19071         (spam-filelist-build-cache, spam-filelist-check-cache):
19072         Fix caching of whitelist/blacklist entries.
19073         (spam-check-whitelist, spam-check-blacklist):
19074         Invoke spam-from-listed-p with a type, not a cache variable.
19075         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
19076
19077 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
19078
19079         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
19080
19081         * nnmail.el (nnmail-split-fancy): do.
19082
19083         * mml.el (mml-parse): do.
19084
19085         * gnus-score.el (gnus-enter-score-words-into-hashtb)
19086         (gnus-score-adaptive): do.
19087
19088 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19089
19090         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
19091         (gnus-mime-button-map): Don't set keymap parent.
19092         (gnus-button-ctan-directory-regexp): Use shy grouping.
19093         (gnus-prev-page-map): Don't set keymap parent.
19094         (gnus-prev-page-map): Remove duplicated one.
19095         (gnus-next-page-map): Don't set keymap parent.
19096         (gnus-mime-security-button-map): Ditto.
19097
19098         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
19099         version number.
19100
19101         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
19102
19103 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19104
19105         * canlock.el (canlock-sha1-function): Remove.
19106         (canlock-sha1-function-for-verify): Remove.
19107         (canlock-openssl-program): Remove.
19108         (canlock-openssl-args): Remove.
19109         (canlock-ignore-errors): Remove.
19110         (canlock-sha1-with-openssl): Remove.
19111         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
19112         (canlock-verify): Don't use canlock-ignore-errors.
19113
19114         * sha1-el.el (sha1-string-external): Make it can return a string
19115         in binary form.
19116         (sha1-region-external): Ditto.
19117         (sha1-string-internal): Ditto.
19118         (sha1-region-internal): Ditto.
19119         (sha1-region): Ditto.
19120         (sha1-string): Ditto.
19121         (sha1): Ditto.
19122
19123 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19124
19125         * spam.el (spam-report-articles-gmane): New command.
19126
19127 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19128
19129         * gnus.el: Don't make unnecessary *Group* buffer when loading.
19130
19131         * run-at-time.el (run-at-time-saved): Remove.
19132         (run-at-time): Doc fix.
19133
19134 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
19135
19136         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
19137         (gnus-summary-limit-map): Add it.
19138         (gnus-summary-make-menu-bar): do.
19139
19140 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
19141
19142         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
19143         Make attempt at some caching support (done for BBDB only now).
19144         (spam-find-spam): Set spam-cache-lookups if there are more than 2
19145         addresses to be checked.
19146         (spam-clear-cache-BBDB): Add function, to be invoked by
19147         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
19148         (spam-check-BBDB): Check and use the caches, if
19149         spam-cache-lookups is on, remove superfluous (provide).
19150
19151 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
19152
19153         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
19154
19155 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
19156
19157         * run-at-time.el (run-at-time-saved): Move to after the definition
19158         of `run-at-time'.
19159
19160         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
19161
19162 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19163
19164         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
19165         mm-w3m-local-map-property.
19166
19167         * mm-view.el (mm-w3m-mode-map): Remove.
19168         (mm-w3m-local-map-property): Remove.
19169         (mm-inline-text-html-render-with-w3m): Don't use
19170         mm-w3m-local-map-property.
19171
19172 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19173
19174         * run-at-time.el: New file.
19175
19176         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
19177         under Emacs.
19178
19179         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
19180         of gnus-set-text-properties.
19181
19182         * gnus-uu.el (gnus-uu-save-article): Ditto.
19183
19184         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
19185
19186         * gnus-cite.el (gnus-cite-parse): Ditto.
19187
19188         * gnus-art.el (gnus-button-push): Use set-text-properties instead
19189         of gnus-.
19190
19191         * gnus-xmas.el (run-at-time): Require run-at-time.
19192
19193         * gnus.el: Change calls to nnheader-run-at-time and
19194         password-run-at-time throughout to use run-at-time directly.
19195
19196         * password.el: Remove definition of run-at-time.
19197
19198         * nnheaderxm.el: Remove definition of run-at-time.
19199
19200 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
19201
19202         * mml.el (mml-minibuffer-read-disposition): Show attachment type
19203         in prompt.
19204
19205 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
19206
19207         * messagexmas.el (message-xmas-redefine): Alias
19208         `message-make-caesar-translation-table' to
19209         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
19210         version.
19211
19212         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
19213         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
19214         `gnus-xmas-set-text-properties'.
19215         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
19216         `gnus-xmas-completing-read'.
19217         (gnus-xmas-completing-read): Removed.
19218         (gnus-xmas-open-network-stream): Removed.
19219
19220         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
19221         XEmacs version.
19222
19223         * dns.el (dns-make-network-process): Use `open-network-stream'
19224         instead of `gnus-xmas-open-network-stream'.
19225
19226         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
19227
19228         * .cvsignore: Add auto-autoloads.el, custom-load.el.
19229
19230 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
19231
19232         * gnus-art.el (gnus-mime-display-alternative)
19233         (gnus-insert-mime-button, gnus-insert-mime-security-button)
19234         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
19235         Don't use gnus-local-map-property.
19236
19237         * gnus-util.el (gnus-local-map-property): Remove.
19238
19239         * mm-view.el (mm-view-pkcs7-decrypt):
19240         Replace gnus-completing-read-maybe-default with completing-read.
19241
19242         * gnus-util.el (gnus-completing-read): do.
19243         (gnus-completing-read-maybe-default): Remove.
19244
19245 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
19246
19247         * password.el: Only autoload `run-at-time' if not XEmacs.
19248         Only autoload the itimer functions if XEmacs.
19249
19250 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19251
19252         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
19253         XEmacsen.
19254
19255         * dgnushack.el: Autoload executable-find for XEmacs.
19256
19257 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
19258
19259         * gnus-art.el (gnus-read-string): Remove.
19260         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
19261         read-string.
19262
19263 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
19264
19265         * netrc.el: Autoload password-read.
19266         (netrc): Add configuration group.
19267         (netrc-encoding-method, netrc-openssl-path):
19268         Add variables for encoding and decoding of files with symmetric
19269         ciphers.
19270         (netrc-encode): Add assistant function to encode a file with
19271         netrc-encoding-method.
19272         (netrc-parse): Add interactive parameter, added optional
19273         decoding if netrc-encoding-method is non-nil but otherwise
19274         behavior is standard.
19275         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
19276         Do s/encode/encrypt/ everywhere.
19277
19278         * spam.el: Remove executable-find autoload.
19279
19280 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
19281
19282         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
19283
19284         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
19285
19286 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19287
19288         * gnus-art.el (gnus-treat-ansi-sequences)
19289         (article-treat-ansi-sequences): New variable and function.
19290         Suggested by Dan Jacobson <jidanni@jidanni.org>.
19291
19292         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
19293         Use it.
19294
19295 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
19296
19297         * mm-util.el (mm-quote-arg): Remove.
19298
19299         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
19300         shell-quote-argument.
19301
19302         * gnus-uu.el (gnus-uu-command): do.
19303
19304         * gnus-sum.el (gnus-summary-insert-pseudos): do.
19305
19306         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
19307         with make-char.
19308
19309         * mm-util.el (mm-make-char): Remove.
19310
19311         * mml.el (mml-mode): Replace gnus-add-minor-mode with
19312         add-minor-mode.
19313
19314         * gnus-undo.el (gnus-undo-mode): do.
19315
19316         * gnus-topic.el (gnus-topic-mode): do.
19317
19318         * gnus-sum.el (gnus-dead-summary-mode): do.
19319
19320         * gnus-start.el (gnus-slave-mode): do.
19321
19322         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
19323
19324         * gnus-ml.el (gnus-mailing-list-mode): do.
19325
19326         * gnus-gl.el (gnus-grouplens-mode): do.
19327
19328         * gnus-draft.el (gnus-draft-mode): do.
19329
19330         * gnus-dired.el (gnus-dired-mode): do.
19331
19332         * gnus-ems.el (gnus-add-minor-mode): Remove.
19333
19334         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
19335         Replace gnus-char-width with char-width.
19336
19337         * gnus-ems.el (gnus-char-width): Remove.
19338
19339         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
19340         Replace gnus-char-width with char-width.
19341
19342         * gnus-ems.el (gnus-char-width): Remove.
19343
19344         * spam-stat.el (with-syntax-table): Remove with-syntax-table
19345         definition.
19346         Remove Emacs 20 hash table compatibility code.
19347
19348         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
19349         20 compatibility code.
19350
19351         * spam.el (spam-point-at-eol): Replace with point-at-eol.
19352
19353         * smime.el (smime-point-at-eol): Replace with point-at-eol.
19354
19355         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
19356         Replace with point-at-{eol,bol}.
19357
19358         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
19359
19360         * imap.el (imap-point-at-eol): Replace with point-at-eol.
19361
19362         * flow-fill.el (fill-flowed-point-at-bol)
19363         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
19364
19365         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
19366         Replace with point-at-{eol,bol} throughout all files.
19367
19368 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19369
19370         * ntlm.el (ntlm-string-as-unibyte): New macro.
19371         (ntlm-build-auth-response): Use it.
19372
19373         Remove Emacs 20 stuff:
19374         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
19375         (butlast, mapc, remove): Remove the compiler macros.
19376         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
19377         of delq and copy-sequence.
19378         * gnus-art.el (popup-menu): Remove the compiler macro.
19379         * nnmail.el (nnmail-split-fancy): Don't support customizing with
19380         Emacs 20.
19381
19382 2004-01-05  Simon Josefsson  <jas@extundo.com>
19383
19384         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
19385         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
19386         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
19387         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
19388         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
19389         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
19390         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
19391         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
19392         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
19393         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
19394         ntlm-string-permute, string-lshift into ntlm-string-lshift,
19395         string-xor into ntlm-string-xor.
19396         Suggested by Jesper Harder <harder@myrealbox.com>.
19397
19398         * ntlm.el: Don't include poem.
19399
19400         * md4.el (print-int32, print-string-hexa): Remove.
19401         Suggested by Jesper Harder <harder@myrealbox.com>.
19402
19403         * sasl-ntlm.el, ntlm.el, md4.el: New files.
19404
19405         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
19406         probably breaks emacs with DL patch, but do we care? Is anyone
19407         still using the DL stuff?)
19408
19409         * sieve-manage.el: Use the password package.
19410         (sieve-manage-read-passwd): Remove.
19411         (sieve-manage-interactive-login): Use password.  Re-add
19412         condition-case around loop.
19413
19414         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
19415         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
19416         Use the password package.
19417
19418 2003-02-19  Simon Josefsson  <jas@extundo.com>
19419
19420         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
19421         token.
19422
19423 2002-08-07  Simon Josefsson  <jas@extundo.com>
19424
19425         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
19426         (sieve-manage-authenticators):
19427         (sieve-manage-authenticator-alist): Add some SASL mechs.
19428         (sieve-sasl-auth): New function.
19429         (sieve-manage-cram-md5-auth):
19430         (sieve-manage-plain-auth): Rewrite using SASL library.
19431         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
19432         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
19433         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
19434         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
19435
19436 2004-01-05  Simon Josefsson  <jas@extundo.com>
19437
19438         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
19439         New files.
19440
19441 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19442
19443         * gnus-group.el (gnus-no-groups-message): Update.
19444
19445         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
19446
19447 2003-11-09  Simon Josefsson  <jas@extundo.com>
19448
19449         * imap.el: Support for ID IMAP extension (RFC 2971).
19450         (imap-local-variables): Add imap-id.
19451         (imap-id): New variable.
19452         (imap-id): New function.
19453         (imap-parse-response): Parse untagged ID response.
19454         * nnimap.el (nnimap-id): New variable.
19455         (nnimap-open-connection): Use it.
19456
19457 2003-12-28  Simon Josefsson  <jas@extundo.com>
19458
19459         * gnus-score.el (gnus-score-edit-all-score): New.
19460         * gnus-group.el (gnus-group-score-map): Bind it to W e.
19461
19462 2004-01-04  Simon Josefsson  <jas@extundo.com>
19463
19464         * password.el: Add.
19465
19466 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
19467
19468         * dns.el (dns-query-types): Fix typo.
19469         (dns-query-types): New function.
19470         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
19471         PTR and SOA replies, see RFC 1035.
19472
19473 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19474
19475         * gnus.el (gnus-logo-color-style): Change colors to `no'.
19476
19477         * Move to Changelog.2.
19478
19479 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19480
19481         * gnus.el (gnus-version-number): Bump version.
19482
19483 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19484
19485         * gnus.el: No Gnus v0.1 is released.
19486
19487 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19488
19489         * gnus.el: No Gnus v0.0 is released.
19490
19491 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19492
19493         * gnus.el (gnus-version-number): Bump.
19494         (gnus-version): No.
19495
19496 See ChangeLog.2 for earlier changes.
19497
19498     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
19499       Free Software Foundation, Inc.
19500
19501   This file is part of GNU Emacs.
19502
19503   GNU Emacs is free software: you can redistribute it and/or modify
19504   it under the terms of the GNU General Public License as published by
19505   the Free Software Foundation, either version 3 of the License, or
19506   (at your option) any later version.
19507
19508   GNU Emacs is distributed in the hope that it will be useful,
19509   but WITHOUT ANY WARRANTY; without even the implied warranty of
19510   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19511   GNU General Public License for more details.
19512
19513   You should have received a copy of the GNU General Public License
19514   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
19515
19516 ;; Local Variables:
19517 ;; coding: utf-8
19518 ;; fill-column: 79
19519 ;; add-log-time-zone-rule: t
19520 ;; End: