(open-protocol-stream): Renamed from open-proto-stream.
[gnus] / lisp / ChangeLog
1 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * proto-stream.el (open-protocol-stream): Renamed from
4         open-proto-stream.
5
6 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7
8         * nnimap.el (nnimap-stream): Change default to `undecided'.
9         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
10         first, and then network.
11         (nnimap-open-connection-1): Respect nnimap-server-port.
12         (nnimap-open-connection): Be more backwards-compatible.
13
14         * proto-stream.el (proto-stream-always-use-starttls): New variable.
15         (proto-stream-open-starttls): De-duplicate the starttls code.
16         (proto-stream-open-starttls): Folded back into the main function.
17         (proto-stream-open-network): Fix typo in the gnutls path.
18         (proto-stream-command): Refactor out.
19
20         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
21
22         * proto-stream.el (proto-stream-open-starttls): Actually implement the
23         starttls.el STARTTLS.
24
25         * color.el (color-lab->srgb): Fix function call name.
26
27         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
28         if we're using tls.el.
29         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
30         built in, then don't try to establish a STARTTLS connection.
31
32         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
33         servers.
34
35         * proto-stream.el (open-proto-stream): Use network, not stream.
36         (open-proto-stream): Add a way to specify what the end of a command is.
37
38         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
39         connections types.
40         (nntp-open-network-stream): Removed.
41         (nntp-open-ssl-stream): Removed.
42         (nntp-open-tls-stream): Removed.
43         (nntp-ssl-program): Removed.
44
45         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
46
47 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
48
49         * nnir.el: Fix typos.
50         (nnir-retrieve-headers-override-function): Rename variable to reflect
51         new semantics.
52         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
53         macros.
54         (nnir-request-article, nnir-request-move-article): Use them.
55         (nnir-categorize): New function.
56         (nnir-run-query): Use it.
57         (nnir-retrieve-headers): Rewrite to batch header retrieval.
58         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
59         sorted.
60         (nnir-group-full-name): Use gnus-group-full-name instead.
61         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
62         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
63
64 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
65
66         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
67
68         * proto-stream.el: New library to provide protocol-specific
69         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
70         protocols.
71         (open-proto-stream): Complete the documentation.
72         (proto-stream-open-network): Fix some typos.
73
74         * nnimap.el (nnimap-open-connection): Use it.
75
76 2010-11-26  Julien Danjou  <julien@danjou.info>
77
78         * color.el: Rename various rgb functions to srgb.
79
80 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
81
82         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
83         names.
84
85 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
86
87         * shr.el (shr-insert): Revert last change.
88         (shr-find-fill-point): Never leave point being at bol;
89         relax the kinsoku limitation when rendering tables.
90
91 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
92
93         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
94         results from -accept-article.
95
96         * shr-color.el: Require cl when compiling.
97
98         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
99         checkin.
100
101         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
102
103         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
104
105         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
106         'add and 'delete to set backend marks.
107
108         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
109
110         * nnheader.el (nnheader-update-marks-actions): Refactor out.
111
112         * nntp.el (nntp-request-set-mark): Use it.
113
114         * nnfolder.el (nnfolder-request-set-mark): Ditto.
115
116         * nnml.el (nnml-request-set-mark): Ditto.
117
118         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
119         introduces regressions in article selection.
120         (nnimap-find-uid-response): New function.
121         (nnimap-request-accept-article): Use the UID returned, if any.
122         (nnimap-request-move-article): Use the UID returned, if any.
123         (nnimap-get-groups): Reimplement to work with folded lines.
124         (nnimap-find-uid-response): The UID is the last element in the list.
125         (nnimap-request-set-mark): Extend syntax with 'set.
126
127         * nnml.el (nnml-request-set-mark): Ditto.
128
129         * nnfolder.el (nnfolder-request-set-mark): Ditto.
130
131         * nntp.el (nntp-request-set-mark): Ditto.
132
133 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
134
135         * message.el (message-called-interactively-p): A temporary macro.
136         (message-goto-body): Use it temporarily.
137
138 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
139
140         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
141         (nnimap-last-response-string): Unfold quoted lines, if they exist.
142         (nnimap-last-response-string): Fix last unfolding fix.
143
144 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
145
146         * shr.el (shr-insert): Fix the way to fold lines.
147
148 2010-11-25  Julien Danjou  <julien@danjou.info>
149
150         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex
151
152         * color.el: Rename from color-lab.el
153         (color-rgb->hex): Add.
154         (color-complement): Add.
155         (color-complement-hex): Add.
156
157         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
158
159 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
160
161         * shr-color.el (shr-color-visible): Don't bug out if the colour names
162         don't exist.
163
164 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
165
166         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
167         assuming that article displaying or another mml-preview may be
168         interrupted for an error or for the like.
169
170         * shr.el (shr-get-background): Fix argument name.
171
172 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
173
174         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
175
176         * gnus-sum.el (gnus-summary-include-articles): New function.
177
178         * message.el (message-goto-body): called-interactively-p needs a
179         parameter, so use `any'.
180
181         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
182         clear marks before moving, since they're synced from the Gnus side
183         first.
184
185         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
186         (gnus-summary-move-article): Copy over all marks before moving, so that
187         IMAP doesn't think a new article has arrived.
188
189 2010-11-24  Julien Danjou  <julien@danjou.info>
190
191         * shr.el (shr-insert-background-overlay): Fix typo.
192         (shr-render-td): Copy the background before rendering.
193
194         * shr-color.el (shr-color-visible): Fix docstring.
195
196         * shr.el (shr-tag-table): Add bgcolor support.
197         (shr-render-td): Add bgcolor support.
198         (shr-get-background): Add.
199         (shr-insert-foreground-overlay): Use shr-get-background.
200
201         * message.el (message-goto-body): Use called-interactively-p.
202         (message-in-body-p): message-goto-body returns point.
203
204 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
205
206         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
207         Fixes something or other in Emacs 23, and is backwards compatible.
208
209         * message.el (message-goto-body): Remove the <#secure special-casing,
210         which is too special.
211
212         * shr.el (shr-parse-style): Drop !important from styles.
213
214 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
215
216         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
217         this function to return incorrect results when calling it with an
218         explicit article argument different from
219         (gnus-summary-article-number).
220
221 2010-11-24  Julien Danjou  <julien@danjou.info>
222
223         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
224         (shr-tag-body): Add background support.
225         (shr-descend): Add background support.
226         (shr-tag-title): Add.
227
228         * shr-color.el (shr-color-visible): Really return original background
229         if fixed.
230
231 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
232
233         * shr.el (shr-color-check): Protect against non-existant colour names.
234
235 2010-11-24  Julien Danjou  <julien@danjou.info>
236
237         * color-lab.el: Require 'cl when compiling.
238
239         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
240
241         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
242         matched part.
243
244         * color-lab.el: Fix all expt calls to use float type.
245
246 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
247
248         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
249         expression to shr-color-check as is.
250
251         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
252
253         * color-lab.el: Add coding cookie.
254         (float-pi): Use eval-and-compile.
255
256         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
257         compiled for Emacsen having no `libxml-parse-html-region' support.
258
259 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
260
261         * shr.el (shr-insert-color-overlay): Split stuff like
262         "#444444 !important" to find the real colour.
263         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
264         parse <font color="red"> entries.
265
266 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
267
268         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
269         point when parsing headers.
270
271         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
272         is positioned properly when parsing headers.
273
274 2010-11-23  Julien Danjou  <julien@danjou.info>
275
276         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
277
278         * shr-color.el (shr-color->hexadecimal): Add support for color names.
279
280         * shr.el (shr-parse-style): Replace \n with space in style parsing.
281
282         * shr-color.el (shr-color-hsl-to-rgb-fractions): Use
283         shr-color-hue-to-rgb.
284         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
285
286 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
287
288         * shr.el (shr-color->hexadecimal): Autoload.
289         (shr-descend): Add color to all tags.
290
291 2010-11-22  Julien Danjou  <julien@danjou.info>
292
293         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
294         shr-color->hexadecimal.
295
296         * shr-color.el (shr-color->hexadecimal): Add converting functions for
297         RGB() or HSL() color representation.
298
299         * shr.el (shr-tag-font): Add.
300         (shr-tag-color-check): New function to get better colors.
301         (shr-tag-insert-color-overlay): Factorize code between tag-font and
302         tag-span.
303
304         * shr-color.el: New file.
305
306         * color-lab.el: New file.
307
308         * gnus-art.el (gnus-url-mailto): Do not downcase args.
309
310 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
311
312         * nnir.el: Fix typo in comments.
313         (nnir-run-imap): Simplify code. No need to reverse artlist.
314         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
315
316 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
317
318         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
319
320         * nnimap.el (nnimap-get-capabilities): Refactor out.
321         (nnimap-open-connection): Re-request capabilities after STARTTLS.
322
323 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
324
325         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
326         appearing when `mm-uu-hide-markers' is nil.
327
328 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
329
330         * nnimap.el (nnimap-unselect-group): Make into its own function.
331         (nnimap-request-rename-group): Unselect group before renaming.
332         This had gotten lost somewhere.
333         (nnimap-request-accept-article): Keep track of examined groups, and
334         unselect the group before APPENDing to read-only groups.
335         (nnimap-request-move-article): Clear flags before moving so that they
336         can be re-set later.
337
338 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
339
340         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
341         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
342
343 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
344
345         * gnus-art.el (gnus-mime-display-single)
346         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
347         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
348         parameter.
349
350 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
351
352         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
353         (shr-table-vertical-line): New variable.
354         (shr-insert-table): Use it.
355
356 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
357
358         * gnus-html.el (gnus-html-wash-images): Don't display images if
359         gnus-inhibit-images is non-nil; register displayer for cid images.
360         (gnus-html-display-image): Work for cid image.
361         (gnus-html-insert-image): Allow arguments.
362         (gnus-html-put-image): Inhibit read-only.
363         (gnus-html-prefetch-images): Don't prefetch images if
364         gnus-inhibit-images is non-nil.
365
366 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
367
368         * shr.el (shr-put-image): Break lines when inserting big pictures.
369
370 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
371
372         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
373         sender, thanks Katsumi Yamaoka.
374
375 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
376
377         * nnir.el (nnir-run-imap): Reverse the article list for each group
378         rather than the whole list.
379
380 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
381
382         * shr.el (shr-image-displayer): Protect function against non-existent
383         image source.
384
385         * gnus-art.el (gnus-inhibit-images): New user option.
386         (gnus-mime-display-single): Don't display image if it is non-nil.
387
388         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
389         gnus-inhibit-images.
390
391         * shr.el (shr-image-displayer): New function.
392         (shr-tag-img): Use it.
393
394 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
395
396         * mml2015.el (mml2015-epg-sign): Use From header.
397
398 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
399
400         * gnus-html.el (gnus-html-wash-images): Register a displayer.
401
402         * gnus-util.el (gnus-find-text-property-region): Return markers.
403
404         * shr.el (shr-tag-img): Put a displayer in the text property.
405
406         * gnus-util.el (gnus-find-text-property-region): New utility function.
407
408         * gnus-html.el (gnus-html-display-image): Make the alt optional.
409         (gnus-html-show-images): Remove.
410
411         * gnus-art.el (gnus-article-show-images): New, more general function.
412
413         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
414         image url text properties.
415
416         * shr.el: Ditto.
417
418         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
419         gnus-agent-auto-agentize-methods is set.  Which it isn't.
420
421 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
422
423         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
424         work for two or more articles.
425
426 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
427
428         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
429         divide an image that's in an html article to two or more when washing
430         non-ASCII characters in alt text of it.
431
432 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
433
434         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
435         smime-decrypt-region using function argument.
436         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
437
438         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
439
440         * smime.el (smime-decrypt-region): Catch it.
441
442 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
443
444         * smime.el (smime-mode-map): Move initialization into declaration.
445         (gnus-run-mode-hooks): Don't autoload.
446         (smime-mode): Use define-derived-mode.
447
448 2010-11-11  Glenn Morris  <rgm@gnu.org>
449
450         * smime.el (from): Restrict declaration to XEmacs.
451
452         * nnir.el (gnus-group-topic-name): Autoload.
453
454 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
455
456         * shr.el (shr-insert): Don't break long line if it is because of
457         kinsoku-bol characters in the line end.
458
459 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
460
461         * nnir.el (nnir-request-move-article): Fix to provide original group
462         and subject.
463         (nnir-warp-to-article): Don't fail on articles whose headers haven't
464         been retrieved.
465
466         * gnus-sum.el (gnus-summary-move-article): Use original group and
467         subject for virtual articles such as those in an nnir summary buffer.
468
469 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
470
471         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
472         least 21.5).
473
474         * smime.el (from): Declare it again for XEmacs.
475
476 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
477
478         * message.el (message-resend): Don't disable encoding unless it's
479         already encoded.
480
481         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
482         low-numbered articles.
483
484 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
485
486         * rfc2047.el (rfc2047-syntax-table): Simplify.
487
488         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
489
490         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
491         set-char-table-range for XEmacs.
492
493 2010-11-10  Glenn Morris  <rgm@gnu.org>
494
495         * time-date.el (time-to-seconds): Always an alias on Emacs,
496         never a real function.
497         (with-no-warnings): Remove compat stub, now unused.
498         (time-less-p): Doc fix.
499         (time-to-number-of-days): Simplify.
500
501         * smime.el (from): Remove unused declaration.
502
503         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
504         (gnus-float-time): On Emacs, always an alias.
505
506         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
507         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
508
509 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
510
511         * dgnushack.el: Don't use ignore-errors in the top level form since it
512         is unavailable in XEmacs even if cl is loaded.
513
514         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
515
516 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
517
518         * shr.el (browse-url-mailto): Autoload.
519
520         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
521
522         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
523         regexp doesn't need quoting.
524
525 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
526
527         * message.el (message-subject-trailing-was-ask-regexp)
528         (message-subject-trailing-was-regexp): Match was: in addition to was.
529
530 2010-11-09  Glenn Morris  <rgm@gnu.org>
531
532         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
533         (nnbabyl-check-mbox): Use point-at-bol.
534
535 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
536
537         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
538
539         * message.el (message-mailto): New function.
540         (message-mailto): Should accept other parameters.
541         (message-mailto): Remove since it duplicates browse-url-mailto
542         functionality.
543
544 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
545
546         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
547         methods.
548         (gnus-read-active-file): Ditto.
549
550         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
551         ": " from the prompt.
552         (gnus-group-make-group): Ditto.
553
554 2010-11-07  Glenn Morris  <rgm@gnu.org>
555
556         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
557         (gnus-bookmark-kill-line): Use point-at-eol.
558
559 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
560
561         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
562         asterisks in From header.
563
564 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
565
566         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
567         string to avoid making the From headers syntactically invalid.
568
569         * message.el (message-send-mail): Don't insert courtesy messages if the
570         message already has List-Post and List-ID messages.
571
572 2010-11-06  Glenn Morris  <rgm@gnu.org>
573
574         * gnus-art.el (gnus-treat-article): Give dynamic local variables
575         `condition', `type', `length' a prefix.
576         (gnus-treat-predicate): Update for above name changes.
577
578 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
579
580         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
581         binding.  Handled by `gnus-summary-refer-thread' instead.
582         (nnir-warp-to-article): New backend function.
583
584         * nnimap.el (nnimap-request-thread): Force dependency updating.
585
586         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
587         (gnus-summary-refer-thread): Rework to improve thread-referral.
588
589         * gnus-int.el (gnus-warp-to-article): New function.
590
591         * gnus-sum.el (gnus-summary-article-map): Bind it.
592
593 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
594
595         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
596         gnus-summary-refer-thread.
597
598         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
599         headers.
600         (gnus-summary-limit-include-thread): Prevent articles in thread from
601         being cut in gnus-cut-threads.
602         (gnus-summary-refer-thread): Limit retrieved headers to those in
603         thread.
604
605 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
606
607         * message.el (message-send-mail): Use the value of
608         message-courtesy-message from the message buffer.
609
610         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
611
612         * shr.el (shr-browse-url): Implement mailto: URLs.
613
614         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
615         "raw".
616
617         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
618         if it's already selected.
619
620         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
621
622 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
623
624         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
625         to measure the length and truncate alt text.
626
627 2010-11-03  Glenn Morris  <rgm@gnu.org>
628
629         * nndiary.el (nndiary-generate-nov-databases-1)
630         (nndiary-generate-active-info): Rename dynamic variable `files' to
631         something less generic.
632
633 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
634
635         * nnir.el (nnir-request-move-article): Call the underlying backend to
636         move articles from nnir.
637
638 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
639
640         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
641
642 2010-11-02  Julien Danjou  <julien@danjou.info>
643
644         * nnir.el: Remove wais support.
645
646 2010-11-02  Glenn Morris  <rgm@gnu.org>
647
648         * gnus-html.el: Reorder requirements to quieten compiler.
649
650 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
651
652         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
653         properly for XEmacs as well.
654         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
655         (gnus-article-natural-long-line-p): Use window-width rather than
656         frame-width.
657
658 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
659
660         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
661         (nnir-read-parms): Don't modify query.
662         (nnir-run-query): Add ability to search topic on current line.
663         (nnir-get-active): Clean up.
664
665 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
666
667         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
668         degenerate articles.
669
670         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
671         (gnus-print-buffer): Just print the buffer as is, without any copying
672         to a buffer and then re-highlighting.
673
674         * nnimap.el (nnimap-request-group): Store the new updated info.
675         (nnimap-request-group): Select the group when we don't know whether it
676         exists or not.
677
678         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
679         groups.
680
681         * gnus-group.el (gnus-group-find-new-groups): Display all the new
682         groups.
683
684         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
685         groups.
686
687         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
688         long-lines case by only filling the long lines.
689
690         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
691         (bug #7311).
692
693 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
694
695         * shr.el: No need to declare `declare-function' since shr.el is for
696         only Emacsen that provide `libxml-parse-html-region'.
697
698         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
699         effective only in a file it is referred to.
700
701 2010-11-01  Glenn Morris  <rgm@gnu.org>
702
703         * mm-util.el (gnus-completing-read): Autoload.
704         (mm-read-coding-system): Simplify Emacs definition.
705
706         * nnmail.el (gnus-activate-group):
707         * nnimap.el (gnutls-negotiate):
708         * nntp.el (netrc-parse): Fix declarations.
709
710 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
711
712         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
713         string-match-p in Emacs >=23.
714
715         * gnus-msg.el (gnus-configure-posting-styles)
716         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
717
718 2010-11-01  Glenn Morris  <rgm@gnu.org>
719
720         * nnir.el (declare-function): Add compat stub.
721         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
722         (nnir-run-gmane): Require 'mm-url.
723
724         * mm-util.el (mm-string-to-multibyte): Simplify.
725
726         * shr.el (declare-function): Add compat stub.
727         (url-cache-create-filename): Declare.
728         (mm-disable-multibyte, widget-convert-button): Autoload.
729
730         * smime.el (ldap-search): Declare.
731         (smime-cert-by-ldap-1): Require ldap on Emacs.
732
733         * nnimap.el: Require nnmail, and gnus-sum when compiling.
734         (nnimap-keepalive): Use gnus-float-time.
735
736         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
737         (mail-source-delete-crash-box): Use gnus-float-time.
738
739         * gnus-dired.el (gnus-completing-read): Autoload.
740
741         * mm-view.el (gnus-rescale-image): Autoload.
742
743         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
744
745         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
746
747         * sieve-manage.el: Require 'cl when compiling.
748
749         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
750         (gnus-iswitchb-completing-read): Require iswitchb.
751         (gnus-select-frame-set-input-focus): Silence compiler.
752
753 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
754
755         * message.el (message-subject-trailing-was-query): Change default to t,
756         since I think that's what most people want.
757
758         * nnimap.el (nnimap-request-accept-article): Erase buffer before
759         appending for easier debugging.
760         (nnimap-wait-for-connection): Take a regexp.
761         (nnimap-request-accept-article): Wait for the continuation line before
762         sending anything unless we're streaming.
763
764         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
765         leave the header washing to take place.
766
767 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
768
769         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
770         regular expression match and replace in posting styles.
771
772 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
773
774         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
775         an entire server.
776         (nnir-get-active): New function.
777         (nnir-run-imap): Use it.
778         (nnir-run-gmane): Who knew, gmane search returns an article score!
779
780         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
781         server on the current line with nnir.
782
783 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
784
785         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
786         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
787         left edge.
788         (gnus-article-foldable-buffer): Skip past the prefix when determining
789         raggedness.
790
791         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
792         the raw article, and change `C-u g' to show the article without doing
793         treatments.
794
795         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
796         on to `gnus-treat-article'.
797         (gnus-inhibit-article-treatments): New variable.
798
799         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
800
801         * gnus-art.el (gnus-treatment-function-alist): Have
802         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
803         (gnus-treat-fill-long-lines): Change default to fill all text/plain
804         sections.
805
806         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
807         parameter.
808         (gnus-article-fill-cited-long-lines): New function.
809         (gnus-article-fill-cited-article): Allow filling only long sections.
810
811         * shr.el (shr-find-fill-point): Don't break lines between punctuation
812         and non-punctuation (like after the apostrophe in "'We").
813
814         * gnus-sum.el (gnus-summary-select-article): Make sure
815         gnus-original-article-buffer is alive.
816
817         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
818         reflect the order they're in in the digest.
819
820         * gnus.el (gnus-group-startup-message): Move point to the start of the
821         buffer.
822
823         * nnimap.el (nnimap-capability): New function.
824         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
825         is set.
826
827 2010-10-31  David Engster  <dengste@eml.cc>
828
829         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
830         conform with changes to gnus-completing-read.
831
832 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
833
834         * shr.el (shr-tag-img): Output "*" instead of "[img]".
835
836 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
837
838         * nnir.el: Move defvar, defcustom around to keep file organized
839         and keep byte-compiler quiet.
840         (nnir-read-parms): Accept search-engine as arg.
841         (nnir-run-query): Pass search-engine as arg.
842         (nnir-search-engine): Remove.
843
844 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
845
846         * shr.el (shr-generic): The text nodes should be text, not :text.
847
848         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
849         later in the file.
850
851 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
852
853         * nnir.el: General clean up.  Allow searching with multiple engines.
854         Allow separate extra-parameters for each engine.
855         Batch queries when possible.
856         (nnir-imap-default-search-key,nnir-method-default-engines):
857         Add customize interface.
858         (nnir-run-gmane): New engine.
859         (nnir-engines): Use it.  Qualify all prompts with engine name.
860         (nnir-search-engine): Remove global variable.
861         (nnir-run-hyrex): Restore for now.
862         (nnir-extra-parms,nnir-search-history): New variables.
863         (gnus-group-make-nnir-group): Use them.
864         (nnir-group-server): Remove in favor of gnus-group-server.
865         (nnir-request-group): Avoid searching twice.
866         (nnir-sort-groups-by-server): New function.
867
868 2010-10-30  Julien Danjou  <julien@danjou.info>
869
870         * gnus-group.el: Remove gnus-group-fetch-control.
871
872         * gnus-start.el (gnus-find-new-newsgroups):
873         Remove gnus-check-first-time-used.
874
875         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
876
877 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
878
879         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
880         set on groups that don't have \* permanentflags.
881
882 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
883
884         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
885         control the background color.
886         (shr-tag-img): Ignore very small web bug type images.
887         (shr-put-image): Add help-echo alt texts to the images.
888         (shr-tag-video): Show the video poster image.
889
890 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
891
892         * shr.el (shr-table-depth): New variable.
893         (shr-tag-table-1): Only insert the images after the top-level table.
894
895         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
896
897         * gnus-util.el (gnus-list-memq-of-list): New function.
898
899         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
900         selected.
901         (nnimap-unsplittable-articles): New slot.
902         (nnimap-new-articles): Use it.
903
904 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
905
906         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
907         move to the previous line on `M-g'.
908
909 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
910
911         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
912         *-request-group, which seems unnecessary.
913
914         * nnimap.el (nnimap-quote-specials): Function copied over from
915         imap.el.
916         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
917         they support that.  Suggested by Tom Regner.
918
919 2010-10-29  Julien Danjou  <julien@danjou.info>
920
921         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
922         defalias.
923         (gnus-summary-delete-marked-with): Remove obsolete defalias.
924
925         * gnus.el: Remove `gnus-nntp-service' variable.
926         (gnus-secondary-servers): Make obsolete.
927         (gnus-nntp-server): Make obsolete.
928
929         * gnus-start.el (gnus-1): Remove x-splash calls.
930
931         * gnus-ems.el (gnus-x-splash): Remove.
932
933         * gnus.el (gnus-group-startup-message): Simplify/update code.
934
935         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
936         definition.
937
938         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
939         capability before doing anything.
940         (gnus-group-insert-group-line): Remove useless
941         gnus-group-remove-excess-properties.
942
943 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
944
945         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
946
947 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
948
949         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
950         config after reselecting.
951
952 2010-10-28  Julien Danjou  <julien@danjou.info>
953
954         * shr.el (shr-put-image): Use point even if only inserting text.
955         (shr-put-image): Save excursion when inserting alt text on non-graphic
956         display, so the behaviour is the same when we are on a graphic display.
957
958         * nnir.el (nnir-run-swish-e): Remove hyrex support.
959
960 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
961
962         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
963         (gnus-mime-copy-part): Check coding system, not charset.
964         (gnus-mime-view-part-externally): Never remove part.
965         (gnus-mime-view-part-internally): Don't remove part here.
966         (gnus-article-part-wrapper): Make sure MIME tag is visible.
967         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
968         multipart/alternative.
969
970         * mm-decode.el (mm-display-part): Take optional arg `force'.
971
972 2010-10-26  Julien Danjou  <julien@danjou.info>
973
974         * gnus-group.el (gnus-group-default-list-level): Add this function to
975         compute the default list level.
976         (gnus-group-default-list-level): Add possibility to use a function.
977
978 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
979
980         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
981
982         * gnus-group.el (gnus-group-completing-read)
983         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
984         gnus-replace-in-string.
985
986 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
987
988         * shr.el (shr-tag-div): Add.
989
990         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
991
992 2010-10-25  Julien Danjou  <julien@danjou.info>
993
994         * gnus-util.el: Remove `gnus-with-local-quit'.
995
996         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
997
998 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
999
1000         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
1001         the original article buffer.
1002
1003 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1004
1005         * nnimap.el (nnimap-request-head): New function.
1006         (nnimap-request-move-article): Try to be slighly faster by not
1007         requesting the entire message when moving.
1008         (nnimap-transform-headers): Don't bug out on bodiless articles.
1009         (nnimap-send-command): Have no outstanding messages if the IMAP server
1010         doesn't support streaming.
1011         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
1012
1013 2010-10-24  Julien Danjou  <julien@danjou.info>
1014
1015         * message.el (message-default-headers): Fix type.
1016
1017 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1018
1019         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
1020         prefetching images.
1021
1022         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
1023         backend for unknown groups.  This is mainly useful for nnimap groups.
1024
1025         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
1026         group isn't covered by the agent.
1027
1028 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
1029
1030         * nnir.el (nnir-method-default-engines): New variable.
1031         (nnir-run-query): Use it.
1032         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
1033         (gnus-summary-nnir-goto-thread): Change group if needed.
1034
1035         * gnus-group.el (gnus-group-group-map): Add key binding for
1036         gnus-group-make-nnir-group.
1037
1038 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1039
1040         * shr.el (shr-tag-object): Add.
1041
1042         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
1043         original article buffer live.
1044         (gnus-summary-select-article-buffer):
1045         Mention gnus-widen-article-buffer.
1046
1047 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1048
1049         * shr.el (shr-tag-strong): Add.
1050
1051 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1052
1053         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
1054         group names.  They mess up the group buffer badly.
1055
1056         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
1057
1058         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
1059         instead of the summary one.
1060
1061 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1062
1063         * mml.el (mml-preview): Work properly when editing article.
1064
1065         * gnus-start.el (gnus-read-active-file-1): Don't add method to
1066         gnus-have-read-active-file if it's already been in.
1067
1068 2010-10-22  Tom Tromey  <tromey@redhat.com>
1069
1070         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
1071         gnus-group-completing-read.
1072
1073 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1074
1075         * message.el (message-mode-map): Don't bind M-; to comment region, to
1076         allow the global comment-dwim to work.
1077
1078 2010-10-21  Julien Danjou  <julien@danjou.info>
1079
1080         * message.el (message-setup-1): Allow message-default-headers to be a
1081         function.
1082
1083 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1084
1085         * shr.el (shr-tag-table): Simplify.
1086
1087 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1088
1089         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
1090         to avoid trying to snarf invalid stuff.
1091
1092         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
1093
1094         * gnus.el (gnus-message-archive-group): Quote value.
1095         (gnus-message-archive-group): Mark as changed.
1096
1097         * shr.el (shr-add-font): Don't put the font properties on the newline
1098         or the indentation.
1099
1100         * message.el (message-fix-before-sending): Change options when sending
1101         non-printable characters.
1102
1103         * gnus.el (gnus-message-archive-method): Change the default to
1104         monthly outgoing groups.
1105
1106         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
1107         that have gotten new numbers.
1108
1109         * nnimap.el (nnimap-request-replace-article): New function.
1110
1111 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1112
1113         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
1114         (nnrss-request-article): Don't use special html washing code.
1115
1116 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1117
1118         * shr.el (shr-tag-table): Remove useless nconc.
1119
1120 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1121
1122         * gnus-art.el (article-wash-html): Simplify and remove the charset
1123         stuff.  Use the normal html rendering code instead of the special html
1124         washing code.
1125
1126         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
1127         `gnus-w3m' symbols.
1128         (mm-text-html-washer-alist): Remove.
1129
1130         * mm-decode.el (mm-inline-text-html-renderer): Remove.
1131         (mm-inline-media-tests): Remove use.
1132         (mm-text-html-renderer): Change default to the `shr' symbol.
1133
1134         * mm-view.el (mm-inline-text-html): Remove use.
1135
1136         * gnus-art.el (gnus-blocked-images): New function.  Allow the
1137         `gnus-blocked-images' to be a function.
1138         (gnus-article-wash-function): Remove.
1139
1140 2010-10-20  Julien Danjou  <julien@danjou.info>
1141
1142         * spam.el (spam-list-of-processors): Mark as obsolete.
1143
1144         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
1145         (nnimap-insert-partial-structure): Fix boundary detection.
1146
1147 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
1148
1149         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
1150         run file-truename on remote files.  This can be expensive and even
1151         prevent one from editing drafts if some unrelated buffer has a stale
1152         connection.
1153
1154 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1155
1156         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
1157         kinsoku-eol regardless of shr-kinsoku-shorten.
1158         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
1159         (shr-tag-table): Support caption, thead, and tfoot.
1160
1161 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1162
1163         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
1164         lines.
1165         (shr-save-contents): New command and keystroke.
1166
1167         * nndoc.el (nndoc-type-alist): Add git support.
1168         (nndoc-git-type-p): New function.
1169         (nndoc-transform-git-article): Ditto.
1170         (nndoc-transform-git-headers): Ditto.
1171         (nndoc-transform-git-headers): Generate Subject headers.
1172
1173         * shr.el (shr-parse-style): New function.
1174         (shr-tag-span): Ditto.
1175
1176         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
1177         to `G G' to avoid collisions.
1178
1179 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1180
1181         * shr.el: Load kinsoku if necessary.
1182         (shr-kinsoku-shorten): New internal variable.
1183         (shr-find-fill-point): Make kinsoku shorten text line if
1184         shr-kinsoku-shorten is bound to non-nil.
1185         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
1186         shr-indentation too when testing if table is wider than frame width.
1187         (shr-insert-table): Use `string-width' instead of `length' to measure
1188         text width.
1189         (shr-insert-table-ruler): Make sure indentation is done at bol.
1190
1191 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1192
1193         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
1194         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
1195         undecoded network data.
1196
1197 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1198
1199         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
1200         name in the mode line spec so that the mode line menu works
1201         (bug #2431).
1202
1203         * message.el (message-get-reply-headers): If we're fed `to-address',
1204         then always use that.
1205
1206         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
1207         aren't so wide as to need to switch off the edit menu.
1208
1209         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
1210         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
1211
1212         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
1213         `M-g'.
1214         (nnimap-update-info): Update flags/read marks even if \* isn't part of
1215         the permanent marks.
1216
1217 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
1218
1219         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
1220         Splitting according to references/in-reply-to obeys the ignore-groups
1221         variable, while splitting by sender and subject do not.
1222
1223 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1224
1225         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
1226         alist, so that we can look for non-Unicode chars.
1227         (article-translate-strings): Allow both character and string maps.
1228
1229 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1230
1231         * shr.el (shr-insert): Don't insert space behind a wide character
1232         categorized as kinsoku-bol, or between characters both categorized as
1233         nospace.
1234
1235 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
1236
1237         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
1238         headers to gnus-newsgroup-headers.
1239
1240 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1241
1242         * shr.el (shr-tag-img): Don't align images -- since we're not
1243         rescaling, this often leads to ugly displays.
1244
1245 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
1246
1247         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
1248         duplicates.
1249
1250 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
1251
1252         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
1253         call.
1254
1255 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1256
1257         * gnus.el: Autoload gnus-html-show-images.
1258
1259         * nnimap.el: Use nnheader-message throughout.
1260
1261         * shr.el (shr-tag-img): Ignore images with no data.
1262
1263 2010-10-15  Julien Danjou  <julien@danjou.info>
1264
1265         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
1266         a possibility to disable format=flow encoding when using hard newlines.
1267
1268 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1269
1270         * shr.el (shr-insert): Remove space inserted before or after a
1271         breakable character or at the beginning or the end of a line.
1272         (shr-find-fill-point): Do kinsoku; find the second best point or give
1273         it up if there's no breakable point.
1274
1275 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1276
1277         * nnimap.el (nnimap-open-connection): Message when opening connection
1278         for debugging purposes.
1279
1280         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
1281         on every setup buffer call to allow this to change from article to
1282         article.
1283
1284         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
1285         buffers where we have a wide table.
1286
1287 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
1288
1289         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
1290         uses *-request-thread.
1291
1292 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1293
1294         * nnimap.el (nnimap-open-connection): Remove %s from openssl
1295         incantation, which is no longer valid.
1296
1297 2010-10-14  Julien Danjou  <julien@danjou.info>
1298
1299         * shr.el: Fix defcustom type (char -> character).
1300
1301 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1302
1303         * nnimap.el (nnimap-open-connection): tls-program should be a list of
1304         programs.
1305
1306 2010-10-14  Julien Danjou  <julien@danjou.info>
1307
1308         * shr.el (shr-tag-a): Use url-link as widget type.
1309
1310         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
1311         `gnus-group-get-icon'.
1312
1313 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1314
1315         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
1316         This should make server editing work better.
1317
1318         * shr.el (shr-find-fill-point): Don't inloop on indented text.
1319
1320         * tls.el (tls-program): Remove spurious %s from openssl.
1321
1322         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
1323         (nnimap-parse-flags): Fix regexp.
1324
1325         * shr.el (shr-find-fill-point): Use a filling algorithm that should
1326         probably work for CJVK text, too.
1327
1328         * nnimap.el (nnimap-extend-tls-programs): Remove.
1329         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
1330
1331         * tls.el (tls-starttls-switches): Remove starttls hack.
1332         (open-tls-stream): Ditto.
1333         (tls-find-starttls-argument): Ditto.
1334
1335 2010-10-13  Julien Danjou  <julien@danjou.info>
1336
1337         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
1338         responses.
1339
1340 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1341
1342         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
1343
1344         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
1345         anything in Emacs.
1346
1347         * shr.el (shr-current-column): Remove buggy and unnecessary function.
1348
1349 2010-10-13  Julien Danjou  <julien@danjou.info>
1350
1351         * shr.el (shr-width): Make shr-width a defcustom with default to
1352         fill-column.
1353         (shr-tag-img): Use shr-width rather than fill-column.
1354
1355 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1356
1357         * dgnushack.el (byte-optimize-apply)
1358         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
1359
1360         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
1361         position when (X-)Faces exist.
1362         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
1363         avatars when called interactively.
1364
1365 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1366
1367         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
1368         gnus-article-x-face-too-ugly is bound.
1369
1370 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1371
1372         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
1373
1374         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
1375         mailbox that doesn't exist.
1376
1377 2010-10-12  Julien Danjou  <julien@danjou.info>
1378
1379         * shr.el (shr-tag-img): Encode URL properly when retrieving.
1380         (shr-get-image-data): Encode URL properly when fetching from cache.
1381         (shr-tag-img): Use aligned-to spaces to align correctly images.
1382
1383         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
1384         before inserting the Gravatar.
1385
1386         * shr.el (shr-tag-img): Add align attribute support for <img>.
1387
1388 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1389
1390         * gnus-gravatar.el (gnus-art): Require.
1391
1392         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
1393         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
1394         Remove long obsoleted functions.
1395
1396 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1397
1398         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
1399
1400         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
1401
1402         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
1403         gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
1404         hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
1405         mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
1406         mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
1407         nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
1408         sieve-manage.el, smime.el, spam.el: Fix comment for declare-function.
1409
1410 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1411
1412         * nnimap.el (nnimap-request-rename-group): Select group read-only
1413         before renaming it.
1414
1415         * shr.el (shr-insert): Fix up the white space only regexp.
1416
1417         * nnimap.el (nnimap-transform-split-mail): Not all articles have
1418         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
1419
1420         * shr.el (shr-current-column): New function.
1421         (shr-find-fill-point): New function.
1422
1423 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1424
1425         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
1426         numbers.
1427
1428 2010-10-11  Julien Danjou  <julien@danjou.info>
1429
1430         * shr.el (shr-hr-line): Add.
1431         (shr-tag-hr): Use shr-hr-line to specify which character to use to
1432         display hr lines.
1433         (shr-max-columns): Do not change state to nil if we just inserting
1434         spaces.
1435
1436 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1437
1438         * gnus-topic.el (gnus-topic-read-group): If after the last group,
1439         select the last group.
1440
1441 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
1442
1443         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
1444
1445 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
1446
1447         * dig.el (dig-mode-map): Declare and define in one step.
1448
1449 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1450
1451         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
1452         for Gnus.
1453         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
1454         (nnimap-update-qresync-info): Mark \Seen articles as read.
1455
1456         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
1457         non-variable, too.
1458
1459         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
1460         available.
1461         (nnimap-update-info): Rely more on the current active than the param
1462         active to avoid marking articles as read too much.
1463
1464         * auth-source.el (auth-source-create): Use (user-login-name) for the
1465         user name default.
1466
1467         * nnimap.el (nnimap-update-info): If the server doesn't return any
1468         useful info, just use the previous info.
1469         (nnimap-update-info): Prefer old info over start-article.
1470         (nnimap-update-qresync-info): Finish implementing QRESYNC.
1471
1472 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
1473
1474         * nnir.el (autoload): Clean up autoloads.
1475         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
1476         Use key rather than value.
1477         (nnir-imap-search-other): New variable.
1478         (nnir-read-parm): Use it.
1479         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
1480         (gnus-summary-nnir-goto-thread): Modify to work with imap.
1481
1482 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1483
1484         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
1485         the process, too.
1486
1487 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1488
1489         * spam.el (gnus-summary-mode-map): Bind to "$".
1490         Suggested by Russ Allbery.
1491
1492         * shr.el: Rework the way things are indented by <li> slightly.
1493
1494         * gnus.el (gnus-group-set-parameter): Fix typo.
1495
1496         * nnimap.el: Start implementing QRESYNC support.
1497
1498 2010-10-09  Julien Danjou  <julien@danjou.info>
1499
1500         * nnir.el (nnir-engines): Fix too many arguments.
1501
1502 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1503
1504         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
1505         group is the "last", so that the backends like nnfolder actually save
1506         their folders.
1507
1508         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
1509         try to use that for the tls stream.
1510         (nnimap-retrieve-group-data-early): Rework the marks code to heed
1511         UIDVALIDITY and find out which groups are read-only and not.
1512         (nnimap-get-flags): Use the same marks parsing code as the rest of
1513         nnimap.
1514
1515 2010-10-09  Julien Danjou  <julien@danjou.info>
1516
1517         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
1518
1519         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
1520         retrieving gravatars.
1521
1522         * shr.el (shr-table-corner): Add.
1523         (shr-table-line): Add.
1524         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
1525
1526 2010-10-08  Julien Danjou  <julien@danjou.info>
1527
1528         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
1529
1530 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
1531
1532         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
1533
1534         * gnus-sum.el (gnus-mark-article-as-unread)
1535         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
1536         (gnus-summary-set-bookmark): Use it.
1537
1538         * gnus-msg.el (gnus-setup-message): Use it.
1539
1540         * gnus-demon.el (gnus-demon-remove-handler): Use it.
1541
1542         * gnus.el (gnus-group-remove-parameter): Use it.
1543
1544         * gnus-group.el (gnus-group-make-web-group): Use it.
1545
1546         * gnus-demon.el (gnus-demon-remove-handler): Use it.
1547
1548         * nnregistry.el: Update docs to mention manual.
1549
1550         * gnus-registry.el: Update docs to mention nnregistry.el.
1551         (gnus-registry-initialize): Don't install nnregistry refer method
1552         automatically.
1553         (gnus-registry-install-nnregistry): Remove it.
1554
1555 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1556
1557         * shr.el (shr-insert): Don't insert double spaces.
1558
1559 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1560
1561         * gnus-gravatar.el (gnus-treat-from-gravatar)
1562         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
1563         called interactively.
1564
1565         * gnus-art.el (gnus-mime-view-part-externally)
1566         (gnus-mime-view-part-internally): Make predicate function passed to
1567         gnus-mime-view-part-as-type assume argument is a mime type, not a list
1568         of a mime type.
1569
1570         * shr.el (shr-table-widths): Don't use cl function `reduce'.
1571
1572 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1573
1574         * shr.el (require): Require cl when compiling.
1575         (shr-tag-hr): New function.
1576
1577         * nnimap.el (nnimap-update-info): Remove double setting of high.
1578         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
1579         This makes nnimap work properly on Courier again.
1580
1581         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
1582         the variable for backwards compatability.
1583
1584         * mm-decode.el (mm-save-part): If given a non-directory result, expand
1585         the file name before using to avoid setting mm-default-directory to
1586         nil.
1587
1588         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
1589         bidning gnus-agent variables.
1590
1591         * shr.el (shr-render-td): Use a cache for the table rendering function
1592         to avoid getting an exponential rendering behaviour in nested tables.
1593         (shr-insert): Rework the line-breaking algorithm.
1594         (shr-insert): Don't leave trailing spaces.
1595         (shr-insert-table): Also insert empty TDs.
1596         (shr-tag-blockquote): Ensure paragraphs after </ul>.
1597
1598 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1599
1600         * gnus-sum.el (gnus-number): Rename from `number'.
1601         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
1602         (gnus-summary-limit-children): Update uses correspondingly.
1603
1604 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1605
1606         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
1607         (gnus-gravatar-transform-address): Don't show avatars of people of
1608         which mail addresses match gnus-gravatar-too-ugly.
1609
1610 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1611
1612         * shr.el (shr-table-widths): Expand TD elements to fill available
1613         space.
1614
1615 2010-10-07  Julien Danjou  <julien@danjou.info>
1616
1617         * nnimap.el (nnimap-request-rename-group): Add this method.
1618
1619 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1620
1621         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
1622         name from XEmacs' function-arglist.
1623
1624         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
1625         gravatar under XEmacs.
1626
1627 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
1628
1629         * auth-source.el: Update docs with TODO items.
1630
1631         * gnus-sync.el: Update docs to explain state and plans.
1632
1633         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
1634         Hooks for mark updates.
1635         (gnus-request-set-mark, gnus-request-update-mark): Use them.
1636
1637         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
1638         hooks with arguments, which is needed for mark update hooks.
1639
1640 2010-10-06  Julien Danjou  <julien@danjou.info>
1641
1642         * gnus.el (gnus-expand-group-parameter): Only return and act on what
1643         was matched.
1644
1645         * sieve-manage.el: Update example in `Commentary'.
1646
1647         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
1648
1649         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
1650         not 2000.
1651         (sieve-manage-authenticate): Re-add function.
1652
1653 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1654
1655         * shr.el (shr-insert): Get 'space transition right.
1656         (shr-render-td): Only delete space at the end of the TD.
1657
1658         * nnimap.el (nnimap-open-connection): Prepare to support
1659         open-gnutls-stream.
1660
1661         * shr.el: Rearrange function order to be more logical.
1662
1663 2010-10-06  Julien Danjou  <julien@danjou.info>
1664
1665         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
1666         (nnrss-discover-feed): Remove 404 URL in docstring.
1667
1668         * nnir.el: Fix Swish-E URL.
1669         Fix Namazu URL.
1670
1671         * message.el (message-change-subject): Remove 404 URL in a comment.
1672
1673 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1674
1675         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
1676         called interactively.
1677
1678         * gnus-util.el (gnus-remove-if): Allow hash table.
1679         (gnus-remove-if-not): New function.
1680
1681         * gnus-art.el (gnus-mime-view-part-as-type)
1682         * gnus-score.el (gnus-summary-score-effect)
1683         * gnus-sum.el (gnus-read-move-group-name):
1684         Replace remove-if-not with gnus-remove-if-not.
1685
1686         * gnus-group.el (gnus-group-completing-read):
1687         Regard collection as a hash table if it is not a list.
1688
1689 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1690
1691         * shr.el (shr-render-td): Allow blank/missing <TD>s.
1692
1693         * shr.el: Document the table-rendering algorithm.
1694
1695 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1696
1697         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
1698         for Emacsen having no `libxml-parse-html-region' support.
1699
1700 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1701
1702         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
1703         invalid URLs.
1704
1705         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
1706         line-broken.
1707         (shr-tag-img): Ignore image fetching errors.
1708         (shr-overlays-in-region): Compute overlay positions correctly.
1709
1710         * mm-decode.el (mm-shr): Require shr.
1711
1712         * gnus-art.el (gnus-blocked-images): Move variable here.
1713
1714         * shr.el (shr-insert-table): Bind free variable.
1715
1716         * mm-decode.el (mm-shr): Bind shr-content-function.
1717
1718         * shr.el (shr-content-function): New variable.
1719
1720         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
1721         added for symmetry.
1722
1723         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
1724
1725         * gnus-group.el (gnus-group-make-group): Doc fix.
1726
1727         * nnimap.el (nnimap-request-newgroups): Return success.
1728
1729         * shr.el (shr-find-elements): New function.
1730         (shr-tag-table): Put all the images after the table.
1731         (shr-tag-table): Really inhibit images inside the table.
1732         (shr-collect-overlays): Copy over overlays from the TD elements to the
1733         main document.
1734
1735         * mm-decode.el (mm-shr): Bind shr-blocked-images to
1736         gnus-blocked-images.
1737
1738 2010-10-05  Julien Danjou  <julien@danjou.info>
1739
1740         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
1741
1742         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
1743         (gnus-html-maximum-image-size): Add this function.
1744         (gnus-html-put-image): Use gnus-html-maximum-image-size.
1745
1746         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
1747         server-value of the capability is nil.
1748
1749 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1750
1751         * shr.el (shr-tag-em): Add <EM> tag.
1752
1753 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
1754
1755         * sieve-manage.el (sieve-manage-default-stream): Make default stream
1756         customizable.
1757
1758         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
1759         handing broken links to browse-url.
1760
1761 2010-10-05  Julien Danjou  <julien@danjou.info>
1762
1763         * gnus-util.el (gnus-emacs-completing-read)
1764         (gnus-iswitchb-completing-read): Use autoload rather than require.
1765
1766 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1767
1768         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
1769         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
1770         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
1771         iswitchb-temp-buflist for XEmacs.
1772
1773         * gnus-util.el (gnus-completing-read-function): Exclude
1774         gnus-icompleting-read and gnus-ido-completing-read from candidates for
1775         XEmacs since iswitchb.el is very old and ido.el is unavailable in
1776         XEmacs.
1777
1778         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
1779         not to use `delete-dups' that is unavailable in XEmacs 21.4.
1780
1781         * gnus-html.el: Don't require help-fns under XEmacs.
1782         (gnus-html-schedule-image-fetching): Work for XEmacs.
1783
1784         * mm-decode.el (mm-shr): Decode contents by charset.
1785
1786 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1787
1788         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
1789         unknown.
1790
1791         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
1792         (shr-get-image-data): Ensure against the cache file missing.
1793
1794         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
1795         for data.
1796
1797         * spam-report.el (spam-report-url-ping-plain): Don't query about
1798         killing the process.
1799
1800         * shr.el (shr-render-td): Protect against too-wide text.
1801
1802 2010-10-04  Julien Danjou  <julien@danjou.info>
1803
1804         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
1805         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
1806
1807         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
1808         retrieved.
1809
1810 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1811
1812         * shr.el (browse-url): Require.
1813         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
1814         lines.
1815         (shr-show-alt-text, shr-browse-image): New commands.
1816         (shr-browse-url, shr-copy-url): New commands.
1817
1818         * gnus-sum.el (gnus-widen-article-window): New variable.
1819         (gnus-summary-select-article-buffer): Use it.
1820
1821         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
1822         without @ signs.
1823
1824 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1825
1826         * nnir.el (nnir-run-imap): Remove spurious space in search string.
1827
1828 2010-10-04  Julien Danjou  <julien@danjou.info>
1829
1830         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
1831         for XEmacs.
1832
1833 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1834
1835         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
1836
1837         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
1838         (nnimap-close-server): Implement.
1839
1840         * dgnushack.el (iswitchb): Require to shut up the compiler.
1841
1842         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
1843         (shr-insert): Tweak line breaking.
1844         (shr-insert): Handle <pre> better.
1845         (shr-tag-li): Get <li> indentation right.
1846         (shr-tag-li): Get <li> indentation even righter.
1847         (shr-tag-blockquote): Ensure paragraph start.
1848         (shr-make-table): Tweak table generation.
1849         (shr-make-table): Fix typo.
1850
1851         * shr.el: Implement table rendering.
1852
1853 2010-10-04  Julien Danjou  <julien@danjou.info>
1854
1855         * gnus-html.el (gnus-html-put-image): Fix resize image code.
1856
1857 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1858
1859         * shr.el (shr-insert): Use string anchors instead of line anchors.
1860
1861 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1862
1863         * shr.el: Add headings.
1864         (shr-ensure-paragraph): Actually work.
1865         (shr-tag-li): Make <ul> prettier.
1866         (shr-insert): Get white space at the beginning/end of elements right.
1867         (shr-tag-p): Collapse subsequent <p>s.
1868         (shr-ensure-paragraph): Don't insert double line feeds after blank
1869         lines.
1870         (shr-insert): \t is also space.
1871         (shr-tag-s): Fix "s" tag name function.
1872         (shr-tag-s): Fix face prop name.
1873
1874 2010-10-03  Julien Danjou  <julien@danjou.info>
1875
1876         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
1877
1878         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
1879         gnus-window-inside-pixel-edges.
1880
1881         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
1882         gnus-ems.
1883
1884         * mm-view.el (mm-inline-image-emacs): Support image resizing.
1885
1886         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
1887         function.
1888
1889         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
1890         resize choice.
1891
1892 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1893
1894         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
1895         beginning of the buffer.
1896
1897         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
1898         article buffer again.
1899
1900         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
1901
1902         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
1903         when it's at the start of the buffer.
1904
1905         * shr.el (shr-tag-blockquote): Convert name.
1906         (shr-rescale-image): Use the right image-size variant.
1907
1908         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
1909         buffer isn't shown, then select the current article first instead of
1910         bugging out.
1911         (gnus-summary-select-article-buffer): Show both the article and summary
1912         buffers again.
1913
1914         * shr.el (shr-fontize-cont): Protect against regions with no text.
1915         Rename tag functions to shr-tag-* for enhanced security.
1916         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
1917
1918 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
1919
1920         * shr.el (shr-insert):
1921         * pop3.el (pop3-movemail):
1922         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
1923         loaded.
1924
1925 2010-10-03  Glenn Morris  <rgm@gnu.org>
1926
1927         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
1928
1929         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
1930
1931         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
1932
1933         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
1934
1935         * gnus-util.el (gnus-make-local-hook): Simplify.
1936
1937 2010-10-02  Julien Danjou  <julien@danjou.info>
1938
1939         * gnus-util.el (gnus-iswitchb-completing-read): New function.
1940         (gnus-ido-completing-read): New function.
1941         (gnus-emacs-completing-read): New function.
1942         (gnus-completing-read): Use gnus-completing-read-function.
1943         Add gnus-completing-read-function.
1944
1945 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1946
1947         * shr.el (shr-insert-document): Autoload.
1948         (shr-img): Be silent.
1949         (shr-insert): Add a newline after every picture before text.
1950         (shr-add-font): Use overlays for combining faces.
1951         (shr-insert): Pass upwards the text start point.
1952
1953         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
1954         possible.
1955         (mm-shr): New function.
1956
1957 2010-10-02  Julien Danjou  <julien@danjou.info>
1958
1959         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
1960         should go backward.
1961
1962 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
1963
1964         * shr.el (shr): Fix typo in provide call.
1965
1966 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1967
1968         * shr.el: New file.
1969
1970         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
1971
1972         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
1973         completing read.
1974
1975 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1976
1977         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
1978         we're being queried about.  Suggested by Dan Jacobson.
1979
1980         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
1981         Suggested by Jason Eisner.
1982
1983         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
1984         table, too.  Suggested by Stefan Wiens.
1985         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
1986         the table unnecessary.  Suggested by Stefan Wiens.
1987
1988         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
1989         longer needed, and probably doesn't work either, as pointed out by
1990         Stefan Wiens.
1991         (gnus-summary-exit): Remove call to the clearing function.
1992         (gnus-summary-exit-no-update): Ditto.
1993
1994         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
1995         instead of gnus-eval-in-buffer-window to avoid popping up frames.
1996         Reported by Stefan Monnier.
1997         (gnus-summary-save-in-rmail): Ditto.
1998
1999         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
2000         article buffer, instead of both the article buffer and the summary
2001         buffer.  Sort of suggested by Dan Jacobson.
2002
2003         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
2004
2005         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
2006         Suggested by Dan Jacobson.
2007
2008         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
2009         documentation clearer.
2010
2011         * message.el (message-shorten-references): Comment on the number "21".
2012         Suggested by Stefan Monnier.
2013
2014         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
2015         Suggested by Dan Jacobson.
2016
2017         * gnus.el (gnus-large-newsgroup):
2018         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
2019
2020         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
2021         externalize attachments.  Bug reported by Steve Wen.
2022
2023         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
2024         really message anything to the user.
2025
2026         * nnmail.el (nnmail-article-group): Allow using the fancy split method
2027         directly.
2028
2029         * nnimap.el (nnimap-request-group): Low higher than high to signal no
2030         messages in empty groups.
2031
2032 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
2033
2034         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
2035         non-UIDNEXT group.
2036
2037 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2038
2039         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
2040         not the value from the collection.
2041
2042         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
2043         values.  This sometimes happens on some groups that have no info.
2044         (nnimap-request-newgroups): New function.
2045
2046 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
2047
2048         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
2049         check into `gnus-registry-initialize'.
2050         (gnus-registry-initialize): Ditto.
2051         Fix and extend header docs.
2052
2053 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2054
2055         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
2056         regexp backtrace overflows.
2057
2058         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
2059         for starttls that tls.el implements; i.e. openssl.
2060
2061         * tls.el (tls-starttls-switches): Give up on using starttls with
2062         gnutls-cli.
2063         (tls-program): Add --insecure to be consistent with the defaults from
2064         openssl s_client.  Now all three commands are insecure.
2065
2066 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2067
2068         * lpath.el: Bind completion-styles-alist for XEmacs.
2069
2070         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
2071         (gravatar-create-image): New function that's an alias to
2072         gnus-xmas-create-image, gnus-create-image, or create-image.
2073         (gravatar-data->image): Use it.
2074
2075 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
2076
2077         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
2078         install the nnregistry refer method.
2079         (gnus-registry-install-hooks): Use it.
2080         (gnus-registry-unfollowed-groups): Add nnmairix to the default
2081         unfollowed groups.
2082
2083 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
2084
2085         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
2086         expanding threads.
2087
2088 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2089
2090         * nnir.el: Use the server names without suffixes (bug #7009).
2091
2092         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
2093         unencrypted to STARTTLS, if possible.
2094
2095 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
2096
2097         * message.el (message-ignored-supersedes-headers): Strip Injection-*
2098         headers before superseding.
2099
2100 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2101
2102         * nnrss.el (nnrss-use-local): Add documentation.
2103
2104         * nnimap.el (nnimap-extend-tls-programs): New function.
2105         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
2106         (nnimap-wait-for-connection): Accept the greeting from the stupid
2107         output from openssl s_client -starttls, too.
2108
2109         * tls.el (tls-starttls-switches): New variable.
2110         (tls-find-starttls-argument): Use it.
2111         (open-tls-stream): Ditto.
2112
2113         * netrc.el (netrc-credentials): Return the value of the "default" entry.
2114         (netrc-machine): Ditto.
2115
2116         * nnimap.el (nnimap-find-article-by-message-id): Really return the
2117         article number.
2118         (nnimap-split-fancy): New variable.
2119         (nnimap-split-incoming-mail): Use it.
2120
2121         * nntp.el (nntp-server-list-active-group): Document.
2122
2123         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
2124         SELECT to get the message-id.
2125
2126         * mail-source.el (mail-sources): Remove webmail support.
2127         (defvar): Ditto.
2128         (mail-source-fetcher-alist): Ditto.
2129         (mail-source-fetch-webmail): Remove.
2130
2131         * webmail.el: Remove -- doesn't seem relevant any more.
2132
2133         * gnus.el: Fix up make-obsolete-variable declarations throughout.
2134
2135         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
2136         the \r.
2137
2138 2010-09-30  Julien Danjou  <julien@danjou.info>
2139
2140         * gnus-agent.el (gnus-agent-add-group): Fix call to
2141         gnus-completing-read.
2142
2143 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2144
2145         * nndoc.el (nndoc-retrieve-groups): New function.
2146
2147         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
2148         `default', use nnmail-split-methods.
2149         (nnimap-request-article): Downcase the NILs so that they are nil.
2150
2151         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
2152         symbol.
2153
2154         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
2155         code, since if the user has requested network, that's what they ought
2156         to get.
2157         (nnimap-request-set-mark): Erase the buffer before issuing commands.
2158         (nnimap-split-rule): Mark as obsolete.
2159
2160         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
2161         New variable.
2162
2163         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
2164         correct slot, too.
2165
2166 2010-09-29  Julien Danjou  <julien@danjou.info>
2167
2168         * gnus.el (gnus-local-domain): Declare variable obsolete.
2169
2170         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
2171         Fix history computing.
2172         (gnus-ido-completing-read): Require ido.
2173
2174 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2175
2176         * gnus-registry.el: Don't prompt on load, which makes it impossible to
2177         build Gnus.
2178
2179         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
2180         when interpreting the structures.
2181         (nnimap-request-accept-article): Add \r\n to the lines to make this
2182         work with Cyrus.
2183
2184         * nndraft.el (nndraft-request-expire-articles): Use the group name
2185         instead if "nndraft".  Fix found by Nils Ackermann.
2186
2187 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
2188
2189         * nnregistry.el: Add.
2190
2191 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2192
2193         * nnmail.el (group, group-art-list, group-art):
2194         Remove unneeded directives.
2195
2196 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2197
2198         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
2199         (mm-mime-charset)
2200         * rfc2047.el (rfc2047-syntax-table)
2201         * utf7.el (utf7-utf-16-coding-system): Comment fix.
2202
2203         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
2204         rather than `insert-file-contents' and `eval-region'.
2205
2206         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
2207         construction.
2208
2209         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
2210
2211         * time-date.el: No need to require cl for Emacs 21.
2212
2213 2010-09-29  Julien Danjou  <julien@danjou.info>
2214
2215         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
2216         replacement of `gnus-gravatar-relief' to mimic
2217         `gnus-faces-properties-alist'.
2218         Add :version property.
2219
2220 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2221
2222         * mail-source.el (mail-source-report-new-mail)
2223         * message.el (message-default-mail-headers)
2224         * mm-decode.el (mm-valid-image-format-p): Comment fix.
2225
2226         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
2227
2228 2010-09-28  Julien Danjou  <julien@danjou.info>
2229
2230         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
2231         mail-address contains the same string as real-name.
2232
2233         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
2234         non-blank in header, otherwise it'll get stripped.
2235
2236         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
2237         real-name, and then for mail address rather than doing : or , search.
2238
2239 2010-09-27  Julien Danjou  <julien@danjou.info>
2240
2241         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
2242         right completing-read function.
2243         (gnus-use-ido): New variable
2244         (gnus-completing-read-with-default): Remove.
2245         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
2246         (gnus-agent-add-group):
2247         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
2248         * mm-view.el (mm-view-pkcs7-decrypt):
2249         * mm-util.el (mm-codepage-setup):
2250         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
2251         * mml-smime.el (mml-smime-openssl-sign-query):
2252         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
2253         (mml-insert-multipart):
2254         * gnus-msg.el (gnus-summary-yank-message):
2255         * gnus-int.el (gnus-start-news-server):
2256         * mm-decode.el (mm-interactively-view-part):
2257         * gnus-dired.el (gnus-dired-attach):
2258         * gnus.el (gnus-read-method):
2259         * gnus-bookmark.el (gnus-bookmark-jump):
2260         * gnus-art.el (gnus-mime-view-part-as-type)
2261         (gnus-mime-action-on-part, gnus-article-encrypt-body):
2262         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
2263         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
2264         * nnmairix.el (nnmairix-create-server-and-default-group)
2265         (nnmairix-update-groups, nnmairix-get-server)
2266         (nnmairix-backend-to-server, nnmairix-goto-original-article)
2267         (nnmairix-get-group-from-file-path):
2268         * nnrss.el (nnrss-find-rss-via-syndic8):
2269         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
2270         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
2271         (gnus-group-browse-foreign-server):
2272         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
2273         (gnus-summary-execute-command, gnus-summary-respool-article)
2274         (gnus-read-move-group-name):
2275         * gnus-score.el (gnus-summary-increase-score)
2276         (gnus-summary-score-effect):
2277         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
2278
2279 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2280
2281         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
2282         x-focus-frame.
2283
2284         * nnimap.el (auth-source-forget-user-or-password)
2285         (auth-source-user-or-password): Autoload.
2286
2287         * message.el (message-from-style, message-interactive)
2288         (message-cite-prefix-regexp, message-sendmail-envelope-from)
2289         (message-yank-prefix, message-indentation-spaces, message-signature)
2290         (message-signature-file): Add comment.
2291
2292 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2293
2294         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
2295         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
2296         new articles.
2297
2298         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
2299         parts.
2300         (nnimap-request-article): Work with the t setting, too.
2301
2302         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
2303         that you don't get flashes of other buffers.
2304         (gnus-summary-show-complete-article): Intern before setting.
2305
2306 2010-09-27  David Engster  <dengste@eml.cc>
2307
2308         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
2309         well as HEADERS.
2310         (nnmairix-retrieve-headers): Provide new argument for the above.
2311
2312 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2313
2314         * gnus-sum.el (gnus-summary-move-article): Don't alter
2315         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
2316         group.
2317
2318         * nnimap.el (nnimap-update-info): Don't destructively alter active.
2319
2320         * message.el (message-cite-prefix-regexp): Revert my last edit.
2321
2322         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
2323         variable instead of the Gnus variable.
2324
2325         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
2326
2327         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
2328
2329         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
2330         since some servers don't like it.
2331         (nnimap-open-connection): Forget credentials if the server says the
2332         password was wrong.
2333         (nnimap-parse-line): Protect against invalid data.
2334
2335         * gnus-sum.el (gnus-summary-move-article): Add comment.
2336         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
2337         nothing alters it while scanning for new messages.
2338
2339         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
2340         which may or may not help.
2341         (nnimap-open-connection): If we're doing a stream connection, and then
2342         discover we're on a STARTTLS-capable server, then open a STARTTLS
2343         connection instead.
2344
2345 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2346
2347         * nnimap.el (utf7): Require.
2348
2349         * message.el (message-cite-prefix-regexp): Remove "}" from citation
2350         prefix.
2351
2352 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
2353
2354         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
2355
2356 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2357
2358         * nnimap.el (nnimap-request-accept-article): Message the error on
2359         error.
2360
2361 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2362
2363         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
2364
2365 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2366
2367         * nndoc.el (nndoc-request-list): Return success always.
2368
2369         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
2370         `fetch-old' -- we only want to fetch the articles we've requested.
2371         The rest are in the agent, probably.
2372         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
2373         disappeared server" to something low.  It's not important.
2374
2375         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
2376         arrived before the FETCH data.
2377
2378         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
2379         target here, because we don't know the Gnus name of the group.
2380
2381         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
2382         for the correct group.
2383
2384         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
2385
2386         * gnus.el (gnus): Give a final warning after startup.
2387
2388         * gnus-util.el (gnus-action-message-log): New variable.
2389         (gnus-message): Use it.
2390         (gnus-final-warning): New function.
2391
2392         * nnimap.el (nnimap-open-connection): Record the greeting.
2393         (nnimap): Add greeting.
2394
2395 2010-09-26  Julien Danjou  <julien@danjou.info>
2396
2397         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
2398         arguments.
2399         (gnus-html-wash-images): Fix spec computing to include start/end.
2400
2401         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
2402
2403 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2404
2405         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
2406         deletion.
2407         (nnimap-retrieve-headers): Don't select the group, because that's
2408         already done by nnimap-possibly-change-group.
2409
2410         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
2411         (gnus-picon-transform-address): Use it.
2412
2413         * mail-source.el (mail-source-value): Revert previous patch.
2414
2415         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
2416         on failure.
2417         (nnimap-open-connection): Look up both virtual and physical server name
2418         credentials.
2419
2420         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
2421
2422 2009-02-07  Dave Love  <fx@gnu.org>
2423
2424         * tls.el (open-tls-stream): Don't query killing process.
2425
2426 2009-02-08  Dave Love  <fx@gnu.org>
2427
2428         * gnus-win.el (gnus-window-to-buffer-helper)
2429         (gnus-all-windows-visible-p): Function needn't be a symbol.
2430
2431         * mail-source.el (mail-source-value): Function needn't be a symbol.
2432
2433 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2434
2435         * message.el (message-cite-prefix-regexp): Remove } from the cite
2436         prefix.
2437
2438         * gnus-art.el (gnus-treatment-function-alist): Do picons before
2439         highlight again, so that the highlight is correct.
2440
2441         * gnus-picon.el (gnus-picon): Remove again.
2442         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
2443
2444         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
2445         doing the header highlightling, so that the background colour of the
2446         picon is correct.
2447
2448         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
2449         (gnus-picon): Ditto.
2450         (gnus-picon): Reinstate.  The background colour for picons is white.
2451         (gnus-picon-insert-glyph): Make the background white.
2452
2453         * nnml.el (nnml-open-nov): Don't return dead buffers.
2454
2455         * auth-source.el (auth-source-create): Query the user for whether to
2456         store the credentials.
2457
2458         * netrc.el (netrc-store-data): New function.
2459
2460         * auth-source.el (auth-source-user-or-password): Use the existing auth
2461         sources, if any, for creation.
2462
2463         * gnus.el (gnus-group-fast-parameter): Return the last matching
2464         parameter instead of the first matching parameter.
2465
2466 2010-09-26  Julien Danjou  <julien@danjou.info>
2467
2468         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
2469
2470 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2471
2472         * mml2015.el (mml2015-use): Remove gpg support.
2473
2474         * mml1991.el (mml1991-function-alist): Remove gpg function.
2475         (mml1991-gpg-sign): Remove.
2476
2477 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
2478
2479         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
2480         (gnus-browse-unsubscribe-current-group): Document it.
2481         (gnus-browse-unsubscribe-group): Use it.
2482
2483 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2484
2485         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
2486         address to the To list for easier response.
2487
2488         * gnus.el (gnus-play-startup-jingle): Remove.
2489         (gnus-splash): Don't play jingle.
2490         (gnus): Silence gnus-load message.
2491
2492         * gnus-art.el (gnus-treat-play-sounds): Remove.
2493
2494         * gnus.el (gnus-play-jingle): Remove audio support.
2495
2496         * gnus-cus.el (gnus-score-customize): Remove audio reference.
2497
2498         * earcon.el: Remove -- no users.
2499
2500         * gnus-audio.el: Remove -- no users of this package.
2501
2502         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
2503
2504         * gnus-start.el (gnus-setup-news): Remove nocem support.
2505
2506         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
2507
2508         * gnus.el (gnus-use-nocem): Remove.
2509
2510         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
2511         Remove.
2512
2513         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
2514         uses NoCeM any more.
2515
2516         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
2517         (gnus-button-ctan-handler): Ditto.
2518         (gnus-button-handle-ctan-bogus-regexp): Ditto.
2519         (gnus-button-ctan-directory-regexp): Ditto.
2520         (gnus-button-handle-ctan): Ditto.
2521         (gnus-button-tex-level): Ditto.
2522         (gnus-button-alist): Remove CTAN stuff.
2523
2524 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2525
2526         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
2527         nnimap-streaming test.
2528
2529         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
2530         servers twice.
2531
2532         * nnimap.el (nnimap-open-connection): Add more error reporting when
2533         nnimap fails early.
2534
2535         * nnheader.el (nnheader-get-report-string): New function.
2536         (nnheader-get-report): Use it.
2537
2538         * gnus-int.el (gnus-check-server): Say what the error was when opening
2539         failed.
2540
2541         * nnimap.el (nnimap-wait-for-response): Search further when we're not
2542         using streaming.
2543
2544 2010-09-25  Julien Danjou  <julien@danjou.info>
2545
2546         * gnus-html.el (gnus-html-rescale-image): Use our defalias
2547         gnus-window-inside-pixel-edges.
2548
2549 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2550
2551         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
2552
2553         * mm-decode.el (mm-save-part): Allow saving to other directories the
2554         normal Emacs way.
2555
2556         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
2557         Suggested by Jay Berkenbilt.
2558
2559         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
2560         there isn't a single byte.
2561
2562         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
2563         just do it.  It doesn't really seem to matter what the user responds
2564         here, I think, so it's just a confusing question.
2565
2566         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
2567         non-streaming case.
2568
2569         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
2570         (gnus-article-encrypt-body): Use it.
2571
2572         * gnus-sum.el (gnus-summary-show-complete-article): New command and
2573         keystroke.
2574
2575         * nnimap.el (nnimap-find-wanted-parts-1):
2576         Use gnus-fetch-partial-articles.
2577
2578         * gnus-art.el (gnus-fetch-partial-articles): New variable.
2579
2580         * nnimap.el (nnimap-insert-partial-structure): New function.
2581         (nnimap-get-partial-article): New function.
2582         (nnimap-request-article): Use it.
2583         (nnimap-wait-for-response): Return whether the wait was successful.
2584         (nnimap-finish-retrieve-group-infos): Don't do anything if the
2585         retrieval wasn't successful.
2586         (nnimap-retrieve-group-data-early): Allow throttling servers.
2587         (nnimap-streaming): New variable.
2588         (nnimap-fetch-partial-articles): Remove.
2589
2590         * mm-decode.el (mm-with-part): Protect against killed buffers.
2591
2592         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
2593         for prettier summary display.
2594
2595 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
2596
2597         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
2598
2599 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2600
2601         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
2602         apparently third-party libraries depend on it.
2603
2604         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
2605         before starting negotiation.
2606
2607         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
2608         privacy reasons.
2609         (gnus-treat-mail-gravatar): Ditto.
2610
2611         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
2612         buffer when inserting images.  Inserting text into the headers, for
2613         instance, can make them invalid.
2614
2615 2010-09-25  Julien Danjou  <julien@danjou.info>
2616
2617         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
2618         variables.
2619
2620         * nnheader.el: Remove useless variables news-reply-yank-from and
2621         news-reply-yank-message-id.
2622
2623         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
2624         variables.
2625
2626         * mml1991.el: Remove useless mml1991-verbose.
2627
2628         * gnus.el: Remove useless variable gnus-use-generic-from.
2629         Remove obsolete variable gnus-topic-indentation.
2630
2631         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
2632
2633         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
2634
2635         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
2636
2637         * gnus-group.el: Remove useless gnus-group-icon-cache.
2638         Remove useless gnus-ephemeral-group-server.
2639
2640         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
2641
2642         * mml2015.el: Remove useless mml2015-verbose.
2643
2644         * mml-smime.el: Remove useless mml-smime-verbose.
2645
2646         * gnus.el: Remove useless gnus-local-domain.
2647
2648         * gnus-gravatar.el (gnus-gravatar-transform-address):
2649         Use gnus-gravatar-size.
2650
2651         * gnus-art.el: Remove useless gnus-treat-translate.
2652
2653 2010-09-24  Julien Danjou  <julien@danjou.info>
2654
2655         * gnus-sum.el: Add support for Gravatars.
2656
2657         * gnus-art.el: Add support for Gravatars.
2658
2659         * gnus-gravatar.el: Add this file.
2660
2661         * gravatar.el: Add this file.
2662
2663 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2664
2665         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
2666
2667         * gnus-group.el (gnus-group-fetch-faq): Remove.
2668
2669         * gnus.el (gnus-group-faq-directory): Remove.
2670
2671         * gnus-group.el (gnus-group-fetch-charter): Remove.
2672
2673         * gnus.el (gnus-group-charter-alist): Remove.
2674
2675         * gnus-group.el (gnus-group-archive-directory): Remove.
2676         (gnus-group-recent-archive-directory): Ditto.
2677         (gnus-group-make-archive-group): Remove.
2678
2679         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
2680
2681         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
2682         use the same article number for all the cached articles.
2683
2684         * nnimap.el (nnimap-command): Register the last command time so
2685         that we can use it for idling NOOPs.
2686         (nnimap-open-connection): Start the keeplive timer.
2687         (nnimap-make-process-buffer): Store all the process buffers.
2688         (nnimap-keepalive): New function.
2689
2690         * starttls.el (starttls-open-stream): Add autoload cookie.
2691
2692 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2693
2694         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
2695         handling.
2696
2697 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2698
2699         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
2700         its data structures.
2701
2702         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
2703         instead of the cl.el copy-list.
2704         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
2705         equalp.
2706
2707 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2708
2709         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
2710         and tool-bar-local-item-from-menu.
2711
2712         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
2713         mode-line-highlight face for Emacs.
2714
2715         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
2716         loading gnus-sum.elc; fix comment for canlock-verify.
2717         (gnus-article-jump-to-part): Use read-number.
2718         (gnus-insert-mime-button, gnus-insert-mime-security-button):
2719         Remove Emacs pre-21 compatible code for help-echo.
2720         (gnus-article-next-page-1): No need to adjust the number of lines.
2721         (gnus-article-describe-bindings): Always use help-buffer.
2722
2723         * gnus-audio.el (gnus-audio-inline-sound)
2724         * gnus-cus.el (gnus-custom-mode)
2725         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
2726
2727         * gnus-sum.el (gnus-remove-overlays): Doc fix.
2728
2729         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
2730         compatible code.
2731
2732 2010-09-24  Glenn Morris  <rgm@gnu.org>
2733
2734         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
2735         visiting the fcc file in rmail-mode.
2736
2737         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
2738
2739 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2740
2741         * nnir.el: Silence the byte compiler.
2742
2743         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
2744         alias to browse-url-url-encode-chars if any.
2745         (gnus-html-encode-url): Use it.
2746
2747 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2748
2749         * gnus-start.el (gnus-use-backend-marks): New variable.
2750         (gnus-get-unread-articles-in-group): Use it.
2751
2752         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
2753         makeover.
2754
2755 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
2756
2757         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
2758
2759 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2760
2761         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
2762         Remove.
2763         (gnus-setup-news-hook):
2764         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
2765
2766         * gnus-int.el (gnus-request-update-info): Protect against backends not
2767         having the function.
2768
2769         * nnimap.el (nnimap-stream): Mention starttls.
2770         (nnimap-open-connection): Add starttls support.
2771
2772 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
2773
2774         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
2775
2776 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2777
2778         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
2779         BODYSTRUCTUREs.
2780         (nnimap-transform-headers): Unfold quoted {42} headers.
2781
2782         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
2783         the info.
2784         (gnus-get-unread-articles): Only call updatep on backends that support
2785         it.
2786
2787         * nnweb.el (nnweb-request-update-info): NOOP.
2788
2789         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
2790
2791         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
2792         since it only deals with marks.
2793
2794         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
2795         gnus-request-marks, and make a new gnus-request-update-info.
2796
2797         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
2798         the active instead of the high number, which is usually too low.
2799
2800 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
2801
2802         * netrc.el (netrc-parse): Remove encrypt.el mentions.
2803         * encrypt.el: Remove.
2804
2805 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2806
2807         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
2808         server in symbolic form.
2809
2810         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
2811
2812 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2813
2814         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
2815         (nnimap-update-info): Fix up code slightly.
2816
2817         * gnus-int.el (gnus-open-server): Add tracing for performance
2818         debugging.
2819
2820         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
2821         (gnus-group-insert-group-line): Pass the real group name so that it
2822         gets the right data.
2823
2824         * gnus-start.el (gnus-get-unread-articles): Don't have
2825         `gnus-get-unread-articles-in-group' update info, since that can be
2826         really slow and doesn't seem to be needed?
2827
2828 2010-09-22  Dan Christensen  <jdc@uwo.ca>
2829
2830         * time-date.el (date-to-time): Try using parse-time-string first before
2831         using the slower timezone-make-date-arpa-standard.
2832
2833 2010-09-22  Julien Danjou  <julien@danjou.info>
2834
2835         * gnus-group.el (gnus-group-insert-group-line):
2836         Call gnus-group-highlight-line.
2837         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
2838         default hook list.
2839         (gnus-group-update-eval-form): Add new function.
2840         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
2841         (gnus-group-get-icon): Use gnus-group-update-eval-form.
2842
2843 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2844
2845         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
2846         immediate, then expire all articles.
2847         (nnimap-update-info): Fix off-by-one errors.
2848         (nnimap-flags-to-marks): Would return no marks lists for group with no
2849         flags.  Instead return the other data.
2850
2851 2010-09-22  Julien Danjou  <julien@danjou.info>
2852
2853         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
2854         Only return an icon.
2855         (gnus-group-insert-group-line): Compute icon to return.
2856
2857         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
2858         (gnus-html-image-fetched): Only cache if
2859         gnus-html-image-automatic-caching is set.
2860         (gnus-html-image-fetched): Check for errors.
2861
2862 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2863
2864         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
2865         once per method on `g'.  This ensures that backends like nnfolder don't
2866         open all their folders.
2867
2868         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
2869         (nnimap-request-list): Nix out group in the correct buffer.
2870         (nnimap-parse-flags): Implement by using `read' instead of
2871         hand-parsing.
2872         (nnimap-flags-to-marks): Pass on permanent-flags.
2873         (nnimap-make-process-buffer): Record the server name.
2874         (nnimap-parse-flags): Fix typo.
2875         (nnimap-request-scan): Run split on the server in general, not just a
2876         single group.
2877
2878         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
2879         parameter, and propagate this downwards.
2880
2881         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
2882         since EXAMINE changes it on the server.
2883
2884         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
2885         this command might take a while.
2886
2887 2010-09-22  Julien Danjou  <julien@danjou.info>
2888
2889         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
2890         harmful if you have 2 images side-by-side, they can't be properly
2891         update on text deletion.  Using text-property is safer here.
2892         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
2893         data.
2894
2895 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2896
2897         * nnimap.el (nnimap-expunge-inbox): Remove.
2898         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
2899         (nnimap-expunge): Flip default to t.
2900
2901         * gnus.el (gnus-method-to-server): Don't push things to the cache
2902         unless it's unique.
2903         (gnus-server-to-method): Ditto.
2904
2905 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2906
2907         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
2908
2909 2010-09-22  Julien Danjou  <julien@danjou.info>
2910
2911         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
2912         get the start of data.
2913         (gnus-html-encode-url): Add this function to encode special chars in
2914         URL.
2915         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
2916         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
2917
2918         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
2919         default.
2920         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
2921
2922         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
2923         images alt-text.
2924         (gnus-html-put-image): Put alt-text as help-echo.
2925
2926 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2927
2928         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
2929         * mm-util.el (mm-decompress-buffer)
2930         * nnir.el (nnir-run-find-grep)
2931         * pop3.el (pop3-list): Use 3rd arg of split-string.
2932
2933         * time-date.el (format-seconds): Comment fix.
2934
2935         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
2936         and byte-optimize-form-code-walker.
2937         (dgnushack-make-auto-load): Don't advise make-autoload.
2938
2939         * lpath.el: Remove Emacs 21 stuff.
2940
2941 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2942
2943         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
2944         outside the active range.  Suggested by Dan Christensen.
2945
2946         * gnus-start.el (gnus-get-unread-articles): Get the extended method
2947         slightly later to avoid double-getting it.
2948
2949         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
2950         previous patch.
2951
2952         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
2953
2954 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
2955
2956         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
2957
2958 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2959
2960         * gnus-int.el (gnus-open-server): Give a better error message in the
2961         "go offline" case.
2962
2963         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
2964         marks for nnimap, which is seldom the right thing to do.
2965
2966         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
2967         (gnus-same-method-different-name): New function.
2968
2969         * nnimap.el (parse-time): Require.
2970
2971         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
2972         method in the presence of many similar methods.
2973
2974         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
2975
2976         * nnimap.el (nnimap-find-expired-articles): Don't refer to
2977         nnml-inhibit-expiry.
2978
2979         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
2980         find out whether methods are equal.
2981
2982         * nnimap.el (nnimap-find-expired-articles): New function.
2983         (nnimap-process-expiry-targets): New function.
2984         (nnimap-request-move-article): Request the article before looking at
2985         what the Message-ID is.  Fix found by Andrew Cohen.
2986         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
2987
2988         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
2989         for oldness in addition to being a predicate.
2990
2991         * nnimap.el (nnimap-request-group): When we have zero articles, return
2992         the right data to Gnus.
2993         (nnimap-request-expire-articles): Only delete articles immediately if
2994         the target is 'delete.
2995
2996         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
2997         method, this would bug out.
2998
2999         * gnus-group.el (gnus-group-expunge-group): Rename from
3000         gnus-group-nnimap-expunge, and implemented as a normal interface
3001         function.
3002
3003         * gnus-int.el (gnus-request-expunge-group): New function.
3004
3005         * nnimap.el (nnimap-request-create-group): Implement.
3006         (nnimap-request-expunge-group): New function.
3007
3008 2010-09-21  Julien Danjou  <julien@danjou.info>
3009
3010         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
3011         (gnus-html-cache-expired): Add new function.
3012         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
3013         wethever we should display image for fetch it.
3014         Compute alt-text earlier to pass it to the fetching function too.
3015         (gnus-html-schedule-image-fetching): Change function argument to only
3016         get one image at a time, not a list.
3017         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
3018         cache.
3019         (gnus-html-get-image-data): New function to retrieve image data from
3020         cache.
3021         (gnus-html-put-image): Change buffer argument to use image data rather
3022         than file, and place image above region rather than inserting a new
3023         one.  Do not take alt-text as argument, since it's useless now: we place
3024         the image above alt-text.
3025         (gnus-html-prune-cache): Remove.
3026         (gnus-html-show-images): Start to fetch image when we find one, do not
3027         push into a temporary list.
3028         (gnus-html-prefetch-images): Only fetch image if they have expired.
3029         (gnus-html-browse-image): Fix, use 'gnus-image-url.
3030         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
3031
3032 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3033
3034         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
3035
3036 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3037
3038         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
3039         spec inser "*" if the group isn't active instead of 0.
3040
3041         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
3042         opening the server.
3043         (nnimap-request-delete-group): Implement group deletion.
3044         (nnimap-transform-headers): Return the size of the entire message in
3045         the Bytes header, not just the size of the first part.
3046         (nnimap-request-move-article): When moving an article from nnimap,
3047         request the article first so the accepting form has an article to
3048         accept.  Reported by Dan Christensen.
3049         (nnimap-command): Make sure that the error message doesn't error out.
3050
3051 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
3052
3053         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
3054         we haven't requested anything.
3055
3056 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3057
3058         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
3059         "".  Fix found by Andrew Cohen.
3060
3061         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
3062         instead of -encode-string.
3063
3064 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3065
3066         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
3067
3068         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
3069         by mm-subst-char-in-string.
3070
3071 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3072
3073         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
3074         waiting for the connection string.
3075
3076         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
3077         arriving.
3078
3079         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
3080         bogus characters.  This allows selecting certain Gmail groups.
3081
3082         * nnimap.el (nnimap-find-wanted-parts-1): New function.
3083         (nnimap-fetch-partial-articles): New variable.
3084         (nnimap-open-connection): When looking for credentials, also use the
3085         nnimap-server-port.
3086         (nnimap-request-article): Return the group/article number, so that Gnus
3087         `^' works as expected.
3088         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
3089
3090         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
3091         comments.
3092         (gnus-methods-sloppily-equal): New function.
3093         (gnus): When using the development version of Gnus, load the gnus-load
3094         file.
3095
3096         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
3097         `gnus-open-server' on each method before trying to scan them etc.
3098         This ensures that all the backend parameters are set correctly.
3099
3100         * nnimap.el (nnimap-authenticator): New variable.
3101         (nnimap-open-connection): Allow anonymous login.
3102         (nnimap-transform-headers): The chars header is called Chars not Bytes.
3103         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
3104
3105         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
3106         patch, found by Knut Anders Hatlen.
3107
3108 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
3109
3110         * gnus-agent.el (gnus-agent-batch-confirmation)
3111         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
3112         to gnus-message.
3113         * gnus-art.el (gnus-article-describe-briefly): Likewise.
3114         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
3115         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
3116         * gnus-int.el (gnus-open-server): Likewise.
3117         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
3118         (gnus-score-check-syntax): Likewise.
3119         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
3120         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
3121         Likewise.
3122         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
3123
3124 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3125
3126         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
3127         calling conventions so that prefetch doesn't bug out.
3128
3129 2010-09-19  Julien Danjou  <julien@danjou.info>
3130
3131         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
3132         rather than `subst-char-in-region' in order to be able to replace ASCII
3133         char by UTF-8 ones.
3134
3135         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
3136         than curl.
3137         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
3138         the right URL and ALT text on images.
3139         (gnus-html-wash-tags): Fix tag case.
3140         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
3141         (gnus-article-html): Add -o display_ins_del=2 option.
3142         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
3143
3144 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3145
3146         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
3147         the extra mail headers, which sometimes seem to happen for unknown
3148         reasons.
3149
3150         * mail-parse.el (mail-header-encode-parameter): Define as
3151         rfc2045-encode-string instead of as rfc2231-encode-string, since some
3152         (or most, perhaps?) mail readers don't understand the latter, but do
3153         understand the former.
3154
3155         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
3156         to nil, so that no methods are automatically agentized.  I think this
3157         is probably what most users want.
3158
3159         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
3160         from url-retrieve, for instance about invalid URLs.
3161
3162         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
3163         groups that have no articles.
3164         (nnimap-request-article): Check that we really got an article when we
3165         requested one.
3166
3167         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
3168         doesn't exist.
3169
3170         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
3171         nntp buffer so the agent can save it.
3172         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
3173         that CRLF doesn't get translated to \n.
3174         (nnimap-open-connection): Don't make 'shell commands only send \n.
3175
3176 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3177
3178         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
3179         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
3180         Update var name.
3181         (nnml-generate-nov-file): Use dolist.
3182         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
3183         Use with-current-buffer.
3184
3185 2010-09-18  Julien Danjou  <julien@danjou.info>
3186
3187         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
3188         parallel.
3189
3190 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3191
3192         * nnimap.el (nnimap-update-info): When doing partial marks update, get
3193         the range update right.
3194         (nnimap-request-group): Don't make `M-g' bug out on group with no
3195         marks.
3196         (nnoo): Require, so that other packages can require nnimap.
3197         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
3198         command we're looking for.  This helps when the server sends more
3199         responses after we've gotten everything we expected.
3200         (nnimap): Add a `newlinep' field to keep track of end-of-line
3201         conventions.
3202         Don't send CRLF to things that don't want it.
3203         (nnimap-request-accept-article): Ditto.
3204
3205 2010-09-18  Julien Danjou  <julien@danjou.info>
3206
3207         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
3208         than curl to retrieve images.
3209
3210 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3211
3212         * nnimap.el (nnimap-update-info): Extend the info so that we can set
3213         the marks.
3214         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
3215         (nnimap-wait-for-connection): New function.
3216         (nnimap-open-connection): If we have PREAUTH, don't query for login
3217         credentials.
3218         (nnimap-update-info): Fix off-by-one error when concatenating ranges
3219         when doing a partial update.
3220
3221 2010-09-18  Julien Danjou  <julien@danjou.info>
3222
3223         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
3224         tags.
3225
3226 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3227
3228         * nnimap.el (nnimap-credentials): New function.
3229         (nnimap-open-connection): Use the new function to look for credentials
3230         also on the numeric equivalents of "imap" and "imaps".
3231
3232         * gnus-start.el (gnus-activate-group): Send the info to
3233         gnus-request-group.
3234
3235         * nnimap.el (nnimap-request-group): Have the "check" version of the
3236         function parse flags and update the info, so that a `M-g' get a total
3237         resync of all flags from the group.
3238
3239         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
3240         to allow backends to alter the info on group selection.  Also alter all
3241         the backend -request-group functions to take the parameter.
3242
3243         * nnimap.el (nnimap-store-info): New function.
3244         (nnimap-update-info): Store the info for later usage.
3245         (nnimap-request-group): Use the stored info for the dont-check case, so
3246         that we don't retrieve all marks when we enter a group.
3247
3248         * nnimap.el: Use deffoo instead of defun for interface functions.
3249
3250         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
3251         update the group info.  This makes the nndraft groups, for instance, go
3252         back to their old behaviour.
3253
3254         * gnus-sum.el (gnus-select-newsgroup): Indent.
3255
3256         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
3257         in.
3258         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
3259         nothing.
3260
3261         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
3262         from methods that are denied.
3263
3264         * gnus-int.el (gnus-method-denied-p): New function.
3265
3266         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
3267         store the password instead of netrc.
3268         (nnimap-open-connection): Don't error out when we can't make a
3269         connections.
3270
3271         * auth-source.el (auth-source-create): In the password prompt, say what
3272         we're querying for.  Also prompt for user name if that hasn't been
3273         given.
3274
3275         * nnimap.el (nnimap-with-process-buffer): Remove.
3276
3277 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3278
3279         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
3280         method when we're reading from the agent.
3281
3282         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
3283
3284         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
3285         that's probably most useful for users.
3286
3287         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
3288         "failed" all the time.
3289
3290         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
3291         ...)) with (with-current-buffer ... ).
3292
3293         * nntp.el (nntp-open-server): Return whether the open was successful or
3294         not.
3295
3296         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
3297         select an unread unseen article first.
3298
3299         * nnimap.el (nnimap-open-connection): If the user doesn't have a
3300         /etc/services, supply some sensible port defaults.
3301
3302         * dgnushack.el: Define netrc-credentials.
3303
3304 2010-09-17  Julien Danjou  <julien@danjou.info>
3305
3306         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
3307
3308 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
3309
3310         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
3311         doesn't have any parameters.
3312
3313 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3314
3315         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
3316         only upcased checks.
3317
3318         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
3319
3320         * nnimap.el (nnimap-open-shell-stream): New function.
3321         (nnimap-open-connection): Use it.
3322         (nnimap-transform-headers): Get the number of lines in each message.
3323         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
3324         number of lines.
3325         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
3326         problem.
3327
3328         * utf7.el (utf7-encode): Autoload.
3329
3330         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
3331         to allow the mail splitting to not return a default group.  This is
3332         useful for nnimap, which will leave unmatched mail in the inbox.
3333
3334         * nnimap.el: Rewritten.
3335
3336         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
3337         nnimap usage.
3338
3339         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
3340         if the move is internal, so that nnimap can do fast internal moves.
3341
3342         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
3343         data.
3344         (gnus-read-active-for-groups): Support finishing the early retrieval of
3345         data.
3346
3347         * gnus-range.el (gnus-range-nconcat): New function.
3348
3349         * gnus-int.el (gnus-finish-retrieve-group-infos)
3350         (gnus-retrieve-group-data-early): New functions.
3351
3352 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3353
3354         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
3355         (nnrss-retrieve-groups):
3356         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
3357         (pop3-quit): Use with-current-buffer.
3358
3359 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3360
3361         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
3362         instead of nnheader-accept-process-output.
3363
3364         * dgnushack.el (dgnushack-compile): Add comment.
3365
3366         * lpath.el: No need to fbind propertize for XEmacs 21.4.
3367
3368         * gnus-html.el (gnus-html-schedule-image-fetching)
3369         (gnus-html-prefetch-images): Replace process-kill-without-query by
3370         gnus-set-process-query-on-exit-flag.
3371
3372 2010-09-16  Romain Francoise  <romain@orebokech.com>
3373
3374         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
3375
3376 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3377
3378         * gnus-registry.el (gnus-registry-install-shortcuts): The second
3379         parameter to unintern is mandatory-ish in Emacs 24.
3380
3381         * gnus-html.el (gnus-html-schedule-image-fetching)
3382         (gnus-html-prefetch-images): Check for curl before using it.
3383
3384         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
3385         depend on curl, which isn't essential.
3386
3387         * imap.el: Revert back to version
3388         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
3389         seem problematic.
3390
3391 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
3392
3393         * gnus-registry.el (gnus-registry-install-shortcuts):
3394         Explicitly pass `obarray' to `unintern' to avoid a warning.
3395
3396 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3397
3398         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
3399         change.
3400
3401         * nnrss.el (nnrss-request-list): Remove this function and related
3402         functions, including the moreover stuff.
3403
3404 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3405
3406         * nnrss.el (nnrss-retrieve-groups): New function.
3407
3408 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
3409
3410         * .dir-locals.el: Add no-byte-compile cookie.
3411
3412 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3413
3414         * time-date.el (format-seconds): Comment fix.
3415
3416         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
3417         for back end that doesn't support request-scan.
3418
3419 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3420
3421         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
3422         then do request scans from the backends.
3423
3424         * netrc.el (netrc-credentials): New conveniency function.
3425
3426         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
3427         avoid running a hook per line, since this takes a lot of time,
3428         profiling shows.
3429         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
3430         directly if gnus-visual-p is true.
3431
3432 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3433
3434         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
3435         groups; replace mapcar with dolist which is a bit faster; pass groups
3436         info to gnus-read-active-file-1.
3437         (gnus-read-active-file-1): Scan only specified groups if the new
3438         optional arg `infos' is given.
3439
3440 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3441
3442         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
3443
3444         * pop3.el (pop3-movemail): Remove.
3445         (pop3-streaming-movemail): Rename to pop3-movemail.
3446
3447         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
3448         don't restrict end-tag searches to the end of the line.
3449
3450 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3451
3452         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
3453         articles of every unchecked group to t, which means unknown since the
3454         server has never been opened.
3455
3456 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3457
3458         * gnus-html.el (gnus-html-show-alt-text): New command.
3459         (gnus-html-browse-image): Ditto.
3460         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
3461         to browse the image directly.
3462         (gnus-html-wash-tags): Search for images first, so that <a><img> works
3463         better.
3464
3465         * gnus-async.el (gnus-async-article-callback):
3466         Call `gnus-html-prefetch-images' unconditionally.
3467
3468         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
3469         before feeding URLs to curl.
3470
3471 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3472
3473         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
3474         internal images as deletable by `W D D'.
3475
3476         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
3477         (gnus-async-article-callback): Fix typo.
3478
3479 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3480
3481         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
3482         current line to work around bugs in the output from w3m.
3483
3484         * gnus-async.el (gnus-async-article-callback): Always prefetch images
3485         for groups that want that.
3486
3487         * nntp.el (nntp-wait-for-string): Supply a timeout for
3488         accept-process-output to ensure progress.
3489
3490         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
3491         level to get unread articles from, then use that for foreign groups,
3492         too.
3493
3494         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
3495         confuses the rest of the function.
3496
3497         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
3498         for the methods that support -retrieve-groups, too.
3499
3500         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
3501
3502 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3503
3504         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
3505         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
3506
3507         * pop3.el: Require cl when compiling.
3508         (pop3-number-of-responses): Search for "+OK", not "+OK ".
3509
3510 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3511
3512         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
3513         that aren't going to be activated.
3514         (gnus-get-unread-articles): Fix up the last commit.
3515
3516         * gnus-html.el (gnus-article-html): Allow calling without specifying
3517         the handle.  In that case, dissect the buffer first.
3518
3519         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
3520
3521         * nnimap.el (nnimap-open-connection): Revert the change that would look
3522         into authinfo for imaps instead of imap.
3523
3524         * gnus-start.el (gnus-activate-group): Take an optional parameter to
3525         say that you don't want to call gnus-request-group with don-check, but
3526         do check the reponse.  This is for virtual groups only.
3527         (gnus-get-unread-articles): Count the archive groups as secondary, so
3528         that they're activated the same way as before.
3529
3530         * imap.el (imap-message-map): Removed optional buffer parameter, since
3531         no callers use it.
3532         (imap-message-get): Ditto.
3533         (imap-message-put): Ditto.
3534         (imap-mailbox-map): Ditto.
3535         (imap-mailbox-put): Ditto.
3536         (imap-mailbox-get): Ditto.
3537         (imap-mailbox-get): Revert last change for this function.
3538
3539         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
3540         case-insensitively.
3541         (nnimap-debug): Remove.
3542
3543         * imap.el (imap-fetch-safe): Removed function, and altered all callers
3544         to use `imap-fetch' instead.  According to the comments, this should be
3545         safe, since all other IMAP clients use the 1:* syntax.
3546         (imap-enable-exchange-bug-workaround): Removed.
3547         (imap-debug): Removed -- doesn't seem very useful.
3548
3549         * mail-source.el (mail-source-fetch): Don't message if we're fetching
3550         mail from a file, and the file doesn't exist.
3551
3552         * imap.el (imap-log): New convenience function used throughout instead
3553         of repeating the same code all over the place.
3554
3555         * pop3.el (pop3-streaming-movemail): Return t for success.
3556
3557         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
3558         .authinfo if we're using ssl connection.
3559
3560         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
3561         already have if we're in a main Gnus `g' run.
3562
3563         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
3564
3565 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3566
3567         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
3568
3569         * nnmh.el (nnmh-request-list-1): Bind `file'.
3570
3571         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
3572         alias to set-process-query-on-exit-flag or process-kill-without-query.
3573         (pop3-open-server): Use it.
3574
3575 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3576
3577         * mail-source.el (mail-source-delete-crash-box): Always move the crash
3578         box to the Incoming file.  Fixes mistake in previous checkin.
3579
3580         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
3581         request loop (for debugging purposes) removed.
3582
3583         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
3584         culprit is more visible.
3585         (nnml-save-incremental-nov, nnml-open-incremental-nov)
3586         (nnml-add-incremental-nov): New functions to do "incremental" nov
3587         updates, where we just append to the end of the existing nov files
3588         without reading/writing them in full.
3589
3590         * mail-source.el (mail-source-delete-crash-box): Really only check the
3591         incoming files once in a while.
3592
3593         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
3594
3595         * mail-source.el (mail-source-delete-crash-box): Only check the
3596         incoming files for deletion once per day to save a lot of file
3597         accesses.
3598
3599         * pop3.el (pop3-logon): Fix up unbound variable typo.
3600
3601         * mail-source.el (pop3-streaming-movemail): Autoload.
3602
3603         * pop3.el (pop3-streaming-movemail):
3604         Respect pop3-leave-mail-on-server.
3605
3606         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
3607         retrieval.
3608
3609         * pop3.el (pop3-process-filter): Remove unused function.
3610         (pop3-streaming-movemail, pop3-send-streaming-command)
3611         (pop3-wait-for-messages, pop3-write-to-file)
3612         (pop3-number-of-responses): New functions for streaming pop3
3613         retrieval.
3614
3615         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
3616         come from no known methods.
3617         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
3618         list.
3619
3620         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
3621         message sizes.
3622         (pop3-movemail): Use erase-buffer instead of looping and deleting
3623         regions, which seems rather odd.
3624
3625         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
3626         file once per `g' run.
3627
3628         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
3629         directories.  This makes the draft queue directory work.
3630
3631         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
3632         data from the backends, so that we only request the list of groups from
3633         each method once.  This should speed things up considerably.
3634
3635         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
3636         detect that it's not implemented.
3637
3638         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
3639         we actually do recurse down into the tree, but don't stat all leaf
3640         nodes.
3641
3642         * gnus-html.el (gnus-html-show-images): If there are no images to show,
3643         then say so instead of bugging out.
3644
3645         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
3646         files exist before trying to read them.
3647
3648         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
3649         around <pre_int>.
3650
3651         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
3652
3653         * nnmh.el (nnmh-request-list-1): Optimize for speed.
3654
3655 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3656
3657         * mm-util.el (mm-image-load-path): Just return the image directories,
3658         not all directories in the path in addition to the image directories.
3659         (mm-image-load-path): Maintain a cache of the image directories so that
3660         the `g' command in Gnus doesn't have to stat dozens of directories each
3661         time.
3662
3663         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
3664         (gnus-html-wash-tags): Add a new `i' command to insert images.
3665         (gnus-html-insert-image): New command and keystroke.
3666         (gnus-html-redisplay-with-images): New command and keystroke.
3667         (gnus-html-show-images): Rename command.
3668         (gnus-html-wash-tags): Remove more white space before <pre_int> image
3669         spacers.
3670         (gnus-html-wash-tags): Decode entities at the end, so that entities
3671         inside the tags don't mess up the rest of the "parsing".
3672
3673         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
3674         so that nnimap methods aren't agentized by default.  There's apparently
3675         many problems related to agent/imap behaviour.
3676
3677         * gnus-art.el (gnus-article-copy-string): New command and key binding.
3678
3679         * gnus-html.el: Doc fix.
3680
3681 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3682
3683         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
3684         specifier-spec-list for Emacs 21.
3685
3686         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
3687         glyph-width and glyph-height instead of display-graphic-p and
3688         image-size; make avoidance of displaying small images work for XEmacs.
3689
3690         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
3691         for XEmacs.
3692
3693         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
3694         of symbol that holds plist data.
3695         (gnus-process-plist): Remove plist of process after getting it.
3696
3697 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3698
3699         * message.el (message-generate-hashcash): Change default to
3700         'opportunistic if hashcash is installed.
3701
3702         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
3703         (gnus-html-put-image): Only call image-size once, since it's somewhat
3704         time-consuming on remote X servers.
3705
3706 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3707
3708         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
3709         type on data, not a file name.
3710
3711         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
3712         window-pixel-edges for Emacs 21.
3713
3714         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
3715         decoded contents.
3716         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
3717
3718 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3719
3720         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
3721         group line format, since it isn't very interesting.
3722
3723         * gnus-agent.el (gnus-agent-short-article),
3724         (gnus-agent-long-article): Increase values for these two variables,
3725         since most people are likely to have more network connection and
3726         storage than before.
3727
3728         * gnus.el (gnus-refer-article-method): Change default to 'current.
3729         When referring an article, the common behaviour is to refer it from the
3730         current select method, not the native select method.  The chances of
3731         the native select method having the message in question is rather slim
3732         these days.
3733
3734         * gnus-sum.el (gnus-auto-select-subject): Change default to
3735         `unseen-or-unread'.  I think it's likely that most people want to
3736         select an unseen article over a previously seen, but unread one.
3737
3738         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
3739         means that in the article buffer none of the minor mode elements will
3740         be shown, usually, and this is not desirable in most cases.
3741
3742         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
3743         that commands like `d' (and the like) go to the next line in the
3744         buffer, instead of the next unread article.  I think this is the
3745         behaviour that is most natural for most users.
3746         (gnus-single-article-buffer): Change default to nil, so that people can
3747         have as many article buffers open as they have summary buffer.  I think
3748         this is the most natural way for the groups to behave.
3749
3750         * message.el (message-generate-new-buffers): Change default to
3751         `unsent', so that all new message buffers start their names with the
3752         string "*unsent", and it's easier to find the buffers if you move from
3753         them.
3754
3755 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3756
3757         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
3758         small.  They're probably tracking images.
3759         (gnus-html-wash-tags): Remove all <pre_int> place holders.
3760         (gnus-html-rescale-image): Yet another try at getting the image sizing
3761         right.
3762
3763         * nntp.el (nntp-request-set-mark): Refuse to do marks if
3764         nntp-marks-file-name is nil.
3765
3766 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3767
3768         * gnus-html.el (gnus-html-wash-tags)
3769         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
3770         Better logging.
3771
3772 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3773
3774         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
3775
3776         * gnus-html.el (gnus-html-wash-tags): Check the value of
3777         gnus-blocked-images in the summary buffer.
3778
3779 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3780
3781         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
3782
3783 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3784
3785         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
3786         like "a", it seems like.
3787         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
3788         since it needs to be picked from the correct buffer.
3789
3790         * nnwfm.el: Remove.
3791
3792         * nnlistserv.el: Remove.
3793
3794 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3795
3796         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
3797         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
3798
3799 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3800
3801         * nnkiboze.el: Remove.
3802
3803         * nndb.el: Remove.
3804
3805         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
3806         alt text.
3807         (gnus-html-rescale-image): Try to get the rescaling logic right for
3808         images that are just wide and not tall.
3809
3810         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
3811         overshadow variable bindings.
3812
3813 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
3814
3815         * gnus-html.el (gnus-html-wash-tags)
3816         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
3817         Add extra logging.
3818
3819 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3820
3821         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
3822         (gnus-max-image-proportion): New variable.
3823         (gnus-html-rescale-image): New function.
3824         (gnus-html-put-image): Rescale images.
3825
3826 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3827
3828         Fix up some byte-compiler warnings.
3829         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
3830         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
3831         (gnus-article-fill-cited-article, gnus-article-hide-citation)
3832         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
3833         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
3834         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
3835         (gnus-group-update-group): Use save-excursion and with-current-buffer.
3836
3837 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3838
3839         * gnus-html.el (gnus-article-html): Decode contents by charset.
3840
3841 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3842
3843         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
3844         (gnus-html-frame-width, gnus-blocked-images)
3845         * message.el (message-prune-recipient-rules): Add custom version.
3846         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
3847
3848         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
3849         functions.
3850
3851         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
3852         gnus-process-get.
3853
3854 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
3855
3856         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
3857         instead of lsub directly.
3858
3859 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3860
3861         * nnwarchive.el: Remove.
3862
3863         * gnus-soup.el: Remove.
3864
3865         * nnsoup.el: Remove.
3866
3867         * nnultimate.el: Remove.
3868
3869         * gnus-html.el (gnus-blocked-images): New variable.
3870
3871         * message.el (message-prune-recipients): New function.
3872         (message-prune-recipient-rules): New variable.
3873
3874         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
3875         guess whether a long line is natural text or not.
3876
3877         * gnus-html.el (gnus-html-schedule-image-fetching):
3878         Use gnus-process-plist and friends for compatibility.
3879
3880 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3881
3882         * gnus-html.el: Require packages that define macros used in this file.
3883         (gnus-article-mouse-face): Declare to silence byte-compiler.
3884         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
3885         process-get.
3886         (gnus-html-put-image): Use plist-get to avoid getf.
3887         (gnus-html-prefetch-images): Use with-current-buffer.
3888
3889 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3890
3891         * gnus-ems.el: Provide compatibility functions for
3892         gnus-set-process-plist.
3893
3894         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
3895         header-line-format for XEmacs 21.4.
3896
3897         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
3898         * gnus.el (gnus-valid-select-methods)
3899         * message.el (message-send-mail-partially-limit)
3900         * mm-decode.el (mm-text-html-renderer)
3901         * mml.el (mml-insert-mime-headers-always)
3902         * smiley.el (smiley-regexp-alist): Bump custom version.
3903
3904 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3905
3906         * gnus-html.el: require mm-url.
3907         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
3908         with the url to `url'.
3909         (gnus-html-wash-tags): Support cid: URLs/images.
3910
3911 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3912
3913         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
3914         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
3915         bindings, as they aren't useful at all.  `w' is moved to `W w'.
3916
3917         * gnus-move.el: Remove file, since it doesn't really work.
3918
3919         * gnus-html.el (gnus-article-html): Tell w3m that the input is
3920         UTF-8.  This seems to fix problems with some German web feeds.
3921
3922         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
3923         at the top so that the proper colours are applied.
3924
3925         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
3926         don't have dots in their names.
3927
3928         * gnus-art.el (gnus-article-view-part): Doc fix.
3929
3930         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
3931         XEmacs-compatible.
3932         (gnus-html-put-image): Don't do images on non-graphic displays.
3933
3934         * nnslashdot.el: Remove this unused backend.
3935
3936         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
3937         actions.
3938         (gnus-undo-register-1): Revert last change.
3939
3940         * gnus-group.el (gnus-group-completing-read): Protect against not
3941         having completion-styles bound.
3942
3943         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
3944         make broken recipients happier.
3945
3946         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
3947
3948         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
3949         point parameter.
3950
3951         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
3952
3953         * gnus-group.el (gnus-group-completing-read): Add 'substring to
3954         completion-styles for group selection.
3955
3956 2009-02-04  Andreas Schwab  <schwab@suse.de>
3957
3958         * gnus-score.el (gnus-score-string): Fix regex for matching extra
3959         headers and regexp-quote the match if necessary.
3960
3961 2009-03-24  Miles Bader  <miles@gnu.org>
3962
3963         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
3964         the blinking smiley.
3965
3966 2009-03-24  Simon Josefsson  <simon@josefsson.org>
3967
3968         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
3969         blink smiley.
3970
3971 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3972
3973         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
3974         where the dribbel file lives exists.
3975
3976         * message.el (message-send-mail-partially-limit): Change the default to
3977         nil, since most people don't want this.
3978
3979         * mm-url.el (mm-url-decode-entities): Also decode entities like
3980         &#x3212.
3981
3982 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
3983
3984         * gnus-sum.el (gnus-summary-idna-message):
3985         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
3986         Hyperlink urls in docstrings with URL `...'.
3987
3988 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
3989
3990         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
3991         functions.
3992
3993 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3994
3995         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
3996         say what the mouseover text should be.
3997
3998         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
3999         version of the mm-w3m-safe-url-regexp variable to only download images
4000         in the groups where we want that to happen.
4001
4002         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
4003
4004         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
4005         easier debugging.
4006         (gnus-article-beginning-of-window): Add kludge to allow spacing past
4007         big pictures in the article buffer.
4008
4009         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
4010         gnus-article-html.
4011         (mm-text-html-renderer): gnus-article-html needs curl in addition to
4012         w3m.
4013
4014         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
4015
4016 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4017
4018         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
4019         which doesn't exist.
4020
4021         * message.el (message-inhibit-ecomplete): New variable to allow some
4022         function to inhibit ecomplete address storage.
4023         (message-resend): Disable ecomplete message storage when resending
4024         messages.
4025
4026         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
4027
4028 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4029
4030         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
4031         Save excursion while copying, moving, and deleting articles in order to
4032         prevent the cursor from jumping to unforeseen place.
4033
4034 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4035
4036         * lpath.el: No need to bind bookmark-current-buffer,
4037         bookmark-yank-point and bookmark-make-record-function.
4038
4039 2010-08-17  Glenn Morris  <rgm@gnu.org>
4040
4041         * gnus-sync.el: Require gnus components whose functions are used.
4042
4043         * gnus-art.el (bookmark-make-record-function):
4044         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
4045         Declare for compiler.
4046
4047         * mm-url.el (mml-compute-boundary): Autoload.
4048
4049 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4050
4051         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
4052
4053 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
4054
4055         Typo fix "hoo4a" -> "hook".
4056
4057         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
4058
4059 2010-08-14  Glenn Morris  <rgm@gnu.org>
4060
4061         * gnus-sync.el (gnus-sync): Fix defgroup version.
4062
4063 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
4064
4065         Doc fixes and keep unknown groups (ammended for nunion bug fix).
4066
4067         * gnus-sync.el: Fix docs.
4068         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
4069         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
4070
4071 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
4072
4073         Optimizations for gnus-sync.el.
4074
4075         * gnus-sync.el: Add docs about gnus-sync-backend
4076         possibilities.
4077         (gnus-sync-save): Remove unnecessary message.
4078         (gnus-sync-read): Optimize and show what groups were skipped.
4079
4080 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
4081
4082         Minor bug fixes for gnus-sync.el.
4083
4084         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
4085         Don't read the sync on get-new-news.
4086
4087         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
4088         quiet.
4089
4090         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
4091         (fix typo).
4092
4093 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
4094
4095         Make saving and restoring of hidden threads work with overlays.
4096         Patch applied by Ted Zlatanov.
4097
4098         * gnus-sum.el (gnus-hidden-threads-configuration)
4099         (gnus-restore-hidden-threads-configuration): Update to deal with text
4100         properties, rather than searching for a magic character.
4101
4102 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
4103
4104         New gnus-sync.el library for synchronization of marks.
4105
4106         * gnus-sync.el: New library for synchronization of marks.
4107
4108         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
4109         renamed from `gnus-registry-grep-in-list'.
4110
4111         * gnus-registry.el (gnus-registry-follow-group-p):
4112         Use `gnus-grep-in-list'.
4113
4114         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
4115
4116 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4117
4118         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
4119         determining charset of text fails.
4120
4121 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4122
4123         * nnmail.el (nnmail-get-new-mail-1): Revert.
4124
4125         * nnml.el (nnml-active-number): Make sure names of newly created groups
4126         in nnml-group-alist are encoded.
4127
4128 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4129
4130         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
4131         containing non-ASCII characters in active file for nnml back end.
4132
4133 2010-07-24  David Engster  <dengste@eml.cc>
4134
4135         * mml-smime.el (mml-smime-epg-verify): Also accept the older
4136         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
4137
4138 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
4139
4140         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
4141         tag (Bug#6654).
4142
4143 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4144
4145         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
4146         the article buffer, not the summary buffer.
4147
4148 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4149
4150         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
4151         Emacs 23 as well.
4152
4153 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4154
4155         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
4156         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
4157
4158 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4159
4160         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
4161         Patch applied by Karl Fogel.
4162
4163         * gnus-sum.el (gnus-summary-bookmark-make-record):
4164         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
4165
4166 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4167
4168         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
4169         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
4170         C-w still not working correctly from Article buffers; Thierry's
4171         patch to fix that will be applied after this.
4172
4173         * gnus-art.el (bookmark-make-record-function): New local variable.
4174
4175         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
4176         article buffer.
4177         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
4178
4179 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
4180
4181         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
4182         on changes in bookmark.el.
4183
4184 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4185
4186         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
4187         `no-log' instead of message not to log prompt string.
4188
4189 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
4190
4191         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
4192         the *other* type of HTML form submission.
4193
4194 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
4195
4196         * auth-source.el (auth-source-pick): If choice does not contain a
4197         questioned keyword, set the check to t.
4198
4199 2010-06-12  Romain Francoise  <romain@orebokech.com>
4200
4201         * gnus-util.el (gnus-date-get-time): Move up before first use.
4202
4203 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4204
4205         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
4206         (gnus-article-edit-part): Bind it to make last part that is substituted
4207         or deleted visible.
4208         (gnus-mime-display-single): Buttonize part of which id equals to
4209         gnus-mime-buttonized-part-id.
4210
4211 2010-06-10  Dan Christensen  <jdc@uwo.ca>
4212
4213         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
4214         (gnus-dd-mmm): Use gnus-date-get-time.
4215         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
4216         simplify logic.
4217         (gnus-summary-limit-to-age): Use gnus-date-get-time.
4218         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
4219
4220 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
4221
4222         * auth-source.el (top): Autoload `secrets-list-collections',
4223         `secrets-create-item', `secrets-delete-item'.
4224         (auth-sources): Fix tag string.
4225         (auth-get-source, auth-source-retrieve, auth-source-create)
4226         (auth-source-delete): New defuns.
4227         (auth-source-pick): Rewrite in order to avoid 2 passes.
4228         (auth-source-forget-user-or-password): New parameter USERNAME.
4229         (auth-source-user-or-password): New parameters CREATE-MISSING and
4230         DELETE-EXISTING.  Retrieve password interactively, if needed.
4231
4232 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
4233
4234         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
4235         deleting unused directories when gnus-expert-user is t.
4236
4237 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4238
4239         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
4240         for each temp file when gnus-article-browse-delete-temp is ask.
4241
4242 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4243
4244         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
4245         Lisp calls to delete-backward-char by calls to delete-char.
4246
4247 2010-05-20  Kevin Ryde  <user42@zip.com.au>
4248
4249         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
4250
4251 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
4252
4253         * password-cache.el (password-cache-remove): Fix docstring.
4254
4255 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4256
4257         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
4258         article unless decoding article to be saved.
4259
4260 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4261
4262         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
4263         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
4264         generated within the mm-with-unibyte-current-buffer macro.
4265
4266 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4267
4268         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
4269         to nil when we're in a mml-preview buffer and no group is selected.
4270
4271 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
4272
4273         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
4274         when catching the `C-g'.  Reported by "Leo".
4275
4276 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4277
4278         * message.el (message-forward-make-body-plain)
4279         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
4280         multibyte-string-p.
4281
4282         * lpath.el: Revert.
4283
4284 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4285
4286         * message.el (message-forward-make-body-mml): Assume original message
4287         is multibyte string; error on unibyte.
4288         (message-forward-make-body-plain): Ditto; don't add excessive newline
4289         in body end.
4290
4291         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
4292
4293 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
4294
4295         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
4296         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
4297
4298 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4299
4300         * mm-extern.el (mm-extern-url): Don't use
4301         mm-with-unibyte-current-buffer.
4302         (mm-extern-cache-contents): Use with-current-buffer instead of
4303         save-excursion + set-buffer.
4304
4305 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4306
4307         * mm-util.el (mm-emacs-mule): Remove.
4308
4309 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
4310
4311         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
4312         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
4313         change.
4314
4315 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4316
4317         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
4318         bind the default value of enable-multibyte-characters to nil.
4319
4320 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4321
4322         * message.el (message-forward-make-body-plain)
4323         (message-forward-make-body-mml):
4324         Don't use mm-with-unibyte-current-buffer.
4325
4326 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4327
4328         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
4329
4330 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
4331
4332         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
4333         (Bug#5592).
4334
4335 2010-05-07  Julien Danjou  <julien@danjou.info>
4336
4337         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
4338         it to mm-pipe-part.
4339
4340         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
4341         it is given.
4342
4343 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4344
4345         * binhex.el (binhex-decode-region-internal)
4346         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
4347         (dns-query)
4348         * nnweb.el (nnweb-gmane-search)
4349         * pgg-parse.el (pgg-parse-armor)
4350         * pgg.el (pgg-verify-region)
4351         * sha1.el (sha1-string-external)
4352         * uudecode.el (uudecode-decode-region-internal)
4353         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
4354         XEmacs.
4355
4356         * gnus-art.el (gnus-article-browse-html-parts)
4357         * gnus-group.el (gnus-read-ephemeral-gmane-group)
4358         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
4359         make-temp-file.
4360
4361         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
4362         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
4363         compiling.
4364
4365         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
4366         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
4367         XEmacs when compiling.
4368
4369         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
4370         gnus-pick-mode-off-hook for XEmacs when compiling.
4371         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
4372         gnus-binary-mode-off-hook for XEmacs when compiling.
4373
4374         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
4375         Return nil if char-charset is not available.
4376
4377         * imap.el (imap-disable-multibyte)
4378         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
4379         macros.
4380
4381         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
4382         instead of encode-coding-string.
4383
4384         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
4385         'xemacs) instead of mm-emacs-mule to switch function definitions.
4386         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
4387
4388         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
4389         bind temporary-file-directory for XEmacs;
4390         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
4391         timer-set-function for XEmacs 21.4 and SXEmacs;
4392         bind timer-list for XEmacs 21.4 and SXEmacs;
4393         fbind char-charset and find-charset-region for non-Mule XEmacs;
4394         fbind decode-coding-region, decode-coding-string, detect-coding-region,
4395         encode-coding-region and encode-coding-string for XEmacs having no
4396         file-coding feature.
4397
4398 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
4399
4400         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
4401
4402 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4403
4404         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
4405         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
4406
4407 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
4408
4409         * mm-util.el (mm-decompress-buffer): Use `delete-file';
4410         alias `jka-compr-delete-temp-file' no longer exists.
4411
4412 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4413
4414         Use define-minor-mode in Gnus where applicable.
4415         * mml.el (mml-mode): Use define-minor-mode.
4416         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
4417         (gnus-undo-mode): Use define-minor-mode.
4418         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
4419         (gnus-dead-summary-mode): Use define-minor-mode.
4420         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
4421         Initialize in declaration.
4422         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
4423         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
4424         (gnus-mailing-list-mode): Use define-minor-mode.
4425         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
4426         (gnus-draft-mode): Use define-minor-mode.
4427         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
4428         (gnus-dired-mode): Use define-minor-mode.
4429
4430 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
4431
4432         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
4433         handles on recursive mml-to-mime translation and check them for
4434         boundary delimiter collisions.  Reported by Greg Troxel.
4435
4436 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4437
4438         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
4439
4440 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4441
4442         * mm-util.el (mm-find-buffer-file-coding-system):
4443         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
4444
4445 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
4446
4447         * message.el (message-generate-headers): Record insertion of optional
4448         headers as well.  Otherwise the check to prevent repeated insertion of
4449         optional headers is a no-op.
4450
4451 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
4452
4453         * smime.el: Don't mention CVS.
4454
4455         * nnrss.el (nnrss-fetch): Don't mention CVS.
4456
4457         * nnir.el: Don't mention CVS.
4458
4459 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4460
4461         * gnus-sum.el (gnus-summary-bookmark-make-record):
4462         Add `location' field.
4463
4464 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4465
4466         * lpath.el: Fbind bookmark-default-handler,
4467         bookmark-get-bookmark-record, bookmark-make-record-default,
4468         bookmark-prop-get for Emacs <23 and XEmacs.
4469
4470 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4471
4472         * gnus-sum.el: Add bookmark declarations to silence the compiler.
4473         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
4474         Use with-current-buffer to silence the byte-compiler.
4475         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
4476         bother to require `gnus'.
4477         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
4478
4479 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4480
4481         * gnus-sum.el (gnus-summary-bookmark-make-record)
4482         (gnus-summary-bookmark-jump): New functions.
4483         (gnus-summary-mode): Setup bookmark support.
4484
4485 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
4486
4487         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
4488         if set.
4489
4490 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4491
4492         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
4493         gnus-article-browse-html-save-cid-image; make it work recursively for
4494         forwarded messages as well.
4495         (gnus-article-browse-html-parts): Work when prefix arg is given.
4496         (gnus-article-browse-html-article): Doc fix.
4497
4498 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
4499
4500         * message.el (message-default-mail-headers):
4501         (message-default-headers): Carry the value mail-default-headers over
4502         into message-default-mail-headers, rather than message-default-headers.
4503
4504 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
4505
4506         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
4507         charset.
4508
4509         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
4510         charset into the <meta> tag when the article is encoded to utf-8.
4511
4512 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4513
4514         * gnus-art.el (gnus-article-browse-delete-temp-files):
4515         Delete directories as well.
4516         (gnus-article-browse-html-parts): Work for images that do not specify
4517         file names; delete temp directory when quitting; insert header at the
4518         right place; use file: scheme for image files.
4519
4520 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
4521
4522         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
4523         (gnus-article-browse-html-parts): Use it to make temporary cid image
4524         files in addition to html file so that browser may display them.
4525
4526 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
4527
4528         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
4529
4530 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4531
4532         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
4533
4534 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
4535
4536         * auth-source.el (auth-sources): Change default to be simpler.
4537         Explain about Secret Service API sources.  Improve Customize options.
4538         (auth-source-pick): Change to accept any number of search parameters.
4539         Implement fallbacks iteratively, not recursively.  Add scoring on the
4540         second pass and sort by score.  Call Secret Service API when needed.
4541         (auth-source-user-or-password): Use it.  Call Secret Service API
4542         directly when needed to get the user name and the password.
4543
4544 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
4545
4546         * message.el (message-interactive): Doc fix.
4547         (message-qmail-inject-args): Reflow.
4548         (message-kill-to-signature): Fix typo in docstring.
4549
4550         * smiley.el (smiley-buffer): Fix typo in docstring.
4551
4552 2010-03-24  Glenn Morris  <rgm@gnu.org>
4553
4554         * mail-source.el (gnus-message): Declare.
4555         (mail-source-delete-old-incoming): Require gnus-util.
4556
4557 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4558
4559         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
4560
4561         * message.el (ecomplete-setup): Autoload it for Emacs <23.
4562
4563         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
4564         password-cache's default if it is not bound.
4565         (mml-secure-passphrase-cache-expiry): Default to 16 that is
4566         password-cache-expiry's default if it is not bound.
4567
4568         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
4569         available in Emacs 21.
4570
4571         * lpath.el: Suppress compiler warnings for:
4572         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
4573         XEmacs;
4574         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
4575         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
4576         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
4577
4578 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
4579
4580         * auth-source.el (auth-sources): Fix up definition so extra parameters
4581         are always inline.
4582
4583 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
4584
4585         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
4586         wasn't updated after mismatch.  Clear cached mailbox info correctly
4587         when uidvalidity changes.
4588         (nnimap-group-prefixed-name): New function to avoid some code
4589         duplication.
4590         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
4591         (nnimap-request-group): Use it.
4592         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
4593         (nnimap-update-unseen): Significantly improved speed of Gnus startup
4594         with many imap folders.  This is done by caching the group status from
4595         the imap server persistently in a group parameter `imap-status'.  (This
4596         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
4597         but not persistently, so every Gnus startup was still very slow.)
4598
4599 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
4600
4601         * assistant.el (assistant-render-text): Run `widget-setup' and don't
4602         delete the extra newline.  Otherwise editing of :string and :number
4603         types don't work.
4604
4605 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4606
4607         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
4608         secrets.el dependency.
4609         (auth-sources): Add optional user name.  Add secrets.el configuration
4610         choice (unused right now).
4611
4612 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4613
4614         * gnus-sum.el (gnus-summary-make-menu-bar):
4615         Let `gnus-registry-install-shortcuts' fill in the functions.
4616
4617         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
4618         warnings.
4619         (gnus-registry-misc-menus): Variable to hold registry mark menus.
4620         (gnus-registry-install-shortcuts): Populate and use it in a
4621         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
4622
4623 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
4624
4625         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
4626         In-place substitutions for the group name encoding/decoding.
4627         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
4628         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
4629         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
4630         (nnimap-update-unseen, nnimap-request-list)
4631         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
4632         (nnimap-request-set-mark, nnimap-split-to-groups)
4633         (nnimap-split-articles, nnimap-request-newgroups)
4634         (nnimap-request-create-group, nnimap-request-accept-article)
4635         (nnimap-request-delete-group, nnimap-request-rename-group)
4636         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
4637         `encoded-mbx' for consistency.
4638         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
4639         variable `imap-current-mailbox'.
4640
4641         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
4642         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
4643
4644 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
4645
4646         * pop3.el (pop3-display-message-size-flag): Display message size byte
4647         counts during POP3 download.
4648         (pop3-movemail): Use it.
4649         (pop3-list): Implement listing of available messages.
4650
4651 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
4652
4653         * nnir.el (nnir-get-article-nov-override-function): New function to
4654         override the normal NOV retrieval.
4655         (nnir-retrieve-headers): Use it.
4656
4657 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
4658
4659         * auth-source.el (netrc-machine-user-or-password): Autoload.
4660
4661 2010-03-19  Glenn Morris  <rgm@gnu.org>
4662
4663         Stop message.el from loading about 40 libraries it doesn't always need.
4664         The general approach is to autoload rather than require, and to
4665         require in the specific functions rather than the file.  (Bug#5642)
4666
4667         * gmm-utils.el: Don't require wid-edit.
4668         (widget-create-child-value, widget-convert, widget-default-get):
4669         Autoload.
4670
4671         * gnus-util.el: Don't require time-date, netrc.
4672         (message-fetch-field, gnus-group-name-decode): Declare rather than
4673         autoloading.
4674         (gnus-fetch-field): Require message.
4675         (gnus-decode-newsgroups): Require gnus-group.
4676
4677         * ietf-drums.el: Don't require time-date.
4678
4679         * message.el: Don't require hashcash, canlock, ecomplete.
4680         Do require mail-utils.  Require nnheader only when compiling.
4681         (smtpmail-default-smtp-server): Remove declaration.
4682         (message-send-mail-function): Check smtpmail-default-smtp-server
4683         is bound rather than requiring smtpmail.
4684         (message-auto-save-directory, message-insert-signature):
4685         Use expand-file-name rather than nnheader-concat.
4686         (nnheader-insert-file-contents): Autoload.
4687         (hashcash-wait-async): Declare.
4688         (message-send-mail): Only call gnus-setup-posting-charset if
4689         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
4690         (message-send-mail-with-sendmail): Require sendmail.
4691         (canlock-password, canlock-password-for-verify): Declare.
4692         (message-canlock-password): Require canlock.
4693         (nnheader-get-report): Autoload.
4694         (gnus-setup-posting-charset): Declare.
4695         (message-send-news): Require gnus-msg.
4696         (message-make-references, message-make-in-reply-to): Use mail-header-id
4697         rather than the alias mail-header-message-id.
4698         (ecomplete-add-item, ecomplete-save): Declare.
4699         (message-put-addresses-in-ecomplete): Require ecomplete.
4700         (ecomplete-display-matches): Autoload.
4701
4702         * mm-decode.el: Don't require mailcap, gnus-util.
4703         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
4704         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
4705         Autoload.
4706         (mailcap-mime-extensions): Declare.
4707
4708         * mm-encode.el: Don't require mailcap.
4709         (mailcap-extension-to-mime): Autoload.
4710
4711         * mml-sec.el: Don't require password-cache.
4712
4713         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
4714         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
4715         (mml-minibuffer-read-type): Require mailcap.
4716         (mml-preview): Require gnus-msg.
4717
4718         * mml1991.el: Require password-cache.
4719         (password-cache-expiry): Remove declaration.
4720
4721         * mml2015.el: Require password-cache.
4722         (password-cache-expiry): Remove declaration.
4723
4724         * nneething.el (mailcap): Require mailcap.
4725
4726         * nnheader.el (declare-function): Add compatibility stub.
4727         (message-remove-header): Declare rather than autoload.
4728         (nnheader-replace-header): Require message.
4729
4730         * nnimap.el (declare-function): Add compatibility stub.
4731         (netrc-parse, netrc-machine-user-or-password): Declare.
4732         (nnimap-open-connection): Require netrc.
4733
4734         * nntp.el (declare-function): Add compatibility stub.
4735         (netrc-parse, netrc-machine, netrc-get): Declare.
4736         (nntp-send-authinfo): Require netrc.
4737
4738         * rfc2047.el: Don't require qp.
4739         (quoted-printable-encode-region, quoted-printable-decode-string):
4740         Autoload.
4741
4742         * sieve-mode.el: Don't require easymenu.
4743         (easy-menu-add-item): Autoload it.
4744
4745         * spam-stat.el (time-to-number-of-days): Autoload it.
4746
4747 2010-03-19  Glenn Morris  <rgm@gnu.org>
4748
4749         * password-cache.el (password-cache, password-cache-expiry): Autoload.
4750
4751 2010-03-18  Glenn Morris  <rgm@gnu.org>
4752
4753         * hashcash.el (declare-function): Remove duplicate definition.
4754
4755 2010-03-17  Kevin Ryde  <user42@zip.com.au>
4756
4757         * mml.el (mml-read-tag): Unquote values with `read' to reverse
4758         prin1 in mml-insert-tag (just stripping the quotes gave wrong
4759         value if any backslash escapes).
4760
4761 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4762
4763         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
4764         if it is available.  (bug#5647)
4765
4766         * lpath.el: Suppress compiler warning for coding-system-from-name for
4767         Emacs 21 and XEmacs.
4768
4769 2010-03-14  Juri Linkov  <juri@jurta.org>
4770
4771         * hmac-def.el:
4772         * hmac-md5.el:
4773         * netrc.el: Fix keywords.
4774
4775 2010-02-26  Glenn Morris  <rgm@gnu.org>
4776
4777         * message.el (message-send-mail-function): Change the default, so that
4778         it inherits from a customized send-mail-function.  (Bug#5643)
4779
4780 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4781
4782         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
4783         shell-command-to-string signals an error (bug#5299).
4784
4785 2010-02-24  Glenn Morris  <rgm@gnu.org>
4786
4787         * message.el (message-smtpmail-send-it)
4788         (message-send-mail-with-mailclient): Doc fixes.
4789
4790 2010-02-16  Glenn Morris  <rgm@gnu.org>
4791
4792         * message.el (message-default-mail-headers): Change the default value
4793         to ease the transition from mail-mode to message-mode.  (Bug#5555)
4794
4795 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4796
4797         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
4798         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
4799
4800 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
4801
4802         * time-date.el (date-to-time): Doc fix (Bug#5408).
4803
4804 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
4805
4806         * message.el (message-mail): Just pass yank-action on to message-setup.
4807         (message-setup): Handle (FUN . ARGS) form of yank-action.
4808         (message-with-reply-buffer, message-widen-reply)
4809         (message-yank-original): Handle non-buffer values of
4810         message-reply-buffer (Bug#4080).
4811         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
4812
4813 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
4814
4815         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
4816         Fix typo in docstring.
4817
4818 2010-01-08  Jason Rumney  <jasonr@gnu.org>
4819
4820         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
4821         response.
4822
4823 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4824
4825         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
4826
4827         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4828
4829         * message.el (message-check-news-header-syntax): Protect against a
4830         string that `rfc822-addresses' returns when parsing fails.
4831
4832 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4833
4834         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
4835         (gnus-previous-char-property-change): New functions.
4836
4837         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
4838
4839 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
4840
4841         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
4842         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
4843
4844 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
4845
4846         * message.el (message-exchange-point-and-mark): Rework last change to
4847         avoid using optional arg of exchange-point-and-mark, for backward
4848         compatibility.
4849
4850 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
4851
4852         * message.el (message-exchange-point-and-mark):
4853         Call exchange-point-and-mark with an argument rather than setting
4854         mark-active by hand (Bug#5175).
4855
4856 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4857
4858         * nntp.el (nntp-service-to-port): Work for service expressed with
4859         numeric string; replace [:digit:] with [0-9] for XEmacs.
4860
4861 2009-12-17  Glenn Morris  <rgm@gnu.org>
4862
4863         * gnus-group.el (gnus-bug-group-download-format-alist):
4864         Change emacs entry to debbugs.gnu.org.  Bump :version.
4865
4866 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
4867
4868         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
4869
4870 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
4871
4872         * message.el (message-info): Explain why we use `Info-goto-node'.
4873
4874 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4875
4876         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
4877
4878 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4879
4880         * message.el (message-completion-in-region): New compatibility function.
4881         (message-expand-group): Use it.
4882
4883 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4884
4885         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
4886         with no unread article should be listed if the 2nd arg `predicate' is
4887         given.
4888
4889 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4890
4891         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
4892
4893 2009-11-29  Juri Linkov  <juri@jurta.org>
4894
4895         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
4896         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
4897         on `gnus-recenter'.  (Bug#4698, Bug#4981)
4898
4899 2009-11-26  Kevin Ryde  <user42@zip.com.au>
4900
4901         * sha1.el (sha1-string-external): default-directory "/" in case
4902         otherwise non-existent.  process-connection-type pipe for touch of
4903         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
4904
4905 2009-11-25  Kevin Ryde  <user42@zip.com.au>
4906
4907         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
4908         it's comms related and sgml-mode.el has "comm" on that basis too.
4909
4910 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4911
4912         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
4913         containing tspecial characters if they have been already quoted.
4914
4915 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4916
4917         * dns-mode.el (auto-mode-alist): Purecopy string.
4918
4919 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4920
4921         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
4922
4923 2009-10-24  Glenn Morris  <rgm@gnu.org>
4924
4925         * gnus-art.el (help-xref-stack-item): Define for compiler.
4926
4927 2009-10-21  Kevin Ryde  <user42@zip.com.au>
4928
4929         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
4930
4931 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4932
4933         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
4934
4935 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4936
4937         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
4938         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
4939
4940 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4941
4942         * gnus.el (gnus-overlay-get): New alias to overlay-get.
4943         (gnus-overlays-in): New alias to overlays-in.
4944
4945         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
4946         gnus-overlay-get, and gnus-delete-overlay.
4947         (gnus-summary-show-thread): Make it work as well for systems in which
4948         next-single-char-property-change is not available.
4949         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
4950
4951         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
4952         (gnus-overlay-get): New alias to extent-property.
4953         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
4954
4955         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
4956         SXEmacs.
4957
4958         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
4959         SXEmacs.
4960
4961 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
4962
4963         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
4964
4965 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
4966
4967         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
4968         and XEmacs that don't have `remove-overlays'.
4969
4970 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4971
4972         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
4973         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
4974         selective display.  Use overlays instead.
4975
4976 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
4977
4978         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
4979
4980 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
4981
4982         * spam-stat.el (spam-stat-load): Fix typo in message.
4983
4984 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
4985
4986         * dig.el (dig-invoke): Fix typo in docstring.
4987         (query-dig): Reflow docstring.
4988
4989 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
4990
4991         * gnus-art.el (gnus-article-encrypt-body):
4992         * message.el (message-check-recipients):
4993         * mm-util.el (mm-codepage-setup):
4994         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
4995         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
4996
4997 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
4998
4999         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
5000         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
5001         keys from the menu if mm-{sign,encrypt}-option is 'guided.
5002         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
5003         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
5004
5005 2009-09-21  Kevin Ryde  <user42@zip.com.au>
5006
5007         * dig.el: Add "Keywords: comm", as per net-utils.el.
5008
5009 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5010
5011         * dig.el (dig-mode): Use define-derived-mode.
5012
5013 2009-09-19  Glenn Morris  <rgm@gnu.org>
5014
5015         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
5016
5017 2009-09-18  Glenn Morris  <rgm@gnu.org>
5018
5019         * gnus-diary.el (gnus-diary-check-message):
5020         * message.el (message-insert-formatted-citation-line):
5021         * nnbabyl.el (top-level):
5022         * nndiary.el (nndiary-schedule):
5023         Fix typos in condition-case handlers.
5024
5025 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5026
5027         * gnus-art.el (gnus-article-edit-part): Work for the buffer
5028         configuration that provides the sole article window in a frame;
5029         position point correctly after deleting a part.
5030
5031 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
5032
5033         * spam.el (spam-unregister-on-reregister): Add boolean variable.
5034         (spam-resolve-registrations-routine): Use it to unregister articles
5035         that change status.
5036
5037 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5038
5039         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
5040         with XEmacs.
5041         (parse-time-string-chars): Use it.
5042
5043 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
5044
5045         * imap.el (imap-interactive-login): Better messages.
5046         (imap-open): Fix bug with renamed buffer on reconnect.
5047         (imap-authenticate): Add buffer-local imap-last-authenticator variable
5048         for easier debugging and cleaner code.  On successful (guessed based on
5049         server capabilities) secondary authentication, set imap-state
5050         correctly.
5051         (imap-last-authenticator): Define imap-last-authenticator as a variable
5052         to avoid warnings.
5053
5054 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5055
5056         * nnrss.el (nnrss-request-article): Remove binding of
5057         default-enable-multibyte-characters that has gotten needless by
5058         the 2007-07-13 change in rfc2047-encode-message-header.
5059
5060         * mml.el (mml-insert-multipart): Error on the message header.
5061         (mml-insert-part): Error on the message header; position point at
5062         the end of a MIME tag.
5063
5064 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5065
5066         * time-date.el (autoload): Expand define-obsolete-function-alias into
5067         defalias and make-obsolete for old Emacsen that Gnus supports.
5068         (with-no-warnings): Define it for old Emacsen.
5069         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
5070         is available.
5071         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
5072         float-time is available; suppress compile warning for time-to-seconds.
5073
5074         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
5075         (gnus-float-time): Alias to float-time if it exists.
5076
5077         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
5078         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
5079         float-time is available; suppress compile warning for time-to-seconds.
5080
5081         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
5082         XEmacs.
5083
5084 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
5085
5086         * imap.el (imap-message-map): Docstring fix.
5087
5088 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5089
5090         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
5091         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
5092         Add the optional argument `encoding' that overrides the default.
5093
5094         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
5095         mm-encode-buffer.
5096
5097 2009-09-04  Glenn Morris  <rgm@gnu.org>
5098
5099         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
5100         mm-disable-multibyte, rather than default-enable-multibyte-characters.
5101         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
5102         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
5103         * mm-util.el (mm-with-unibyte-current-buffer)
5104         (mm-find-buffer-file-coding-system):
5105         * yenc.el (yenc-decode-region): Use default-value rather than
5106         default-enable-multibyte-characters.
5107
5108 2009-09-03  Glenn Morris  <rgm@gnu.org>
5109
5110         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
5111         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
5112         than default-enable-multibyte-characters.
5113
5114 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
5115
5116         * gnus-art.el (gnus-article-read-summary-keys):
5117         Fix gnus-buffer-configuration's value temporarily used.
5118
5119 2009-09-02  Glenn Morris  <rgm@gnu.org>
5120
5121         * gnus-util.el (gnus-float-time): New function.
5122         * gnus-delay.el (gnus-delay-article):
5123         * gnus-sum.el (gnus-thread-latest-date):
5124         * gnus-util.el (gnus-user-date): Use gnus-float-time.
5125         * nnspool.el (nnspool-request-newgroups):
5126         Use gnus-float-time rather than time-to-seconds.
5127         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
5128
5129         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
5130         (gnus-header-subject-face, gnus-header-newsgroups-face)
5131         (gnus-header-name-face, gnus-header-content-face):
5132         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
5133         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
5134         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
5135         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
5136         (gnus-cite-face-11):
5137         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
5138         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5139         (gnus-server-closed-face, gnus-server-denied-face)
5140         (gnus-server-offline-face):
5141         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
5142         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
5143         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
5144         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
5145         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
5146         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
5147         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
5148         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
5149         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
5150         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
5151         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
5152         (gnus-summary-selected-face, gnus-summary-cancelled-face)
5153         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
5154         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
5155         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
5156         (gnus-summary-high-undownloaded-face)
5157         (gnus-summary-low-undownloaded-face)
5158         (gnus-summary-normal-undownloaded-face)
5159         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
5160         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
5161         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
5162         (gnus-splash-face):
5163         * message.el (message-header-to-face, message-header-cc-face)
5164         (message-header-subject-face, message-header-newsgroups-face)
5165         (message-header-other-face, message-header-name-face)
5166         (message-header-xheader-face, message-separator-face)
5167         (message-cited-text-face, message-mml-face):
5168         * sieve-mode.el (sieve-control-commands-face)
5169         (sieve-action-commands-face, sieve-test-commands-face)
5170         (sieve-tagged-arguments-face):
5171         * spam.el (spam-face):
5172         Mark face aliases with "-face" in the name as obsolete.
5173
5174 2009-09-01  Glenn Morris  <rgm@gnu.org>
5175
5176         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
5177         than goto-line.
5178
5179 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5180
5181         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
5182         Don't move point if the command is invoked inside the message header.
5183
5184 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5185
5186         * imap.el (imap-send-command): Simplify.
5187         (imap-wait-for-tag): point-max -> buffer-size.
5188
5189 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5190
5191         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
5192         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
5193         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
5194         * nnir.el (nnir-swish-e-index-file):
5195         * gnus-sum.el (gnus-summary-delete-marked-as-read)
5196         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
5197         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
5198         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
5199         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
5200         (gnus-treat-display-xface): Add Emacs version of obsolescence.
5201
5202 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5203
5204         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
5205         Don't save excursion.
5206
5207 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5208
5209         * nnheader.el (nnheader-find-file-noselect):
5210         * mm-util.el (mm-insert-file-contents):
5211         Use (default-value 'major-mode) instead of default-major-mode.
5212
5213 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5214
5215         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
5216
5217 2009-08-26  Glenn Morris  <rgm@gnu.org>
5218
5219         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
5220         than placing in files.el.
5221
5222 2009-08-25  Glenn Morris  <rgm@gnu.org>
5223
5224         * nnir.el (top-level): Don't require cl at run-time.
5225         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
5226         Replace cl-function substitute with gnus-replace-in-string.
5227         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
5228         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
5229         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
5230         simplified expansions.
5231
5232 2009-08-25  Kevin Ryde  <user42@zip.com.au>
5233
5234         * dig.el (dig): Add autoload cookie.
5235
5236 2009-08-22  Glenn Morris  <rgm@gnu.org>
5237
5238         * gnus-art.el (gnus-button-patch): Use forward-line rather than
5239         goto-line.
5240
5241 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
5242
5243         * parse-time.el (parse-time-string-chars): Save match data.
5244
5245 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
5246
5247         * parse-time.el (parse-time-string-chars): Compute using character
5248         classes, to handle non-ascii characters (Bug#3190).
5249
5250 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5251
5252         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
5253
5254         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
5255         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
5256         (gnus-mm-display-part, gnus-mime-display-single)
5257         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
5258         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
5259
5260         * gnus-sum.el
5261         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
5262         (gnus-summary-move-article): Add expirable mark to articles copied or
5263         moved to group that has auto-expire turned on if the option is non-nil.
5264
5265 2009-07-24  Glenn Morris  <rgm@gnu.org>
5266
5267         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
5268         Fix typo.  (Bug#3903)
5269
5270 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5271
5272         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
5273         gnus-article-read-summary-keys rather than gnus-summary-edit-article
5274         that should not be used for draft articles.
5275         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
5276         that has no concern in minor mode keys.
5277         (gnus-article-summary-command, gnus-article-summary-command-nosave):
5278         Abolish.
5279
5280 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5281
5282         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
5283         article without making inquiry to a user for unknown encoding.
5284
5285         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
5286         (nnmaildir--scan): Assume i-node and device number that file-attributes
5287         returns might be cons-cell.
5288
5289         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
5290
5291         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
5292
5293 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
5294
5295         * auth-source.el: Remove docs now in auth.texi.  Don't use
5296         `gnus-message' for logging.  Add new variables `auth-source-debug' and
5297         `auth-source-hide-passwords' and use them.
5298
5299 2009-07-15  Glenn Morris  <rgm@gnu.org>
5300
5301         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
5302
5303 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5304
5305         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
5306         excessive whitespace from the default values of title and description.
5307
5308 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5309
5310         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
5311         mail-fetch-field to fetch Content-Description header in order to
5312         exclude newlines.
5313
5314 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
5315
5316         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
5317         format used by GnuPG 2.0.11.
5318
5319 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5320
5321         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
5322         to deleted part.
5323
5324 2009-05-30  David Engster  <dengste@eml.cc>
5325
5326         * nnmairix.el: Remove old documentation in the commentary block.
5327         (nnmairix-request-group): Do not update active file for nnml back ends.
5328         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
5329         end so that overview files are ignored.
5330         (nnmairix-update-groups): Make updating the groups more robust by using
5331         marks.
5332         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
5333         with dollar characters in message-id.
5334
5335 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
5336
5337         * spam.el: Use dns-query instead of query-dns.  Was renamed on
5338         2008-12-25 in dns.el.
5339
5340 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5341
5342         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
5343         could happen if the text is only composed of spaces and/or tabs.
5344
5345 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
5346
5347         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
5348         when sending a queued message to avoid extra mml tags.
5349
5350 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5351
5352         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
5353
5354 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5355
5356         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
5357         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
5358         rmail-toggle-header for XEmacs;
5359         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
5360
5361 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5362
5363         * gnus-dired.el: Remove autoload for gnus-setup-message.
5364         (gnus-dired-attach): Fake this-command value to prevent Gnus from
5365         displaying Gnus logo; always use compose-mail.
5366
5367 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5368
5369         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
5370
5371 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5372
5373         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
5374         (gnus-nocem-issuers): List currently active issuers; fix custom type.
5375         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
5376         available.
5377         (gnus-nocem-epg-verify): New function.
5378
5379 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
5380
5381         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
5382
5383 2009-02-15  Glenn Morris  <rgm@gnu.org>
5384
5385         * gnus-util.el (rmail-insert-rmail-file-header)
5386         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
5387         autoloads.
5388         (rmail-default-rmail-file): Remove unnecessary declaration.
5389         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
5390
5391 2009-02-14  Glenn Morris  <rgm@gnu.org>
5392
5393         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
5394         variable (only used in gnus-util, which declares it anyway).
5395         (rmail-output-to-rmail-file): Remove autoload of deleted function,
5396         which was only needed by gnus-art (changed to not use it any more).
5397         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
5398         only used in gnus-util, which autoloads it itself.
5399         (rmail-update-summary): Fix autoload.
5400
5401         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
5402         rather than rmail-output-to-rmail-file.
5403
5404 2009-02-07  Glenn Morris  <rgm@gnu.org>
5405
5406         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
5407         autoload of function that no longer exists.
5408         (rmail-toggle-header): Declare.
5409         (message-forward-rmail-make-body): Handle mbox Rmail.
5410
5411 2009-01-31  Glenn Morris  <rgm@gnu.org>
5412
5413         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
5414         2009-01-09 change.
5415
5416 2009-01-31  Dave Love  <fx@gnu.org>
5417
5418         * imap.el (imap-fetch-safe): Bind debug-on-error.
5419         (imap-debug): Add imap-fetch-safe.
5420
5421 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
5422
5423         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
5424         (auth-source-forget-all-cached): New convenience function.
5425         (auth-source-user-or-password): Accept list of modes or a single mode.
5426
5427         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
5428         auth-source modes.
5429
5430         * netrc.el (netrc-machine-user-or-password): Use list of
5431         auth-source modes.
5432
5433         * nnimap.el (nnimap-open-connection): Use list of
5434         auth-source modes.
5435
5436         * nntp.el (nntp-send-authinfo): Use list of
5437         auth-source modes.
5438
5439 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
5440
5441         * auth-source.el: Update docs to reflect epa-file-enable is to be used
5442         now.
5443
5444 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5445
5446         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
5447         coding system in XEmacs; add a workaround for XEmacs.
5448
5449         * lpath.el: Fbind coding-system-aliasee.
5450
5451 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5452
5453         * mm-util.el (mm-coding-system-priorities): Protect against nil value
5454         of current-language-environment.
5455
5456 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
5457
5458         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
5459         available at runtime.
5460
5461 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5462
5463         * gnus-art.el (article-date-ut): Fix end point of narrowing.
5464
5465 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
5466
5467         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
5468         the greatest positive fixnum value doesn't work under an XEmacs with
5469         bignum support; use the most-positive-fixnum constant instead,
5470         available since Emacs 21.1 with cl and XEmacs 21.1.
5471
5472 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5473
5474         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
5475         XEmacs gets not to work.
5476
5477 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5478
5479         * mm-util.el (mm-coding-system-priorities): Allow the value like
5480         "Japanese (UTF-8)" of current-language-environment.
5481
5482 2009-01-09  Glenn Morris  <rgm@gnu.org>
5483
5484         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
5485         with last-command-event.
5486
5487 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
5488
5489         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
5490         in the doc string.
5491
5492         * message.el (message-fix-before-sending): Amend comment.
5493
5494 2009-01-08  Dave Love  <fx@gnu.org>
5495
5496         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
5497
5498 2009-01-07  David Engster  <dengste@eml.cc>
5499
5500         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
5501         simplified server definitions by converting it via
5502         gnus-server-to-method.
5503
5504 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5505
5506         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
5507         parameter's operands.
5508
5509 2009-01-06  David Engster  <dengste@eml.cc>
5510
5511         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
5512         primary select method (for gnus-group-mark-article-as-read).
5513
5514 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
5515
5516         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
5517         `(gnus)Face', not `(gnus)X-Face'.
5518
5519 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5520
5521         * mm-util.el (mm-ucs-to-char): New function.
5522
5523         * mm-url.el (mm-url-decode-entities): Use it.
5524
5525         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
5526         unicode-to-char.
5527
5528 2009-01-05  Dave Love  <fx@gnu.org>
5529
5530         * time-date.el: Require cl for `declare'.
5531
5532 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
5533
5534         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
5535         Dave Love.
5536
5537 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
5538
5539         * message.el (message-fix-before-sending): Add `eight-bit' to
5540         illegible-text check.
5541
5542 2009-01-03  Michael Olson  <mwolson@gnu.org>
5543
5544         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
5545         `headers' is nil.  This can occur if the IMAP server does not have
5546         permissions to read messages from a folder, but can write new messages
5547         to the folder.
5548         (nnimap-request-article-part): Do not insert `data' if it is nil.
5549
5550         * imap.el (imap-parse-fetch): Courier can insert spurious blank
5551         characters which will confuse `read', so skip past them.
5552
5553 2009-01-01  Dave Love  <fx@gnu.org>
5554
5555         * imap.el (imap-string-to-integer): Fix typo.
5556         (imap-fetch-safe): New function.
5557         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
5558
5559         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
5560
5561         * imap.el (imap-process-connection-type, imap-debug, imap-open):
5562         (imap-parse-greeting): Fix doc strings.
5563         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
5564         (imap-parse-flag-list): Make messages unique.
5565         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
5566
5567         * nnimap.el: Fix author email.
5568         (nnimap-split-rule): Add FIXME comment.
5569         (nnimap-debug): Fix doc string.
5570
5571 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
5572
5573         * dns.el (dns-set-servers): Check "Address".  Fix typo.
5574
5575 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
5576
5577         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
5578         nslookup if resolv.conf isn't available.
5579         (dns-query): Rename from query-dns.
5580         (dns-query-cached): Rename from query-dns-cached.
5581
5582 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5583
5584         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
5585         overlay-arrow-position and overlay-arrow-string buffer-local; no need
5586         to check if those variables exist (first appeared in Emacs 18.50).
5587
5588 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5589
5590         * mm-util.el (mm-line-number-at-pos): New function.
5591
5592         * spam-report.el (spam-report-process-queue): Use it.
5593
5594 2008-12-24  David Engster  <dengste@eml.cc>
5595
5596         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
5597         parameters that haven't existed as variables as buffer-local variables.
5598
5599 2008-12-23  Dave Love  <fx@gnu.org>
5600
5601         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
5602         cadar.
5603
5604         * sieve-manage.el (sieve-manage-starttls-p): Rename from
5605         imap-starttls-p.
5606         (sieve-manage-starttls-open): Rename from imap-starttls-open.
5607
5608 2008-12-22  Dave Love  <fx@gnu.org>
5609
5610         * imap.el: Fix author email.  Doc fixes.
5611         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
5612         reply.
5613
5614 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
5615
5616         * spam-report.el (spam-report-gmane-max-requests): New constant.
5617         (spam-report-gmane-wait): New variable.
5618         (spam-report-gmane-ham, spam-report-gmane-spam)
5619         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
5620         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
5621         the server.
5622
5623         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
5624         Add explanations.
5625
5626         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
5627         nnheader-accept-process-output and nnheader-read-timeout if available.
5628         (pop3-movemail): Use it.
5629
5630         * message.el (message-check-news-body-syntax): Fix signature check if
5631         there's an attachment.
5632
5633 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
5634
5635         * mm-util.el: Add comments to the mm- emulating functions.
5636
5637 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
5638
5639         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
5640         Reported by Stephen Berman <stephen.berman@gmx.net>.
5641
5642 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5643
5644         * mm-util.el (mm-substring-no-properties): New function.
5645         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
5646         (mm-special-display-p): Enable those lambda forms to be byte compiled.
5647         (mm-string-to-multibyte): Doc fix.
5648
5649         * mml.el (mml-attach-file): Use mm-substring-no-properties.
5650
5651 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
5652
5653         * mml.el (mml-attach-file): Strip text properties from file name.
5654         (Bug#1574)
5655
5656 2008-12-16  Glenn Morris  <rgm@gnu.org>
5657
5658         * mm-util.el (mm-charset-override-alist): Declare for compiler.
5659
5660 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5661
5662         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
5663         knows since the charset specified might be a bogus alias that
5664         mm-charset-synonym-alist provides.
5665
5666 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
5667
5668         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
5669         "ISO_8859-1".
5670
5671         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
5672
5673 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5674
5675         * mm-util.el (mm-charset-eval-alist):
5676         Define it before mm-charset-to-coding-system.
5677         (mm-charset-to-coding-system): Add optional argument `silent';
5678         define it before mm-charset-override-alist.
5679         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
5680         default value if it can be used in Emacs currently running;
5681         silence mm-charset-to-coding-system.
5682
5683 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5684
5685         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
5686         `allow-override' which says whether to use `mm-charset-override-alist'.
5687         (rfc2047-decode-encoded-words): Use it.
5688
5689         * mm-util.el (mm-charset-override-alist): Fix custom type;
5690         add `(gb2312 . gbk)' to choices.
5691
5692 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5693
5694         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
5695         fast.
5696
5697         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
5698
5699         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
5700
5701 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
5702
5703         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
5704         on links.
5705
5706         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
5707
5708 2008-12-03  Lute Kamstra  <lute@gnu.org>
5709
5710         * sha1.el: Remove leading * from docstrings of defcustoms,
5711         deffaces, defconsts and defuns.
5712
5713 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5714
5715         * message.el (message-idna-to-ascii-rhs-1): Protect against local
5716         users' addresses that don't have domain parts.
5717         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
5718         rather than message-narrow-to-head since there will be the message
5719         header separator.
5720
5721 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5722
5723         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
5724         since the result is inserted in a unibyte buffer anyway.
5725         (nnimap-demule-use-string-to-multibyte): Remove.
5726         (nnimap-demule): Alias it to mm-string-to-multibyte.
5727
5728 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
5729
5730         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
5731         variable for debugging bug#464 and bug#1174.
5732         (nnimap-demule): Use it.
5733
5734 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
5735
5736         * gnus-score.el (gnus-score-find-trace): Handle default score in total
5737         score calculation correctly.
5738
5739 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5740
5741         * message.el (message-send-mail): Just set the buffer to unibyte
5742         rather than use mm-with-unibyte-current-buffer which does a lot more.
5743         (message-send-mail-partially): Don't bother with
5744         mm-with-unibyte-current-buffer since it's already been made unibyte by
5745         message-send-mail.
5746
5747 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
5748
5749         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
5750
5751 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
5752
5753         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
5754
5755 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5756
5757         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
5758         require itself and to remove `with-no-warnings'.
5759
5760 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
5761
5762         * starttls.el (starttls-any-program-available): Get the name of the
5763         available TLS layer program.
5764         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
5765         well as the host name in the "opening" message.
5766
5767         * auth-source.el (auth-source-cache, auth-source-do-cache)
5768         (auth-source-user-or-password): Cache passwords and logins by default,
5769         allow override with `auth-source-do-cache'.
5770         (auth-source-forget-user-or-password): Allow users to remove cache
5771         entries if needed.
5772
5773 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
5774
5775         * md4.el (md4-buffer): Fix typo in docstring.
5776         (md4, md4-64): Doc fixes.
5777         (md4-pack-int32): Reflow docstring.
5778
5779 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5780
5781         * ietf-drums.el (ietf-drums-remove-comments): Localize second
5782         condition-case to only the forward-sexp call.
5783
5784 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5785
5786         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
5787         quotes contained.  Make it more robust regardless by an extra
5788         condition-case wrapper.
5789
5790 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5791
5792         * lpath.el: No need to fbind codepage-setup for Emacs 23.
5793
5794 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5795
5796         * nnml.el (nnml-request-expire-articles): Check if the function set to
5797         `nnmail-expiry-target' returns the symbol `delete'.
5798
5799         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
5800
5801         * nnmail.el (nnmail-expiry-target): Fix custom type.
5802
5803 2008-10-02  Glenn Morris  <rgm@gnu.org>
5804
5805         * mm-util.el (mm-codepage-setup): Tweak codepage error.
5806         Silence compiler warning.
5807
5808 2008-10-01  Magnus Henoch  <mange@freemail.hu>
5809
5810         * tls.el (open-tls-stream): Show the actual command being
5811         executed, instead of the format string.
5812
5813 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5814
5815         * lpath.el: Fbind codepage-setup for Emacs 23.
5816
5817 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
5818
5819         * mml.el (mml-menu): Don't assume mml2015 is bound.
5820
5821 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5822
5823         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
5824         exists.
5825
5826 2008-09-27  Glenn Morris  <rgm@gnu.org>
5827
5828         * gnus-util.el (mail-header-remove-comments): Autoload it.
5829
5830 2008-09-27  Andreas Schwab  <schwab@suse.de>
5831
5832         * gnus-util.el (gnus-split-references): Strip comments.
5833         (gnus-parent-id): Likewise.
5834
5835 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
5836
5837         * message.el (message-confirm-send): Fix version.
5838
5839 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5840
5841         * message.el (message-idna-to-ascii-rhs-1): Use
5842         mail-extract-address-components rather than mail-header-parse-addresses
5843         that is an alias by default to ietf-drums-parse-addresses that does not
5844         support non-ASCII names in headers' contents.
5845
5846 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5847
5848         * message.el (message-confirm-send): Fix variable documentation to
5849         avoid the "y/n" wording.
5850
5851 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
5852
5853         * message.el (message-set-auto-save-file-name): Save to a different
5854         filename so multiple messages (especially drafts) can be recovered.
5855
5856 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
5857
5858         * message.el (message-confirm-send): Add appropriate version.
5859
5860 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
5861
5862         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
5863         defvar.
5864
5865 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
5866
5867         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
5868         (mm-pkcs7-enveloped-magic): Ditto.
5869
5870 2008-09-17  Simon Josefsson  <simon@josefsson.org>
5871
5872         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
5873         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
5874
5875 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
5876
5877         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
5878         default, it's better.
5879
5880 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
5881
5882         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
5883         summary line gnus-number property and ignore them (with a warning
5884         message).
5885
5886 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5887
5888         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
5889         macro caddr in the interactive form since it won't be expanded.
5890
5891 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5892
5893         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
5894         `charset'; fix name of function called recursively.
5895         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
5896
5897 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5898
5899         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
5900         (gnus-mime-set-charset-parameters): New function.
5901         (gnus-mime-view-part-as-charset): Use it to correctly display part
5902         specifying wrong charset.
5903
5904 2008-09-08  David Engster  <dengste@eml.cc>
5905
5906         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
5907         in completing-read for back end server.
5908
5909 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
5910
5911         * message.el (message-confirm-send): New variable to confirm sending a
5912         message.
5913         (message-send): Use it.
5914
5915 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
5916
5917         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
5918
5919 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5920
5921         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
5922
5923 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
5924
5925         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
5926         prevent tracking too many groups.
5927         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
5928         Use it.
5929
5930 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
5931
5932         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
5933         moving point to the bottom of the window in order to avoid recentering.
5934
5935 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5936
5937         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
5938
5939         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
5940         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
5941         (gnus-article-beginning-of-window): Fix calculation.
5942
5943 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5944
5945         * gnus-msg.el (gnus-summary-supersede-article)
5946         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
5947         value of gnus-newsgroup-charset to decode non-MIME encoded text in
5948         message header.
5949
5950 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
5951
5952         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
5953         pending output coming after the status change.
5954
5955 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
5956
5957         * message.el:
5958         * gnus-start.el:
5959         * gnus-registry.el: Remove VMS support.
5960
5961 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5962
5963         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
5964         macro.
5965         (rfc2104-hash): Use it.
5966
5967 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
5968
5969         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
5970         (gnus-summary-sort-by-most-recent-date): New commands.
5971         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
5972         and menu entries.
5973
5974 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5975
5976         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
5977         don't redisplay article for raw contents; remove plural articles stuff.
5978
5979         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
5980         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
5981         on gnus-summary-save-article; display results properly.
5982
5983 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5984
5985         * lpath.el: No need to fbind ns-focus-frame.
5986
5987 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5988
5989         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
5990
5991 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5992
5993         * gnus-art.el (gnus-summary-save-in-pipe):
5994         Consider gnus-save-all-headers.
5995
5996 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
5997
5998         * gnus-util.el (ns-focus-frame): Remove declaration.
5999         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
6000         like x.
6001
6002 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
6003
6004         * rfc2104.el (rfc2104-zero): Delete defconst.
6005         (rfc2104-hex-alist): Likewise.
6006         (rfc2104-hex-to-int): Delete func.
6007         (rfc2104-hexstring-to-bitstring): Likewise.
6008         (rfc2104-nybbles): New defconst.
6009         (rfc2104-hash): Rewrite for speed.
6010
6011 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6012
6013         * tls.el (open-tls-stream): Make it work with the 2nd argument
6014         BUFFER that is a string but does not exist as a buffer object, as
6015         mentioned in the doc-string.
6016
6017 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6018
6019         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
6020         SXEmacs.
6021
6022 2008-07-16  Glenn Morris  <rgm@gnu.org>
6023
6024         * gnus-util.el (ns-focus-frame): Declare for compiler.
6025
6026 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6027
6028         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
6029         set as a group parameter.
6030         (gnus-summary-save-in-pipe): Work when it is called independently.
6031         (gnus-summary-pipe-to-muttprint): Don't modify
6032         gnus-summary-pipe-output-default-command.
6033
6034 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6035
6036         * message.el (message-send-mail-with-sendmail):
6037         Display the error message.
6038
6039 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6040
6041         * gnus-art.el (gnus-default-article-saver):
6042         Add gnus-summary-save-in-pipe to choices.
6043         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
6044         gnus-summary-pipe-output-default-command as the default command.
6045         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
6046         instead of gnus-last-shell-command.
6047
6048         * gnus-sum.el (gnus-summary-pipe-output-default-command):
6049         New user option.
6050         (gnus-summary-muttprint-program): Mention the value will be changed.
6051         (gnus-summary-save-article): Force showing of all headers.
6052         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
6053
6054 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
6055
6056         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
6057
6058 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
6059
6060         * nnimap.el (nnimap-id):
6061         * sieve-manage.el (sieve-manage-open): Doc fixes.
6062
6063 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
6064
6065         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
6066         if available.
6067
6068 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6069
6070         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
6071
6072         * nnkiboze.el (nnkiboze-generate-group):
6073         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
6074
6075         * nnmairix.el: Require CL.
6076
6077 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6078
6079         * dgnushack.el: Autoload get-display-table and put-display-table for
6080         XEmacs 21.5.
6081
6082         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
6083         21.4 and SXEmacs.
6084
6085 2008-06-15  David Engster  <dengste@eml.cc>
6086
6087         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
6088
6089 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
6090
6091         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
6092         New macros that expand to an `aset'/`aref' call under Emacs, and to a
6093         runtime choice under XEmacs.
6094
6095         * gnus-sum.el (gnus-summary-set-display-table):
6096         Use `gnus-put-display-table', `gnus-get-display-table',
6097         `gnus-set-display-table' for the display table, instead of `aset'.
6098
6099         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
6100         Use `gnus-put-display-table', `gnus-get-display-table',
6101         `gnus-set-display-table' for the display table.
6102
6103 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
6104
6105         * nnmairix.el: Add autoloads.
6106
6107 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
6108
6109         * nnmairix.el (nnmairix-delete-recreate-group)
6110         (nnmairix-update-and-clear-marks): Fix error messages.
6111
6112 2008-06-14  David Engster  <dengste@eml.cc>
6113
6114         * nnmairix.el: Upgrade to version 0.6.
6115         (nnmairix-group-toggle-propmarks-this-group)
6116         (nnmairix-group-toggle-readmarks-this-group)
6117         (nnmairix-group-delete-recreate-this-group)
6118         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
6119         (nnmairix-remove-tick-mark-original-article): New commands.
6120         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
6121         (nnmairix-propagate-marks-to-nnmairix-groups)
6122         (nnmairix-only-use-registry, nnmairix-allowfast-default)
6123         (nnmairix-marks-cache, nnmairix-version-output): New variables.
6124         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
6125         functions needed for marks propagation and manipulation of read marks.
6126         (nnmairix-update-groups): New function.
6127         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
6128         (nnmairix-determine-original-group-from-registry)
6129         (nnmairix-determine-original-group-from-path)
6130         (nnmairix-get-group-from-file-path, nnmairix-map-range)
6131         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
6132         New helper functions.
6133         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
6134         keystrokes for new commands.
6135         (nnmairix-delete-and-create-on-change): Doc string cleanup.
6136         (nnmairix-request-group): Check allow-fast group parameter.
6137         (nnmairix-request-create-group): Set allow-fast group parameter if
6138         nnmairix-allowfast-default is set.
6139         (nnmairix-close-group): Propagate marks upon closing if needed.
6140         (nnmairix-group-toggle-threads-this-group): Use new.
6141         nnmairix-group-toggle-parameter helper function.
6142         (nnmairix-search): Better check for empty search result.
6143         (nnmairix-goto-original-article): Use new helper functions for
6144         determining original article.
6145         (nnmairix-show-original-article): Make sure message-id is in brackets.
6146         (nnmairix-call-mairix-binary): Change variable name.
6147         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
6148         helper function.
6149         (nnmairix-widget-toggle-activate): Fix doc string.
6150
6151 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6152
6153         * nnir.el: Require edmacro when compiling with XEmacs.
6154         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
6155         available in Emacs 21.
6156
6157 2008-06-11  Glenn Morris  <rgm@gnu.org>
6158
6159         * gnus-util.el (x-focus-frame):
6160         * gnus.el (image-size):
6161         * mm-decode.el (image-size): Declare.
6162
6163         * gnus-picon.el (declare-function): Add compat definition.
6164         (image-size): Declare.
6165
6166         * gnus-group.el (tool-bar-map):
6167         * gnus-sum.el (tool-bar-map): Define for compiler.
6168
6169         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
6170
6171         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
6172
6173         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
6174         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
6175         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
6176         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
6177         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
6178         * sieve-manage.el, spam-report.el, spam.el:
6179         Remove unnecessary eval-and-compile of autoloads.
6180
6181 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
6182
6183         * auth-source.el: Precise Tramp doc.
6184
6185 2008-06-07  Glenn Morris  <rgm@gnu.org>
6186
6187         * nnmairix.el: Remove unnecessary eval-when-compile.
6188
6189 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6190
6191         * lpath.el: Fbind propertize for XEmacs 21.4.
6192
6193 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
6194
6195         * nnir.el: Move here from ../contrib.
6196
6197 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6198
6199         * gnus-util.el (gnus-read-shell-command): New function.
6200         * mm-decode.el (mm-pipe-part):
6201         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
6202
6203 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6204
6205         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
6206
6207 2008-06-03  Glenn Morris  <rgm@gnu.org>
6208
6209         * pop3.el (nnheader-accept-process-output): Autoload it.
6210
6211 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6212
6213         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
6214         are not 2-digit hexadecimal characters that follow `%'s.
6215
6216 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
6217
6218         * message.el (message-bogus-recipient-p): Fix type in doc string.
6219         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
6220         (message-bogus-addresses): Rename from message-bogus-address-regexp.
6221         Improve custom options.
6222         (message-bogus-recipient-p): Adjust accordingly.
6223
6224 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
6225
6226         * parse-time.el (parse-time-months, parse-time-weekdays): Add
6227         long-form month and day names.
6228
6229 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6230
6231         * dgnushack.el: Autoload debug, eudc-expand-inline and
6232         pgg-snarf-keys-region for XEmacs.
6233
6234         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
6235
6236         * nnmairix.el: Require edmacro when compiling with XEmacs.
6237
6238 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
6239
6240         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
6241         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
6242
6243 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
6244
6245         * auth-source.el: Add more docs.
6246
6247         * netrc.el (netrc-machine): Always match if the port is not given.
6248
6249 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6250
6251         * nnheader.el (nnheader-read-timeout): Change the default timeout from
6252         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
6253         retrieval faster in some cases, but might make CPU usage larger.
6254         If this has any bad side effects, we might revert this change.
6255
6256         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
6257         seems to make mail retrieval much, much faster.
6258         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
6259         unconditionally.
6260
6261         * gnus-draft.el (gnus-group-send-queue):
6262         Bind message-send-mail-partially-limit to nil to avoid being prompted.
6263
6264 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
6265
6266         * mml.el (mml-attach-buffer): Prompt for `disposition'.
6267
6268         * message.el (message-bogus-address-regexp): Fix and improve custom
6269         type.
6270         (message-setup-hook): Add message-check-recipients as custom option.
6271
6272 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
6273
6274         * message.el (message-cite-function): Remove bogus autoload which crept
6275         in during merge from v5-10.
6276
6277 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
6278
6279         * nnimap.el (nnimap-open-connection): Fix login/password bug.
6280
6281         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
6282
6283         * auth-source.el: Preliminary Tramp docs.
6284         (auth-sources): Change the default auth-sources to use
6285         EPA .gpg files.
6286
6287 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
6288
6289         * nntp.el: Autoload `auth-source-user-or-password'.
6290         (nntp-send-authinfo): Use it.
6291
6292         * nnimap.el: Autoload `auth-source-user-or-password'.
6293         (nnimap-open-connection): Use it.
6294
6295         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
6296         for the gnus-message function.
6297         (auth-source-user-or-password): Use it.
6298
6299 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6300
6301         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
6302         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
6303         (rfc2104-hash): Use it.
6304
6305 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
6306
6307         * gnus-art.el (gnus-article-toggle-truncate-lines):
6308         Don't use `iff' in docstring.
6309
6310 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
6311
6312         * gnus-registry.el: Adjusted copyright dates and added a keyword.
6313
6314         * gnus-util.el (gnus-extract-address-component-name)
6315         (gnus-extract-address-component-email): Convenience functions around
6316         `gnus-extract-address-components'.
6317
6318         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
6319         Use `gnus-extract-address-component-email' to fix bug of comparing full
6320         sender name to `user-mail-address'.
6321
6322 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
6323
6324         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
6325         catch/throw to optimize.
6326         (gnus-registry-find-keywords): Just use member to find a keyword.
6327
6328 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6329
6330         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
6331         is current before calling gnus-server-prepare.
6332         (gnus-server-setup-buffer, gnus-server-update-server)
6333         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
6334
6335 2008-05-04  Juri Linkov  <juri@jurta.org>
6336
6337         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
6338         (mailcap-file-default-commands): Use mailcap-replace-in-string
6339         instead of replace-regexp-in-string, and mailcap-delete-duplicates
6340         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
6341
6342 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
6343
6344         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
6345
6346 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6347
6348         * gnus.el: Bump version to 0.11.
6349
6350 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6351
6352         * gnus.el: No Gnus v0.10 is released.
6353
6354 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6355
6356         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
6357         hooks.
6358         (gnus-update-read-articles): Speed up non-marks-using users.
6359         (gnus-use-marks): Define gnus-use-marks.
6360         (gnus-propagate-marks): Rename variable to something more sensible.
6361
6362 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
6363
6364         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
6365         (gmm-image-load-path-for-library): Fix typos in docstrings.
6366         (gmm-message): Reflow docstring.
6367
6368 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
6369
6370         * mail-source.el (mail-source-set-1, mail-source-bind):
6371         Move auth-source code out of the macro to clean it up and fix bugs.
6372
6373 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
6374
6375         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
6376         by sender if it's equal to user-mail-address, it's likely to be
6377         useless.
6378
6379         * mail-source.el (mail-source-bind): Don't use user or password if they
6380         are not bound.  Unintern them if they are nil.  Don't use server unless
6381         it's bound, and default it to empty string otherwise.
6382
6383 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
6384
6385         * mail-source.el: Load auth-source.el.
6386         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
6387         get user name or password, if auth-sources is set up.
6388
6389         * gnus-registry.el (gnus-registry-split-strategy): New variable for
6390         strategy of splitting with parent.
6391         (gnus-registry-split-fancy-with-parent)
6392         (gnus-registry-post-process-groups): Use it and fix prior
6393         bug (returning a list as the split result).
6394
6395         * auth-source.el (auth-sources): Remove server parameter.
6396         (auth-source-pick, auth-source-user-or-password)
6397         (auth-source-user-or-password-imap)
6398         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6399         (auth-source-user-or-password-sftp)
6400         (auth-source-user-or-password-smtp): Remove server parameter.
6401
6402 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
6403
6404         * smime.el (smime-sign-region, smime-encrypt-region)
6405         (smime-decrypt-region):
6406         Remove redundant calls to `generate-new-buffer-name'.
6407
6408 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
6409
6410         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
6411         Don't use QP for message/rfc822.
6412         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
6413
6414 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6415
6416         * sieve-manage.el (sieve-string-bytes): Remove.
6417         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
6418         correct byte-length only if the process's coding-system is the same as
6419         the one used internally by Emacs to represent strings.
6420
6421 2008-04-22  Juri Linkov  <juri@jurta.org>
6422
6423         * mailcap.el (mailcap-file-default-commands): New function.
6424
6425 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
6426
6427         * message.el (message-signature-separator, message-cite-function):
6428         Change custom version.
6429
6430 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
6431
6432         * tls.el (tls-program): Add -ign_eof argument to call the openssl
6433         commands.
6434         (tls-checktrust): Ditto.
6435
6436 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
6437
6438         * mm-decode.el (mm-display-external): Make temp file read-only.
6439
6440 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
6441
6442         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
6443         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
6444         `C-c C-f d'.
6445
6446 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
6447
6448         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
6449
6450 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
6451
6452         * gnus.el: Bump version to 0.9.
6453
6454 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
6455
6456         * gnus.el: No Gnus v0.8 is released.
6457
6458 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6459
6460         * mail-source.el (mail-source-value):
6461         Prefer fboundp to functionp so it works with macros as well.
6462
6463 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6464
6465         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6466         Fix last change in case the element is not even a symbol.
6467
6468 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6469
6470         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6471         Prefer fboundp to functionp so it works with macros as well.
6472
6473 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
6474
6475         * auth-source.el: Add docs.
6476         (auth-sources): Modify format to support server.
6477         (auth-source-pick, auth-source-user-or-password)
6478         (auth-source-user-or-password-imap)
6479         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6480         (auth-source-user-or-password-sftp)
6481         (auth-source-user-or-password-smtp): Add server parameter.
6482
6483 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
6484
6485         * gnus-registry.el: Initialize the registry when gnus-registry-install
6486         is t.
6487
6488 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6489
6490         * compface.el (uncompface): Make buffer unibyte.
6491
6492 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6493
6494         * mail-source.el (mail-source-value):
6495         Prefer fboundp to functionp so it works with macros as well.
6496
6497 2008-04-05  Glenn Morris  <rgm@gnu.org>
6498
6499         * gnus-ems.el (mm-disable-multibyte): Autoload it.
6500
6501 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6502
6503         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
6504         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
6505
6506         * nnheader.el (nnheader-init-server-buffer): Change buffer's
6507         multibyteness after rather than before erasing it.
6508
6509         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
6510         mm-with-multibyte.
6511         (gnus-request-article-this-buffer): Make sure the proper decoding is
6512         used if gnus-original-article-buffer happens to be unibyte.
6513
6514         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
6515         default-enable-multibyte-characters.
6516
6517         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
6518         default-enable-multibyte-characters.
6519
6520         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
6521
6522         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
6523
6524 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6525
6526         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6527         Fix last change in case the element is not even a symbol.
6528
6529 2008-04-02  Simon Josefsson  <simon@josefsson.org>
6530
6531         * imap.el (imap-enable-exchange-bug-workaround): New variable.
6532         (imap-message-copyuid-1): Use it.
6533         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
6534         J. Williams in
6535         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
6536
6537         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
6538         imap-enable-exchange-bug-workaround.
6539         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
6540
6541 2008-04-01  Simon Josefsson  <simon@josefsson.org>
6542
6543         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
6544         a 100 byte status-checks into a 2-3MB transfer for each group.
6545         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
6546         to enable bug workaround or not.
6547         (nnimap-find-minmax-uid): Only enable workaround conditionally.
6548
6549 2008-03-31  Glenn Morris  <rgm@gnu.org>
6550
6551         * message.el (mml2015-use): Declare for compiler.
6552         (message-info): Require mml2015 when appropriate.
6553
6554 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6555
6556         * Makefile.in (EMACS_COMP): Quote directory name that might contain
6557         whitespace.
6558
6559 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6560
6561         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
6562         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
6563         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
6564         (nntp-service-to-port): New function.
6565         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
6566         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
6567         (nntp-open-netcat-stream): New function.
6568         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
6569
6570 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
6571
6572         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
6573
6574 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6575
6576         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
6577
6578 2008-03-28  Magnus Henoch  <mange@freemail.hu>
6579
6580         * dns.el (dns-write): Use set-buffer-multibyte.
6581
6582 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
6583
6584         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
6585
6586 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6587
6588         * message.el (message-signature-separator): Change default.
6589         Improve custom type.
6590         (message-cite-function): Change default to
6591         message-cite-original-without-signature.
6592
6593         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
6594         toggle.
6595
6596         * message.el (message-check-news-body-syntax): Fix signature check.
6597         (message-setup-1): Mark buffer as unmodified _after_ running
6598         message-setup-hook and handling message-alternative-emails.
6599         (message-shorten-references): Be more strict when building list of
6600         valid references to comply with GNKSA.
6601
6602         * gnus-group.el (gnus-read-ephemeral-bug-group)
6603         (gnus-read-ephemeral-debian-bug-group)
6604         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
6605
6606         * message.el (message-info): Don't use booleanp which isn't supported
6607         in Emacs 21 and XEmacs.
6608
6609 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
6610
6611         * gnus-group.el (gnus-gmane-group-download-format): Rename from
6612         gnus-group-gmane-group-download-format.
6613         (gnus-group-read-ephemeral-gmane-group): Rename from
6614         gnus-group-read-ephemeral-gmane-group.
6615         (gnus-read-ephemeral-gmane-group-url): Rename from
6616         gnus-group-read-ephemeral-gmane-group-url.
6617         (gnus-bug-group-download-format-alist): New variable.
6618         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
6619         (gnus-read-ephemeral-emacs-bug-group): New commands.
6620
6621 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
6622
6623         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
6624         (gnus-visible-headers): Improve custom type.
6625
6626 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
6627
6628         * mml.el (mml-menu): Add workarounds for XEmacs.
6629
6630         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
6631         X-Boundary header.
6632
6633         * message.el (message-simplify-recipients): Fix previous commit.
6634
6635 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6636
6637         * mm-util.el (mm-set-buffer-multibyte): New function.
6638         * mm-decode.el (mm-copy-to-buffer): Use it.
6639
6640         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
6641         Prefer fboundp to functionp so it works with macros as well.
6642
6643 2008-03-19  Glenn Morris  <rgm@gnu.org>
6644
6645         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
6646         Accidentally removed in the sync process with Emacs.
6647
6648 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
6649
6650         * message.el (message-alter-recipients-discard-bogus-full-name):
6651         New function.
6652         (message-alter-recipients-function): New variable.
6653         (message-get-reply-headers): Use it.
6654         (message-replace-header): New helper function.
6655         (message-recipients-without-full-name): New variable.
6656         (message-simplify-recipients): New command.
6657
6658         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
6659
6660         * message.el (message-info): Handle EasyPG manual.
6661
6662         * mml.el (mml-menu): Add entry for EasyPG.
6663
6664 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
6665
6666         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
6667         parameter.
6668
6669         * message.el (message-disassociate-draft): Specify drafts group name
6670         fully.
6671
6672 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
6673
6674         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
6675         Eliminate unnecessary duplicates from the match list.
6676
6677 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6678
6679         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
6680
6681         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
6682
6683         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
6684         args of `how-many' of which the XEmacs version doesn't take; declare
6685         Info-index-next as function.
6686
6687 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
6688
6689         * gnus-score.el (gnus-score-headers): Fix handling of
6690         gnus-inhibit-slow-scoring.
6691
6692         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
6693         string.
6694         (gnus-button-url-regexp): Improve handling of parenthesis.
6695         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
6696         (gnus-button-handle-info-keystrokes): Handle index entries.
6697
6698 2008-03-15  Glenn Morris  <rgm@gnu.org>
6699
6700         * parse-time.el (parse-time-string): Simplify.
6701
6702 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6703
6704         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
6705         Incoming* files.
6706
6707 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
6708
6709         * auth-source.el (auth-sources): Rename from auth-source-choices.
6710         (auth-source-pick): Use it.
6711
6712 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6713
6714         * binhex.el (binhex-decode-region-internal):
6715         * uudecode.el (uudecode-decode-region-internal):
6716         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
6717         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
6718         setting default-enable-multibyte-characters.
6719
6720 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
6721
6722         * auth-source.el (auth-source-protocols)
6723         (auth-source-protocols-customize, auth-source-choices): Add and
6724         modified variable customizations and defaults.
6725         (auth-source-pick, auth-source-user-or-password)
6726         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
6727         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
6728         (auth-source-user-or-password-sftp)
6729         (auth-source-user-or-password-smtp): Use new variables and provide an
6730         interface to netrc.el.
6731
6732 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6733
6734         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
6735         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
6736         Make sure the nntp port to specify is a string.
6737
6738 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6739
6740         * nntp.el: Use with-current-buffer.
6741         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
6742         dubious mm-with-unibyte-current-buffer.
6743         (nntp-with-open-group-function): New function extracted from
6744         nntp-with-open-group macro.
6745         (nntp-with-open-group): Use the function, so it's easier to debug.
6746         Add indentation and debugging info.
6747         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
6748         Recommend the use of the netcat alternatives.
6749
6750         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
6751         Avoid mm-string-as-multibyte as well.
6752
6753         * nnweb.el (nnweb-insert-html):
6754         Remove use of nnheader-string-as-multibyte.
6755
6756         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
6757         (nnheader-string-as-multibyte): Remove.
6758
6759         * mm-view.el: Use inhibit-read-only.
6760         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
6761         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
6762         or unibyte-string.
6763
6764         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
6765         (mm-uu-yenc-extract): Use with-current-buffer.
6766
6767         * gnus-soup.el (gnus-soup-send-packet): Don't use
6768         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
6769
6770         * nnmh.el: Use with-current-buffer.
6771         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
6772         mm-string-as-multibyte on the output of mm-encode-coding-string.
6773
6774         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
6775         (nnimap-request-move-article): Use with-current-buffer.
6776
6777         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
6778         inserting the handle-buffer's text, so the implicit multibyte->unibyte
6779         conversion uses string-make-unibyte rather than string-as-unibyte.
6780
6781         * gnus-msg.el: Use with-current-buffer.
6782
6783         * message.el (message-ignored-resent-headers): Add "Delivered-To".
6784
6785 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
6786
6787         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
6788         string for caching if it is 'PIN.
6789
6790 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6791
6792         * lpath.el: Consider the case without Emacs/W3.
6793
6794 2008-03-08  Glenn Morris  <rgm@gnu.org>
6795
6796         * time-date.el (date-to-time, time-subtract, time-add)
6797         (safe-date-to-time): Doc fixes.
6798
6799 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
6800
6801         * mail-source.el (mail-source-delete-old-incoming-confirm):
6802         Change default to nil.
6803         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
6804
6805 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6806
6807         * lpath.el: Rearrange.
6808
6809         * gnus-art.el (gnus-narrow-to-page): Position point properly.
6810         (gnus-article-goto-prev-page): Work for articles having ^L's.
6811
6812         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
6813
6814         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
6815
6816 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
6817
6818         * gnus-bookmark.el: Adjust for renames in bookmark.el.
6819         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
6820         (gnus-bookmark-jump): Adjust some variable names.
6821
6822 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
6823
6824         * auth-source.el: New package.
6825         (auth-source-choices): Add customization entry point variable.
6826
6827         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
6828         bug.
6829
6830 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
6831
6832         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
6833         (gnus-registry-initialize, gnus-registry-install-p): Use it.
6834         (gnus-registry-install-shortcuts): Rename from
6835         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
6836         the `gnus-registry-mark-map' keymap dynamically from
6837         `gnus-registry-marks'.  The generated functions update the summary line
6838         when a registry mark is added or deleted, and will call
6839         `gnus-registry-install-p' (see the comments in the code).
6840         (gnus-registry-user-format-function-M): Use concat intelligently.
6841
6842         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
6843         the registry mark functions.
6844
6845 2008-03-05  Glenn Morris  <rgm@gnu.org>
6846
6847         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
6848         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
6849         gnus-art.
6850         (top-level): No need to load own source when compiling.
6851
6852 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
6853
6854         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
6855         Suggested by <chris.anderton@zetnet.co.uk>.
6856
6857 2008-03-04  Glenn Morris  <rgm@gnu.org>
6858
6859         * gnus-sum.el (top-level): No need to require gnus when compiling,
6860         since unconditionally required near start of file.
6861         (gnus-summary-display-while-building): Move definition before use.
6862
6863 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
6864
6865         * gnus-registry.el (gnus-registry-user-format-function-M):
6866         Add formatting function.
6867
6868 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
6869
6870         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
6871         with plists.
6872         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
6873         Use new format.
6874
6875 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6876
6877         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
6878         `where-is-internal' that returns a range of key sequences.
6879
6880 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6881
6882         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
6883
6884         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
6885         (gnus-summary-jump-to-group): Consider windows on other displayed
6886         frames as well.  Similar changes might be needed elsewhere, but that's
6887         the one I've bumped into during my use.
6888
6889         * nndoc.el (nndoc-oe-dbx-type-p):
6890         * gnus-msg.el (gnus-debug):
6891         * gnus-group.el (gnus-update-group-mark-positions):
6892         Use mm-string-to-multibyte.
6893
6894 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
6895
6896         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
6897         doesn't handle NotDashEscaped.
6898
6899         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
6900         (mml-dnd-attach-options): Fix typo in custom choice.
6901
6902         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
6903         Change nndoc-article-type to mbox.
6904         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
6905
6906         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
6907         to nil, instead of html2text.
6908
6909         * imap.el (imap-debug): Add `imap-ping-server'.
6910
6911         * gnus-bookmark.el: Add FIXMEs.
6912
6913         * message.el (message-form-letter-separator)
6914         (message-send-form-letter-delay): New variables.
6915         (message-send-form-letter): Use them.  New command to send form
6916         letters.  Requested by Uwe Siart.
6917         (message-send-mail-function): Doc fix.  Add "Other" custom option.
6918
6919 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
6920
6921         * Update copyright years.
6922
6923 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
6924
6925         Sync from EMACS_22_BASE.
6926
6927         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
6928
6929 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
6930
6931         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
6932         empty author.
6933
6934 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
6935
6936         * gnus-registry.el (gnus-registry-marks): Add variable for
6937         customization of marks and their appearance.
6938         (gnus-registry-read-mark): Use it.
6939         (gnus-registry-do-marks): Add utility function to loop through
6940         `gnus-registry-marks'.
6941         (gnus-registry-install-shortcuts-and-menus): Add function to install
6942         shortcuts and menus.
6943         (gnus-registry-initialize): Use it.
6944         (gnus-registry-default-mark): Clarify documentation.
6945
6946 2008-02-29  Glenn Morris  <rgm@gnu.org>
6947
6948         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
6949         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
6950         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
6951         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
6952         Change defcustom :version from 23.0 to 23.1.
6953
6954 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
6955
6956         * gnus-registry.el (gnus-registry-follow-group-p)
6957         (gnus-registry-post-process-groups): Add functions to aid registry
6958         splitting and improve logging.  Clarify behavior in function
6959         documentation.
6960         (gnus-registry-split-fancy-with-parent): Use them.
6961
6962 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6963
6964         * gnus-art.el: Use with-current-buffer.
6965
6966 2008-02-27  David Engster  <dengste@eml.cc>
6967
6968         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
6969         Express real group name in the response.
6970
6971 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6972
6973         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
6974         (nnmairix-last-server, nnmairix-current-server): Defvar them.
6975         (nnmairix-goto-original-article): Defvar gnus-registry-install and
6976         autoload gnus-registry-fetch-group when compiling.
6977         (nnmairix-request-group-with-article-number-correction):
6978         Remove unreferenced argument passed to nnmairix-call-backend.
6979
6980 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
6981
6982         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
6983         (mm-uu-extract): Improve face for low color ttys.
6984         Reported by Sascha Wilde.
6985
6986 2008-02-27  Glenn Morris  <rgm@gnu.org>
6987
6988         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
6989         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
6990         variables to defconsts.  Convert comments to doc-strings.
6991         (nnmairix-last-server, nnmairix-current-server): Convert from free
6992         variables to defvars.  Convert comments to doc-strings.
6993         (gnus-registry-fetch-group): Autoload.
6994         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
6995         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
6996         (nnmairix-widget-build-editable-fields): Use car cddr rather than
6997         caddr.
6998         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
6999         nnmairix-request-group-with-article-number-correction call.
7000         (nnmairix-fast, nnmairix-group): New, less general names, for free
7001         variables passed from nnmairix-request-group to
7002         nnmairix-request-group-with-article-number-correction.  Declare.
7003         (nnmairix-request-group-with-article-number-correction):
7004         Use nnmairix-fast, nnmairix-group rather than fast, group.
7005
7006 2008-02-26  David Engster  <dengste@eml.cc>
7007
7008         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
7009         version 0.5.
7010
7011 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
7012
7013         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
7014         instead of making an extra function call.  Don't add the current group
7015         to articles only when they have the group.  Use
7016         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
7017         Reported by David <de_bb@arcor.de>.
7018
7019 2008-02-24  Miles Bader  <miles@gnu.org>
7020
7021         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
7022         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
7023         (mm-find-mime-charset-region):
7024         * mm-bodies.el (mm-encode-body):
7025         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
7026
7027 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7028
7029         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
7030         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
7031
7032 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
7033
7034         * mail-source.el (mail-source-delete-incoming): Change default.
7035         Supplement doc string.
7036
7037         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
7038
7039 2008-02-14  Glenn Morris  <rgm@gnu.org>
7040
7041         * time-date.el (format-seconds): New function.
7042
7043 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
7044
7045         * nnmail.el (nnmail-message-id-cache-file): Derive from
7046         `gnus-home-directory'.
7047
7048 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
7049
7050         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
7051         Document negative prefix.
7052
7053         * gnus-group.el (gnus-group-read-group): Document negative prefix.
7054
7055 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7056
7057         * message.el (message-unsent-separator): Add the Exim bounce
7058         separator.
7059
7060 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
7061
7062         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
7063         list.
7064         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
7065         recipient/signer list.
7066
7067 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7068
7069         * Makefile.in (datarootdir): Define.
7070         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
7071         name that might contain whitespace.
7072
7073 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
7074
7075         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
7076         fbound (Emacs 23 unicode), signal an error.
7077
7078 2008-02-08  Glenn Morris  <rgm@gnu.org>
7079
7080         * gnus-art.el (pgg-display-output-buffer): Declare as function.
7081
7082 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
7083
7084         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
7085         ports to the calls to `netrc-machine-user-or-password' in addition to
7086         "imap" and "imaps".
7087
7088 2008-02-01  Zhang Wei  <id.brep@gmail.com>
7089
7090         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
7091
7092         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
7093
7094 2008-02-01  Kenichi Handa  <handa@m17n.org>
7095
7096         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
7097         rfc2104-hexstring-to-bitstring and changed to return a byte list.
7098         (rfc2104-hash): Convert the result of concat to unibyte string.
7099
7100 2008-02-01  Dave Love  <fx@gnu.org>
7101
7102         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
7103         coding-system-for-read.
7104         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
7105
7106 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
7107
7108         * gnus.el (gnus-group-startup-message): Add `find-image' call before
7109         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
7110         <hanche@math.ntnu.no>.
7111
7112 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7113
7114         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
7115
7116         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
7117
7118 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
7119
7120         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
7121         * message.el (message-beginning-of-line): Use featurep instead of bound
7122         tests in order to resolve conditionals at compile time.
7123
7124 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
7125
7126         * mail-source.el (mail-sources): Add `group' choice.
7127
7128         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
7129         parameter `in-group' to control into which group the articles go.
7130         Add treatment of `group' mail-source.
7131
7132 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7133
7134         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
7135
7136         * mm-decode.el (mm-dissect-buffer): Decode description.
7137
7138         * mml.el (mml-to-mime): Encode message header first.
7139
7140 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7141
7142         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
7143         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
7144
7145         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
7146         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
7147
7148 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
7149
7150         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
7151
7152 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7153
7154         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
7155         prefix keys.
7156         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
7157         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
7158         gnus-xmas.el.
7159
7160         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
7161         (gnus-xmas-article-describe-bindings): New function.
7162         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
7163         gnus-xmas-article-describe-bindings.
7164
7165         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
7166
7167 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
7168
7169         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
7170         Add new variables for article mark management.
7171         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
7172         list of extra data entries which, when present, will indicate that the
7173         article ID should not be trimmed from the registry.
7174         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
7175         functions.
7176         (gnus-registry-read-mark): New function to read a mark name from the
7177         user.
7178         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
7179         (gnus-registry-set-article-mark-internal): New functions to add and
7180         remove marks.
7181         (gnus-registry-get-article-marks): New function to show the marks for
7182         an article, or retrieve them for further use.
7183
7184 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7185
7186         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
7187         keys when no argument is given.
7188
7189 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
7190
7191         * imap.el (imap-ping-server): New variable.
7192         (imap-opened): On add extra ping if imap-ping-server is non-nil.
7193         (imap-ping-server): Minor doc string fixes.
7194
7195 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7196
7197         * imap.el (imap-ping-server): New function.
7198         (imap-opened): Call imap-ping-server.
7199
7200 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
7201
7202         * gnus-sum.el (gnus-article-sort-by-random)
7203         (gnus-thread-sort-by-random): Fix doc strings.
7204         Reported by jidanni@jidanni.org.
7205
7206 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7207
7208         * gnus-art.el (gnus-article-describe-bindings): New function.
7209         (gnus-article-read-summary-keys): Use it.
7210         (gnus-article-mode-map): Bind `C-h b' to it.
7211
7212 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7213
7214         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
7215         XEmacs.
7216         (gnus-article-describe-key, gnus-article-describe-key-briefly):
7217         Protect against non-character events.
7218
7219         * lpath.el: Fbind map-keymap for Emacs 21.
7220
7221 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
7222
7223         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
7224         New command.
7225         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
7226         instead of END.  Change name of the temp file.
7227         (gnus-group-gmane-group-download-format): Add doc string.  Make it
7228         customizable.
7229
7230 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7231
7232         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
7233         bind `S W' to gnus-article-wide-reply-with-original; set default
7234         binding to gnus-article-read-summary-send-keys.
7235         (gnus-article-read-summary-keys): Fix the order of keys; display
7236         continuation keys correctly in the echo area; describe bindings
7237         correctly when keys end with `C-h'.
7238         (gnus-article-read-summary-send-keys): New function.
7239         (gnus-article-describe-key, gnus-article-describe-key-briefly):
7240         Work for gnus-article-read-summary-send-keys; display continuation keys
7241         correctly in the echo area.
7242         (gnus-article-reply-with-original): Ignore prefix argument.
7243         (gnus-article-wide-reply-with-original): New function.
7244
7245         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
7246         Emacs 21.
7247
7248 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7249
7250         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
7251         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
7252
7253 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
7254
7255         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
7256         (gnus-group-read-ephemeral-gmane-group): New command.
7257
7258 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
7259
7260         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
7261
7262 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
7263
7264         * message.el (message-send-mail-function): Increase custom version.
7265
7266         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
7267         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
7268
7269 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
7270
7271         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
7272         for the cases where imap-authenticate is called with a nil buffer
7273         parameter.
7274
7275 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7276
7277         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
7278         html parts correctly; support forwarded messages.
7279         (gnus-article-browse-html-article): Remove work buffers.
7280
7281         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
7282         compiling.
7283         (netrc-bound-and-true-p): New macro.
7284         (netrc-parse): Use it instead of bound-and-true-p that is not available
7285         in XEmacs 21.4.
7286
7287 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
7288
7289         * gnus-registry.el (gnus-registry-mark-article)
7290         (gnus-registry-article-marks): Add functionality to mark articles
7291         through the Gnus registry.
7292
7293         * encrypt.el: Clarify documentation for the new pgg method.
7294         (encrypt-file-alist): Add PGG option.
7295         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
7296         functionality.  Abstract password key and messaging to external
7297         functions.
7298         (encrypt-password-key, encrypt-get-passphrase-if-needed)
7299         (encrypt-message-method-and-cipher): Add new convenience external
7300         functions.
7301         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
7302         (encrypt-pgg-process-buffer): Add PGG functionality glue.
7303
7304         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
7305         (netrc-parse): Use encrypt-file-alist to determine if
7306         encrypt-find-model or encrypt-insert-file-contents should be used.
7307
7308         * encrypt.el: Clarify documentation.  Load password-cache or
7309         password, whichever one is found first, instead of autoloading.
7310
7311 2007-12-19  Glenn Morris  <rgm@gnu.org>
7312
7313         * mml.el (message-options-set, message-narrow-to-head)
7314         (message-in-body-p, message-mail-p, message-encode-message-body):
7315         Autoload.
7316         (message-remove-header, message-narrow-to-headers-or-head)
7317         (message-subscribed-p, message-make-mail-followup-to)
7318         (message-position-on-field, message-news-p)
7319         (message-options-set-recipient, message-generate-headers)
7320         (message-sort-headers): Declare as functions.
7321
7322 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
7323
7324         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
7325         convention in doc string.
7326
7327 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7328
7329         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
7330         title to html parts.
7331         (gnus-article-browse-html-article): Pass message header to it.
7332
7333         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
7334
7335 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
7336
7337         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
7338         or password compatible with XEmacs.
7339
7340 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
7341
7342         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
7343         format document.
7344         (gnus-mime-delete-part): Don't write description line if empty.
7345         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
7346
7347 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
7348
7349         * gnus-sum.el (gnus-summary-mark-unread-as-read)
7350         (gnus-summary-mark-read-and-unread-as-read)
7351         (gnus-summary-mark-current-read-and-unread-as-read)
7352         (gnus-summary-mark-unread-as-ticked): Doc fix.
7353         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
7354
7355 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
7356
7357         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
7358         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
7359
7360 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
7361
7362         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
7363         yes-or-no-p.
7364
7365 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7366
7367         * mm-decode.el (mm-add-meta-html-tag): New function.
7368         (mm-save-part-to-file, mm-pipe-part): Use it.
7369
7370         * gnus-art.el (gnus-article-browse-delete-temp-files):
7371         Use gnus-y-or-n-p instead of y-or-n-p.
7372         (gnus-article-browse-html-parts): Work with message/external-body; use
7373         mm-add-meta-html-tag.
7374
7375 2007-12-11  Glenn Morris  <rgm@gnu.org>
7376
7377         * gnus-cache.el: Require gnus-sum not just when compiling.
7378
7379         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
7380
7381         * gnus-int.el (gnus-server-opened, gnus-status-message):
7382         Move definitions before use.
7383
7384         * mm-decode.el: Require gnus-util.
7385         (mm-remove-part): Only call delete-annotation on XEmacs.
7386
7387         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
7388
7389         * nnmail.el: Require gnus-int.
7390
7391         * spam.el: Move `require's before `eval-when-compile's.
7392
7393         * gnus-ems.el (gnus-alive-p):
7394         * gnus-fun.el (message-goto-eoh):
7395         * gnus-util.el (gnus-group-name-decode):
7396         * mail-source.el (gnus-compress-sequence):
7397         * message.el (Info-goto-node, format-spec):
7398         * mm-bodies.el (message-options-get):
7399         * mm-decode.el (mm-view-pkcs7):
7400         * mm-util.el (gmm-write-region):
7401         * mml-smime.el (mml-compute-boundary)
7402         (gnus-completing-read-with-default):
7403         * mml.el (widget-button-press, gnus-make-hashtable):
7404         * mml1991.el (mm-decode-content-transfer-encoding)
7405         (mm-encode-content-transfer-encoding)
7406         (message-options-get, message-options-set):
7407         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
7408         * nnfolder.el (gnus-request-group):
7409         * nnheader.el (ietf-drums-unfold-fws):
7410         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
7411         * smime.el (gnus-run-mode-hooks):
7412         * spam-stat.el (gnus-message): Autoload.
7413
7414         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
7415         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
7416         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
7417         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
7418         Add declare-function compatibility definition.
7419
7420         * gnus-cache.el (nnvirtual-find-group-art):
7421         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
7422         (gnus-add-image, gnus-add-wash-type):
7423         * gnus-group.el (nnkiboze-score-file):
7424         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
7425         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
7426         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
7427         (message-tokenize-header, gnus-get-buffer-create)
7428         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
7429         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
7430         * gnus.el (gnus-group-decoded-name):
7431         * mail-source.el (imap-capability):
7432         * mm-bodies.el (message-options-set):
7433         * mm-decode.el (gnus-configure-windows):
7434         * mm-extern.el (message-goto-body):
7435         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
7436         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
7437         (epg-sub-key-validity, message-options-set):
7438         * mml.el (widget-event-point, gnus-configure-windows):
7439         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
7440         * mml2015.el (epg-check-configuration, epg-configuration)
7441         (message-options-set):
7442         * nndb.el (nndb-request-article):
7443         * nnfolder.el (gnus-request-create-group):
7444         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
7445         * nnmaildir.el (gnus-group-mark-article-read):
7446         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
7447         * rfc1843.el (message-fetch-field):
7448         * spam.el (gnus-extract-address-components):
7449         Declare as functions.
7450
7451 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7452
7453         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
7454
7455         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
7456
7457         * lpath.el: Fbind run-mode-hooks for Emacs 21;
7458         bind show-trailing-whitespace for XEmacs.
7459
7460 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
7461
7462         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
7463         new no-op macro for backward compatibility.
7464
7465         * imap.el (imap-string-to-integer): New function.
7466
7467 2007-12-09  Glenn Morris  <rgm@gnu.org>
7468
7469         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
7470
7471         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
7472         * message.el, mm-view.el, sieve-manage.el, smime.el:
7473         Add declare-function compatibility definition.
7474
7475         * gnus-art.el (w3-region, w3m-region, Info-menu):
7476         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
7477         * gnus-sum.el (gnus-get-predicate):
7478         * gnus-util.el (mm-append-to-file, w32-focus-frame):
7479         * message.el (mail-abbrev-in-expansion-header-p):
7480         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
7481         (w3m-detect-meta-charset, w3m-region):
7482         * sieve-manage.el (password-read, password-cache-add)
7483         (password-cache-remove):
7484         * smime.el (password-read-and-add): Declare as functions.
7485
7486 2007-12-08  David Kastrup  <dak@gnu.org>
7487
7488         * gnus-sum.el (gnus-summary-simplify-subject-query):
7489         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
7490         `message'.
7491
7492 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7493
7494         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
7495         it to bind idna-program, installation-directory, defined-colors, and
7496         face-attribute for XEmacs of the version that compiles defcustom forms.
7497
7498 2007-12-07  Glenn Morris  <rgm@gnu.org>
7499
7500         * gnus-art.el (article-make-date-line): Revert previous change.
7501
7502 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
7503
7504         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
7505
7506 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
7507
7508         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
7509         Call gnus-add-to-range ranges only once with a prepared article-list.
7510
7511 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
7512
7513         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
7514         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
7515         group names with backslashes.
7516         Reported by Tassilo Horn <tassilo@member.fsf.org>.
7517
7518 2007-12-06  Deepak Goel  <deego3@gmail.com>
7519
7520         * gnus-art.el (article-make-date-line):
7521         * gnus-start.el (gnus-load):
7522         * pop3.el (pop3-read-response): Fix buggy call to `error'.
7523
7524 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7525
7526         * gnus-art.el (gnus-use-idna)
7527         * gnus-start.el (gnus-site-init-file)
7528         * message.el (message-use-idna)
7529         * mm-uu.el (mm-uu-hide-markers)
7530         * smiley.el (smiley-style): Revert changes that suppress warnings.
7531
7532 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7533
7534         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
7535         specify charset to html source.
7536         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
7537
7538 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7539
7540         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
7541         idna-program in order to suppress byte compile warning issued by XEmacs
7542         that came to byte compile the default value section of defcustom forms
7543         recently.
7544
7545         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
7546         value of installation-directory.
7547
7548         * message.el (message-use-idna): Don't directly refer to the value of
7549         idna-program.
7550
7551         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
7552
7553         * smiley.el (smiley-style): Don't directly call face-attribute.
7554
7555 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
7556
7557         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
7558
7559         * gnus-dired.el: Reduce Gnus dependencies.
7560         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
7561         Don't require.  Use autoloads instead.
7562         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
7563         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
7564         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
7565         (gnus-dired-mode): Adjust doc string.
7566         (gnus-dired-mail-mode): New variable.
7567         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
7568         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
7569         (gnus-dired-mail-buffers): New function.  Return mail or message
7570         composition buffers.
7571         (gnus-dired-attach): Use it.
7572         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
7573         NO-DECODE.
7574         (gnus-dired-print): Use `gnus-print-buffer' depending on
7575         `gnus-dired-mail-mode'.
7576
7577 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7578
7579         * rfc2047.el (rfc2047-encoded-word-regexp)
7580         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
7581         explaining what regexp patterns are for.
7582
7583 2007-12-04  Glenn Morris  <rgm@gnu.org>
7584
7585         * password.el: Move to password-cache.el.
7586
7587         * mml1991.el (password-read, password-cache-add, password-cache-remove):
7588         * mml2015.el (password-read, password-cache-add, password-cache-remove):
7589         * mml-smime.el (password-read, password-cache-add)
7590         (password-cache-remove):
7591         No need to autoload, since mml-sec requires password.
7592
7593         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
7594         * message.el (gnus-extract-address-components):
7595         * mml-smime.el (gnus-extract-address-components): Define for compiler.
7596
7597         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
7598         password.
7599
7600 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
7601
7602         * mailcap.el: Reduce dependencies.
7603         (mail-header-parse-content-type): Autoload.
7604         (mailcap-delete-duplicates): New alias.
7605         (mailcap-mime-info): Add optional argument NO-DECODE.
7606         (mailcap-mime-types): Use mailcap-delete-duplicates.
7607
7608         * message.el (message-ignored-supersedes-headers): Add "X-ID".
7609
7610 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
7611
7612         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
7613         (imap-parse-status): Upcase status-att for servers that sends them
7614         lower-case (e.g., MS Exchange 2007).
7615
7616 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7617
7618         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
7619         function.
7620
7621         * gnus-uu.el (gnus-uu-decode-yenc): New command.
7622         (gnus-uu-yenc-article): New function.
7623
7624         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
7625
7626         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
7627
7628 2007-12-02  Glenn Morris  <rgm@gnu.org>
7629
7630         * binhex.el (binhex): New custom group.
7631         (binhex-decoder-program, binhex-decoder-switches)
7632         (binhex-use-external): Move to the binhex custom group.
7633
7634         * uudecode.el (uudecode): New custom group.
7635         (uudecode-decoder-program, uudecode-decoder-switches)
7636         (uudecode-use-external): Move to the uudecode custom group.
7637
7638         * netrc.el (top-level): Don't load `encrypt' features.
7639         (netrc-parse): Don't use encrypt.
7640         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
7641
7642         * encrypt.el: Remove file.
7643
7644 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
7645
7646         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
7647         matches on patches.
7648
7649         * gnus-art.el (gnus-article-browse-html-article):
7650         Mention `mm-text-html-renderer' in the doc string.
7651
7652         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
7653         string.  Add comments.
7654
7655         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
7656         if rhs is ASCII.
7657
7658 2007-12-01  Glenn Morris  <rgm@gnu.org>
7659
7660         * mail-source.el (top-level): Require format-spec before
7661         eval-when-compile.
7662
7663 2007-11-30  Glenn Morris  <rgm@gnu.org>
7664
7665         * encrypt.el: Require password, rather than autoloading password-read.
7666
7667 2007-11-29  Glenn Morris  <rgm@gnu.org>
7668
7669         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
7670         (sasl-make-client, sasl-next-step, sasl-step-data)
7671         (sasl-step-set-data): Declare as functions.
7672
7673 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
7674
7675         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
7676
7677 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
7678
7679         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
7680         certs should be verified and what is to be done in the event of a
7681         verification failure.
7682
7683         * gnus.el (gnus-method-to-server): Add an optional parameter so the
7684         caller can indicate whether the cache should be disregarded for this
7685         call.  This way the result of the call is reproducible at all times and
7686         can be considered a canonical server name for the supplied method.
7687         (gnus-agent-method-p): Canonicalize server names by pushing their
7688         method through `gnus-method-to-server' using the no-cache argument.
7689
7690         * gnus-srvr.el (gnus-server-insert-server-line):
7691         Call `gnus-method-to-server' with `no-cache' argument.
7692
7693         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
7694         gnus-agent-possibly-synchronize-flags as this should be called when the
7695         server is actually being opened.
7696         (gnus-agent-possibly-synchronize-flags)
7697         (gnus-agent-possibly-synchronize-flags-server): Move check for the
7698         flags file of an agentized server to the latter function.
7699
7700         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
7701         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
7702         after a connection has been established successfully.
7703
7704 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7705
7706         * gnus-art.el (article-display-face): Force to display face if called
7707         interactively; check if gnus-article-x-face-too-ugly matches author.
7708         (article-display-x-face): Display face even if From header is missing
7709         as article-display-face does.
7710
7711 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
7712
7713         * hashcash.el (message-narrow-to-headers-or-head)
7714         (message-fetch-field, message-goto-eoh)
7715         (message-narrow-to-headers): Declare as functions.
7716
7717 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
7718
7719         * mail-source.el (mail-sources): Default to fetch from file for
7720         compatibility with default of nnmail-spool-file.
7721
7722 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7723
7724         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
7725         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
7726         to look for encoded word that should be encoded again.
7727         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
7728         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
7729         encoding pattern.
7730         (rfc2047-decode-region): Switch strict regexp and loose one according
7731         to rfc2047-allow-irregular-q-encoded-words.
7732
7733 2007-11-25  Romain Francoise  <romain@orebokech.com>
7734
7735         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
7736
7737 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
7738
7739         * tls.el (tls-program): Provide more custom choices from
7740         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
7741         (tls-process-connection-type, tls-success): Remove "*" in doc string.
7742
7743 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7744
7745         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
7746         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
7747
7748         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
7749         `nnmail-spool-file'.
7750
7751         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
7752         `nnmail-spool-file'.
7753
7754         * gnus-move.el (gnus-change-server): Ditto.
7755
7756         * gnus-kill.el (gnus-batch-score): Ditto.
7757
7758         * gnus-cache.el (gnus-jog-cache): Ditto.
7759
7760         * gnus-msg.el (gnus-summary-reply):
7761         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
7762
7763 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7764
7765         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
7766         version.  Minor improvement to doc strings.
7767         (tls-program): Add comment.
7768
7769 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
7770
7771         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
7772         (tls-checktrust): New variable.  Check if GNU TLS complained about a
7773         mismatch between the hostname provided in the certificate and the name
7774         of the host connnecting to.
7775         (open-tls-stream): Use them.  Check certificates against trusted root
7776         certificates.
7777
7778 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7779
7780         * gnus-cache.el (gnus-cache-generate-nov-databases):
7781         Use nnml-generate-nov-databases-directory instead of
7782         nnml-generate-nov-databases-1.
7783
7784 2007-11-24  Glenn Morris  <rgm@gnu.org>
7785
7786         * message.el (message-tool-bar-retro): Update for rename
7787         mail_send.xpm->mail-send.xpm.
7788
7789 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
7790
7791         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
7792         `smime-ldap-search' for Emacs 22 and up.
7793
7794 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7795
7796         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
7797
7798         * message.el (message-send-mail-function): Fix error convention.
7799         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
7800         (message-widen-reply, message-send-mail, message-talkative-question)
7801         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
7802         (message-clone-locals, message-send-news): Use with-current-buffer.
7803         (message-insert-or-toggle-importance): Remove unused var `valid'.
7804         (message-make-references): Remove unused var `new-references'.
7805         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
7806
7807 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
7808
7809         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
7810         (spam-split-symbolic-return-positive): Reflow docstring.
7811         (spam-backends, spam-summary-exit-behavior)
7812         (spam-mark-ham-unread-before-move-from-spam-group)
7813         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
7814         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
7815         (spam-clear-cache, spam-backend-check, spam-install-backend)
7816         (spam-install-statistical-backend, spam-list-of-processors)
7817         (spam-group-processor-p, spam-split, spam-bogofilter-score)
7818         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
7819         (spam-check-crm114, spam-initialize, spam-unload-hook):
7820         Fix typos in docstrings.
7821
7822 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7823
7824         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
7825         been checked if they have never been read and those group levels are
7826         higher than the one that a user specified.
7827
7828 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7829
7830         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
7831         foreign groups unless a group level is specified by a user.
7832         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
7833
7834 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
7835
7836         * message.el (message-send-mail-function): Require sendmail.
7837
7838 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
7839
7840         * message.el (message-send-mail-function): Check for smtpmail too.
7841
7842         * utf7.el (utf7-encode, utf7-decode): Use coding system
7843         `utf-7'/`utf-7-imap' from utf-7.el' if available.
7844
7845         * message.el (message-send-mail-function): New function.
7846         (message-send-mail-function): Set default using
7847         message-send-mail-function.  Adjust doc string.
7848         (message-send-mail-with-mailclient): New function.
7849
7850 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
7851
7852         * smime.el (from):
7853         * rfc2047.el (message-posting-charset):
7854         * qp.el (mm-use-ultra-safe-encoding):
7855         * pop3.el (parse-time-months):
7856         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
7857         * nnml.el (files):
7858         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
7859         (jka-compr-compression-info-list, ange-ftp-path-format)
7860         (efs-path-regexp):
7861         * nndiary.el (files):
7862         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
7863         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
7864         (epg-digest-algorithm-alist, inhibit-redisplay)
7865         (password-cache-expiry):
7866         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
7867         (pgg-output-buffer, password-cache-expiry):
7868         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
7869         (efs-path-regexp):
7870         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
7871         (inhibit-redisplay):
7872         * mm-uu.el (file-name, start-point, end-point, entry)
7873         (gnus-newsgroup-name, gnus-newsgroup-charset):
7874         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
7875         (latin-unity-ucs-list):
7876         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
7877         (mm-uu-binhex-decode-function):
7878         * message.el (gnus-message-group-art, gnus-list-identifiers)
7879         (rmail-enable-mime-composing, gnus-local-organization)
7880         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
7881         (gnus-read-active-file, facemenu-add-face-function)
7882         (facemenu-remove-face-function, gnus-article-decoded-p)
7883         (tool-bar-mode):
7884         * mail-source.el (display-time-mail-function):
7885         * gnus-util.el (nnmail-pathname-coding-system)
7886         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
7887         (gnus-original-article-buffer, gnus-user-agent)
7888         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
7889         (xemacs-codename, sxemacs-codename, emacs-program-version):
7890         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
7891         * gnus-start.el (gnus-agent-covered-methods)
7892         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
7893         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
7894         (gnus-newsgroup-headers, gnus-group-list-mode)
7895         (gnus-group-mark-positions, gnus-newsgroup-data)
7896         (gnus-newsgroup-unreads, nnoo-state-alist)
7897         (gnus-current-select-method, mail-sources)
7898         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
7899         (nnmail-spool-file, gnus-cache-active-hashtb):
7900         * gnus-mh.el (mh-lib-progs):
7901         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
7902         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
7903         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
7904         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
7905         (gnus-group-buffer):
7906         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
7907         (font-lock-set-defaults):
7908         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
7909         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
7910         (gnus-summary-post-menu, total-parts, type, condition, length):
7911         * gnus-agent.el (gnus-agent-read-agentview):
7912         * flow-fill.el (show-trailing-whitespace):
7913         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
7914         eval-and-compile wrappers for byte compiler pacifiers.
7915
7916         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
7917         (mm-display-inline-fontify): Check for featurep 'xemacs not
7918         extent-list.
7919
7920         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
7921         itimer-list.
7922         (mm-create-image-xemacs): Only do something for XEmacs.
7923         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
7924
7925         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
7926
7927         * gnus-registry.el (gnus-adaptive-word-syntax-table):
7928         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
7929
7930 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
7931
7932         * nnimap.el (nnimap-split-download-body):
7933         * gnus-demon.el (gnus-demon):
7934         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
7935
7936 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7937
7938         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
7939         New macros.
7940         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
7941         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
7942         copy data from unibyte buffer to multibyte current buffer.
7943         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
7944         to copy data from unibyte current buffer to multibyte buffer.
7945         (nntp-make-process-buffer): Make process buffer unibyte.
7946
7947         * pop3.el (pop3-open-server): Fix typo in Lisp code.
7948
7949 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
7950
7951         * pop3.el (pop3-open-server): Accept and process data more robustly at
7952         connexion start to avoid spurious "POP SSL connexion failed" errors.
7953
7954 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7955
7956         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
7957         read group names.
7958
7959 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
7960
7961         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
7962
7963 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7964
7965         * nnmail.el (nnmail-parse-active): Make group names unibyte.
7966         (nnmail-save-active): Use a unibyte buffer when saving active file,
7967         which may contain non-ASCII group names.
7968
7969         * nnml.el (nnml-request-group): Decode group names in messages.
7970
7971 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
7972
7973         * message.el (message-citation-line-function)
7974         (message-insert-formatted-citation-line): Fix spelling of
7975         `message-insert-formated-citation-line'.
7976
7977 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
7978
7979         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
7980
7981 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7982
7983         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
7984         nnmail-pathname-coding-system.
7985
7986         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
7987         that a user enters; decode group names in messages.
7988
7989         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
7990
7991 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
7992
7993         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
7994
7995         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
7996
7997         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
7998         risky local variable.
7999
8000         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
8001
8002 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
8003
8004         * encrypt.el: Improve documentation to fix function name typo.
8005         Reported by Daiki Ueno <ueno@unixuser.org>.
8006
8007 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8008
8009         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
8010         even if the point is not in the last page of an article.
8011         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
8012         back to the previous page.
8013
8014 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
8015
8016         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
8017
8018 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8019
8020         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
8021
8022 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8023
8024         * message.el (message-check-news-body-syntax):
8025         Avoid mm-string-as-multibyte.
8026         (message-hide-headers): Don't assume (point-min)==1.
8027
8028 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
8029
8030         * message.el (message-remove-blank-cited-lines): Fix if remove is
8031         given.
8032         (message-bogus-address-regexp): New variable.
8033         (message-bogus-recipient-p): New function.
8034         (message-check-recipients): New command.
8035         (message-syntax-checks): Add `bogus-recipient'.
8036         (message-fix-before-sending): Add `bogus-recipient'.
8037
8038         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
8039         (gnus-treat-body-boundary): Don't test window-system.
8040
8041 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
8042
8043         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
8044
8045 2007-10-28  Miles Bader  <miles@gnu.org>
8046
8047         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
8048         at compile-time too.
8049
8050 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
8051
8052         * gnus-msg.el (gnus-message-setup-hook):
8053         Add `message-remove-blank-cited-lines' to options.
8054
8055 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
8056
8057         * message.el (message-remove-blank-cited-lines): New function.
8058         Suggested by Karl Plästerer.
8059
8060 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8061
8062         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
8063         mapc.
8064
8065         * imap.el (imap-open): Replace mapcar called for effect with mapc.
8066         (top-level): Use mapc to set functions to be traced for debugging.
8067
8068         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
8069         called for effect with while loop.
8070
8071         * message.el (message-talkative-question): Replace mapcar called for
8072         effect with mapc.
8073
8074         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
8075         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
8076         called for effect with dolist.
8077
8078         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
8079
8080         * nndiary.el: Use dolist instead of mapcar to add diary headers to
8081         gnus-extra-headers and nnmail-extra-headers.
8082
8083         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
8084         called for effect with dolist.
8085         (top-level): Use mapc to set functions to be traced for debugging.
8086
8087         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
8088         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
8089         dolist.
8090
8091         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
8092         Replace mapcar called for effect with mapc.
8093         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
8094         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
8095         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
8096         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
8097
8098         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
8099         remove-if that's a cl function.
8100
8101         * webmail.el (webmail-debug): Replace mapcar called for effect with
8102         dolist.
8103
8104         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
8105         with mapc.
8106
8107 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8108
8109         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
8110         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
8111         with while loop.
8112
8113         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
8114         functions from article-* functions.
8115         (gnus-multi-decode-header): Replace mapcar called for effect with
8116         dolist.
8117
8118         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
8119         (gnus-bookmark-show-details): Replace mapcar called for effect with
8120         while loop.
8121
8122         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
8123         called for effect with while loop.
8124
8125         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
8126         with dolist.
8127
8128         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8129         Replace mapcar called for effect with dolist.
8130
8131         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
8132
8133         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
8134         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
8135         Replace mapcar called for effect with dolist.
8136         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
8137         mapc.
8138
8139         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
8140         Replace mapcar called for effect with dolist.
8141         (gnus-topic-list): Replace mapcar called for effect with mapc.
8142
8143         * gnus.el: Use mapc instead of mapcar to add autoloads.
8144
8145 2007-10-23  Richard Stallman  <rms@gnu.org>
8146
8147         * gnus-group.el (gnus-group-highlight): Mark as risky.
8148
8149 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8150
8151         * gnus.el (gnus-server-to-method): Return method found first in
8152         gnus-newsrc-alist.
8153
8154         * gnus-art.el (gnus-article-highlight-signature)
8155         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
8156         button overlay without the front stickiness.
8157
8158 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
8159
8160         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
8161         overview buffer needed a catch to receive its throw.
8162         (gnus-agent-flush-cache): Declare as interactive to make this function
8163         easier to use.
8164
8165 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
8166
8167         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
8168         `next-line'.
8169
8170 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8171
8172         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
8173         exclude address matching message-dont-reply-to-names.
8174
8175 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8176
8177         * gnus-util.el (gnus-string<): New function.
8178
8179         * gnus-sum.el (gnus-article-sort-by-author)
8180         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
8181
8182 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8183
8184         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
8185         the frame-focus tag is set in gnus-buffer-configuration.
8186
8187 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8188
8189         * gnus-art.el (gnus-article-add-button): Make a button overlay without
8190         the front stickiness.
8191
8192 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8193
8194         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
8195         url pattern; remove duplicate one.
8196         (gnus-article-extend-url-button): New function.
8197         (gnus-article-add-buttons): Use it.
8198         (gnus-button-push): Use concatenated url that it makes.
8199
8200 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
8201
8202         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
8203
8204 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8205
8206         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
8207         Don't hardcode point-min==1.
8208
8209 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
8210
8211         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
8212         Fix comment about "iso8859-1".
8213
8214 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
8215
8216         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
8217         ones returned from the verify-function.
8218
8219         * mm-uu.el (mm-uu-pgp-signed-extract-1):
8220         Call mml2015-extract-cleartext-signature if extraction failed.
8221
8222 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
8223
8224         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
8225         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
8226         failed.
8227
8228 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
8229
8230         * Relicense "GPLv2 or later" files to "GPLv3 or later".
8231
8232 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
8233
8234         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
8235         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
8236         recommends to use EasyPG instead of PGG.
8237
8238         * pgg.el: Revert to revision 6.23.2.16.
8239
8240         * pgg-def.el: Revert to revision 6.6.2.14.
8241
8242         * pgg-gpg.el: Revert to revision 6.23.2.34.
8243
8244 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
8245
8246         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
8247         to mark a thread as expirable.  Add variable `hide' to handle hiding of
8248         thread for both the null and zero (kill/expire thread) universal prefix
8249         cases.
8250         (gnus-summary-expire-thread): Add new function to expire a thread,
8251         using gnus-summary-kill-thread.
8252         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
8253         shortcuts for gnus-summary-expire-thread.
8254         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
8255         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
8256
8257 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
8258
8259         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
8260         extras value, so an extras entry can be deleted.
8261         (gnus-registry-delete-extra-entry): Use it.
8262         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
8263         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
8264         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
8265         storage through the gnus-registry, and provide an appropriate API for
8266         it.
8267
8268 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8269
8270         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
8271         Suggested by Leo <sdl.web@gmail.com>.
8272
8273         * gnus.el: Do.
8274
8275 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8276
8277         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
8278         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
8279
8280         * gnus-agent.el (gnus-agent-fetch-headers): Do.
8281
8282         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
8283         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
8284
8285 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8286
8287         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
8288         newline.
8289         (nnmbox-request-accept-article): Don't change article in source buffer;
8290         narrow to header to use message-fetch-field rather than
8291         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
8292         (nnmbox-request-replace-article): Quote lines that'll be misidentified
8293         as delimiters; make sure article ends with newline.
8294         (nnmbox-delete-mail): Correct last position of article to be deleted;
8295         ignore X-Gnus-Newsgroup header in article body.
8296         (nnmbox-save-mail): Quote lines looking like delimiters at the right
8297         positions; make sure article ends with newline.
8298
8299         * message.el (message-display-abbrev): Don't infloop when a user
8300         inserts SPC in the beginning of header.
8301
8302         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
8303         coding-system-for-read and coding-system-for-write for XEmacs having no
8304         file-coding feature.
8305
8306         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
8307
8308 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
8309
8310         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
8311         list of groups not followed by default.  Fix type to be regexp.
8312         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
8313
8314 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
8315
8316         * hmac-def.el (define-hmac-function): Switch from old-style to
8317         new-style backquotes.
8318
8319         * md4.el (md4-make-step): Likewise.
8320
8321 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8322
8323         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
8324         raw-text coding system when saving .newsrc file, which may contain
8325         non-ASCII group names.
8326
8327 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8328
8329         * gnus-cus.el (gnus-score-extra): New widget.
8330         (gnus-score-extra-convert): New function.
8331         (gnus-score-customize): Use it for Extra.
8332
8333 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
8334
8335         * mml2015.el (mml2015-extract-cleartext-signature): New function.
8336         (mml2015-mailcrypt-clear-verify): Use it.
8337         (mml2015-gpg-clear-verify): Use it.
8338         (mml2015-pgg-clear-verify): Use it.
8339         (mml2015-epg-clear-verify): Replace the current part with the output
8340         from GnuPG; don't extract the plaintext by itself.
8341
8342         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
8343         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
8344         mml2015-clear-verify-function; don't touch the armor headers or
8345         dash-escaped text here.
8346
8347 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8348
8349         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
8350         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
8351         parts, or application/octet-stream as a last resort.
8352         (gnus-mime-view-part-as-type): Don't toggle display.
8353         (gnus-mime-view-part-as-charset): Don't turn off display before
8354         querying charset.
8355
8356         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
8357         stuff to undisplayer function in Emacs.
8358         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
8359
8360         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
8361         text/calendar parts.
8362
8363 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8364
8365         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
8366         decoding text/calendar parts.
8367
8368         * message.el (message-forward-make-body-mime): Always mark body as
8369         having no illegible text; remove signed-or-encrypted argument.
8370         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
8371
8372         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
8373         (mml-generate-mime-1): Don't encode body if it is specified to be in
8374         raw form; don't make buffer be unibyte when inserting multibyte string.
8375
8376 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8377
8378         * sha1.el: Fix up comment style.
8379         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
8380         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
8381
8382         * hex-util.el: Fix up comment style.
8383         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
8384
8385         * gnus-salt.el: Use with-current-buffer.
8386         (gnus-pick-setup-message): Fix long-standing typo.
8387
8388 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8389
8390         * imap.el (imap-logout-timeout): New variable.
8391         (imap-logout, imap-logout-wait): New functions.
8392         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
8393
8394         * nnimap.el (nnimap-logout-timeout): New server variable.
8395         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
8396         nnimap-logout-timeout.
8397
8398         * gnus-art.el (gnus-article-summary-command-nosave)
8399         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
8400
8401 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8402
8403         * gnus.el (gnus-maximum-newsgroup): New variable.
8404
8405         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
8406         according to gnus-maximum-newsgroup.
8407
8408         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
8409         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
8410         Limit the range of articles according to gnus-maximum-newsgroup.
8411
8412 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
8413
8414         * gnus-art.el (gnus-sticky-article): Fix problems described in
8415         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
8416         Don't perform gnus-configure-windows here; reuse existing sticky
8417         article buffer.
8418
8419         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
8420         it doesn't exist in gnus-article-mode.
8421
8422 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8423
8424         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
8425         (gnus-agent-decoded-group-name): New function.
8426         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
8427         (gnus-agent-expire-group-1): Use it; decode group name in messages.
8428
8429 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
8430
8431         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
8432         Add binding for gnus-sticky-article.
8433         (gnus-summary-exit): Don't kill sticky article buffers.
8434
8435         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
8436         article buffer.
8437         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
8438         (gnus-kill-sticky-article-buffers): New commands.
8439
8440 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8441
8442         * nntp.el (nntp-xref-number-is-evil): New server variable.
8443         (nntp-find-group-and-number): If it is non-nil, don't trust article
8444         numbers in the Xref header.
8445
8446 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8447
8448         * gnus-agent.el (gnus-agent-read-group): New function.
8449         (gnus-agent-flush-group, gnus-agent-expire-group)
8450         (gnus-agent-regenerate-group): Use it.
8451         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
8452         nnmail-pathname-coding-system.
8453
8454 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8455
8456         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
8457
8458         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
8459         that are unread as unread, and also as selected so that information of
8460         marks having been changed by a user may be updated when exiting group.
8461
8462 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
8463
8464         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
8465
8466 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8467
8468         * gnus-art.el (gnus-mime-display-single): Pass part number that is
8469         calculated ignoring signature parts to gnus-treat-article.
8470
8471 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8472
8473         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
8474         a point here in order to keep the window start.
8475         (gnus-insert-mime-security-button): Make a button overlay without the
8476         front stickiness.
8477         (gnus-mime-display-security): Goto the end of a button.
8478
8479         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
8480
8481 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8482
8483         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
8484         group-name-at-point.
8485         (gnus-group-completing-read): New function that offers decoded
8486         non-ASCII group names for completion.
8487         (gnus-fetch-group, gnus-group-read-ephemeral-group)
8488         (gnus-group-jump-to-group, gnus-group-make-group-simple)
8489         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
8490         (gnus-group-fetch-control): Use it.
8491         (gnus-fetch-group): Use group-name-at-point for the initial value
8492         rather than the default value; use gnus-alive-p.
8493
8494         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
8495         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
8496         (gnus-summary-post-news): Use gnus-group-completing-read.
8497
8498         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
8499         (gnus-read-move-group-name): Decode group name for completion.
8500
8501 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
8502
8503         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
8504         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
8505         Yamaoka slightly modified the code).
8506
8507 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8508
8509         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
8510         (nnmail-split-incoming): Bind it.
8511
8512         * nnml.el (nnml-group-name-charset): New function.
8513         (nnml-decoded-group-name): Use it; don't decode group name if
8514         nnmail-group-names-not-encoded-p is non-nil.
8515         (nnml-encoded-group-name): New function.
8516         (nnml-group-pathname): Inline nnml-decoded-group-name.
8517         (nnml-request-expire-articles): Decode group name in message.
8518         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
8519         nnmail-pathname-coding-system.
8520         (nnml-save-mail, nnml-active-number): Work with decoded group names and
8521         not decoded ones according to nnmail-group-names-not-encoded-p.
8522         (nnml-generate-active-info): Use nnml-encoded-group-name.
8523
8524 2007-08-08  Glenn Morris  <rgm@gnu.org>
8525
8526         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
8527         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
8528         doc-strings and comments.
8529
8530 2007-07-25  Glenn Morris  <rgm@gnu.org>
8531
8532         * Relicense all FSF files to GPLv3 or later.
8533
8534 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8535
8536         * gnus-sum.el (gnus-summary-move-article):
8537         Make gnus-summary-respool-article work.
8538
8539 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
8540
8541         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
8542         string.
8543
8544 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
8545
8546         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
8547         that should be ignored when comparing distant RSS articles with local
8548         ones.
8549         (nnrss-make-hash-index): New function.  Create a hash index according
8550         to the ignored fields.
8551         (nnrss-check-group): Use it.
8552
8553 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8554
8555         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
8556
8557         * gnus-art.el (article-decode-group-name): Decode Xref header too.
8558
8559         * gnus-group.el (gnus-group-make-group): Encode group name here unless
8560         the new optional argument ENCODED is non-nil.
8561         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
8562         coding system for encoding group name.
8563         (gnus-group-make-rss-group): Pass un-encoded group name to
8564         gnus-group-make-group.
8565         (gnus-group-set-info): Tell gnus-group-make-group that group name is
8566         encoded.
8567
8568         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
8569         Encode group name to which articles are moved or copied.
8570         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
8571         coding system for encoding Newsgroup, Followup-To and Xref headers.
8572
8573         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
8574         marks; use nnheader-file-coding-system to write a file.
8575         (nnagent-retrieve-headers): Bind file-name-coding-system to
8576         nnmail-pathname-coding-system.
8577
8578         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
8579
8580         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
8581         (nnml-request-article, nnml-request-create-group)
8582         (nnml-request-rename-group, nnml-find-id)
8583         (nnml-possibly-change-directory, nnml-possibly-create-directory)
8584         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
8585         (nnml-save-marks): Use nnml-group-pathname instead of
8586         nnmail-group-pathname.
8587
8588         (nnml-request-create-group, nnml-request-expire-articles)
8589         (nnml-request-move-article, nnml-request-delete-group)
8590         (nnml-deletable-article-p, nnml-possibly-create-directory)
8591         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
8592         (nnml-open-marks): Bind file-name-coding-system to
8593         nnmail-pathname-coding-system.
8594
8595         (nnml-request-article): Pass server argument to nnml-find-group-number.
8596         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
8597         Pass server argument to nnml-possibly-create-directory.
8598         (nnml-request-accept-article): Pass server argument to
8599         nnml-active-number and nnml-save-mail.
8600         (nnml-find-group-number): Pass server argument to nnml-find-id.
8601         (nnml-request-update-info): Pass server argument to
8602         nnml-marks-changed-p.
8603
8604         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
8605         (nnml-save-mail, nnml-active-number): Add server argument.
8606
8607         (nnml-request-delete-group): Warn if group is missing.
8608         (nnml-get-nov-buffer): Decode group name.
8609         (nnml-generate-active-info): Encode group name.
8610         (nnml-open-marks): Decode group name in messages.
8611
8612 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8613
8614         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
8615         if it is not specified.
8616         (gnus-article-pipe-part, gnus-article-save-part)
8617         (gnus-article-interactively-view-part, gnus-article-copy-part)
8618         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
8619         (gnus-article-inline-part, gnus-article-save-part-and-strip)
8620         (gnus-article-replace-part, gnus-article-delete-part)
8621         (gnus-article-view-part-as-type): Pass raw prefix argument to
8622         gnus-article-part-wrapper.
8623
8624 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8625
8626         * gnus-agent.el (gnus-agent-save-active):
8627         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
8628
8629         * gnus-cache.el (gnus-cache-save-buffers)
8630         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
8631         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
8632         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
8633         (gnus-cache-braid-nov, gnus-cache-braid-heads)
8634         (gnus-cache-generate-active, gnus-cache-rename-group)
8635         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
8636         (gnus-cache-update-overview-total-fetched-for):
8637         Bind file-name-coding-system to nnmail-pathname-coding-system.
8638         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
8639         New variables.
8640         (gnus-cache-decoded-group-name): New function.
8641         (gnus-cache-file-name): Use it.
8642         (gnus-cache-generate-active): Use non-decoded group name for active.
8643
8644         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
8645         right place.
8646         (gnus-write-active-file): Don't break non-ASCII group names.
8647
8648         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
8649         nnmail-pathname-coding-system.
8650
8651         * lpath.el: Bind default-file-name-coding-system,
8652         file-name-coding-system and language-info-alist for XEmacs.
8653
8654         * gnus-uu.el (gnus-uu-decode-save): Typo.
8655
8656 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8657
8658         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
8659
8660 2007-07-14  David Kastrup  <dak@gnu.org>
8661
8662         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
8663         finishing actions if we did not edit the article.
8664
8665 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8666
8667         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
8668         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
8669         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
8670         (gnus-agent-flush-group, gnus-agent-flush-cache)
8671         (gnus-agent-fetch-headers, gnus-agent-load-alist)
8672         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
8673         (gnus-agent-retrieve-headers, gnus-agent-request-article)
8674         (gnus-agent-regenerate-group)
8675         (gnus-agent-update-files-total-fetched-for)
8676         (gnus-agent-update-view-total-fetched-for):
8677         Bind file-name-coding-system to nnmail-pathname-coding-system.
8678         (gnus-agent-group-pathname): Don't encode file names by
8679         nnmail-pathname-coding-system.
8680         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
8681         coding-system-for-write instead of buffer-file-coding-system to
8682         gnus-agent-file-coding-system.
8683
8684         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
8685         Decode group name.
8686
8687         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
8688
8689         * gnus-start.el (gnus-update-active-hashtb-from-killed)
8690         (gnus-read-newsrc-el-file): Make group names unibyte.
8691
8692         * nnmail.el (nnmail-group-pathname): Don't encode file names by
8693         nnmail-pathname-coding-system.
8694
8695         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
8696         (nnrss-request-delete-group): Bind file-name-coding-system to
8697         nnmail-pathname-coding-system.
8698         (nnrss-read-server-data, nnrss-read-group-data):
8699         Bind file-name-coding-system correctly.
8700         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
8701
8702         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
8703         (nntp-server-to-method-cache): New variable.
8704         (nntp-group-pathname): New function that decodes non-ASCII group names.
8705         (nntp-possibly-create-directory, nntp-marks-changed-p)
8706         (nntp-save-marks, nntp-open-marks): Use it.
8707         (nntp-possibly-create-directory, nntp-open-marks):
8708         Bind file-name-coding-system to nnmail-pathname-coding-system.
8709         (nntp-open-marks): Decode group names when bootstrapping marks.
8710
8711         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
8712         Newsgroups and Folowup-To headers.
8713
8714 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8715
8716         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
8717         (gnus-server-closed-face, gnus-server-denied-face)
8718         (gnus-server-offline-face): Remove variable.
8719         (gnus-server-font-lock-keywords): Use faces that are not aliases.
8720
8721         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
8722         of modifying message-stack directly for XEmacs.
8723
8724         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
8725         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
8726         if the coding-system argument is nil for XEmacs.
8727
8728         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
8729         mm-charset-override-alist.
8730
8731         * rfc2047.el: Don't require base64; require rfc2045 for the function
8732         rfc2045-encode-string.
8733         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
8734         to quote the parameter value.
8735
8736 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8737
8738         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
8739         form in gnus-group-name-charset-method-alist.
8740
8741         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
8742         overrides the default layout edit-form.
8743
8744         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
8745
8746         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
8747
8748 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8749
8750         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
8751         as unfetched articles.
8752
8753 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
8754
8755         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
8756
8757 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8758
8759         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
8760         original back end that keeps marks in the local system.
8761
8762 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8763
8764         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
8765         arg of pop-to-buffer for XEmacs.
8766         (gnus-article-read-summary-keys): Ditto; don't restore window
8767         configuration if summary command ends up with neither article buffer
8768         nor summary buffer; describe bindings if summary keys end with C-h.
8769
8770 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8771
8772         * message.el (message-fix-before-sending): Skip raw message part to be
8773         forwarded while checking illegible text.
8774         (message-forward-make-body-mime, message-forward-make-body):
8775         Mark signed or encrypted raw message as having no illegible text.
8776
8777 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8778
8779         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
8780         (gnus-message-with-timestamp-1): New macro.
8781         (gnus-message-with-timestamp): New function.
8782         (gnus-message): Use them.
8783
8784         * nnheader.el (nnheader-message): Use them.
8785
8786 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
8787
8788         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
8789         .newsrc.eld file.
8790
8791 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8792
8793         * gnus-agent.el (gnus-agent-fetch-headers)
8794         (gnus-agent-retrieve-headers):
8795         Bind gnus-decode-encoded-address-function to identity.
8796
8797         * nntp.el (nntp-send-xover-command): Recognize an xover command is
8798         available also when the server returns simply a dot.
8799
8800         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
8801
8802 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8803
8804         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
8805
8806 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8807
8808         * gnus-ems.el (gnus-x-splash): Make it work.
8809
8810         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
8811         from being used.
8812
8813         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
8814
8815 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8816
8817         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
8818         4th and the 5th arguments.
8819
8820         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
8821         the front stickiness.
8822         (gnus-article-summary-command-nosave): Correct the order of the
8823         arguments passed to pop-to-buffer.
8824         (gnus-article-read-summary-keys): Ditto; make it work properly when the
8825         summary command ends up with the article buffer.
8826
8827         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
8828         the same faces.
8829
8830 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
8831
8832         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
8833
8834 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
8835
8836         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
8837         * gnus-sum.el (gnus-summary-highlight):
8838         * pgg.el (pgg-sign-region, pgg-sign):
8839         * mail-source.el (mail-source-delete-old-incoming-confirm):
8840         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
8841
8842 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8843
8844         * gnus-art.el (gnus-mime-view-part-externally)
8845         (gnus-mime-view-part-internally): Fix predicate function passed to
8846         completing-read.
8847
8848         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
8849
8850         * gnus.el (gnus-update-message-archive-method): Add :version.
8851
8852 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8853
8854         * gnus.el (gnus-update-message-archive-method): New variable.
8855
8856         * gnus-start.el (gnus-setup-news): Update saved "archive" method
8857         according to gnus-message-archive-method if
8858         gnus-update-message-archive-method is non-nil.
8859
8860 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8861
8862         * gnus-sum.el (gnus-summary-limit-to-address): New function.
8863         Suggested by Loic Dachary <loic@dachary.org>.
8864         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
8865
8866 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8867
8868         * message.el (message-pop-to-buffer): Add switch-function argument.
8869         (message-mail): Pass switch-function argument to it.
8870
8871 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
8872
8873         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
8874         Improve doc string.
8875
8876 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8877
8878         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
8879         (gnus-header-content)
8880         * gnus-cite.el (gnus-cite-10)
8881         * gnus-srvr.el (gnus-server-closed)
8882         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
8883         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
8884         (gnus-group-mail-3-empty, gnus-group-mail-low)
8885         (gnus-group-mail-low-empty, gnus-splash)
8886         * message.el (message-header-to, message-header-cc)
8887         (message-header-subject, message-header-other, message-header-name)
8888         (message-header-xheader, message-separator, message-cited-text)
8889         (message-mml): Lighten colors of faces used for dark background.
8890
8891 2007-05-24  Simon Josefsson  <simon@josefsson.org>
8892
8893         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
8894         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
8895
8896 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8897
8898         * message.el (message-narrow-to-headers-or-head):
8899         Ignore mail-header-separator in the body.
8900
8901 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8902
8903         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
8904         same as window size.
8905
8906 2007-05-22  Kevin Ryde  <user42@zip.com.au>
8907
8908         * message.el (message-font-lock-keywords): Use message-header-xheader
8909         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
8910         ahead of the anything pattern, to get it recognised.
8911
8912 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8913
8914         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
8915         spam.el loads uses it in the compiled defadvice form.
8916
8917 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
8918
8919         * gnus-sum.el (gnus-articles-to-read)
8920         (gnus-summary-insert-old-articles): Don't truncate group name for
8921         `read-string'.
8922
8923         * gnus-util.el (gnus-limit-string): Delete this function.
8924
8925         * gnus-sum.el (gnus-simplify-subject-fully):
8926         Use `truncate-string-to-width' instead.
8927
8928 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
8929
8930         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
8931         Tell if, on summary exit, the next group has to be selected.
8932         (gnus-summary-exit): Use it.
8933
8934 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
8935
8936         * gnus-art.el (gnus-article-mode): Fix comment about displaying
8937         non-break space.
8938
8939 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8940
8941         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
8942         Check if group is not a directory.
8943         (nnfolder-request-expire-articles): Don't delete articles if the target
8944         group is not available.
8945
8946         * nnml.el (nnml-request-create-group): Properly check if group is not a
8947         file.
8948         (nnml-request-expire-articles): Don't delete articles if the target
8949         group is not available.
8950
8951         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
8952         Don't quote characters that are within parentheses.
8953
8954 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8955
8956         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
8957         (gnus-handle-ephemeral-exit): Select article according to it.
8958
8959 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
8960
8961         * message.el (message-insert-formated-citation-line): Remove newline.
8962         (message-citation-line-format): Add final \n here so that the user can
8963         avoid a blank line.
8964
8965 2007-05-03  Dan Christensen  <jdc@uwo.ca>
8966
8967         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
8968         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
8969         Update lanl/arXiv support.
8970
8971 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
8972
8973         * gnus.el: Bump version number.
8974
8975 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8976
8977         * gnus.el (gnus-version-number): Bump version.
8978
8979 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
8980
8981         * gnus.el: No Gnus v0.6 is released.
8982
8983 2007-04-27  Didier Verna  <didier@xemacs.org>
8984
8985         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
8986         * gmm-utils.el (gmm-regexp-concat): ... here.
8987         * message.el: Don't require 'gnus-util.
8988         (message-dont-reply-to-names): Handle name change above.
8989         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
8990
8991 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8992
8993         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
8994         since the initial value varies according to the system.
8995
8996 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8997
8998         * mm-util.el (mm-charset-synonym-alist): Defcustom.
8999
9000 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
9001
9002         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
9003
9004 2007-04-24  Didier Verna  <didier@xemacs.org>
9005
9006         Improve the type of gnus-ignored-from-addresses.
9007         * gnus-util.el (gnus-orify-regexp): New function.
9008         * message.el (gnus-util): Require it.
9009         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
9010         * gnus-sum.el (gnus-ignored-from-addresses): New function.
9011         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
9012
9013 2007-04-24  Didier Verna  <didier@xemacs.org>
9014
9015         * gnus-sum.el:
9016         * gnus-utils.el: Fix some trailing whitespaces.
9017
9018 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9019
9020         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
9021         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
9022         article's Message-ID; refer parent article in summary buffer.
9023
9024         * message.el (message-bounce): Call mime-to-mml.
9025
9026         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
9027         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
9028         optimize and/or forms properly.
9029
9030 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
9031
9032         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
9033         URL.
9034
9035 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9036
9037         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
9038
9039 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9040
9041         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
9042         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
9043         displayed of multipart/alternative part if it is invoked from summary
9044         buffer.
9045
9046         * mm-view.el (mm-inline-text-html-render-with-w3m)
9047         (mm-inline-text-html-render-with-w3m-standalone)
9048         (mm-inline-render-with-function): Use mail-parse-charset by default.
9049
9050 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
9051
9052         * parse-time.el (parse-time-string-chars): Check if CHAR
9053         is less than the length of parse-time-syntax.
9054
9055 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9056
9057         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
9058         from gnus-newsgroup-processable.
9059
9060 2007-04-16  Didier Verna  <didier@xemacs.org>
9061
9062         * gnus-msg.el (gnus-configure-posting-styles):
9063         Handle message-signature-directory properly with :file syntax.
9064         Reported by "Leo".
9065
9066 2007-04-11  Didier Verna  <didier@xemacs.org>
9067
9068         New user option: message-signature-directory.
9069         * gnus-msg.el (gnus-configure-posting-styles): Support it.
9070         * message.el (message-insert-signature): Ditto.
9071         * message.el (message-signature-file): Doc update.
9072         * message.el (message-signature-directory): New.
9073
9074 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9075
9076         * gnus-msg.el (gnus-inews-yank-articles):
9077         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
9078
9079 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9080
9081         * message.el (message-yank-original): Make sure cited text ends with
9082         newline; don't exchange point and mark.
9083
9084 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
9085
9086         * tls.el (open-tls-stream): Properly handle case where there
9087         is no associated buffer.
9088
9089 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
9090
9091         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
9092         message-yank-original, make sure (< mark TEXT point).
9093
9094 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
9095
9096         * message.el (message-fill-column): New variable.
9097         (message-mode): Use it.  Add comment on a possible new hook.
9098
9099         * nnmail.el (nnmail-spool-file): Mark as obsolete.
9100         (nnmail-get-new-mail): Reformat.
9101
9102         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
9103
9104         * gmm-utils.el: Fix Commentary.
9105         (gmm-tool-bar-from-list): Fix typo in doc string.
9106
9107 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
9108
9109         * message.el (message-yank-original): Don't switch point and mark
9110         unnecessarily to put point and mark as documented.
9111
9112 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9113
9114         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
9115         from the message heads.
9116
9117 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
9118
9119         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
9120         article buffer does not have a window.  This may not be the best
9121         solution but is certainly better than setting the start of the null,
9122         that is the current, window.
9123
9124 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
9125
9126         * gnus-draft.el (gnus-draft-setup-hook): New hook.
9127         (gnus-draft-setup): Run it.
9128
9129         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
9130         gnus-score-fast-scoring.  Allow regexp.
9131         (gnus-score-headers): Use it.
9132
9133         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
9134         XEmacs.
9135
9136         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
9137         string.
9138         (gnus-button-alist): Also catch `<f1> k ...'.
9139         (gnus-treat-display-x-face): Fix doc string.
9140
9141 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9142
9143         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
9144         evaluation of gnus-extended-version to ensure correct generation of the
9145         User-Agent header when message-generate-headers-first is used.
9146
9147 2007-03-24  Simon Josefsson  <simon@josefsson.org>
9148
9149         * hashcash.el (hashcash-generate-payment-async): Don't crash if
9150         hashcash-path is nil.  Don't call callback with incorrect number of
9151         parameters if val is 0.
9152
9153 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9154
9155         * message.el (message-required-news-headers):
9156         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
9157
9158 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
9159
9160         * tls.el (open-tls-stream): In handshake-waiting loop,
9161         don't wait more if there is output available to process.
9162
9163 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
9164
9165         * tls.el (tls-program): Doc fix.
9166
9167 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9168
9169         * message.el (message-generate-new-buffers): Change the meaning of the
9170         nil value; add `standard' to the choices; treat t as `unique'; improve
9171         doc string.
9172         (gnus-select-frame-set-input-focus): Autoload.
9173         (message-buffer-name): Search for the existing message buffer if
9174         message-generate-new-buffers is nil or `standard'; treat the value t of
9175         message-generate-new-buffers as `unique'.
9176         (message-pop-to-buffer): Raise the frame already displaying the message
9177         buffer; clear the echo area after querying.
9178         (message-setup): Pass the `continue' argument to compose-mail.
9179         (message-mail): Prefer `switch-function' if it is given; search for the
9180         existing message buffer if the `continue' argument is non-nil; pass
9181         continue and switch-function arguments to compose-mail by way of
9182         message-setup.
9183         (message-mail-other-window): Adjust argument of message-setup.
9184         (message-mail-other-frame): Ditto.
9185
9186 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9187
9188         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
9189         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
9190         to turn font-lock on when turning gnus-message-citation-mode on.
9191
9192 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
9193
9194         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
9195         (mml-smime-function-alist): New variable; add epg as the backend.
9196         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
9197         mml-smime- functions instead.
9198         * mm-view.el: Require smime.
9199
9200 2007-03-05  Didier Verna  <didier@xemacs.org>
9201
9202         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
9203         instead of just inheritance for posting styles.
9204         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
9205
9206 2007-02-24  Chris Moore  <dooglus@gmail.com>
9207
9208         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
9209         * pgg-pgp.el (pgg-pgp-encrypt-region):
9210         * pgg-gpg.el (pgg-gpg-encrypt-region):
9211         Check pgg-encrypt-for-me if no other recipients.
9212
9213 2007-02-24  John Paul Wallington  <jpw@pobox.com>
9214
9215         * tls.el (tls-certtool-program): Fix custom type.
9216
9217 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9218
9219         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
9220         and point-at-eol instead of line-(beginning|end)-position.
9221
9222         * assistant.el (assistant-parse-buffer): Ditto.
9223
9224         * netrc.el (netrc-parse-services): Ditto.
9225
9226 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
9227
9228         * mml2015.el (mml2015-epg-find-usable-key): New function.
9229         (mml2015-epg-sign): Use it.
9230         (mml2015-epg-encrypt): Use it.
9231
9232 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9233
9234         * message.el (message-make-in-reply-to): Quote name containing
9235         non-ASCII characters.  It will make the RFC2047 encoder cause an error
9236         if there are special characters.  Reported by NAKAJI Hiroyuki
9237         <nakaji@jp.freebsd.org>.
9238
9239 2007-02-27  Didier Verna  <didier@xemacs.org>
9240
9241         Include the group parameters as well as the topic ones in the
9242         inheritance filter process.
9243         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
9244         argument GROUP-PARAMS-LIST.
9245         * gnus-topic.el (gnus-group-topic-parameters): Use it.
9246
9247 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9248
9249         * nntp.el (nntp-never-echoes-commands)
9250         (nntp-open-connection-functions-never-echo-commands): New variables.
9251         (nntp-send-command): Use them.
9252
9253 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
9254
9255         * mml2015.el (mml2015-epg-verify): Simplify.
9256
9257 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9258
9259         * mml.el (mml-content-disposition-alist): New user option.
9260         (mml-content-disposition): New function.
9261         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
9262         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
9263
9264 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
9265
9266         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
9267         verification.
9268
9269 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9270
9271         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
9272         articles posted in the last 24 hours.
9273
9274 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
9275
9276         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
9277
9278 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
9279
9280         * nntp.el (nntp-send-command): Don't wait for echoes when
9281         nntp-open-ssl-stream is used.
9282
9283 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9284
9285         * gnus-cite.el (gnus-test-font-lock-add-keywords)
9286         (gnus-message-add-citation-keywords)
9287         (gnus-message-remove-citation-keywords): Remove.
9288         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
9289         directly, make the variables in font-lock-defaults buffer-local, add
9290         gnus-message-citation-keywords to them and then update the value of
9291         font-lock-keywords.
9292
9293 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9294
9295         * message.el (message-cite-original-1): Don't call
9296         gnus-article-highlight-citation.
9297
9298         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
9299         citations; fix line count.
9300
9301 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9302
9303         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
9304         (gnus-message-add-citation-keywords)
9305         (gnus-message-remove-citation-keywords): Use it; fix the emulating
9306         versions of font-lock-add-keywords and font-lock-remove-keywords to
9307         work with XEmacs correctly.
9308
9309 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9310
9311         * gnus-cite.el (gnus-cite-face-list): Set the values of
9312         gnus-message-max-citation-depth and gnus-message-citation-keywords.
9313         (gnus-message-max-citation-depth): Use defvar rather than defconst.
9314         (gnus-message-cite-prefix-regexp): New variable.
9315         (gnus-message-search-citation-line): Use it; protect against long
9316         citation prefix; fill match data with nil rather than 0 for XEmacs; set
9317         the 0th match data for Emacs.
9318         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
9319         (gnus-message-add-citation-keywords): Append keywords rather than
9320         prepending; emulate font-lock-add-keywords if it is not available.
9321         (gnus-message-remove-citation-keywords):
9322         Emulate font-lock-remove-keywords if it is not available.
9323
9324         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
9325
9326         * message.el (message-cite-prefix-regexp): Set the value of
9327         gnus-message-cite-prefix-regexp.
9328
9329 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9330
9331         * nnweb.el (nnweb-google-parse-1): Update parser.
9332
9333 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
9334
9335         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
9336
9337 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9338
9339         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
9340         regexp.
9341
9342 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9343
9344         * uudecode.el (uudecode-string-to-multibyte): New function emulating
9345         string-to-multibyte.
9346         (uudecode-decode-region-internal): Use it.
9347
9348         * lpath.el: Fbind string-as-multibyte for XEmacs.
9349
9350 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9351
9352         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
9353         Fix custom choice.
9354
9355         * gnus-art.el (gnus-signature-limit): Fix custom choice.
9356
9357 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
9358
9359         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
9360
9361         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
9362         `write-region' to respect `mm-inhibit-file-name-handlers'.
9363
9364 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
9365
9366         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
9367         Use gnus-home-directory instead of "~/" or "$HOME".
9368
9369 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
9370
9371         * encrypt.el (encrypt-insert-file-contents): Add better prompt
9372         to mention filename.
9373         Add comments at beginning regarding usage.
9374         (encrypt-write-file-contents): Change interactive so a string is
9375         acceptable.  If the file has no associated model, show an error instead
9376         of a nonsense prompt.
9377
9378 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
9379
9380         * spam.el (spam-bsfilter-ham-switch): Fix typo.
9381         Thanks to Yoshihiko Yamada for kind notification of this typo.
9382
9383 2007-01-12  Kenichi Handa  <handa@m17n.org>
9384
9385         * uudecode.el (uudecode-decode-region-internal): Make it work in a
9386         multibyte buffer.
9387
9388 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
9389
9390         * gnus-score.el (gnus-score-fast-scoring): New variable.
9391         (gnus-score-headers): Use it.
9392
9393         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
9394
9395         * message.el (message-cite-original-1):
9396         Call gnus-article-highlight-citation if requested.
9397         (message-make-from): Allow name and address as optional arguments.
9398
9399         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
9400
9401         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
9402         bugs to doc string.
9403         (gnus-button-alist): Add mid\\|message-id.
9404         (gnus-button-fetch-group): Extend for use in
9405         `browse-url-browser-function'.
9406         (gnus-button-url-regexp): Try to catch paired parentheses like in
9407         Wikipedia URLs.
9408
9409         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
9410         Suggested by Simon Krahnke <overlord@gmx.li>.
9411
9412 2007-01-13  Romain Francoise  <romain@orebokech.com>
9413
9414         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
9415         Update copyright.
9416
9417 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
9418
9419         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
9420
9421 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
9422
9423         * gnus-registry.el (gnus-registry-unfollowed-groups)
9424         (gnus-registry-split-fancy-with-parent): Fix documentation.
9425
9426 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9427
9428         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
9429         from nnweb groups.
9430
9431 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9432
9433         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
9434         Xref urls.  Erase buffer before requesting head.
9435
9436         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
9437
9438 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
9439
9440         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
9441         customizable.
9442
9443 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
9444
9445         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
9446         no signing key is found.
9447         (mml2015-epg-encrypt): Ask user whether to skip or abort if
9448         no encrypting and/or signing key is found.
9449
9450 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
9451
9452         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
9453
9454 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9455
9456         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
9457         headers read from disk with the ones newly found in the current search.
9458         This should no longer cause problems, because the article numbers in
9459         Gmane's `nov.php' output are ignored since the previous change.
9460
9461 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9462
9463         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
9464
9465 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9466
9467         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
9468         replace-regexp-in-string; bind url-version; fbind display-images-p and
9469         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
9470         find-face and set-itimer-function for Emacs; bind itimer-list for
9471         Emacs.
9472
9473         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
9474
9475 2007-01-01  Romain Francoise  <romain@orebokech.com>
9476
9477         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
9478
9479 2006-12-31  Steve Youngs  <steve@sxemacs.org>
9480
9481         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
9482         `define-minor-mode' macro definition expanded properly.
9483         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
9484         exclude it there.
9485
9486         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
9487         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
9488         `fboundp' test.
9489         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
9490         This is OK to autoload in (S)XEmacs now.
9491
9492 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9493
9494         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
9495         keystroke.
9496         (gnus-summary-limit-to-singletons): Fix typo.
9497
9498         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
9499         else fails.
9500
9501 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9502
9503         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
9504         docstring.
9505
9506         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
9507         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
9508         (gnus-summary-insert-dormant-articles): Fix typo in message.
9509
9510 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
9511
9512         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
9513         nil for XEmacs.
9514         (gnus-message-citation-mode): Don't autoload in XEmacs.
9515
9516         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
9517
9518 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
9519
9520         * nnimap.el (nnimap-expunge-search-string):
9521         Mention nnimap-search-uids-not-since-is-evil in docstring.
9522
9523 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
9524
9525         * spam.el: Revert to make-obsolete-variable because
9526         define-obsolete-variable-alias is not supported in Emacs 21.
9527
9528         * spam.el (spam-ifile-path, spam-ifile-database-path)
9529         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
9530         make-obsolete-variable.
9531         (spam-bsfilter-path, spam-bsfilter-program)
9532         (spam-spamassassin-path, spam-spamassassin-program)
9533         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
9534         Don't use "path" inappropriately.
9535         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
9536         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
9537         variable names.
9538
9539 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
9540
9541         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
9542         summary buffer.
9543
9544         * password.el (password-cache-remove): Use clear-string to burn
9545         password, if available.
9546
9547 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
9548
9549         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
9550
9551         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
9552
9553         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
9554         (gnus-message-highlight-citation): Move defcustom here from
9555         gnus-cite.el.
9556         (gnus-message-citation-mode): Autoload.
9557
9558         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
9559         checks to make it compile with XEmacs.
9560         (gnus-message-citation-mode): New minor mode.
9561         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
9562         (gnus-message-highlight-citation): New variables.
9563         (gnus-message-search-citation-line)
9564         (gnus-message-add-citation-keywords)
9565         (gnus-message-remove-citation-keywords)
9566         (turn-on-gnus-message-citation-mode)
9567         (turn-off-gnus-message-citation-mode): New functions.
9568
9569 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
9570
9571         * gnus-cite.el: Enable highlighting of different citation levels in
9572         message-mode.
9573
9574 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
9575
9576         * message.el (message-make-fqdn): Fix comment.
9577         (message-bogus-system-names): Add ".local".
9578
9579         * spam.el (spam-ifile-path, spam-ifile-program)
9580         (spam-ifile-database-path, spam-ifile-database)
9581         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
9582         Don't use "path" inappropriately.
9583         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
9584         strings.
9585         (spam-check-ifile, spam-ifile-register-with-ifile)
9586         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
9587         Use new variable names.
9588
9589         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
9590         (gnus-treat-display-smileys): Simplify using
9591         gnus-image-type-available-p.
9592
9593         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
9594         available.
9595
9596         * gnus-xmas.el (gnus-xmas-image-type-available-p):
9597         Use `display-images-p' if available.
9598
9599 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9600
9601         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
9602         one after turning on the buffer's multibyteness instead of decoding
9603         them directly in the unibyte buffer that causes unexpected conversion
9604         in Emacs 23 (unicode).
9605
9606 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9607
9608         * message.el (message-generate-hashcash): Fix custom type.
9609
9610 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
9611
9612         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
9613
9614 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
9615
9616         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
9617         disconnect icons.  Add help text.
9618
9619 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
9620
9621         * spam.el (spam-extra-header-to-number): CRM114 spam score is
9622         negated to be consistent with the others we handle.
9623
9624 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9625
9626         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
9627         version of gnus-summary-buffer to something, so that we can use two
9628         article buffers at the same time.
9629
9630 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
9631
9632         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
9633         trigger all the extra headers.
9634         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
9635         sorting.
9636
9637 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9638
9639         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
9640         solid groups.
9641
9642 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
9643
9644         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
9645
9646 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
9647
9648         * legacy-gnus-agent.el: Add Copyright notice.
9649
9650 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
9651
9652         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
9653
9654 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9655
9656         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
9657
9658         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
9659         to make it work reliably in CVS Emacs.
9660         (gnus-summary-limit-strange-charsets-predicate)
9661         (gnus-summary-limit-to-predicate): New functions.
9662
9663 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
9664
9665         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
9666         specifying array size.
9667         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
9668         array if it is too small.
9669         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
9670         (gnus-sort-threads-loop): New function.
9671
9672 2006-12-06  Chris Moore  <dooglus@gmail.com>
9673
9674         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
9675         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
9676
9677 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
9678
9679         * mm-url.el (mm-url-predefined-programs): Call curl with correct
9680         options.
9681
9682 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9683
9684         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
9685         DOS-ing the recipient.
9686
9687         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
9688         the headers when creating the mapping to avoid mismappings.
9689         (nnweb-gmane-create-mapping): Always nix out old mapping.
9690
9691 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9692
9693         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
9694         and mm-verify-option to never.
9695
9696 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9697
9698         * message.el (message-signed-or-encrypted-p): New function.
9699         (message-forward-make-body): Use it.
9700
9701         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
9702         Replace encode-coding-string with mm-encode-coding-string.
9703
9704 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9705
9706         * nneething.el (nneething-decode-file-name):
9707         Replace decode-coding-string with mm-decode-coding-string.
9708
9709         * gnus-int.el (gnus-open-server): Say failed server's name.
9710
9711 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9712
9713         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
9714         strings to a single string.  Quote `errors-file-name'.
9715         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
9716         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
9717         Adjust calls.  Use `shell-quote-argument'.
9718
9719 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
9720
9721         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
9722         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
9723
9724         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
9725         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
9726         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
9727         (gnus-group-make-directory-group, gnus-group-transpose-groups):
9728         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
9729         (gnus-subscribe-newsgroup, gnus-1):
9730         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
9731         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
9732         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
9733         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
9734
9735 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9736
9737         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
9738         keystroke.
9739         (gnus-summary-limit-to-bodies): Implement headersp.
9740
9741 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9742
9743         * dns.el (query-dns): Protect against "Process dns deleted" strings.
9744
9745 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9746
9747         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
9748
9749 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9750
9751         * message.el (message-generate-hashcash): Expand range of values to
9752         include `opportunistic'.
9753         (message-send-mail): Use it.
9754
9755 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9756
9757         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
9758         and comment it.
9759
9760         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
9761
9762 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
9763
9764         * gnus-util.el (gnus-extract-address-components): Improve comment.
9765
9766 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9767
9768         * gnus-util.el (gnus-extract-address-components): Work with address in
9769         which the name portion contains @.
9770
9771         * lpath.el: Fbind custom-autoload.
9772
9773 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
9774
9775         * gnus.el (gnus-start): Move custom group up.
9776         (gnus-select-method): Don't autoload, but make it available for
9777         `customize-variable'.
9778         (gnus-getenv-nntpserver): Don't autoload.
9779
9780 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
9781
9782         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
9783
9784 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
9785
9786         * message.el (message-sendmail-extra-arguments): New variable.
9787         (message-send-mail-with-sendmail): Use it.
9788
9789 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9790
9791         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
9792         mm-with-unibyte-current-buffer to make string unibyte.
9793
9794         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
9795         mm-string-as-multibyte.
9796
9797 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
9798
9799         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
9800         Reported by Werner Koch <wk@gnupg.org>.
9801
9802 2006-11-14  Daiki Ueno  <ueno@p360>
9803
9804         * mml2015.el: Autoload epa-select-keys when compiling.
9805
9806 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
9807
9808         * mml2015.el (mml2015-epg-sign): Save the signing keys in
9809         message-options.
9810         (mml2015-epg-encrypt): Save the recipient keys in message-options.
9811
9812 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
9813
9814         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
9815         EasyPG (< 0.0.6).
9816         (mml2015-always-trust): New user option.
9817         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
9818         prompt.
9819
9820 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9821
9822         * nntp.el (nntp-authinfo-force): New variable.
9823         (nntp-send-authinfo): Use it.
9824
9825 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
9826
9827         * message.el (message-strip-subject-encoded-words): Allow _not_ to
9828         decode encoded words.  Improve prompt.  Add comment about forwarding.
9829         (message-replacement-char): Move up.
9830
9831 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
9832
9833         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
9834         instead of gnus-intersection because arguments of gnus-sorted-nunion
9835         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
9836
9837 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
9838
9839         * message.el (message-strip-subject-encoded-words): Reformat prompt.
9840         (message-simplify-subject-functions):
9841         Enable message-strip-subject-encoded-words by default.
9842
9843 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
9844
9845         * message.el (message-strip-subject-encoded-words): New function.
9846         (message-simplify-subject-functions): New variable.
9847         (message-simplify-subject): Use it.  Fix typo in doc string.
9848         Support message-strip-subject-encoded-words.
9849
9850 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
9851
9852         * gnus-diary.el (gnus-diary-delay-format-function):
9853         * nndiary.el (nndiary-reminders):
9854         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
9855
9856 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
9857
9858         * gnus-art.el (article-hide-boring-headers): Fetch date from
9859         gnus-original-article-buffer to avoid problems with localized date
9860         strings.
9861
9862 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9863
9864         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
9865
9866 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
9867
9868         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
9869         New variables.
9870         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
9871         (mm-charset-synonym-alist): Move some entries to
9872         mm-codepage-iso-8859-list.
9873         (mm-charset-synonym-alist, mm-charset-override-alist):
9874         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
9875
9876 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9877
9878         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
9879
9880 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9881
9882         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
9883         with Emacs 21 and XEmacs.
9884
9885 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
9886
9887         * spam.el (spam-parse-address): New function for better parsing,
9888         catching errors, etc.
9889         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
9890
9891 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9892
9893         * mm-view.el: Add interactive arg to html2text autoload.
9894
9895 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9896
9897         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
9898
9899 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
9900
9901         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
9902         New variables.
9903         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
9904         (mm-charset-synonym-alist): Move some entries to
9905         mm-codepage-iso-8859-list.
9906
9907         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
9908
9909 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
9910
9911         * message.el (message-citation-line-format)
9912         (message-insert-formated-citation-line): Fix implementation of %E, %N
9913         and %n according to the doc string.
9914
9915 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
9916
9917         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
9918         Use car-safe to avoid bad parses.
9919
9920 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9921
9922         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
9923         names.
9924
9925         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
9926
9927 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9928
9929         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
9930         header.
9931
9932         * message.el (message-draft-headers): Add Date.
9933         (message-headers-to-generate): Fix typo in docstring.
9934
9935         * nndraft.el (nndraft-required-headers): New variable.
9936         (nndraft-generate-headers): Use it.
9937
9938         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
9939
9940 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
9941
9942         * gnus-registry.el (gnus-registry-wash-for-keywords)
9943         (gnus-registry-find-keywords): New functions to allow easy searching of
9944         articles that are in the registry.
9945
9946 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
9947
9948         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
9949         Use ietf-drums-parse-address instead of gnus-extract-address-components.
9950         Reported by Damien Elmes <damien@repose.cx>.
9951
9952 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9953
9954         * gnus.el (gnus-mime): Remove unused custom group.
9955
9956 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
9957
9958         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
9959         "blank line" when searching for end of armor headers.
9960
9961 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9962
9963         * gmm-utils.el (gmm-write-region): Fix variable name.
9964
9965 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
9966
9967         * gmm-utils.el (gmm-write-region): New function based on compatibility
9968         code from `mm-make-temp-file'.
9969
9970         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
9971
9972         * nnmaildir.el (nnmaildir--update-nov)
9973         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
9974         Use `gmm-write-region'.
9975
9976 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9977
9978         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
9979         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
9980
9981         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
9982
9983         * message.el (message-replacement-char): New variable.
9984         (message-fix-before-sending): Use it.
9985         (message-simplify-subject): New function to remove duplicate code.
9986         (message-reply, message-followup): Use it.
9987
9988         * gnus-sum.el (gnus-summary-make-menu-bar):
9989         Clarify gnus-summary-limit-to-articles.
9990
9991 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9992
9993         * gnus-util.el (gnus-with-local-quit): New macro.
9994
9995         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
9996
9997 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
9998
9999         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
10000         ignore non-string data.
10001
10002 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
10003
10004         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
10005         non-string data (needs to be done in the registry too).
10006
10007 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
10008
10009         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
10010         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
10011         (gnus-registry-split-fancy-with-parent)
10012         (gnus-registry-fetch-simplified-message-subject-fast)
10013         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
10014         Remove text properties on ingress into the registry and when it's saved.
10015         (gnus-registry-clean-empty-function): Fix bug with cleaning the
10016         registry from entries with no groups.
10017
10018 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
10019
10020         * gnus-util.el (gnus-string-remove-all-properties): Add utility
10021         function to remove string properties.
10022
10023 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10024
10025         * gmm-utils.el (gmm): Adjust custom version.
10026
10027         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
10028         Adjust custom version.
10029
10030         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
10031
10032 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10033
10034         * gnus-art.el (gnus-insert-prev-page-button)
10035         (gnus-insert-next-page-button): Simplify.  Reformat.
10036
10037 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
10038
10039         * gnus-art.el (gnus-insert-prev-page-button)
10040         (gnus-insert-next-page-button): Apply gnus-article-button-face.
10041
10042 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
10043
10044         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
10045
10046 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
10047
10048         * gnus-art.el (gnus-insert-mime-button)
10049         (gnus-insert-mime-security-button):
10050         Apply gnus-article-button-face to MIME and security buttons.
10051
10052 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
10053
10054         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
10055         readable.
10056
10057 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10058
10059         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
10060
10061 2006-09-20  Steve Youngs  <steve@sxemacs.org>
10062
10063         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
10064         `browse-url-of-file' instead of `browse-url'.
10065
10066 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10067
10068         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
10069         regexp.  Articles containing quotation were cut prematurely.
10070
10071 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10072
10073         * message.el (message-cite-original-1): Use nobody by default for the
10074         value of From header.
10075         (message-reply): Ditto.
10076
10077 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
10078
10079         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
10080         to the gnus-info.  This fixes a bug of inline-PGP message verification.
10081         Reported by Michael Piotrowski <mxp@dynalabs.de>.
10082
10083 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
10084
10085         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
10086         mails in the doc string.  Add some URLs in comment.
10087         (pop3-movemail): Warn about pop3-leave-mail-on-server.
10088
10089 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10090
10091         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
10092         backslashes handling and the way to find boundaries of quoted strings.
10093
10094 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
10095
10096         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
10097         mml1991-encrypt-to-self is set and mml1991-signers is not set.
10098         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
10099         mml2015-encrypt-to-self is set and mml2015-signers is not set.
10100
10101 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10102
10103         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
10104         doc string.
10105         (gnus-button-regexp, gnus-button-last): Remove unused variables.
10106
10107 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10108
10109         * lpath.el: Fbind epg-check-configuration.
10110
10111 2006-09-06  Simon Josefsson  <jas@extundo.com>
10112
10113         * mml2015.el (mml2015-use): Doc fix, mention epg.
10114
10115 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
10116
10117         * mml2015.el (mml2015-use): Default to epg, if available.
10118
10119 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
10120
10121         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
10122         message-sender.
10123         (mml1991-epg-encrypt): Ditto.
10124         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
10125         message-sender.
10126         (mml2015-epg-encrypt): Ditto.
10127
10128 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
10129
10130         * message.el (message-send-mail-with-sendmail): Look for sendmail in
10131         several common directories.
10132
10133 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
10134
10135         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
10136         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
10137
10138 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10139
10140         * gnus-art.el (article-decode-encoded-words): Make it fast.
10141
10142 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10143
10144         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
10145
10146         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
10147         in quoted string into `\'.
10148
10149 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10150
10151         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10152         Use standard-syntax-table.
10153
10154 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10155
10156         * gnus-art.el (gnus-decode-address-function): New variable.
10157         (article-decode-encoded-words): Use it to decode headers which are
10158         assumed to contain addresses.
10159         (gnus-mime-delete-part): Remove useless `or'.
10160
10161         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
10162         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
10163         (gnus-nov-parse-line): Use it to decode From header.
10164         (gnus-get-newsgroup-headers): Ditto.
10165         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
10166
10167         * mail-parse.el (mail-decode-encoded-address-region): New alias.
10168         (mail-decode-encoded-address-string): New alias.
10169
10170         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10171         New function.
10172         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
10173         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
10174         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
10175         (rfc2047-decode-string): Ditto.
10176         (rfc2047-decode-address-region): New function.
10177         (rfc2047-decode-address-string): New function.
10178
10179 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
10180
10181         * message.el (message-caesar-buffer-body): Allow rotating headers.
10182
10183         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
10184
10185         * message.el (message-insert-formated-citation-line): Fix %f.
10186         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
10187
10188 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10189
10190         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
10191         (gnus-bookmark-mouse-available-p): New macro.
10192         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
10193         (gnus-bookmark-bmenu-show-infos): Use it.
10194         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
10195         (gnus-bookmark-bmenu-hide-infos): Ditto.
10196         (gnus-bookmark-remove-properties): New function.
10197         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
10198         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
10199         (gnus-bookmark-write-file): Bind coding-system-for-write.
10200         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
10201         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
10202         group before selecting it.
10203         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
10204         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
10205         quit-window if it is not available; use gnus-mouse-2 and bind it to
10206         gnus-bookmark-bmenu-select-by-mouse.
10207         (gnus-bookmark-show-details): Remove unused variable `details-list'.
10208         (gnus-bookmark-bmenu-select-by-mouse): New function.
10209
10210 2006-08-13  Romain Francoise  <romain@orebokech.com>
10211
10212         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
10213         space.
10214
10215 2006-08-10  Romain Francoise  <romain@orebokech.com>
10216
10217         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
10218         (dns-mode-soa-auto-increment-serial): New user option.
10219         (dns-mode-soa-maybe-increment-serial): New function.
10220         (dns-mode): Add the latter to `write-contents-functions'.
10221
10222 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10223
10224         * compface.el (uncompface): Use binary rather than raw-text-unix.
10225
10226 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10227
10228         * compface.el (uncompface): Make sure the eol conversion doesn't take
10229         place when communicating with the external programs.
10230         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
10231
10232 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10233
10234         * nnheader.el (nnheader-insert-head): Fix typo in comment.
10235
10236 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10237
10238         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
10239         Make it more robust by parsing author and date independently.
10240
10241 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10242
10243         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
10244
10245 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
10246
10247         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
10248         first matching secret key.
10249         (mml2015-epg-encrypt): Ditto.
10250
10251         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
10252         first matching secret key.
10253         (mml1991-epg-encrypt): Ditto.
10254
10255         * mml2015.el (mml2015-encrypt-to-self): New user option.
10256         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
10257         mml2015-epg-encrypt-to-self is set.
10258
10259         * mml1991.el (mml1991-encrypt-to-self): New variable.
10260         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
10261         mml1991-epg-encrypt-to-self is set.
10262
10263         * mml2015.el (mml2015-signers): New user option.
10264         (mml2015-epg-sign): Reflect the value of mml2015-signers.
10265         (mml2015-epg-encrypt): Allow to select signing keys.
10266
10267         * mml1991.el (mml1991-signers): New variable.
10268         (mml1991-epg-sign): Reflect the value of mml1991-signers.
10269         (mml1991-epg-encrypt): Allow to select signing keys.
10270
10271 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10272
10273         * nnheader.el (nnheader-insert-head): Make it work even if the file
10274         uses CRLF for the line-break code.
10275
10276 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
10277
10278         * mml2015.el: Require mml-sec instead of password.
10279         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
10280         (mml2015-cache-passphrase): Inherit the default value from
10281         mml-secure-cache-passphrase.
10282         (mml2015-passphrase-cache-expiry): Inherit the default value from
10283         mml-secure-passphrase-cache-expiry.
10284
10285         * mml1991.el: Require mml-sec instead of password.
10286         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
10287         (mml1991-cache-passphrase): Inherit the default value from
10288         mml-secure-cache-passphrase.
10289         (mml1991-passphrase-cache-expiry): Inherit the default value from
10290         mml-secure-passphrase-cache-expiry.
10291
10292         * mml-sec.el: Require password.
10293         (mml-secure-verbose): New user option.
10294         (mml-secure-cache-passphrase): New user option.
10295         (mml-secure-passphrase-cache-expiry): New user option.
10296
10297 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
10298
10299         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
10300         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
10301         andreas@altroot.de (Andreas Vögele).
10302
10303         FIXME: Use `tiny change'?
10304
10305 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10306
10307         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
10308         workaround for the url package included with Emacs.
10309
10310         * nnweb.el (nnweb-google-create-mapping): Update regexp.
10311
10312 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10313
10314         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
10315         correctly.  This fixes a bug caused by the 2006-05-12 change.
10316
10317 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
10318
10319         * nnmail.el (nnmail-article-group): If splitting raises an error, give
10320         some information about the error when saying that the `bogus' mail
10321         group will be used.
10322
10323 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
10324
10325         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
10326         string.
10327
10328 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
10329
10330         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
10331
10332 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10333
10334         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
10335
10336 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
10337
10338         * mml1991.el (mml1991-function-alist): Add epg.
10339         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
10340         (mml1991-epg-encrypt): New functions.
10341
10342 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
10343
10344         * mml2015.el (mml2015-verbose): New variable.
10345         (mml2015-cache-passphrase): Ditto.
10346         (mml2015-passphrase-cache-expiry): Ditto.
10347         (mml2015-function-alist): Add epg.
10348         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
10349         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
10350         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
10351         New functions.
10352
10353 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10354
10355         * message.el (message-cite-original-1): Preserve region when removing
10356         quoted text due to X-No-Archive in order to avoid bogus attribution
10357         when citing multiple messages.
10358
10359 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10360
10361         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
10362         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
10363
10364 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
10365
10366         * gnus-diary.el (gnus-user-format-function-d)
10367         (gnus-user-format-function-D): Autoload.
10368
10369         * imap.el (Commentary): Fix typo.
10370
10371         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
10372         2006-04-22 contribution.
10373
10374 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10375
10376         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
10377         It didn't really fix the bogosity I'm seeing with solid web groups.
10378
10379 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10380
10381         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
10382         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
10383         created using server names.  If we use the feature without declaring
10384         it, Gnus does not properly manage server and group state.
10385
10386         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
10387         bound.
10388
10389 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10390
10391         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
10392         looking up the method using GROUP's prefix before inventing a new one.
10393         It is used on killed/unknown groups in various places where returning
10394         an all-new method isn't expected by the caller.
10395
10396         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
10397         and match semantics of gnus-group-real-prefix.
10398
10399 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
10400
10401         * nnmail.el (nnmail-broken-references-mailers): New variable.
10402         (nnmail-ignore-broken-references): New function generalizing
10403         nnmail-fix-eudora-headers.
10404         (nnmail-fix-eudora-headers): Now obsolete.
10405
10406         * gnus-art.el (gnus-button-handle-custom):
10407         Support `customize-apropos*'.
10408
10409 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10410
10411         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
10412
10413         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
10414         articles.
10415
10416 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
10417
10418         * message.el (message-cite-reply-above): New variable.
10419         (message-yank-original): Use it.
10420
10421 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10422
10423         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
10424
10425 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
10426
10427         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
10428         as read.
10429
10430         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
10431
10432 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
10433
10434         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
10435         (gnus-bookmark-default-file): Use gnus-directory.
10436         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
10437         Remove "*" in doc string.
10438         (gnus-bookmark-write-file): Simplify.
10439         (gnus-bookmark-maybe-sort-alist): Use `when'.
10440         (gnus-bookmark-get-bookmark): Fix typo in doc string.
10441         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
10442         Add FIXME about Emacs 21 and XEmacs compatibility.
10443         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
10444         compatibility.
10445         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
10446         compatibility.
10447         (gnus-bookmark-menu-heading): Fix version.
10448
10449 2006-06-19  Bastien Guerry  <bzg@altern.org>
10450
10451         * gnus-bookmark.el: New file.
10452
10453 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10454
10455         * message.el (message-syntax-checks): Doc fix.
10456
10457 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10458
10459         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
10460         unsubscribed groups as if they were killed ones.  It causes duplicate
10461         entries in gnus-newsrc-alist.
10462
10463 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10464
10465         * message.el (message-syntax-checks): Doc fix.
10466         (message-send-mail): Add check for continuation headers.
10467         (message-check-news-header-syntax): Fix regexp used to check for
10468         continuation headers.
10469
10470 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10471
10472         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
10473
10474 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
10475
10476         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
10477
10478 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10479
10480         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
10481         default-truncate-lines.
10482
10483 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10484
10485         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
10486         to fill the utf-8 entry.
10487
10488         * lpath.el: Fbind unicode-precedence-list.
10489
10490 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10491
10492         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
10493
10494 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
10495
10496         * gnus-agent.el (directory-files-and-attributes): Move all the way
10497         forward (the third and final move).
10498         (gnus-agent-read-agentview): Trap reconstruction errors due to
10499         nonexistent directory.  Handle by returning nil.
10500
10501 2006-05-30  Didier Verna  <didier@xemacs.org>
10502
10503         * message.el (message-dont-reply-to-names): Update the custom type.
10504         * message.el (message-dont-reply-to-names): New defsubst: potentially
10505         convert a list of regexps into a single one.
10506         * message.el (message-get-reply-headers): Use it.
10507         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
10508
10509 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10510
10511         * gnus-agent.el (directory-files-and-attributes): Move forward.
10512
10513 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
10514
10515         * gnus-ml.el (gnus-mailing-list-subscribe)
10516         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
10517         (gnus-mailing-list-message): Fix doc strings.
10518
10519 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10520
10521         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
10522         of doing it manually.
10523
10524 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
10525
10526         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
10527         comment.
10528
10529 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
10530
10531         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
10532         (gnus-agent-read-agentview): Fix handling of end-of-file error.
10533         (gnus-agent-read-local): All symbols allocated in my-obarray.
10534         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
10535         (gnus-agent-regenerate-group): Check numeric names to see if they are
10536         messages or groups.
10537         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
10538         better way of do this...)
10539
10540         * gnus-cache.el (gnus-agent-total-fetched-for):
10541         Ignore 'dummy.group' (there should be a better way of do this...)
10542
10543 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10544
10545         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
10546         (gnus-saved-headers): Ditto.
10547         (gnus-default-article-saver): Mention functions may have properties.
10548         (gnus-article-save): Override gnus-save-all-headers and
10549         gnus-saved-headers by :headers property which saver function may have.
10550         (gnus-summary-save-in-file): Add :headers property.
10551         (gnus-summary-write-to-file): Ditto.
10552
10553         * gnus-sum.el (gnus-summary-save-article): Bind
10554         gnus-prompt-before-saving to t when saving many articles in a file;
10555         always show all headers.
10556
10557         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
10558
10559 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
10560
10561         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
10562         marks.
10563
10564         * message.el (message-indent-citation): Add optional arguments to allow
10565         using it outside of message buffers.
10566
10567         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
10568         (gnus-article-treat-unfold-headers): Use it.
10569         (gnus-article-truncate-lines): New variable.
10570         (gnus-article-mode): Use it.
10571         (gnus-article-toggle-truncate-lines): New function.
10572
10573         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
10574         Add gnus-article-toggle-truncate-lines.
10575
10576         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
10577         coding system in XEmacs, use binary.
10578
10579 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10580
10581         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
10582         after-load-alist.
10583
10584         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
10585         this function should save decoded articles.
10586         (gnus-summary-write-to-file): Use property to specify this function
10587         should save decoded articles and specify gnus-summary-save-in-file
10588         should be used to save articles other than the first one when saving
10589         many articles.
10590         (gnus-summary-save-body-in-file): Use property to specify this
10591         function should save decoded articles.
10592         (gnus-summary-write-body-to-file): Use property to specify this
10593         function should save decoded articles and specify
10594         gnus-summary-save-body-in-file should be used to save articles other
10595         than the first one when saving many articles.
10596
10597         * gnus-sum.el (gnus-summary-save-article): Simplify.
10598
10599 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10600
10601         * gnus-art.el (gnus-default-article-saver):
10602         Add gnus-summary-write-body-to-file.
10603         (gnus-article-save-coding-system): Don't use coding system object
10604         in XEmacs.
10605         (gnus-read-save-file-name): Add optional `dir-var' argument which
10606         specifies directory in which files are saved; work even if optional
10607         `variable' argument is not specified.
10608         (gnus-summary-write-to-file): Read file name.
10609         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
10610         (gnus-summary-write-body-to-file): New function.
10611
10612         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
10613         (gnus-summary-local-variables): Add it.
10614         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
10615         (gnus-summary-save-article): Remove optional `decode' argument;
10616         determine whether to decode articles by the value of
10617         gnus-default-article-saver; when saving many files using
10618         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
10619         it first and use gnus-summary-save-in-file or
10620         gnus-summary-save-body-in-file thereafter unless
10621         gnus-prompt-before-saving is always; move point to article which
10622         will be saved.
10623         (gnus-summary-save-article-file): Revert.
10624         (gnus-summary-write-article-file): Revert.
10625         (gnus-summary-save-article-body-file): Revert.
10626         (gnus-summary-write-article-body-file): New function.
10627
10628 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10629
10630         * gnus-art.el (gnus-default-article-saver): Doc fix.
10631         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
10632         from gnus-summary-save-article-coding-system, and default to a
10633         certain coding system.
10634         (gnus-output-to-file): Add coding cookie and encode text according
10635         to gnus-article-save-coding-system; don't use mm-append-to-file.
10636
10637         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
10638         gnus-art.el and rename to gnus-article-save-coding-system.
10639         (gnus-summary-save-article): Require gnus-art; don't show all
10640         headers if it decodes articles; don't add coding cookie here;
10641         don't bind mm-text-coding-system-for-write.
10642         (gnus-summary-save-article-file): Save decoded articles.
10643         (gnus-summary-write-article-file): When saving many files, use
10644         gnus-summary-write-to-file first and gnus-summary-save-in-file
10645         thereafter unless gnus-prompt-before-saving is always.
10646         (gnus-summary-save-article-body-file): Save decoded articles.
10647
10648         * lpath.el: Fbind select-safe-coding-system for XEmacs.
10649
10650 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10651
10652         * nnrss.el (nnrss-check-group): Bind hash-index.
10653
10654 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
10655
10656         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
10657         its hash index.  Store this hash in `nnrss-group-data'.
10658         (nnrss-read-group-data): Update accordingly.
10659
10660 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10661
10662         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
10663         entry.
10664
10665         * gnus-sum.el (gnus-summary-make-menu-bar):
10666         Add gnus-article-browse-html-article.
10667
10668 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
10669
10670         * gnus-sum.el (gnus-summary-mime-map):
10671         Add gnus-article-browse-html-article.
10672
10673         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
10674
10675 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
10676
10677         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
10678         suitable coding systems in customize.
10679
10680 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
10681
10682         * mail-source.el (mail-sources): Fix custom type.
10683
10684 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
10685
10686         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
10687         (gnus-summary-expire-articles-now): Shorten prompt.
10688
10689         * gmm-utils.el (wid-edit): Require.
10690         (defun-gmm): Rename from `gmm-defun-compat'.
10691         (gmm-image-search-load-path): Use it.
10692         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
10693
10694 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10695
10696         * gnus-sum.el (gnus-summary-save-article-coding-system):
10697         New variable.
10698         (gnus-summary-save-article): Add optional `decode' argument.
10699         If it is set and gnus-summary-save-article-coding-system is non-nil,
10700         save decoded article.
10701         (gnus-summary-write-article-file): Save decoded article if
10702         gnus-summary-save-article-coding-system is non-nil.
10703
10704         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
10705         type.
10706
10707 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10708
10709         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
10710
10711 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10712
10713         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
10714         first to test gnus-single-article-buffer which may be buffer-local.
10715
10716         * gnus-sum.el (gnus-summary-setup-buffer):
10717         Make gnus-single-article-buffer buffer-local and nil in ephemeral
10718         group; make gnus-article-buffer, gnus-article-current, and
10719         gnus-original-article-buffer always buffer-local.
10720         (gnus-summary-exit): Kill article buffer belonging to ephemeral
10721         group.
10722         (gnus-handle-ephemeral-exit): Don't move to next summary line.
10723
10724 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
10725
10726         * nnml.el (nnml-request-compact-group): Compressed files might not
10727         have .gz extension.
10728
10729 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10730
10731         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
10732         (mm-copy-to-buffer): Use with-current-buffer.
10733         (mm-display-part): Simplify.
10734         (mm-inlinable-p): Add optional arg `type'.
10735
10736 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10737
10738         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
10739         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
10740         Try harder to show the attachment internally or externally using
10741         gnus-mime-view-part-as-type.
10742
10743 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
10744
10745         * message.el (message-from-style, message-signature-separator)
10746         (message-user-organization-file, message-send-mail-function)
10747         (message-citation-line-function, message-yank-prefix)
10748         (message-indent-citation-function, message-signature)
10749         (message-signature-file, message-signature-insert-empty-line):
10750         Remove autoloads.
10751
10752         * gnus-art.el (gnus-buttonized-mime-types):
10753         Remove "multipart/signed".  Revert 2006-04-26 change.
10754
10755 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10756
10757         * gnus.el (gnus-version-number): Bump version.
10758
10759 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10760
10761         * gnus.el: No Gnus v0.5 is released.
10762
10763 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10764
10765         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
10766         fetching articles by message-id.
10767
10768 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10769
10770         * message.el (hashcash): Require hashcash as normal.
10771
10772         * ecomplete.el (ecomplete-highlight-match-line):
10773         Use point-at-eol.
10774         (ecomplete-highlight-match-line): Use `highlight', because that
10775         face exists in both Emacs and XEmacs.
10776
10777         * message.el (message-display-abbrev): Use point-at-bol.
10778
10779         * mail-source.el: Don't require timer/timer-funcs.
10780
10781         * gnus-async.el: Ditto.
10782
10783         * password.el: Ditto.
10784
10785         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
10786
10787         * mm-url.el: Ditto.
10788
10789         * gnus-xmas.el: Don't require timer-funcs.
10790
10791         * mm-util.el: Require timer/timer-funcs.
10792
10793 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10794
10795         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
10796         Close.
10797
10798 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10799
10800         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
10801         unibyte after clear-decrypt function runs.
10802
10803         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
10804         returns as a unibyte string.
10805
10806 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10807
10808         * lpath.el: Revert.
10809
10810         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
10811         (pgg-gpg-process-sentinel): Revert.
10812
10813         * pgg-pgp.el (pgg-pgp-process-region): Revert.
10814         (pgg-pgp-lookup-key): Revert.
10815
10816         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
10817         (pgg-pgp5-lookup-key): Revert.
10818
10819         * pgg.el (pgg-fetch-key): Revert.
10820
10821 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10822
10823         * lpath.el: Fbind string-as-multibyte for XEmacs.
10824
10825         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
10826         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
10827         (mml1991-pgg-encrypt): Ditto.
10828
10829         * pgg-gpg.el (pgg-string-to-multibyte): New function.
10830         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
10831         a multibyte buffer.
10832
10833         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
10834         (pgg-pgp-lookup-key): Ditto.
10835
10836         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
10837         (pgg-pgp5-lookup-key): Ditto.
10838
10839         * pgg.el (pgg-fetch-key): Ditto.
10840
10841 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
10842
10843         * message.el (message-user-organization-file): Check several
10844         locations of the organization file.
10845
10846         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
10847         Add gnus-article-view-part-as-type.
10848
10849         * gnus-art.el (gnus-article-view-part-as-type): New function.
10850
10851         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
10852         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
10853
10854         * mml.el: Simplify autoload.
10855         (mml-mode): defvar dnd-protocol-alist instead of using
10856         symbol-value.
10857         (mml-default-directory): New variable.
10858         (mml-minibuffer-read-file): Use it.
10859         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
10860
10861         * message.el (message-citation-line-format): New variable.
10862         (message-insert-formated-citation-line): New function.
10863         (message-citation-line-function):
10864         Add `message-insert-formated-citation-line' to custom type.
10865
10866         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
10867         to doc string.
10868
10869         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
10870         depending on mm-verify-option.
10871
10872 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10873
10874         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
10875         binding pgg-* variables; reimplement the section which prevents
10876         MIME header from being signed.
10877         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
10878         pgg-text-mode; remove a blank line at the top of body.
10879
10880         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
10881         lines at the top of body; use gnus-newsgroup-charset if there's no
10882         Charset header.
10883
10884 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10885
10886         * message.el (message-self-insert-commands): Doc fix.
10887
10888         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
10889         (mm-uu-pgp-encrypted-test): Ditto.
10890         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
10891         between header and body; return application/pgp-encrypted handle
10892         if decryption failed; decode decrypted body by charset.
10893
10894         * mm-decode.el (mm-automatic-display): Don't make application/pgp
10895         element match to application/pgp-*.
10896
10897 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10898
10899         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
10900         HTML.
10901
10902 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10903
10904         * mail-source.el (mail-source-call-script): Message the error
10905         string.
10906
10907 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10908
10909         * gnus-util.el (gnus-byte-compile): Use it.
10910
10911 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
10912
10913         * gnus-util.el (kill-empty-logs): New function.
10914
10915 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10916
10917         * message.el (message-mail-alias-type): Doc fix.
10918         (message-mail-alias-type-p): New function.
10919         (message-send): Use it.
10920         (message-mode): Ditto.
10921         (message-strip-forbidden-properties): Ditto.
10922
10923         * ecomplete.el (ecomplete-database-file-coding-system):
10924         New variable.
10925         (ecomplete-save): Use it.
10926         (ecomplete-setup): Use it.
10927
10928 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10929
10930         * message.el (message-self-insert-commands): New variable.
10931         (message-strip-forbidden-properties): Use it.
10932
10933 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10934
10935         * message.el (message-put-addresses-in-ecomplete): Use a regexp
10936         that doesn't make XEmacs choke.
10937
10938 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
10939
10940         * gnus-util.el (gnus-replace-in-string):
10941         Prefer replace-regexp-in-string over of replace-in-string.
10942
10943 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10944
10945         * gnus-util.el (gnus-select-frame-set-input-focus):
10946         Use select-frame-set-input-focus if it is available in XEmacs; use
10947         definition defined in Emacs 22 for old Emacsen.
10948
10949         * dgnushack.el: Autoload unmorse-region for XEmacs.
10950
10951         * lpath.el: Bind cursor-in-non-selected-windows and
10952         select-frame-set-input-focus for XEmacs.
10953
10954 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10955
10956         * mm-view.el (mm-inline-text): Use equal instead of equalp.
10957
10958 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
10959
10960         * gnus-registry.el (gnus-registry-cache-save): Remove text
10961         properties when saving via the temp buffer.
10962
10963 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10964
10965         * message.el (message-generate-hashcash): Honor custom type.
10966
10967 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10968
10969         * message.el (message-generate-hashcash): Default to non-nil when
10970         hashcash is found.
10971
10972         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
10973         (gnus-refer-thread-limit): Increase default to 500.
10974
10975         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
10976
10977         * flow-fill.el (fill-flowed): Allow delete-space.
10978
10979 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
10980
10981         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
10982         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
10983         Remove autoloads.
10984
10985 2006-04-18  Simon Josefsson  <jas@extundo.com>
10986
10987         * message.el (message-generate-hashcash): Default to.
10988
10989 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10990
10991         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
10992         concatenating segments rather than before concatenating them.
10993
10994 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
10995
10996         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
10997
10998 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10999
11000         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
11001
11002         * message.el (message-forward-make-body-plain):
11003         Allow message-forward-ignored-headers to be a list.
11004         (message-remove-ignored-headers): Factor out into function.
11005         (message-forward-make-body-mml): Use it.
11006
11007         * imap.el (imap-quote-specials): New function.
11008         (imap-login-auth): Quote specials.
11009
11010         * rfc2231.el (rfc2231-parse-string): Remove dead code.
11011         (rfc2231-parse-string): Allow concatanation of parameters that
11012         aren't contiguous.  The test case is
11013           (mail-header-parse-content-type "message/external-body;
11014             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
11015             access-type=LOCAL-FILE;
11016             name*1*=plugh%2fhello-sailor%2fbing.pdf")
11017
11018 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11019
11020         * nntp.el (nntp-accept-process-output): Return the value of
11021         `nnheader-accept-process-output'.
11022
11023 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11024
11025         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
11026         (gnus-button-alist): Recognize more diff formats.
11027         (gnus-button-patch): Strip directory.
11028
11029 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
11030
11031         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
11032         Emacs 22 when setting focus.
11033
11034 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11035
11036         * gnus-art.el (gnus-article-treat-types): Do treatment of
11037         text/x-verbatim parts.
11038         (gnus-button-patch): New command.
11039
11040         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
11041         addresses that contain invalid characters.
11042
11043 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11044
11045         * message.el (message-put-addresses-in-ecomplete):
11046         Use gnus-replace-in-string.
11047         (message-is-yours-p): Use the more correct
11048         mail-header-parse-address instead of
11049         mail-extract-address-components.
11050         (message-put-addresses-in-ecomplete): Fix typo.
11051
11052         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
11053         keystroke.
11054
11055         * gnus-art.el (gnus-treatment-function-alist): Change order of
11056         newsgroups/generic header folding to avoid double-folding.
11057
11058         * message.el (message-hidden-headers): Add X-Draft-From.
11059
11060         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
11061         New command.
11062         (gnus-summary-repeat-search-article-backward): New command.
11063
11064         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
11065         groups in the parent topic.
11066
11067 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
11068
11069         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
11070         (spam-extra-header-to-number): Return the CRM114 number as a
11071         number instead of a string.
11072
11073 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11074
11075         * gnus-art.el (gnus-face-properties-alist): Move here from
11076         gnus-fun.
11077
11078         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
11079
11080 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11081
11082         * message.el (message-strip-forbidden-properties): Only display on
11083         self-insert-command.
11084
11085         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
11086         reindent.
11087         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
11088
11089 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
11090
11091         * smiley.el (smiley-style): Fix typo.
11092
11093 2006-03-23  Kenichi Handa  <handa@m17n.org>
11094
11095         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
11096         instead of set-buffer-multibyte.
11097
11098 2006-03-23  Kenichi Handa  <handa@m17n.org>
11099
11100         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
11101         buffer and then decode the buffer text if necessary.
11102         (rfc2231-encode-string): Be sure to work on multibyte buffer at
11103         first, and after mm-encode-body, change the buffer to unibyte.
11104
11105 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11106
11107         * hashcash.el (hashcash-insert-payment-async-2):
11108         Use message-goto-eoh instead of doing it manually.
11109         (mail-add-payment): Use message-narrow-to-header instead of trying
11110         to do the same itself.
11111
11112         * message.el (message-hidden-headers): Add Face.
11113
11114         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
11115         reparenting code.
11116         (gnus-summary-reparent-children): Refactored out code.
11117         (gnus-summary-thread-map): New keystroke.
11118         (gnus-summary-reparent-children): Make into command.
11119
11120         * smiley.el (smiley-style): Default to `medium' if using a large
11121         font.
11122
11123         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
11124         does it itself.
11125
11126         * message.el (message-point-in-header-p): Simplify definition.
11127
11128 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11129
11130         * nnagent.el (nnagent-request-set-mark): Silence log file
11131         writing.
11132         (nnagent-request-set-mark): Use write-region instead of
11133         append-to-file.
11134
11135         * gnus-sum.el (gnus-read-header): Fudge article number if using a
11136         strange select method.
11137
11138         * ecomplete.el (ecomplete-display-matches): Get highlightling
11139         right.
11140         (ecomplete-display-matches): Use literals.
11141         (ecomplete-display-matches): Disable message logging.
11142
11143         * message.el (message-display-abbrev): Small optimization.
11144
11145         * ecomplete.el (ecomplete-display-matches): Allow automatic
11146         display.
11147
11148         * message.el (message-strip-forbidden-properties):
11149         Display abbrevs.
11150         (message-display-abbrev): Get automatic display right.
11151
11152         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
11153         keystrokes.
11154
11155 2006-04-13  Romain Francoise  <romain@orebokech.com>
11156
11157         TODO: Backport to v5-10!
11158
11159         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
11160         Move here (and rename) from gnus-registry.el.
11161
11162         * gnus-registry.el: Require gnus-util.
11163         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
11164
11165 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11166
11167         * gnus-group.el (gnus-group-catchup-current):
11168         Change if-then-else-if-then-else into cond.
11169         (gnus-group-catchup): Indent.
11170         (group-name-at-point): New function.
11171         (gnus-fetch-group): Provide default from thing at point.
11172
11173 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11174
11175         * message.el (message-display-abbrev): Fix regexp.
11176
11177         * ecomplete.el (ecomplete-highlight-match-line):
11178         Reimplement choosing.
11179         (ecomplete-highlight-match-line): Fix up code rewrite, remove
11180         dead variables.
11181
11182         * message.el (message-newline-and-indent): Remove debugging.
11183         (message-display-abbrev): Use new implementation.
11184
11185 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
11186
11187         * gnus-art.el (gnus-article-mode):
11188         Set cursor-in-non-selected-windows to nil.
11189
11190         * smiley.el: Revert previous change.
11191         (smiley-data-directory): defvar it before using it in the
11192         defcustom of `smiley-style'.
11193
11194 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11195
11196         * message.el (message-newline-and-indent): New function.
11197
11198         * ecomplete.el: Implement more bits.
11199
11200         * message.el (message-put-addresses-in-ecomplete): Clean up the
11201         string.
11202
11203         * ecomplete.el (ecomplete-add-item): Chop off decimals.
11204
11205         * gnus-sum.el (gnus-summary-save-parts):
11206         Bind gnus-summary-save-parts-counter and use it to make unique file
11207         names.
11208
11209         * gnus-art.el (gnus-ignored-headers): Add some more headers.
11210
11211         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
11212         parameter to say whether to actually parse the individual
11213         addresses.
11214
11215         * message.el (message-put-addresses-in-ecomplete): New function.
11216         (ecomplete): Require.
11217         (message-mail-alias-type): Add ecomplete as an option.
11218
11219 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
11220
11221         * flow-fill.el (fill-flowed): Remove trailing space from blank
11222         quoted lines.
11223
11224 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11225
11226         * smiley.el (smiley-style): Move definition later to avoid a
11227         compilation warning.
11228
11229 2006-04-12  Kenichi Handa  <handa@m17n.org>
11230
11231         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
11232         buffer and then decode the buffer text if necessary.
11233         (rfc2231-encode-string): Be sure to work on multibyte buffer at
11234         first, and after mm-encode-body, change the buffer to unibyte.
11235         Use mm-disable-multibyte instead of set-buffer-multibyte.
11236
11237 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11238
11239         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
11240         Content-Type header instead of Content-Disposition header.
11241         (gnus-mime-inline-part): Ditto.
11242         (gnus-mime-view-part-as-charset): Ignore charset that the part
11243         specifies.
11244
11245         * mm-decode.el (mm-display-part): Work with external parts and
11246         usual parts similarly.
11247
11248         * mm-extern.el (mm-inline-external-body): Use mm-display-part
11249         instead of gnus-display-mime.
11250
11251         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
11252         instead of with-temp-buffer.
11253
11254         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
11255         tag to summarized topics part in order to encode non-ASCII text.
11256
11257 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
11258
11259         * smiley.el (smiley-style): New variable.
11260         (smiley-directory): New function.
11261         (smiley-data-directory): Derive from `smiley-style' using
11262         `smiley-directory'.
11263         (smiley-regexp-alist): Add new entries.
11264
11265         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
11266         (gnus-article-browse-delete-temp): Add :version.
11267
11268 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
11269
11270         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
11271         the sieve region.
11272
11273 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11274
11275         * gnus.el (gnus-version-number): Bump version.
11276
11277 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
11278
11279         * gnus.el: No Gnus v0.4 is released.
11280
11281 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11282
11283         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
11284         layout.
11285
11286         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
11287         unknown charset.
11288
11289         * message.el (message-header-synonyms): Add Original-To to the
11290         default.
11291
11292         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
11293         optional parameter.
11294
11295 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
11296
11297         * gnus-fun.el (gnus): Require it for gnus-directory.
11298
11299 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11300
11301         * gnus-fun.el (gnus-face-properties-alist): Add :version.
11302
11303 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
11304
11305         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
11306
11307 2006-04-05  Simon Josefsson  <jas@extundo.com>
11308
11309         * password.el (password-reset): New function.
11310
11311 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
11312
11313         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
11314         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
11315
11316 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11317
11318         * nnweb.el (nnweb-google-create-mapping): Update regexp.
11319         Some whitespace was matched into the url, which broke browsing hits
11320         > 100 when mm-url-use-external was nil.
11321
11322 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11323
11324         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
11325         Check gnus-extra-headers for 'Newsgroups.
11326
11327         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
11328         bound.
11329
11330 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
11331
11332         * pgg-gpg.el: Clean up process buffers every time gpg processes
11333         complete.
11334
11335 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
11336
11337         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
11338         doc string.
11339
11340 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
11341
11342         * pgg-gpg.el (pgg-gpg-process-filter)
11343         (pgg-gpg-wait-for-completion): Check if buffer is alive.
11344
11345         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
11346         lines, temporary fix.
11347
11348 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11349
11350         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
11351
11352 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
11353
11354         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
11355         default-enable-multibyte-characters.  This reverts the change from
11356         revision 6.17 which is no longer necessary because the passphrase
11357         is sent separately now.  GnuPG messages are unreadable under
11358         multibyte locales with default-enable-multibyte-characters set to
11359         nil.
11360
11361 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
11362
11363         * message.el (message-tool-bar-gnome): Move "spell".
11364
11365 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
11366
11367         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
11368         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
11369         instead.
11370
11371 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
11372
11373         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
11374         Improve newsgroups handling for NNTP overviews which don't include
11375         Newsgroups.
11376
11377 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11378
11379         * message.el (message-resend): Bind message-generate-hashcash to nil.
11380
11381 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11382
11383         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
11384         when searching for already-paid recipients.
11385
11386 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
11387
11388         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
11389         passphrases when it is not needed.
11390         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
11391         passphrase stuff from gpg, should only be necessary when you use
11392         gpg with a smartcard.
11393
11394 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11395
11396         * mml.el (mml-insert-mime): Ignore cached contents of
11397         message/external-body part.
11398
11399         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
11400         (mm-insert-part): Ditto.
11401
11402 2006-03-23  Simon Josefsson  <jas@extundo.com>
11403
11404         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
11405         Reiner.
11406         (pgg-gpg-use-agent-p): Use it again.
11407
11408 2006-03-23  Simon Josefsson  <jas@extundo.com>
11409
11410         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
11411         older emacsen.
11412         (pgg-gpg-use-agent-p): Don't use it.
11413
11414 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
11415
11416         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
11417         if we can.
11418
11419 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
11420
11421         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
11422         (pgg-gpg-update-agent): New function.
11423         (pgg-gpg-use-agent-p): New function.
11424         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
11425         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
11426         (pgg-gpg-sign-region): Use it.
11427
11428 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11429
11430         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
11431         Reported by Ralf Wachinger <rwachinger@gmx.de>.
11432
11433 2006-03-21  Simon Josefsson  <jas@extundo.com>
11434
11435         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
11436         <wilde@sha-bang.de>.
11437         (pgg-gpg-use-agent): New variable.
11438         (pgg-gpg-process-region): Use it.
11439         (pgg-gpg-encrypt-region): Likewise.
11440         (pgg-gpg-encrypt-symmetric-region): Likewise.
11441         (pgg-gpg-decrypt-region): Likewise.
11442         (pgg-gpg-sign-region): Likewise.
11443         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
11444
11445 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11446
11447         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
11448
11449         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
11450         Add comment on version.
11451
11452 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
11453
11454         * smiley.el: Add missing test smiley.
11455
11456 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11457
11458         * mm-decode.el (mm-with-part): New macro.
11459         (mm-get-part): Use it; work with message/external-body as well.
11460         (mm-save-part): Treat name and filename equally.
11461
11462         * mm-extern.el (mm-extern-cache-contents): New function.
11463         (mm-inline-external-body): Use it; force the part to be displayed;
11464         move undisplayer added to the cached handle to the parent.
11465
11466         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
11467         (gnus-mime-view-part-as-type): Work with message/external-body.
11468
11469         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
11470
11471 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11472
11473         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
11474         images in image-load-path.  [Sync with image.el, revision 1.60, in
11475         Emacs.]
11476
11477 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11478
11479         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
11480         path rather than symbol.  Always return list of directories.
11481         Guarantee that image directory comes first.  [Sync with image.el,
11482         revision 1.59, in Emacs.]
11483
11484         * message.el (message-make-tool-bar): Adjust to new API of
11485         `gmm-image-load-path-for-library'.
11486
11487         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11488
11489         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
11490
11491 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11492
11493         * gnus-art.el (gnus-article-only-boring-p):
11494         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
11495         intangible text.
11496         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
11497
11498 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
11499
11500         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
11501         Use `defun' instead of `gmm-defun-compat'.
11502
11503 2006-03-14  Simon Josefsson  <jas@extundo.com>
11504
11505         * message.el (message-unique-id): Don't use message-number-base36
11506         if (user-uid) is a float.
11507         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
11508
11509 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11510
11511         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
11512
11513         * gnus-art.el (gnus-mime-display-single): Make sure there is an
11514         empty line between a part and a message part.
11515
11516 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
11517
11518         * smiley.el: Add more test smileys.
11519         (smiley-data-directory, smiley-regexp-alist)
11520         (gnus-smiley-file-types): Fix doc strings.
11521         (smiley-update-cache): Clear smiley-cached-regexp-alist before
11522         adding new elements.
11523         (smiley-mouse-map): Unused code.  Make it a comment.
11524
11525 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11526
11527         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
11528         scan latest NoCeM messages instead of old ones.
11529         (gnus-nocem-check-article): Fix regexps so as to match to PGP
11530         delimiters that are recently used.
11531         (gnus-nocem-load-cache): Add autoload cookie.
11532
11533         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
11534
11535         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
11536         level which is larger than gnus-use-nocem is specified.
11537
11538         * gnus-group.el (gnus-group-get-new-news): Ditto.
11539
11540 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
11541
11542         * gnus-util.el (gnus-tool-bar-update): New function.
11543
11544         * gnus-group.el (gnus-group-update-tool-bar): New variable.
11545         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
11546
11547         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
11548
11549         * gnus-group.el (gnus-group-redraw-when-idle)
11550         (gnus-group-redraw-check): Remove.
11551         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
11552
11553 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11554
11555         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
11556         if optional last element is specified in splits (FIELD VALUE...).
11557
11558 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
11559
11560         * message.el (message-make-tool-bar): Rename gmm-image-load-path
11561         to gmm-image-load-path-for-library.  Call with no-error argument.
11562         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
11563
11564         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11565
11566         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
11567
11568         * gmm-utils.el (gmm-image-load-path): Remove alias.
11569
11570 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
11571
11572         * gmm-utils.el (gmm-image-load-path): Add alias.
11573
11574         * nnml.el (nnml-generate-nov-databases-directory): Rename from
11575         nnml-generate-nov-databases-1.
11576         (nnml-generate-nov-databases): Use it.
11577         (nnml-generate-nov-databases-directory): Document no-active
11578         argument.
11579
11580         * gmm-utils.el (gmm-image-load-path-for-library): Return single
11581         directory if path is t.  Add no-error.
11582
11583         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
11584         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
11585
11586         * gnus-art.el (gnus-article-browse-delete-temp-files):
11587         Simplify resetting gnus-article-browse-html-temp-list.
11588
11589         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
11590         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
11591         Add example to docstring.  Rename local variables.  Move error
11592         checks to default case in cond and simplify.
11593
11594 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11595
11596         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
11597         handle is multipart when calling it recursively.
11598         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
11599
11600 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
11601
11602         * nnimap.el (nnimap-request-update-info-internal): Optimize.
11603         Don't `gnus-uncompress-range' to avoid excessive memory usage.
11604
11605 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11606
11607         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
11608         is loaded.
11609
11610         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
11611         loaded.
11612
11613 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11614
11615         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
11616         to "Emacs 23 (unicode)" in doc string.
11617
11618         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
11619         "Emacs 23 (unicode)" in comment.
11620
11621 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11622
11623         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
11624
11625         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
11626         characters 160 through 255 in Emacs 23.
11627
11628 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
11629
11630         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
11631         gnus-article-browse-html-temp.
11632         (gnus-article-browse-delete-temp): Make it customizable.
11633         Add `file'.  Adjust doc string.
11634         (gnus-article-browse-delete-temp-files): Add argument.
11635         Allow query for each file.  Adjust doc string.
11636         (gnus-article-browse-html-parts):
11637         Add `gnus-article-browse-delete-temp-files' to
11638         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
11639
11640 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
11641
11642         * gnus-art.el (gnus-article-browse-html-temp)
11643         (gnus-article-browse-delete-temp): New variables.
11644         (gnus-article-browse-delete-temp-files): New function.
11645         (gnus-article-browse-html-parts): Use it.
11646
11647 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
11648
11649         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
11650
11651         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
11652         string.
11653
11654         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
11655         gnus-summary-insert-new-articles when unplugged.
11656         Remove gnus-summary-search-article-forward.
11657
11658         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
11659         display-visual-class instead of display-color-cells.
11660
11661 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11662
11663         * dgnushack.el: Autoload customize-group for XEmacs.
11664
11665         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
11666         message/* containing non-ASCII text properly.
11667
11668 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
11669
11670         * message.el: Require gmm-utils, remove autoloads.
11671         (message-tool-bar): Set default based on
11672         gmm-tool-bar-style.
11673         (message-tool-bar-gnome): Add gmm-customize-mode.
11674
11675         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
11676         gmm-tool-bar-style.
11677         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
11678
11679         * gnus-group.el (gnus-group-tool-bar): Set default based on
11680         gmm-tool-bar-style.
11681         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
11682
11683         * gmm-utils.el (gmm-image-directory): Rename variable from
11684         gmm-image-load-path.
11685         (gmm-image-load-path): Use gmm-image-directory.
11686         (gmm-customize-mode): New function.
11687         (gmm-tool-bar-style): New variable.
11688
11689         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
11690         gnus-group-redraw-line-number.
11691         (gnus-group-redraw-check): Simplify.
11692         (gnus-group-tool-bar-update): Remove redraw check.
11693         (gnus-group-make-tool-bar): Add redraw check.
11694
11695 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
11696
11697         * gnus-art.el (gnus-button): Add missing parentheses.
11698
11699 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11700
11701         * lpath.el: Fbind line-number-at-pos.
11702
11703 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11704
11705         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
11706
11707 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
11708
11709         * gnus-art.el (gnus-button): New face.
11710         (gnus-article-button-face): Use it.
11711
11712         * gnus-sum.el (gnus-summary-tool-bar-gnome):
11713         Add gnus-summary-next-page.  Re-order.
11714
11715         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
11716         next-node are now included.
11717         (gnus-group-redraw-line-number): New internal variable.
11718         (gnus-group-redraw-check): Helper function for updating the tool
11719         bar.
11720         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
11721
11722         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
11723
11724         * spam.el (spam-spamassassin-score-regexp): New internal variable.
11725         (spam-extra-header-to-number, spam-check-spamassassin-headers):
11726         Use it to match format of Spamassassin 3.0 and later.
11727         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
11728         (spam-check-bogofilter)
11729         (spam-bogofilter-register-with-bogofilter): Fix args of
11730         `gnus-error' calls.
11731
11732 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
11733
11734         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
11735         unnecessary interaction when sending queued mails.
11736         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
11737
11738 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
11739
11740         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
11741         first or last are nil.
11742
11743 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11744
11745         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
11746
11747 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11748
11749         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
11750
11751 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11752
11753         * dns.el (query-dns): Protect more against buggy tcp output.
11754
11755 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11756
11757         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
11758         nov.php.
11759
11760 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11761
11762         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
11763         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
11764         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
11765         output on the server side.
11766         (nnweb-google-create-mapping): Update regexps and add some
11767         progress indication.
11768
11769 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
11770
11771         * gnus-group.el (gnus-group-tool-bar-gnome):
11772         Fix gnus-agent-toggle-plugged.  Re-order icons.
11773         (gnus-group-tool-bar-gnome):
11774         Add gnus-group-{prev,next}-unread-group.
11775         (gnus-group-tool-bar-gnome): Re-order icons.
11776
11777         * gnus-sum.el (gnus-summary-tool-bar-gnome):
11778         Move gnus-summary-insert-new-articles.
11779
11780         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
11781         Fix comments.
11782
11783         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
11784         also available in Emacs 21.3.
11785
11786         * message.el (message-fix-before-sending): Change "Emacs 22" to
11787         "Emacs 23 (unicode)" in comment.
11788
11789         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
11790         "Emacs 23 (unicode)" in comment.
11791
11792         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
11793         comment.
11794         (mm-coding-system-p): Add comment about no-MULE XEmacs.
11795
11796         * mm-view.el (mm-fill-flowed): Add :version.
11797
11798 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11799
11800         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
11801         and load-path.
11802
11803 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
11804
11805         * message.el: Autoload gmm-image-load-path.
11806         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
11807         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
11808         consitency.
11809
11810         * gmm-utils.el (gmm-image-load-path): Also search in
11811         "../etc/images".  Don't set gmm-image-load-path if we don't find
11812         the image.
11813
11814 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11815
11816         * gmm-utils.el (gmm-image-load-path): Don't make
11817         `gmm-image-load-path' include subdirectories which the second arg
11818         `image' might specify.
11819
11820         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
11821         subdirectory to icon file names.
11822
11823         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
11824
11825 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11826
11827         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
11828         gmm-image-load-path calls.
11829
11830         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11831
11832         * message.el (message-make-tool-bar): Ditto.
11833
11834         * mml.el (mml-preview): Add comment concerning tool bar icons.
11835
11836         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
11837         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
11838
11839         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
11840         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
11841
11842         * message.el (message-tool-bar-gnome): Use new icon names.
11843         (message-make-tool-bar): Use `gmm-image-load-path'.
11844
11845         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
11846         New functions from MH-E.
11847         (gmm-image-load-path): New variable from MH-E.
11848         (gmm-image-load-path): New function from MH-E.  Add arguments
11849         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
11850         *-image-load-path-called-flag.
11851
11852 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
11853
11854         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
11855
11856 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
11857
11858         * nnimap.el (nnimap-request-move-article): Change folder back to
11859         source group before deleting.
11860
11861 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
11862
11863         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
11864
11865         * gnus-art.el (mm-url-insert-file-contents-external):
11866         Autoload mm-url.
11867
11868         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
11869
11870 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11871
11872         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
11873         coding system which mm-charset-to-coding-system returns for a
11874         given charset is valid.
11875
11876 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
11877
11878         * html2text.el (html2text-remove-tag-list):
11879         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
11880
11881 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
11882
11883         * gnus-cus.el: Revert 2005-10-17 change.
11884
11885 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11886
11887         * gnus-art.el (article-strip-banner):
11888         Call article-really-strip-banner only when the regexp match is made.
11889
11890 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11891
11892         * gnus-art.el (article-strip-banner):
11893         Use gnus-extract-address-components instead of
11894         mail-header-parse-addresses to make it work with non-ASCII text;
11895         remove mail-encode-encoded-word-string.
11896
11897         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
11898         values which are surrounded with \"...\"; make it never cause a
11899         Lisp error; give up parsing of parameters if it failed in
11900         extracting type.
11901
11902 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
11903
11904         * smime.el (smime-cert-by-ldap-1): Fix bug where
11905         `smime-ldap-search' returns results without userCertificates.
11906
11907 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11908
11909         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
11910
11911 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11912
11913         * spam.el (spam-check-spamassassin-headers): Adapt format for
11914         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
11915         <ari@mbf.ocn.ne.jp>.
11916         (spam-list-of-processors): Add spam-use-gmane.
11917
11918 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11919
11920         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
11921         make-temp-file; make it work with XEmacs as well.
11922
11923         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
11924         mm-make-temp-file.
11925
11926         * mm-decode.el (mm-display-external): Use the 3rd arg of
11927         mm-make-temp-file.
11928         (mm-create-image-xemacs): Ditto.
11929
11930 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11931
11932         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
11933         with message-narrow-to-headers.
11934         (gnus-draft-setup): Narrow to header to run message-fetch-field.
11935         (gnus-draft-check-draft-articles): New function.
11936         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
11937
11938 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11939
11940         * gnus-art.el (gnus-article-browse-html-parts):
11941         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
11942         Don't use suffix argument for mm-make-temp-file for Emacs 21
11943         compatibility.  Remove useless `format'.
11944
11945 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
11946
11947         * nnweb.el (nnweb-google-wash-article): Update regexps.
11948         (nnweb-group-alist): Use defvoo instead of defvar.
11949
11950 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11951
11952         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
11953         re-loading nn* modules.
11954
11955 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
11956
11957         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
11958         for `tool-bar-mode' and don't check it's default-value.
11959
11960         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
11961
11962         * message.el (message-make-tool-bar): Ditto.
11963
11964         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
11965         `substring'.  Shorten tmp-file name.
11966
11967         * gnus.el: Remove bogus comment.
11968
11969 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
11970
11971         * gnus-art.el (gnus-article-browse-html-parts): New function.
11972         (gnus-article-browse-html-article): New function for viewing html
11973         articles with a browser.
11974
11975 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
11976
11977         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
11978         in elisp.
11979         (pgg-gpg-encrypt-symmetric-region): Ditto.
11980         (pgg-gpg-sign-region): Ditto.
11981
11982         * pgg-def.el (pgg-text-mode): New variable.
11983
11984         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
11985         (mml2015-pgg-encrypt): Ditto.
11986
11987         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
11988         (mml1991-pgg-encrypt): Ditto.
11989
11990 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11991
11992         * nnfolder.el (nnfolder-insert-newsgroup-line):
11993         Use message-make-date instead of current-time-string.
11994
11995         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
11996         to gnus-decoded which mm-uu might set.
11997
11998 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11999
12000         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
12001         don't decode quoted parameters; remove misimported Emacs code.
12002         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12003         (rfc2231-decode-encoded-string): Don't use split-string which
12004         behaves differently according to Emacs version; use
12005         mm-decode-coding-region to convert charset to coding-system.
12006         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12007         (rfc2231-encode-string): Remove misimported Emacs code.
12008
12009 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12010
12011         * gnus-art.el (article-decode-charset): Don't use ignore-errors
12012         when calling mail-header-parse-content-type.
12013         (article-de-quoted-unreadable): Ditto.
12014         (article-de-base64-unreadable): Ditto.
12015         (article-wash-html): Ditto.
12016
12017         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
12018         calling mail-header-parse-content-type and
12019         mail-header-parse-content-disposition.
12020         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
12021         mail-header-parse-content-type.
12022
12023         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
12024         insert charset and format parameters; encode description after
12025         inserting it to buffer.
12026         (mml-insert-parameter): Fold lines properly even if a parameter is
12027         segmented into two or more lines; change the max column to 76.
12028
12029         * rfc1843.el (rfc1843-decode-article-body): Don't use
12030         ignore-errors when calling mail-header-parse-content-type.
12031
12032         * rfc2231.el (rfc2231-parse-string): Return at least type if
12033         possible; don't cause an error even if it fails in parsing of
12034         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12035         (rfc2231-encode-string): Don't break lines at the beginning, leave
12036         it to mml-insert-parameter.
12037
12038         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
12039         calling mail-header-parse-content-type.
12040
12041 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
12042
12043         * spam-report.el (spam-report-gmane-use-article-number):
12044         Improve doc string.
12045         (spam-report-gmane-internal): Check if a suitable header was found
12046         in the article.
12047
12048 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12049
12050         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
12051         (rfc2231-encode-string): Make param*=value always begin with LWSP.
12052
12053 2006-02-05  Romain Francoise  <romain@orebokech.com>
12054
12055         Update copyright notices of all files in the gnus directory.
12056
12057 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12058
12059         * nnweb.el (nnweb-request-group): Avoid growing overview files.
12060
12061 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12062
12063         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
12064         segmented lines of parameter value to cope with Thunderbird 1.5
12065         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
12066         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12067         (rfc2231-encode-string): Don't make lines exceeding 76 column.
12068
12069 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
12070
12071         * mml.el (mml-generate-mime-1): Correct the order of inline signed
12072         parts.
12073
12074 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12075
12076         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
12077         there's only one active file for all servers.
12078         (nnweb-request-scan): Make sure nnweb-articles is initialized on
12079         solid groups.  Gnus might have used a FAST request to select the group.
12080         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
12081         and nnweb-search redundantly in the active file.
12082         (nnweb-request-list): Don't list bogus groups.  There can only be one.
12083         (nnweb-request-create-group): Don't use ARGS.
12084         (nnweb-possibly-change-server, nnweb-request-group): Remove some
12085         initialisations.  Let nnoo do the work.
12086
12087 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12088
12089         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
12090         Say the part has been decoded.
12091
12092         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
12093
12094 2006-01-31  Kevin Ryde  <user42@zip.com.au>
12095
12096         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
12097         mailcap-viewer-test-cache when there's no 'test clause, since that
12098         will invert the meaning of a "nil" test previously determined by
12099         mailcap-mailcap-entry-passes-test.
12100
12101 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12102
12103         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
12104         compiling.
12105
12106         * gnus-sum.el: Ditto.
12107
12108         * message.el: Don't bind tool-bar-map when compiling.
12109
12110 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
12111
12112         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
12113
12114 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12115
12116         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
12117         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
12118         current Google Groups.
12119
12120 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
12121
12122         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
12123         and tool-bar-mode.
12124
12125         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
12126         and tool-bar-mode.
12127
12128         * message.el (message-tool-bar-update): Simplify.
12129         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
12130
12131         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
12132         gnus-summary-buffer.
12133         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
12134         gnus-summary-reply.
12135
12136         * gmm-utils.el (gmm): Add :version.
12137
12138 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12139
12140         * Makefile.in (clean): New rule.
12141         (distclean): Use it.
12142
12143 2006-01-26  Steve Youngs  <steve@sxemacs.org>
12144
12145         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
12146         Don't autoload.
12147
12148 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12149
12150         * gmm-utils.el (gmm-verbose): Add :group.
12151
12152 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
12153
12154         * message.el: Change some comments WRT tool-bars.
12155
12156         * gnus-sum.el (gnus-summary-tool-bar)
12157         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
12158         (gnus-summary-tool-bar-zap-list): New variables.
12159         (gnus-summary-make-tool-bar): Complete rewrite using
12160         `gmm-tool-bar-from-list'.
12161
12162         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
12163         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
12164         New variables.
12165         (gnus-group-make-tool-bar): Complete rewrite using
12166         `gmm-tool-bar-from-list'.
12167         (gnus-group-tool-bar-update): New function.
12168
12169         * message.el (message-mode-field-menu): Add "Show hidden Headers".
12170
12171 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12172
12173         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
12174         is dissected into a single part of which the type is the same as
12175         the given one; decode charset.
12176
12177 2006-01-21  Kevin Ryde  <user42@zip.com.au>
12178
12179         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
12180         into alists as symbol not string, since that's what
12181         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
12182         look for.
12183
12184 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
12185
12186         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
12187         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
12188
12189         * message.el (message-tool-bar-gnome): Use gmm-ignore.
12190
12191 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12192
12193         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
12194         (gnus-xmas-mime-security-button-menu): New function.
12195
12196         * gnus-art.el (gnus-mime-security-button-commands): New variable.
12197         (gnus-mime-security-button-menu): New definition.
12198         (gnus-mime-security-button-map): Use them.
12199         (gnus-mime-security-button-menu): New function.
12200         (gnus-insert-mime-security-button): Addition to help echo.
12201         (gnus-mime-security-run-function, gnus-mime-security-save-part)
12202         (gnus-mime-security-pipe-part): New functions.
12203
12204         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
12205         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
12206
12207         * mm-decode.el (mm-handle-set-disposition): Remove.
12208         (mm-handle-set-description): Remove.
12209
12210 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12211
12212         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
12213         (mm-w3m-standalone-supports-m17n-p): New function.
12214         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
12215         w3m usage.
12216
12217         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
12218         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
12219
12220 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
12221
12222         * message.el (message-tool-bar-zap-list):
12223         Use gmm-tool-bar-zap-list as custom type.
12224         (message-tool-bar-update): New function.
12225         (message-tool-bar, message-tool-bar-gnome)
12226         (message-tool-bar-retro): Add message-tool-bar-update.
12227         (message-tool-bar-gnome): Add flyspell-buffer.
12228
12229         * gnus-util.el (gnus-error): Describe `args'.
12230
12231         * gmm-utils.el (gmm-error): Describe `args'.
12232         (gmm-tool-bar-zap-list): New widget.
12233         (gmm-tool-bar-from-list): Improve description of `zap-list'.
12234
12235 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12236
12237         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
12238         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
12239         the number of recursive calls.
12240
12241         * mm-decode.el (mm-handle-set-disposition): New macro.
12242         (mm-handle-set-description): New macro.
12243
12244 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12245
12246         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
12247         encoding.
12248
12249 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
12250
12251         * message.el (message-tool-bar-zap-list, message-tool-bar)
12252         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
12253         (message-tool-bar-local-item-from-menu): Remove.
12254         (message-tool-bar-map): Replace by `message-make-tool-bar'.
12255         (message-make-tool-bar): New function.
12256         (message-mode): Use `message-make-tool-bar'.
12257
12258         * gmm-utils.el: New file.
12259         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
12260         (gmm-lazy): New widget copied from `nnmail.el'.
12261         (gmm-tool-bar-from-list): New function for creating customizable
12262         tool bars.
12263         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
12264         output.
12265         (gmm): Add :prefix to defgroup.
12266
12267 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
12268
12269         * gmm-utils.el (gmm-widget-p): New function.
12270
12271 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
12272
12273         * mml.el (mml-attach-file): Describe `description' in doc string.
12274         (mml-menu): Add Emacs MIME manual and PGG manual.
12275
12276 2006-01-20  Richard M. Stallman  <rms@gnu.org>
12277
12278         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
12279
12280 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
12281
12282         * nntp.el (nntp-end-of-line): Doc fix.
12283
12284 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
12285
12286         * imap.el (imap-open): Handle case where buffer is a buffer
12287         object.
12288
12289 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12290
12291         * gnus-delay.el (gnus-delay): Don't autoload.
12292         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
12293         to be re-loaded when customizing the `gnus-delay' group.
12294
12295 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
12296
12297         * message.el (message-insert-citation-line): Use newlines.
12298
12299 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
12300
12301         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12302         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
12303         these routines, so the passphrase can be managed externally and
12304         passed in to the system.
12305         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12306         pgg-add-passphrase-to-cache function.
12307
12308         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12309         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
12310         these routines, so the passphrase can be managed externally and
12311         passed in to the system.
12312         (pgg-pgp5-sign-region): Use new name of
12313         pgg-add-passphrase-to-cache function.
12314
12315 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
12316
12317         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12318         part of the decoded armor to find the key-identifier.
12319         (pgg-gpg-lookup-key-owner): New function to return the
12320         human-readable identifier of a key owner.
12321         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
12322         itself.
12323         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
12324         the key value) if we have a key and can match it against a secret
12325         key.  Also, added a note pointing out fact that the prompt only
12326         indicates the first matching key.
12327
12328         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
12329         pgg-decrypt-region.
12330         (pgg-add-passphrase-to-cache): Rename from
12331         `pgg-add-passphrase-cache' to reduce confusion (all callers
12332         changed).
12333         (pgg-remove-passphrase-from-cache): Rename from
12334         `pgg-remove-passphrase-cache' to reduce confusion (all callers
12335         changed).
12336         (pgg-read-passphrase, pgg-add-passphrase-cache)
12337         (pgg-remove-passphrase-cache): Add informative docstrings.
12338         (pgg-decrypt): Convey provided passphrase in subordinate call to
12339         pgg-decrypt-region.
12340
12341 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
12342
12343         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
12344         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
12345         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
12346         'passphrase' argument, so the passphrase can be managed externally
12347         and then passed in to the system.
12348
12349         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
12350         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
12351         so the passphrase cache can be used reliably with identifiers
12352         besides a pgp packet's key id.
12353
12354         * pgg-gpg.el (pgg-gpg-encrypt-region)
12355         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12356         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
12357         these routines, so the passphrase can be managed externally and
12358         passed in to the system.
12359
12360         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
12361         'notruncate' argument, so the passphrase cache can be used
12362         reliably with identifiers besides a pgp packet's key id.
12363
12364 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
12365
12366         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
12367         symmetric encryption.
12368         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
12369         encrypted session key.
12370         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
12371         message ask for the passphrase in a proper way.
12372
12373         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
12374         New user commands for symmetric encryption.
12375
12376 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12377
12378         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
12379
12380         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
12381
12382 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
12383
12384         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
12385
12386 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12387
12388         * mm-decode.el (mm-inlined-types): Add application/pgp.
12389         (mm-automatic-display): Ditto.
12390
12391         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
12392         part as text.
12393
12394 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12395
12396         * nnrss.el: Update copyright.
12397         (nnrss-opml-import): Query whether to subscribe to each entry.
12398
12399         * gnus-art.el:
12400         * gnus-sum.el:
12401         * gnus-xmas.el:
12402         * messagexmas.el:
12403         * mm-uu.el:
12404         * mm-view.el: Update copyright.
12405
12406 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
12407
12408         * message.el (message-info): New function.
12409         (message-mode-menu): Add it.
12410         Update copyright.
12411
12412         * ChangeLog: Fix and update copyright.
12413
12414 2006-01-13  Romain Francoise  <romain@orebokech.com>
12415
12416         * message.el (message-forward-subject-name-subject): Prefer the
12417         address to 'nowhere' if the sender has no name.
12418         Fix typo.  Update copyright year.
12419
12420 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12421
12422         * gnus-art.el (article-wash-html):
12423         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
12424         (gnus-article-wash-html-with-w3m-standalone): New function.
12425
12426         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
12427         mm-inline-text-html-render-with-w3m-standalone.
12428         (mm-text-html-washer-alist): Map w3m-standalone to
12429         gnus-article-wash-html-with-w3m-standalone.
12430         (mm-inline-text-html-render-with-w3m-standalone): New function.
12431
12432 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
12433
12434         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
12435         Improve LaTeX.
12436
12437 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12438
12439         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
12440         (nnrss-request-article): Render text/plain parts as HTML.
12441
12442         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
12443         the buffer.
12444
12445 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12446
12447         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
12448         custom definition of `gnus-posting-styles'.
12449
12450         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
12451         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
12452
12453 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12454
12455         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
12456         Use nntp for bug archive.
12457
12458 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12459
12460         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
12461         parts.
12462         (nnrss-normalize-date): New function converts ISO 8601 date into
12463         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
12464         (nnrss-check-group): Use it.
12465
12466 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12467
12468         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
12469
12470         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
12471         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
12472         (nnrss-insert-w3): Ditto.
12473
12474 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12475
12476         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
12477         the articles to be forwarded including the case where neither a
12478         number of articles nor a region is specified.
12479
12480 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12481
12482         * nnrss.el (nnrss-request-article): Fix last change; fill
12483         text/plain parts.
12484
12485 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12486
12487         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
12488         in text/plain part.
12489         (nnrss-check-group): Don't add excessive newline to dc:subject.
12490
12491 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
12492
12493         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
12494         article.
12495
12496 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12497
12498         * nnml.el: Don't require gnus-bcklg.  Autoload it.
12499         (nnml-use-compressed-files, nnml-save-mail): Support other
12500         comression programs such as bzip2.
12501
12502 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12503
12504         * dns.el (query-dns): Make sure we check the buffer size before
12505         removing tcp headers.
12506
12507 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12508
12509         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
12510         remove MIME buttons associated with multipart/alternative parts.
12511         (gnus-mime-display-alternative): Tag buttons using `article-type'
12512         text property.
12513
12514         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
12515         associated with multipart/alternative parts.
12516
12517         * gnus-art.el (gnus-signature-separator): Fix custom type.
12518
12519         * mm-decode.el (mm-inlined-types): Fix custom type.
12520         (mm-keep-viewer-alive-types): Ditto.
12521         (mm-automatic-display): Ditto.
12522         (mm-attachment-override-types): Ditto.
12523         (mm-inline-override-types): Ditto.
12524         (mm-automatic-external-display): Ditto.
12525
12526 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12527
12528         * spam-report.el (spam-report-user-mail-address)
12529         (spam-report-user-agent): New variables.
12530         (spam-report-url-ping-plain): Use spam-report-user-agent.
12531
12532 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
12533
12534         * gnus-art.el (gnus-button-handle-custom): Do not just use
12535         `customize-apropos' for any "M-x customize-*" button but the
12536         function called for.  Accept both the function name and its
12537         argument in order to achieve this.
12538         (gnus-button-alist): Remove support for "custom:" URL's.
12539         Pass function name to `gnus-button-handle-custom' in case of "M-x
12540         customize-*" buttons.
12541
12542 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12543
12544         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
12545         multipart/alternative and add xref to mm-discouraged-alternatives
12546         in doc string.
12547
12548         * mm-decode.el (mm-discouraged-alternatives): Add xref to
12549         gnus-buttonized-mime-types in doc string.
12550
12551 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
12552
12553         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
12554         Suggest image/.* in the doc string.
12555
12556 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
12557
12558         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
12559         message-marks (Debian bug #342521).
12560
12561 2005-12-12  Simon Josefsson  <jas@extundo.com>
12562
12563         * password.el (password-read-from-cache): Add.
12564         (password-read): Use it.
12565
12566 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12567
12568         * rfc2047.el (rfc2047-charset-to-coding-system):
12569         Recognize us-ascii as a MIME charset.
12570
12571         * mm-bodies.el (mm-decode-content-transfer-encoding):
12572         Protect against the case where the 2nd arg TYPE is nil.
12573
12574 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
12575
12576         * pop3.el (pop3-stream-type): Fix custom version.
12577
12578         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
12579
12580 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12581
12582         * mm-decode.el (mm-display-external): Add missing cdr.
12583
12584 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12585
12586         * mm-decode.el (mm-display-external): Use nametemplate (defined in
12587         RFC1524) if it is in mailcap or add a suffix according to
12588         mailcap-mime-extensions when generating a temp filename; postpone
12589         deleting a temp file for 2 seconds for some wrappers, shell
12590         scripts, and so on, which might exit right after having started a
12591         viewer command as a background job.
12592
12593 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
12594
12595         * nntp.el (nntp-marks-directory): Fix custom group.
12596
12597         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
12598         steps when < 10.
12599
12600         * gnus-start.el (gnus-no-server-1):
12601         Mention `gnus-level-default-subscribed' in doc string.
12602
12603 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12604
12605         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
12606         parens.
12607
12608 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12609
12610         * gnus-xmas.el (gnus-use-toolbar): Revert.
12611         (gnus-xmas-setup-toolbar): Use global default-toolbar if
12612         gnus-use-toolbar is default.
12613
12614         * messagexmas.el (message-use-toolbar): Revert.
12615         (message-setup-toolbar): Use global default-toolbar if
12616         message-use-toolbar is default.
12617
12618 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12619
12620         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
12621         according to default-toolbar-visible-p.
12622
12623         * messagexmas.el (message-use-toolbar): Ditto.
12624
12625 2005-11-26  Dave Love  <fx@gnu.org>
12626
12627         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
12628         (tls-program, tls-success): Provide openssl alternative.
12629
12630         * starttls.el: Doc fixes.
12631         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
12632         SERVICE to PORT.
12633
12634         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
12635         port null or service name.
12636         (starttls-negotiate): Autoload.
12637
12638 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12639
12640         * message.el (message-kill-to-signature): Fix interactive spec.
12641
12642 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12643
12644         * pop3.el (pop3-open-server): Recognize a string as a service name.
12645
12646 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
12647
12648         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
12649
12650 2005-11-23  Dave Love  <fx@gnu.org>
12651
12652         Add pop3s, pop3/starttls.
12653
12654         * pop3.el (pop3-authentication-scheme): Clarify doc.
12655         (open-tls-stream, starttls-open-stream): Autoload.
12656         (pop3-stream-type): New.
12657         (pop3-open-server): Use it.
12658
12659         * mail-source.el (mail-sources): Fix some :types.  Add stream type
12660         for POP.
12661         (mail-source-keyword-map): Add :stream for POP.
12662         (mail-source-fetch-pop): Use pop3-stream-type.
12663
12664 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12665
12666         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
12667         of current-time-string.
12668
12669 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
12670
12671         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
12672         date header.
12673
12674 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
12675
12676         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
12677         it can seriously impact performance as it bypasses the agent's
12678         local caches.
12679
12680 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
12681
12682         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
12683         must be explicitly online rather than "not explicitly offline" for
12684         its flags to be synchronized.
12685
12686         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
12687         that gnus-uu-unmark-thread will function correctly.
12688
12689         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
12690         1024K is instead displayed as 1M.
12691
12692 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12693
12694         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
12695
12696 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
12697
12698         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
12699
12700 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
12701
12702         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
12703         error message to display actual error condition.
12704         (gnus-agent-save-local): Avoid saving symbols that are bound to
12705         nil as they simply result in a warning message in
12706         gnus-agent-read-local.
12707
12708 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12709
12710         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
12711         rather than make-variable-buffer-local for file-precious-flag.
12712
12713 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
12714
12715         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
12716         for duplicates which are removed.  The invalid sort check then
12717         triggers a rescan after the sort as sorting may have moved
12718         duplicate entries such that they can be cheaply detected.
12719
12720 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12721
12722         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
12723
12724 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
12725
12726         * gnus-agent.el (gnus-agent-article-alist-save-format):
12727         Change internal variable to a custom variable.  Change default value
12728         from compressed(2) to uncompressed(1).
12729         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
12730         support for uncompressed agentview files.  Taken together, reading
12731         the agentview file should now be 6-7 times faster.
12732
12733 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
12734
12735         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
12736         as a buffer-local variable.  This avoids creating truncated
12737         dribble files as a result of a hang up, eg.
12738
12739 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
12740
12741         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
12742         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
12743         XEmacs.
12744
12745 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
12746
12747         * gnus-start.el (gnus-start-draft-setup):
12748         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
12749
12750         * gnus.el (gnus-splash): Change custom group.
12751         (gnus-group-get-parameter, gnus-group-parameter-value):
12752         Describe allow-list argument.
12753
12754         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
12755         string.
12756
12757 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
12758
12759         * gnus-art.el (gnus-default-article-saver): Add user-defined
12760         `function' to custom type.
12761
12762 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
12763
12764         * imap.el (imap-open): Handle case where buffer is a buffer
12765         object.
12766
12767 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12768
12769         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
12770         long lines.
12771         (gnus-cache-delete-group): Wrap doc strings.
12772
12773         * gnus-agent.el (gnus-agent-rename-group)
12774         (gnus-agent-delete-group): Wrap doc strings.
12775
12776 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12777
12778         * messagexmas.el (message-use-toolbar): Change the valid values
12779         into default, top, bottom, left, and right.
12780         (message-toolbar-thickness): New variable.
12781         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
12782         well.
12783         (message-setup-toolbar): Make it work.
12784
12785         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
12786         (gnus-use-toolbar): Change the valid values into default, top,
12787         bottom, left, and right.
12788         (gnus-toolbar-thickness): New variable.
12789         (gnus-xmas-setup-toolbar): New function.
12790         (gnus-xmas-setup-group-toolbar): Use it.
12791         (gnus-xmas-setup-summary-toolbar): Use it.
12792
12793 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12794
12795         * gnus-start.el (gnus-1): Add "native" to
12796         gnus-predefined-server-alist.
12797
12798         * gnus.el (gnus-method-to-server): Don't add "native" to the
12799         lists here, because that leads to problems when
12800         gnus-select-method is bound.
12801
12802 2005-11-09  Simon Josefsson  <jas@extundo.com>
12803
12804         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
12805         use (not sort-by-date) instead.
12806
12807 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12808
12809         * gnus-delay.el (gnus-delay-group): Don't autoload.
12810         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
12811         to be re-loaded when customizing the `gnus-delay' group.
12812
12813 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
12814
12815         * message.el: Revert last changes.
12816         (message-insert-citation-line): Use newlines.
12817
12818 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
12819
12820         * message.el (message-courtesy-message)
12821         (message-mark-insert-begin, message-mark-insert-end)
12822         (message-elide-ellipsis, message-cancel-message)
12823         (message-add-header, message-change-subject)
12824         (message-cross-post-followup-to-header)
12825         (message-cross-post-insert-note, message-reduce-to-to-cc)
12826         (message-widen-reply, message-delete-not-region)
12827         (message-kill-to-signature, message-insert-signature)
12828         (message-insert-importance-high, message-insert-importance-low)
12829         (message-insert-or-toggle-importance)
12830         (message-insert-disposition-notification-to)
12831         (message-indent-citation, message-yank-original)
12832         (message-cite-original-without-signature, message-cite-original)
12833         (message-insert-citation-line, message-position-on-field)
12834         (message-fix-before-sending, message-send-mail-partially)
12835         (message-send-mail, message-send-mail-with-sendmail)
12836         (message-send-mail-with-qmail, message-send-news)
12837         (message-check-news-header-syntax, message-generate-headers)
12838         (message-insert-courtesy-copy, message-fill-address)
12839         (message-fill-header, message-shorten-references)
12840         (message-setup-1, message-cancel-news)
12841         (message-forward-make-body-plain, message-forward-make-body-mime)
12842         (message-forward-make-body-mml, message-encode-message-body)
12843         (message-forward-make-body-digest-plain)
12844         (message-forward-make-body-digest-mime)
12845         (message-use-alternative-email-as-from): Insert `hard-newline'
12846         instead of ordinary newlines.
12847
12848 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12849
12850         * message.el (message-generate-headers): Downcase the argument
12851         given to message-check-element.
12852
12853 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
12854
12855         * nntp.el (nntp-authinfo-rejected): New error condition.
12856         (nntp-wait-for): Use new error condition to signal authentication
12857         error.
12858         (nntp-retrieve-data): Rethrow new error condition to break out of
12859         recursive call to nntp-send-authinfo.
12860
12861 2005-11-08  Romain Francoise  <romain@orebokech.com>
12862
12863         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
12864         (gnus-summary-exit-map): Bind to `Z p'.
12865         (gnus-summary-make-menu-bar): Add menu item.
12866
12867 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
12868
12869         * gnus-art.el (gnus-article-treat-custom): Add `first'.
12870         (gnus-treat-*): Add `first' in all doc strings.
12871
12872         * gnus-group.el (gnus-group-compact-group): Fix typo.
12873
12874 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12875
12876         * gnus.el (gnus-parameters-case-fold-search): New variable.
12877         (gnus-parameters-get-parameter): Use it.
12878
12879         * gnus-score.el (gnus-home-score-file): Doc fix.
12880
12881 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
12882
12883         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
12884
12885 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12886
12887         * mm-util.el (mm-special-display-p): New function.
12888
12889         * mml.el (mml-preview): Use it; doc fix.
12890
12891 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
12892
12893         * imap.el (imap-open): Handle case where buffer is a buffer object.
12894
12895 2005-10-29  Romain Francoise  <romain@orebokech.com>
12896
12897         * message.el (message-fix-before-sending): Fix comment.
12898
12899 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
12900
12901         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
12902
12903 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
12904
12905         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
12906         Used in gnus-score.el.
12907
12908 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
12909
12910         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
12911
12912 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
12913
12914         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
12915         whitespace removed in revision 7.8.  Use concatenated string to
12916         protect trailing whitespace.
12917
12918 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
12919
12920         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
12921         (nnimap-request-expire-articles): Use it to avoid sending 'UID
12922         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
12923         Courier IMAP ("some version from 2004").  Mostly based on similar
12924         code in the same function.
12925
12926 2005-10-26  Didier Verna  <didier@xemacs.org>
12927
12928         * gnus-group.el (gnus-group-compact-group): Invalidate original
12929         article buffer.
12930         * gnus-srvr.el (gnus-server-compact-server): Ditto.
12931         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
12932         NOV database and in article itself.
12933         Invalidate article backlog.
12934
12935 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12936
12937         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
12938
12939 2005-10-26  Simon Josefsson  <jas@extundo.com>
12940
12941         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
12942         part of 2004-07-25 change.
12943
12944 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12945
12946         * message.el (message-display-completion-list): New function.
12947         (message-expand-group): Use it; make sure the Completions buffer
12948         is modifiable.
12949 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
12950
12951         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
12952         user-mail-name is an empty string.
12953
12954 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12955
12956         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
12957         depending on gnus-score-decay-constant.
12958
12959         * encrypt.el (encrypt-insert-file-contents)
12960         (encrypt-write-file-contents): Don't use `gnus-message'.
12961
12962         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
12963         arguments.
12964         (mm-uu-type-alist): Add message-marks and insert-marks.
12965         Pass arguments to mm-uu-verbatim-marks-extract.
12966         (mm-uu-hide-markers): New variable.
12967         (mm-uu-extract): Use face similar to `gnus-cite-3'.
12968
12969         * gnus-fun.el (gnus-convert-image-to-x-face-command)
12970         (gnus-convert-image-to-face-command): Use "convert" by default to
12971         allow other input image formats.
12972         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
12973         accordingly.
12974
12975 2005-10-23  Simon Josefsson  <jas@extundo.com>
12976
12977         * imap.el (imap-gssapi-program): Align command line parameters
12978         with latest GNU SASL.
12979         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
12980
12981 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12982
12983         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
12984         HTML.
12985         (nnslashdot-request-article): Ditto.
12986
12987         * lpath.el (featurep): Add nobreak-char-display.
12988
12989 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
12990
12991         * mail-source.el (mail-source-fetch-pop): Require pop3.
12992         (mail-source-check-pop): Ditto.
12993
12994 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12995
12996         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
12997         errors.
12998
12999 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
13000
13001         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
13002         (gnus-treat-strip-leading-blank-lines): Improve doc string.
13003
13004         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
13005
13006         * mm-bodies.el (mm-decode-string):
13007         Call `mm-charset-to-coding-system' with allow-override argument.
13008
13009 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13010
13011         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
13012         (rfc2047-charset-to-coding-system): New function.
13013         (rfc2047-decode-encoded-words): New function.
13014         (rfc2047-decode-region): Use them.
13015         (rfc2047-decode-cte): Remove.
13016         (rfc2047-parse-and-decode): Remove.
13017         (rfc2047-decode): Remove.
13018
13019 2005-10-15  Kenichi Handa  <handa@m17n.org>
13020
13021         * rfc2047.el (rfc2047-decode-cte): New function.
13022         (rfc2047-decode-region): Change the way to decode successive
13023         encoded-words: decode B- or Q-encoding in each encoded-word,
13024         concatenate them, and decode it as charset.
13025
13026 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13027
13028         * lpath.el: Fbind codepage-setup for XEmacs.
13029
13030 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
13031
13032         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
13033         widget-move-and-invoke.
13034         (gnus-custom-mode): Use gnus-custom-map.
13035
13036 2005-10-15  Bill Wohler  <wohler@newt.com>
13037
13038         * message.el (message-tool-bar-map): Rename image file from
13039         mail_send to mail/send.
13040
13041 2005-10-16  Masatake YAMATO  <jet@gyve.org>
13042
13043         * message.el (message-expand-group): Pass the common
13044         prefix substring of completion to `display-completion-list'.
13045
13046 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
13047
13048         * mml-sec.el (mml-secure-method): New internal variable.
13049         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
13050         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
13051         New functions using mml-secure-method.
13052
13053         * mml.el (mml-mode-map): Add key bindings for those functions.
13054         (mml-menu): Simplify security menu entries.  Suggested by Jesper
13055         Harder <harder@myrealbox.com>.
13056         (mml-attach-file, mml-attach-buffer, mml-attach-external):
13057         Goto end of message if point is the headers of the message.
13058
13059         * message.el (message-in-body-p): New function.
13060
13061         * assistant.el: Autoload gnus-util and netrc.
13062
13063         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
13064         Use `mm-charset-override-alist' only when decoding.
13065
13066         * mm-bodies.el (mm-decode-body):
13067         Call `mm-charset-to-coding-system' with allow-override argument.
13068
13069         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
13070         `filename' from Content-Disposition if Content-Type doesn't
13071         provide `name'.
13072         (gnus-mime-view-part-as-type): Set default instead of
13073         initial-input.
13074
13075 2005-10-09  Daniel Brockman  <daniel@brockman.se>
13076
13077         * format-spec.el (format-spec): Propagate text properties of % spec.
13078
13079 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
13080
13081         * gnus-art.el (gnus-treat-predicate): Add `first'.
13082
13083 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
13084
13085         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
13086         (mm-charset-override-alist): New variable.
13087         (mm-charset-to-coding-system): Use it.
13088         (mm-codepage-setup): New helper function.
13089         (mm-charset-eval-alist): New variable.
13090         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
13091         Warn about unknown charsets.
13092
13093         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
13094
13095 2005-10-04  David Hansen  <david.hansen@gmx.net>
13096
13097         * nnrss.el (nnrss-request-article): Add support for the comments tag.
13098         (nnrss-check-group): Ditto.
13099
13100 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
13101
13102         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
13103         Rename x-gnus-verbatim to x-verbatim.
13104         (mm-uu-type-alist): Fix regexp for verbatim-marks.
13105
13106         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
13107         x-verbatim.
13108
13109         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
13110
13111         * gnus-util.el (gnus-remove-duplicates): Remove.
13112
13113         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
13114         instead of gnus-remove-duplicates.
13115
13116         * message.el (message-remove-duplicates): Remove.
13117         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
13118         message-remove-duplicates.
13119
13120         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
13121         available, else use implementation from `delete-dups'.
13122
13123         * message.el (message-insert-expires): New function.
13124         (message-mode-map): Add key binding.
13125         (message-mode-field-menu): Add menu entry.
13126         (message-mode): Document it.
13127         (message-make-expires-date): Use `message-make-date'.
13128
13129 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
13130
13131         * message.el (message-make-expires-date): New function.
13132
13133 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13134
13135         * Makefile.in (list-installed-shadows): New entry.
13136         (install): Use it.
13137         (remove-installed-shadows): New entry.
13138
13139         * dgnushack.el (dgnushack-default-load-path): New variable.
13140         (dgnushack-find-lisp-shadows): New function.
13141         (dgnushack-remove-lisp-shadows): New function.
13142
13143 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13144
13145         * Makefile.in (install-el-elc): New entry.
13146         (install): Use it so that .el files are necessarily installed.
13147
13148 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13149
13150         * time-date.el: Autoload parse-time-string, XEmacs needs it.
13151
13152 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13153
13154         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
13155         function rather than the diff-mode.el package.
13156         (mm-display-external): Use with-current-buffer.
13157         (mm-viewer-completion-map, mm-viewer-completion-map):
13158         Move initialization inside declaration.
13159
13160 2005-09-29  Simon Josefsson  <jas@extundo.com>
13161
13162         * spam.el: Load hashcash when compiling, to avoid warnings.
13163         Don't autoload mail-check-payment.
13164         (spam-check-hashcash): Define unconditionally, since hashcash.el
13165         is part of Gnus now.  Ignore errors from payment checking.
13166
13167 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
13168
13169         * message.el (message-bold-region, message-unbold-region):
13170         Rename from `bold-region' and `unbold-region'.
13171
13172         * message.el: Remove useless autoloads.
13173
13174 2005-09-28  Simon Josefsson  <jas@extundo.com>
13175
13176         * message.el (message-use-idna): Default to t.
13177         (message-use-idna): Test whether encoding works too.  Doc fix.
13178
13179 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13180
13181         * nntp.el (nntp-warn-about-losing-connection): Remove.
13182
13183 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
13184
13185         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
13186         customizable.  Change default value.
13187         (mm-uu-diff-groups-regexp): Change default value.
13188         (mm-uu-type-alist): Add doc string.
13189         (mm-uu-configure): Add doc string.  Make it interactive.
13190         (mm-uu-tex-groups-regexp): New variable.
13191         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
13192         (mm-uu-type-alist): Add LaTeX documents.
13193         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
13194         of "text/verbatim".
13195         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
13196
13197         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
13198         instead of "text/verbatim".
13199
13200         * message.el (message-mark-inserted-region)
13201         (message-mark-insert-file): Use slrn style marks when called with
13202         prefix argument.
13203
13204 2005-09-27  Simon Josefsson  <jas@extundo.com>
13205
13206         * message.el (message-idna-to-ascii-rhs-1): Reformat.
13207
13208 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
13209
13210         * message.el (message-remove-duplicates): New function.
13211         Implementation borrowed from `gnus-remove-duplicates'.
13212         (message-idna-to-ascii-rhs): Also encode idna addresses in
13213         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
13214         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
13215         only ask about the same idna domain once per header and also tell
13216         in what header to replace the idna domain.
13217
13218         * gnus-art.el (article-decode-idna-rhs): Also decode idna
13219         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
13220         (article-decode-idna-rhs): Fix regexp so that all idna-address in
13221         a header is decoded and not just the last one.
13222
13223 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13224
13225         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
13226         has been decoded.
13227
13228         * mm-decode.el (mm-automatic-display): Add text/verbatim.
13229         (mm-insert-part): Don't modify text if it has been decoded.
13230
13231         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
13232         decoded.
13233
13234         * mm-view.el (mm-inline-text): Don't strip text props unless
13235         decoding enriched or richtext parts.
13236
13237 2005-09-25  Romain Francoise  <romain@orebokech.com>
13238
13239         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
13240         * gnus-start.el (gnus-subscribe-interactively):
13241         * gnus-uu.el (gnus-uu-grab-articles):
13242         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
13243         space.
13244
13245 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
13246
13247         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
13248         * mm-view.el (mm-view-pkcs7-decrypt):
13249         * gnus-sum.el (gnus-summary-limit-to-extra)
13250         (gnus-summary-respool-article, gnus-read-move-group-name):
13251         * gnus-score.el (gnus-summary-increase-score):
13252         * gnus-util.el (gnus-completing-read-with-default):
13253         * gnus-art.el (gnus-read-save-file-name)
13254         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
13255         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
13256         * message.el (message-check-news-header-syntax):
13257         Follow convention for reading with the minibuffer.
13258
13259 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
13260
13261         * spam-report.el (spam-report-url-ping-plain):
13262         Use gnus-extended-version as User-Agent.
13263
13264         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
13265         default value is nil.
13266
13267         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
13268         (mm-uu-verbatim-marks-extract): New function.
13269         (mm-uu-extract): New face.
13270         (mm-uu-copy-to-buffer): Use it.
13271
13272         * spam-report.el (spam-report-gmane-ham): Rename from
13273         `spam-report-gmane-unspam'.
13274         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
13275         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
13276
13277         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
13278         Autoload.
13279         (spam-report-gmane-unregister-routine):
13280         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
13281
13282 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
13283
13284         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
13285         (spam-report-gmane-unregister-routine): Add support for gmane
13286         unregistration.
13287
13288         * spam-report.el (spam-report-gmane-unspam)
13289         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
13290         (spam-report-gmane): Change to take a single article and do unspam
13291         registration.
13292
13293 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13294
13295         * mm-url.el (mm-url-decode-entities): Fix regexp.
13296
13297 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13298
13299         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
13300         default to nil, to be able to use Gnus at all.  If the default
13301         switches to something else, then the function should be fixed not
13302         be exceedingly slow.
13303
13304 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
13305
13306         * gnus-start.el (gnus-activate-group): If the server is nil, don't
13307         fail hard.
13308
13309         * spam-report.el: Add better Keywords line.
13310
13311         * spam.el: Add Maintainer and better Keywords line.
13312
13313 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13314
13315         * gnus-art.el (gnus-article-replace-part)
13316         (gnus-mime-replace-part): New functions.
13317         (gnus-mime-action-alist, gnus-mime-button-commands)
13318         (gnus-mime-save-part-and-strip): Add file argument.
13319         (gnus-article-part-wrapper): Add interactive argument.
13320
13321         * gnus-sum.el (gnus-summary-mime-map):
13322         Add `gnus-article-replace-part'.
13323
13324 2005-09-19  Didier Verna  <didier@xemacs.org>
13325
13326         The nnml compaction feature:
13327         * nnml.el (nnml-request-compact-group): New function.
13328         * nnml.el (nnml-request-compact): New function.
13329         * gnus-int.el (gnus-request-compact-group): New function.
13330         * gnus-int.el (gnus-request-compact): New function.
13331         * gnus-group.el (gnus-group-compact-group): New function.
13332         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
13333         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
13334         * gnus-srvr.el (gnus-server-compact-server): New function.
13335         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
13336         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
13337
13338 2005-09-18  Deepak Goel  <deego@gnufans.org>
13339
13340         * sieve.el (sieve-help): Fix `message' call: first arg should be a
13341         format spec.
13342
13343 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13344
13345         * gnus.el (gnus-group-startup-message): Bind image-load-path.
13346
13347 2005-09-15  Romain Francoise  <romain@orebokech.com>
13348
13349         * message.el (message-fill-paragraph): Clarify docstring.
13350
13351 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13352
13353         * gnus-art.el (gnus-mime-display-part): Protect against broken
13354         MIME messages.
13355
13356 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13357
13358         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
13359         before parsing header.
13360
13361 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
13362
13363         * html2text.el (html2text-replace-list): Add new entities.
13364
13365 2005-09-11  Romain Francoise  <romain@orebokech.com>
13366
13367         * message.el (message-alternative-emails): Improve docstring.
13368         (message-setup-1): Call `message-use-alternative-email-as-from'
13369         after `message-setup-hook' to give it precedence over posting
13370         styles, etc.
13371         (message-use-alternative-email-as-from): Add docstring.
13372         Remove the original From header if present.
13373
13374         * nnml.el (nnml-compressed-files-size-threshold): New variable.
13375         (nnml-save-mail): Use it.
13376
13377         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
13378         articles.  Add new argument `silent'.
13379         (gnus-uu-mark-all): Report the total number of marked articles.
13380
13381 2005-09-10  Romain Francoise  <romain@orebokech.com>
13382
13383         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
13384         (gnus-uu-mark-series): Likewise.
13385
13386 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
13387
13388         * spam-report.el (spam-report-gmane): Fix generation of spam
13389         report URL.
13390
13391 2005-09-10  Simon Josefsson  <jas@extundo.com>
13392
13393         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
13394         t, based on discussion on the ding list with Robert Epprecht
13395         <epprecht@solnet.ch>.
13396
13397 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
13398
13399         * spam-report.el (spam-report-gmane): Make it work without
13400         X-Report-Spam header.  Gmane now only provides Archived-At.
13401         This is only used if `spam-report-gmane-use-article-number' is nil.
13402         (spam-report-gmane-spam-header): Remove.  Not used anymore.
13403
13404         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
13405         make `gnus-summary-sort-by-recipient' work with threading.
13406
13407         * nnweb.el (nnweb-google-wash-article): Print a message if article
13408         is not available.
13409
13410 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13411
13412         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
13413         change.  Decode text/* parts content before displaying.
13414
13415 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
13416
13417         * mml-smime.el: Remove defvar of gnus-extract-address-components.
13418
13419 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13420
13421         * mm-view.el (mm-display-inline-fontify): Disable support modes.
13422
13423         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
13424         url-package-name, url-package-version,
13425         w3m-cid-retrieve-function-alist, w3m-current-buffer,
13426         w3m-display-inline-images, and w3m-minor-mode-map.
13427
13428 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
13429
13430         * message.el (message-tab-body-function): Fix mismatched custom type.
13431
13432         * gnus.el (gnus-group-change-level-function): Ditto.
13433
13434         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
13435
13436         * gnus-art.el (gnus-signature-limit)
13437         (gnus-article-mime-part-function): Ditto.
13438
13439 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13440
13441         * mml.el (mml-mode): Silence the byte compiler.
13442
13443         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
13444         using `(sit-for 0)' before moving the point to the specified part;
13445         skip unbuttonized parts.
13446         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
13447         return to the summary window if gnus-auto-select-part is non-nil.
13448
13449 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
13450
13451         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
13452         New variables.
13453         (mml-dnd-attach-file, mml-mode): Use them.
13454
13455         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
13456         Make fetching article by MID work again for Google Groups.
13457         Add FIXME concerning gnus-group-make-web-group.
13458
13459         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
13460         Don't depend on Gnus by using mail-extract-address-components if
13461         gnus-extract-address-components is not bound.
13462
13463 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13464
13465         * gnus-art.el (gnus-mime-display-security): Don't display the
13466         signature, but only the signed part.
13467
13468 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13469
13470         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
13471
13472         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
13473         list, not listp.
13474
13475 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
13476
13477         * mm-encode.el (mm-encode-content-transfer-encoding):
13478         Likewise when encoding.
13479
13480         * mm-bodies.el (mm-decode-content-transfer-encoding):
13481         De-canonicalize CRLF for all text content types, not just
13482         text/plain.
13483
13484 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13485
13486         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
13487         valid article; point arrow and cursor at the MIME button.
13488
13489 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13490
13491         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
13492         Suggested by Dan Christensen <jdc@uwo.ca>.
13493
13494         * mm-decode.el (mm-save-part): Enable change of prompt.
13495
13496 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
13497
13498         * gnus-msg.el (gnus-inews-add-send-actions):
13499         Make `message-post-method' lambda parameter ARG `&optional'.
13500
13501 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
13502
13503         * gnus-sum.el (gnus-summary-mime-map):
13504         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
13505         gnus-article-jump-to-part.
13506
13507         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
13508         (gnus-article-edit-part): Use it.
13509         (gnus-article-part-wrapper): Add no-handle argument.
13510         (gnus-article-save-part-and-strip, gnus-article-delete-part):
13511         New functions.
13512
13513 2005-08-29  Romain Francoise  <romain@orebokech.com>
13514
13515         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
13516         docstring.
13517         (gnus-face-from-file): Likewise.
13518
13519 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
13520
13521         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
13522         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
13523         non-nil.
13524         (gnus-auto-select-part): New variable.
13525         (gnus-article-jump-to-part): New function.
13526         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
13527         (gnus-mime-delete-part): Allow selecting specified part after
13528         deleting or stripping parts.
13529         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
13530         part if argument is bogus.
13531
13532 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
13533
13534         * gnus-art.el (w3m-minor-mode-map):
13535         * gnus-spec.el (gnus-newsrc-file-version):
13536         * gnus-util.el (nnmail-active-file-coding-system)
13537         (gnus-original-article-buffer, gnus-user-agent):
13538         * gnus.el (gnus-ham-process-destinations)
13539         (gnus-parameter-ham-marks-alist)
13540         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
13541         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
13542         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
13543         * mm-decode.el (gnus-current-window-configuration):
13544         * mm-extern.el (gnus-article-mime-handles):
13545         * mm-url.el (url-current-object, url-package-name)
13546         (url-package-version):
13547         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
13548         (smime-keys, w3m-cid-retrieve-function-alist)
13549         (w3m-current-buffer, w3m-display-inline-images)
13550         (w3m-minor-mode-map):
13551         * mml-smime.el (gnus-extract-address-components):
13552         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
13553         (gnus-newsrc-hashtb, message-default-charset)
13554         (message-deletable-headers, message-options)
13555         (message-posting-charset, message-required-mail-headers)
13556         (message-required-news-headers):
13557         * mml1991.el (mc-pgp-always-sign):
13558         * mml2015.el (mc-pgp-always-sign):
13559         * nnheader.el (nnmail-extra-headers):
13560         * rfc1843.el (gnus-decode-encoded-word-function)
13561         (gnus-decode-header-function, gnus-newsgroup-name):
13562         * spam-stat.el (gnus-original-article-buffer): Add defvars.
13563
13564 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
13565
13566         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
13567         the end of the date treatments.
13568
13569 2005-08-15  Simon Josefsson  <jas@extundo.com>
13570
13571         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
13572         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
13573         Capello and Romain Francoise.
13574         (pgg-fetch-key-function): Remove, not used?
13575         (pgg-insert-url-with-w3): Require url, to get
13576         url-insert-file-contents regardless of where it is defined.
13577
13578 2005-08-13  Romain Francoise  <romain@orebokech.com>
13579
13580         * message.el (message-cite-original-1): New function.
13581         (message-cite-original): Use it.
13582         (message-cite-original-without-signature): Ditto.
13583
13584 2005-08-08  Romain Francoise  <romain@orebokech.com>
13585
13586         * message.el (message-yank-empty-prefix): New variable.
13587         (message-indent-citation): Use it.
13588         (message-cite-original-without-signature): Respect X-No-Archive.
13589
13590 2005-08-08  Simon Josefsson  <jas@extundo.com>
13591
13592         * pgg.el: Autoload url-insert-file-contents instead of loading
13593         w3/url.
13594         (pgg-insert-url-with-w3): Don't load url here.
13595
13596 2005-08-07  Jesper Harder  <harder@phys.au.dk>
13597
13598         * message.el (message-kill-to-signature): Don't insert newline at
13599         bol.
13600         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
13601
13602 2005-08-06  Romain Francoise  <romain@orebokech.com>
13603
13604         * message.el (message-user-fqdn): Fix typo in docstring.
13605
13606 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
13607
13608         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
13609
13610         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
13611
13612 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13613
13614         * mm-bodies.el (mm-encode-body): Use coding system rather than
13615         charset to encode text.
13616
13617         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
13618         number of charsets if utf-8 is available (XEmacs).
13619
13620 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
13621
13622         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
13623         taken from `gnus-button-mid-or-mail-regexp'.
13624         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
13625         (gnus-button-alist): Improve regexp for domain part of the MIDs
13626         for news:localpart@domain buttons.
13627         (gnus-button-ctan-directory-regexp): Update.
13628
13629 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13630
13631         * sieve-manage.el (sieve-manage-interactive-login):
13632         Use make-local-variable rather than make-variable-buffer-local.
13633         (sieve-manage-open): Ditto.
13634         (sieve-manage-authenticate): Ditto.
13635
13636         * mml.el (mml-generate-mime-1): Make the content type default to
13637         text/plain if the filename is not specified.
13638
13639 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13640
13641         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
13642         instead of insert-buffer.
13643
13644         * message.el (message-yank-original): Ditto; set the mark at the
13645         end of the yanked message.
13646
13647 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13648
13649         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
13650         lines to scroll rather than to stop it.
13651
13652         * mml.el (mml-generate-default-type): Add doc string.
13653         (mml-generate-mime-1): Use mm-default-file-encoding or make it
13654         default to application/octet-stream when determining the content
13655         type if it is not specified for the part or the mml contents; add
13656         a comment about mml-generate-default-type.
13657
13658 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
13659
13660         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
13661         make it default to application/octet-stream when determining the
13662         content type if it is not specified for the external contents.
13663
13664 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13665
13666         * rfc2231.el (rfc2231-parse-string): Take care that not only a
13667         segmented parameter but also other parameters might be there.
13668
13669 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13670
13671         * mm-decode.el (mm-display-external): Delete temp file, directory
13672         and buffer immediately if the external process is exited.
13673
13674 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13675
13676         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
13677         fewer lines than that of scroll-margin.
13678         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
13679
13680 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13681
13682         * gnus-art.el (gnus-article-next-page): Revert.
13683         (gnus-article-beginning-of-window): New macro.
13684         (gnus-article-next-page-1): Use it.
13685         (gnus-article-prev-page): Ditto.
13686         (gnus-article-edit-part): Use insert-buffer-substring instead of
13687         insert-buffer.
13688         (gnus-article-edit-exit): Ditto.
13689
13690         * gnus-util.el (gnus-beginning-of-window): Remove.
13691         (gnus-end-of-window): Remove.
13692
13693         * lpath.el: Don't bind header-line-format and scroll-margin.
13694
13695 2005-07-25  Simon Josefsson  <jas@extundo.com>
13696
13697         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
13698         to have the url package without w3.  Reported by Daiki Ueno
13699         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
13700
13701 2005-07-20  Didier Verna  <didier@xemacs.org>
13702
13703         * gnus-diary.el: Remove the description comment (nndiary is now
13704         properly documented in the Gnus manual).
13705         Fix the spelling of "Back End".
13706         * nndiary.el: Ditto.
13707         Fix the copyright notice.
13708
13709 2005-07-18  Romain Francoise  <romain@orebokech.com>
13710
13711         * gnus-sum.el (gnus-summary-to-prefix)
13712         (gnus-summary-newsgroup-prefix): New variables.
13713         (gnus-summary-from-or-to-or-newsgroups): Use them.
13714
13715 2005-07-17  Romain Francoise  <romain@orebokech.com>
13716
13717         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
13718         space as it's generally not especially interesting to the user.
13719
13720 2005-07-16  Romain Francoise  <romain@orebokech.com>
13721
13722         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
13723         nil to avoid prompting and file modification if one of the
13724         messages at the top of the nnfolder file contains a copyright
13725         notice.
13726         Update copyright notice.
13727
13728         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
13729         instead of `current-time-string' as the latter creates a time
13730         string that is not RFC 2822 compliant (it lacks the zone).
13731         Update copyright notice.
13732
13733 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13734
13735         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
13736         for text/rtf.  Display default in prompt.  Pass default for M-n.
13737
13738         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
13739
13740 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13741
13742         * gnus-msg.el (gnus-button-mailto):
13743         Remove save-selected-window-window hackery because it relies on
13744         save-selected-window internals.
13745
13746 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13747
13748         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
13749         (gnus-article-next-page-1): Use gnus-beginning-of-window.
13750         (gnus-article-prev-page): Ditto.
13751
13752         * gnus-util.el (gnus-beginning-of-window): New function.
13753         (gnus-end-of-window): New function.
13754
13755         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
13756
13757 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
13758
13759         * gnus-score.el (gnus-score-edit-all-score):
13760         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
13761         gnus-message.
13762
13763 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13764
13765         * gnus-msg.el (gnus-button-mailto):
13766         Remove save-selected-window-window hackery because it relies on
13767         save-selected-window internals.
13768
13769 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13770
13771         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
13772         add-minor-mode.
13773         (gnus-binary-mode): Ditto.
13774
13775         * gnus-topic.el (gnus-topic-mode): Ditto.
13776
13777 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
13778
13779         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
13780         (gnus-article-prev-page): Take scroll-margin into consideration.
13781
13782 2005-07-04  Lute Kamstra  <lute@gnu.org>
13783
13784         Update FSF's address in GPL notices.
13785
13786 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
13787
13788         * gnus.el (gnus-exit):
13789         * gnus-group.el (gnus-group-icons):
13790         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
13791
13792         * gnus-nocem.el (gnus-nocem):
13793         * message.el (message-various, message-buffers, message-sending)
13794         (message-interface, message-forwarding, message-insertion)
13795         (message-headers, message-news, message-mail):
13796         * pgg-gpg.el (pgg-gpg):
13797         * pgg-parse.el (pgg-parse):
13798         * pgg-pgp.el (pgg-pgp):
13799         * pgg-pgp5.el (pgg-pgp5):
13800         * pop3.el (pop3): Finish `defgroup' description with period.
13801
13802 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13803
13804         * gnus-art.el (article-display-face): Improve the efficiency.
13805         (article-display-x-face): Ditto; remove grey x-face stuff.
13806
13807 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13808
13809         * gnus-art.el (article-display-face): Correct the position in
13810         which Faces are inserted.
13811
13812 2005-06-29  Didier Verna  <didier@xemacs.org>
13813
13814         * gnus-art.el (article-display-face): Display faces in correct
13815         order.
13816
13817 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13818
13819         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
13820         (gnus-fill-real-hashtb): Use hash table instead of obarray.
13821         (gnus-nocem-check-article): Fetch the Type header.
13822         (gnus-nocem-message-wanted-p): Fix the way to examine types.
13823         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
13824         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
13825         make sure gnus-nocem-hashtb is initialized.
13826         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
13827         (gnus-nocem-unwanted-article-p): Ditto.
13828
13829         * pgg.el (pgg-verify): Return the verification result.
13830
13831 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13832
13833         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
13834         is ascii.
13835
13836 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
13837
13838         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
13839         `show-nonbreak-escape'.
13840
13841 2005-06-23  Lute Kamstra  <lute@gnu.org>
13842
13843         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
13844
13845         * dig.el (dig-mode):
13846         * smime.el (smime-mode): Use gnus-run-mode-hooks.
13847
13848 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
13849
13850         * nnimap.el (nnimap-split-download-body): Fix spellings.
13851
13852 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
13853
13854         * gnus-art.el (gnus-article-encrypt-body):
13855         * gnus-cus.el (gnus-score-customize):
13856         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
13857         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
13858
13859 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
13860
13861         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
13862         header by looking for magic "MII" at the beginnig.
13863
13864 2005-06-16  Miles Bader  <miles@gnu.org>
13865
13866         * gnus-xmas.el (gnus-xmas-group-startup-message):
13867         Use renamed gnus-splash face.
13868
13869         * assistant.el (assistant-field): Remove "-face" suffix from face name.
13870         (assistant-field-face): New backward-compatibility alias for renamed
13871         face.
13872         (assistant-render-text): Use renamed assistant-field face.
13873
13874         * spam.el (spam): Remove "-face" suffix from face name.
13875         (spam-face): New backward-compatibility alias for renamed face.
13876         (spam-face, spam-initialize): Use renamed spam face.
13877
13878         * message.el (message-header-to, message-header-cc)
13879         (message-header-subject, message-header-newsgroups)
13880         (message-header-other, message-header-name)
13881         (message-header-xheader, message-separator, message-cited-text)
13882         (message-mml): Remove "-face" suffix from face names.
13883         (message-header-to-face, message-header-cc-face)
13884         (message-header-subject-face, message-header-newsgroups-face)
13885         (message-header-other-face, message-header-name-face)
13886         (message-header-xheader-face, message-separator-face)
13887         (message-cited-text-face, message-mml-face):
13888         New backward-compatibility aliases for renamed faces.
13889         (message-font-lock-keywords): Use renamed message faces.
13890
13891         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
13892         (sieve-test-commands, sieve-tagged-arguments):
13893         Remove "-face" suffix from face names.
13894         (sieve-control-commands-face, sieve-action-commands-face)
13895         (sieve-test-commands-face, sieve-tagged-arguments-face):
13896         New backward-compatibility aliases for renamed faces.
13897         (sieve-control-commands-face, sieve-action-commands-face)
13898         (sieve-test-commands-face, sieve-tagged-arguments-face):
13899         Use renamed sieve faces.
13900
13901         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
13902         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
13903         (gnus-group-news-3-empty, gnus-group-news-4)
13904         (gnus-group-news-4-empty, gnus-group-news-5)
13905         (gnus-group-news-5-empty, gnus-group-news-6)
13906         (gnus-group-news-6-empty, gnus-group-news-low)
13907         (gnus-group-news-low-empty, gnus-group-mail-1)
13908         (gnus-group-mail-1-empty, gnus-group-mail-2)
13909         (gnus-group-mail-2-empty, gnus-group-mail-3)
13910         (gnus-group-mail-3-empty, gnus-group-mail-low)
13911         (gnus-group-mail-low-empty, gnus-summary-selected)
13912         (gnus-summary-cancelled, gnus-summary-high-ticked)
13913         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
13914         (gnus-summary-high-ancient, gnus-summary-low-ancient)
13915         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
13916         (gnus-summary-low-undownloaded)
13917         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
13918         (gnus-summary-low-unread, gnus-summary-normal-unread)
13919         (gnus-summary-high-read, gnus-summary-low-read)
13920         (gnus-summary-normal-read, gnus-splash):
13921         Remove "-face" suffix from face names.
13922         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
13923         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
13924         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
13925         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
13926         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
13927         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
13928         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
13929         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
13930         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
13931         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
13932         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
13933         (gnus-summary-selected-face, gnus-summary-cancelled-face)
13934         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
13935         (gnus-summary-normal-ticked-face)
13936         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
13937         (gnus-summary-normal-ancient-face)
13938         (gnus-summary-high-undownloaded-face)
13939         (gnus-summary-low-undownloaded-face)
13940         (gnus-summary-normal-undownloaded-face)
13941         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
13942         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
13943         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
13944         (gnus-splash-face):
13945         New backward-compatibility aliases for renamed faces.
13946         (gnus-group-startup-message): Use renamed gnus faces.
13947
13948         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
13949         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
13950         (gnus-server-agent): Remove "-face" suffix from face names.
13951         (gnus-server-agent-face, gnus-server-opened-face)
13952         (gnus-server-closed-face, gnus-server-denied-face)
13953         (gnus-server-offline-face):
13954         New backward-compatibility aliases for renamed faces.
13955         (gnus-server-agent-face, gnus-server-opened-face)
13956         (gnus-server-closed-face, gnus-server-denied-face)
13957         (gnus-server-offline-face): Use renamed gnus faces.
13958
13959         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
13960         Remove "-face" suffix from face names.
13961         (gnus-picon-xbm-face, gnus-picon-face):
13962         New backward-compatibility aliases for renamed faces.
13963
13964         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
13965         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
13966         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
13967         (gnus-cite-11): Remove "-face" suffix from face names.
13968         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
13969         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
13970         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
13971         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
13972         New backward-compatibility aliases for renamed faces.
13973         (gnus-cite-attribution-face, gnus-cite-face-list)
13974         (gnus-article-boring-faces): Use renamed gnus faces.
13975
13976         * gnus-art.el (gnus-signature, gnus-header-from)
13977         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
13978         (gnus-header-content): Remove "-face" suffix from face names.
13979         (gnus-signature-face, gnus-header-from-face)
13980         (gnus-header-subject-face, gnus-header-newsgroups-face)
13981         (gnus-header-name-face, gnus-header-content-face):
13982         New backward-compatibility aliases for renamed faces.
13983         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
13984
13985         * gnus-sum.el (gnus-summary-selected-face)
13986         (gnus-summary-highlight): Use renamed gnus faces.
13987         * gnus-group.el (gnus-group-highlight): Likewise.
13988
13989 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
13990
13991         * gnus-sieve.el (gnus-sieve-article-add-rule):
13992         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
13993         * spam-stat.el (spam-stat-buffer-change-to-spam)
13994         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
13995
13996         * message.el (message-is-yours-p):
13997         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
13998
13999 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14000
14001         * mm-view.el (mm-inline-text): Withdraw the last change.
14002
14003 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14004
14005         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
14006         executing enriched-decode.
14007
14008 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14009
14010         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
14011         charset of tar files.
14012
14013 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
14014
14015         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
14016
14017 2005-06-04  Lute Kamstra  <lute@gnu.org>
14018
14019         * nnfolder.el (nnfolder-read-folder): Make sure that undo
14020         information is never recorded.
14021
14022 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14023
14024         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
14025
14026 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14027
14028         * pop3.el (pop3-apop): Run md5 in the binary mode.
14029
14030         * starttls.el (starttls-set-process-query-on-exit-flag):
14031         Use eval-and-compile.
14032
14033 2005-05-31  Simon Josefsson  <jas@extundo.com>
14034
14035         * smime.el (smime-replace-in-string): Define.
14036         (smime-cert-by-ldap-1): Use it.
14037
14038 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14039
14040         * gnus-art.el (article-display-x-face): Replace
14041         process-kill-without-query by gnus-set-process-query-on-exit-flag.
14042
14043         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
14044         set-process-query-on-exit-flag or process-kill-without-query.
14045
14046         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
14047         loop instead of replace-regexp.
14048
14049         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
14050         instead of process-kill-without-query if it is available.
14051
14052         * lpath.el: Fbind ldap-search-entries.
14053
14054         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
14055         instead of find-file-hooks if it is available.
14056
14057         * mml1991.el: Bind pgg-default-user-id when compiling.
14058
14059         * mml2015.el: Bind pgg-default-user-id when compiling.
14060
14061         * nndraft.el (nndraft-request-associate-buffer):
14062         Use write-contents-functions instead of write-contents-hooks if it is
14063         available.
14064
14065         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
14066         instead of find-file-hooks if it is available.
14067
14068         * nntp.el (nntp-open-connection): Replace
14069         process-kill-without-query by gnus-set-process-query-on-exit-flag.
14070         (nntp-open-ssl-stream): Ditto.
14071         (nntp-open-tls-stream): Ditto.
14072
14073         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
14074         set-process-query-on-exit-flag or process-kill-without-query.
14075         (starttls-open-stream-gnutls): Use it instead of
14076         process-kill-without-query.
14077         (starttls-open-stream): Ditto.
14078
14079 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
14080
14081         * smime.el (smime-cert-by-ldap-1): Don't use
14082         replace-regexp-in-string.
14083
14084 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
14085
14086         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
14087
14088         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
14089         in PEM format.  Adjust to the XEmacs compability.
14090
14091 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
14092
14093         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
14094         by `string-to-number'.
14095         * gnus-agent.el (gnus-agent-regenerate-group)
14096         (gnus-agent-fetch-articles): Ditto.
14097         * gnus-art.el (gnus-button-fetch-group): Ditto.
14098         * gnus-cache.el (gnus-cache-generate-active)
14099         (gnus-cache-articles-in-group): Ditto.
14100         * gnus-group.el (gnus-group-set-current-level)
14101         (gnus-group-insert-group-line): Ditto.
14102         * gnus-score.el (gnus-score-set-expunge-below)
14103         (gnus-score-set-mark-below, gnus-summary-score-effect)
14104         (gnus-summary-score-entry): Ditto.
14105         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
14106         (gnus-soup-pack): Ditto.
14107         * gnus-spec.el (gnus-xmas-format): Ditto.
14108         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
14109         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
14110         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
14111         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
14112         * nndb.el (nndb-get-remote-expire-response): Ditto.
14113         * nndiary.el (nndiary-parse-schedule-value)
14114         (nndiary-string-to-number, nndiary-request-replace-article)
14115         (nndiary-request-article): Ditto.
14116         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
14117         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
14118         * nneething.el (nneething-make-head): Ditto.
14119         * nnfolder.el (nnfolder-request-article)
14120         (nnfolder-retrieve-headers): Ditto.
14121         * nnheader.el (nnheader-file-to-number): Ditto.
14122         * nnkiboze.el (nnkiboze-request-article): Ditto.
14123         * nnmail.el (nnmail-process-unix-mail-format)
14124         (nnmail-process-babyl-mail-format): Ditto.
14125         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
14126         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
14127         (nnmh-request-create-group, nnmh-request-list-1)
14128         (nnmh-request-group, nnmh-request-article): Ditto.
14129         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
14130         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
14131         * nnsoup.el (nnsoup-make-active): Ditto.
14132         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
14133         * nntp.el (nntp-find-group-and-number)
14134         (nntp-retrieve-headers-with-xover): Ditto.
14135         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
14136         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
14137         (pgg-format-key-identifier): Ditto.
14138         * pop3.el (pop3-last, pop3-stat): Ditto.
14139         * qp.el (quoted-printable-decode-region): Ditto.
14140
14141         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
14142         of concat.
14143
14144 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14145
14146         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
14147
14148         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
14149
14150         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
14151
14152         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
14153
14154         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
14155
14156         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
14157
14158         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
14159         (gnus-carpal-mode): Ditto.
14160
14161         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
14162         (gnus-browse-mode): Ditto.
14163
14164         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
14165
14166         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
14167
14168 2005-05-29  Richard M. Stallman  <rms@gnu.org>
14169
14170         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
14171
14172 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14173
14174         * gnus-util.el (gnus-run-mode-hooks): New function.
14175
14176         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
14177
14178         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
14179         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
14180
14181 2005-05-27  Lute Kamstra  <lute@gnu.org>
14182
14183         * dns-mode.el (dns-mode): Specify customization group.
14184
14185 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
14186
14187         * gnus-agent.el (gnus-agent-make-mode-line-string):
14188         Use mode-line-highlight as mouse-face.
14189
14190 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14191
14192         * canlock.el (canlock): Change the parent group to news.
14193
14194         * deuglify.el (gnus-outlook-deuglify): Add :group.
14195
14196         * dig.el (dig): Add :group.
14197
14198         * dns-mode.el (dns-mode): Add :group.
14199
14200         * encrypt.el (encrypt): Add :group.
14201
14202         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
14203         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
14204         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
14205         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
14206         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
14207
14208         * gnus-diary.el (gnus-diary): Add :group.
14209
14210         * gnus.el (gnus-group-news-1-face): Add :group.
14211         (gnus-group-news-1-empty-face): Ditto.
14212         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
14213         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
14214         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
14215         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
14216         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
14217         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
14218         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
14219         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
14220         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
14221         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
14222         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
14223         (gnus-summary-high-ticked-face): Ditto.
14224         (gnus-summary-low-ticked-face): Ditto.
14225         (gnus-summary-normal-ticked-face): Ditto.
14226         (gnus-summary-high-ancient-face): Ditto.
14227         (gnus-summary-low-ancient-face): Ditto.
14228         (gnus-summary-normal-ancient-face): Ditto.
14229         (gnus-summary-high-undownloaded-face): Ditto.
14230         (gnus-summary-low-undownloaded-face): Ditto.
14231         (gnus-summary-normal-undownloaded-face): Ditto.
14232         (gnus-summary-high-unread-face): Ditto.
14233         (gnus-summary-low-unread-face): Ditto.
14234         (gnus-summary-normal-unread-face): Ditto.
14235         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
14236         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
14237
14238         * hashcash.el (hashcash): New custom group.
14239         (hashcash-default-payment): Add :group.
14240         (hashcash-payment-alist): Ditto.
14241         (hashcash-default-accept-payment): Ditto.
14242         (hashcash-accept-resources): Ditto.
14243         (hashcash-path): Ditto.
14244         (hashcash-extra-generate-parameters): Ditto.
14245         (hashcash-double-spend-database): Ditto.
14246         (hashcash-in-news): Ditto.
14247
14248         * message.el (message-minibuffer-local-map): Add :group.
14249
14250         * netrc.el (netrc): Add :group.
14251
14252         * sieve-manage.el (sieve-manage-log): Add :group.
14253         (sieve-manage-default-user): Diito.
14254         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
14255         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
14256         (sieve-manage-authenticators): Ditto.
14257         (sieve-manage-authenticator-alist): Ditto.
14258         (sieve-manage-default-port): Ditto.
14259
14260         * sieve-mode.el (sieve-control-commands-face): Add :group.
14261         (sieve-action-commands-face): Ditto.
14262         (sieve-test-commands-face): Ditto.
14263         (sieve-tagged-arguments-face): Ditto.
14264
14265         * smime.el (smime): Add :group.
14266
14267         * spam-report.el (spam-report): Add :group.
14268
14269         * spam.el (spam, spam-face): Add :group.
14270
14271 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14272
14273         * nntp.el (nntp-next-result-arrived-p): Some news servers may
14274         return \n.\n.\n at the end of articles.  Protect against that.
14275         (nntp-with-open-group): Allow debugging.
14276
14277         * nnheader.el (mail-header-set-extra): Make into a function
14278         because I just could't understand how to quote the list properly.
14279
14280         * dns.el (query-dns-cached): New function.
14281
14282 2005-05-26  Lute Kamstra  <lute@gnu.org>
14283
14284         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
14285
14286 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14287
14288         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
14289
14290         * gnus-art.el: Don't autoload mail-extract-address-components.
14291
14292         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
14293         eval-and-compile to evaluate it.
14294
14295         * hashcash.el: Don't autoload executable-find.
14296
14297         * nndb.el: Don't declare the nndb back end two or more times; don't
14298         autoload news-reply-mode, news-setup, cancel-timer and telnet.
14299
14300         * nntp.el: Autoload format-spec instead of format; use
14301         eval-and-compile to evaluate autoload forms.
14302
14303 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
14304
14305         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
14306
14307 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14308
14309         * gnus.el (gnus-version-number): Bump version.
14310
14311 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14312
14313         * gnus.el: No Gnus v0.3 is released.
14314
14315 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14316
14317         * lpath.el (featurep): Bind show-nonbreak-escape.
14318
14319 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14320
14321         * gnus-art.el (gnus-article-edit-part): Disable undo.
14322
14323 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14324
14325         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
14326         gnus-article-date-lapsed-new-header is t if date timer is active;
14327         skip headers in which the original date value is empty.
14328         (gnus-article-save-original-date): Redefine it as a macro.
14329         (gnus-display-mime): Use it.
14330
14331 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14332
14333         * gnus-art.el (article-date-ut): Support converting date in
14334         forwarded parts as well.
14335         (gnus-article-save-original-date): New function.
14336         (gnus-display-mime): Use it.
14337
14338 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
14339
14340         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
14341         enclosure element of <item>.
14342
14343 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
14344
14345         * message.el (message-kill-buffer-query): Rename from
14346         `message-kill-buffer-query-if-modified'.  Add :version.
14347
14348 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14349
14350         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
14351         window layout.
14352
14353 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14354
14355         * mml.el: Autoload dnd when compiling.
14356
14357 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
14358
14359         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
14360         x-dnd-*.
14361
14362 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14363
14364         * qp.el (quoted-printable-encode-region): Save excursion.
14365
14366 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
14367
14368         * message.el (message-kill-buffer-query-if-modified): Add new variable
14369         so the user can kill a modified message buffer quickly.
14370         (message-kill-buffer): Use it.
14371
14372 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14373
14374         * lpath.el: Fbind display-time-event-handler; don't fbind
14375         string-to-multibyte.
14376
14377         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
14378
14379 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14380
14381         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
14382         contained in text because xml.el decodes entities) with LFs.
14383
14384 2005-04-11  Lute Kamstra  <lute@gnu.org>
14385
14386         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
14387         differently.
14388
14389 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14390
14391         * mm-util.el (mm-detect-coding-region): Typo.
14392
14393 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14394
14395         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
14396
14397 2005-04-06  Deepak Goel  <deego@gnufans.org>
14398
14399         * spam-stat.el (spam-stat-score-buffer): Add a call to a
14400         user-function allow user modifications of the scores.
14401         (spam-stat-score-buffer-user): New function, to allow
14402         user-computed modifications to the score.
14403         (spam-stat-score-buffer-user-functions): List of additional
14404         scoring functions.
14405         (spam-stat-error-holder): Global temporary error holder.
14406         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
14407         variable.
14408
14409 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
14410
14411         * gnus-registry.el (gnus-registry-clean-empty-function)
14412         (gnus-registry-trim, gnus-registry-fetch-groups)
14413         (gnus-registry-delete-group): Groups that match
14414         `gnus-registry-ignored-groups' are removed from the registry
14415         entries, not just ignored for splitting.  This helps clean up the
14416         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
14417         to get all the groups a message ID is in.
14418
14419         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
14420         (spam-stat-split-fancy): Change "threshhold" to "threshold".
14421         (spam-stat-score-buffer-user-functions): Add :number custom type.
14422
14423 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14424
14425         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
14426         argument in XEmacs.
14427
14428         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
14429         (nnrss-request-group): Decode group name first.
14430         (nnrss-request-article): Make a text/plain article if mml-to-mime
14431         failed.
14432         (nnrss-get-encoding): Return a compatible encoding according to
14433         nnrss-compatible-encoding-alist.
14434         (nnrss-find-el): Use consp instead of listp.
14435         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
14436
14437 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14438
14439         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
14440         which Emacs 20 doesn't support.
14441         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
14442
14443 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
14444
14445         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
14446         silence the byte compiler inside the defun.
14447
14448         * gnus-demon.el (parse-time-string): Add autoload.
14449
14450         * gnus-delay.el (parse-time-string): Add autoload.
14451
14452         * gnus-art.el (parse-time-string): Add autoload.
14453
14454         * nnultimate.el (parse-time): Require for `parse-time-string'.
14455
14456 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
14457
14458         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
14459
14460         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
14461
14462         * smime.el (smime-ldap-host-list): Add :version.
14463
14464 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
14465
14466         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
14467         pass it to `gnus-browse-read-group'.
14468         (gnus-browse-read-group): Add NUMBER argument and pass it to
14469         `gnus-group-read-ephemeral-group'.
14470
14471         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
14472         argument and pass it to `gnus-group-read-group'.
14473
14474 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
14475
14476         * mm-util.el (mm-xemacs-find-mime-charset): Only call
14477         mm-xemacs-find-mime-charset-1 if we have the mule feature
14478         available at runtime.
14479
14480 2005-03-25  Werner Lemberg  <wl@gnu.org>
14481
14482         * nnmaildir.el: Replace `illegal' with `invalid'.
14483
14484 2005-03-23  Lute Kamstra  <lute@gnu.org>
14485
14486         * time-date.el: Add comment on time value formats.
14487         Don't require parse-time.
14488         (with-decoded-time-value): New macro.
14489         (encode-time-value): New function.
14490         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
14491         (days-to-time): Return a valid time value when arg is huge.
14492         (time-since): Use time-subtract.
14493         (time-to-number-of-days): Use time-to-seconds.
14494
14495 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14496
14497         * gnus-start.el (gnus-display-time-event-handler):
14498         Check display-time-timer at runtime rather than only at load time
14499         in case display-time-mode is turned off in the mean time.
14500
14501 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
14502
14503         * nnimap.el (nnimap-open-connection): Print which authinfo file is
14504         used.
14505
14506         * nneething.el (nneething-map-file-directory): Derive from
14507         `gnus-directory'.
14508
14509         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
14510         the To/Cc button.
14511
14512 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
14513
14514         * nnmaildir.el (nnmaildir-request-accept-article):
14515         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
14516
14517 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
14518
14519         * gnus-async.el: Require timer-funcs at compile time when in
14520         XEmacs for `run-with-idle-timer'.
14521
14522 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
14523
14524         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
14525         autoloaded function.
14526
14527 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14528
14529         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
14530
14531 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
14532
14533         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
14534
14535 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14536
14537         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
14538         Add gnus-expert-user to default.
14539
14540 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
14541
14542         * nnimap.el (nnimap-open-server): Ditto.
14543
14544         * imap.el (imap-authenticate): Fix typo.
14545
14546 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
14547
14548         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
14549         buffer (since IMAP server might return FETCH response out of
14550         order, and the nntp buffer must be sorted).
14551
14552 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
14553
14554         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
14555         comparison on string.
14556
14557         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
14558         (gnus-agent-score): Rename category keywords to match gnus-cus.
14559         (gnus-agent-summary-fetch-series): Modify to protect against
14560         gnus-agent-summary-fetch-group clearing processable flags.
14561         (gnus-agent-synchronize-group-flags): Update live group buffer as
14562         synchronization may occur due to the user toggle the plugged
14563         status.
14564         (gnus-agent-fetch-group-1): Clear downloadable flag when article
14565         successfully downloaded.
14566         (gnus-agent-expire-group-1): Avoid using markers when the overview
14567         is in ascending order; greatly improves performance.
14568         (gnus-agent-regenerate-group):
14569         Use gnus-agent-synchronize-group-flags to reset read status in both
14570         gnus and server.
14571         (gnus-agent-update-files-total-fetched-for): Fix initial size.
14572
14573 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
14574
14575         * message.el: Don't autoload former message-utils variables.
14576         (message-strip-subject-trailing-was): Change doc string.
14577
14578         * nnweb.el: Fixes for `gnus-group-make-web-group'.
14579         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
14580         (nnweb-google-search): Add "hl=en" here.
14581         (nnweb-google-parse-1, nnweb-google-create-mapping):
14582         Don't hardcode URL.
14583
14584 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
14585
14586         * message.el (message-get-reply-headers, message-followup):
14587         Mention related variables `message-use-followup-to' and
14588         `message-use-mail-followup-to', in the information buffer.
14589
14590         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
14591         of broken groups(-beta).google.com.
14592
14593 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
14594
14595         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
14596         parameter to invoked gnus-request-move-article; remove the
14597         redundant gnus-sum-hint-move-is-internal variable; apply the marks
14598         all at once instead of once per article.
14599         (gnus-summary-remove-process-mark): Accept a list of articles as
14600         well as a single article for processing.
14601
14602         * gnus-int.el (gnus-request-move-article): Add move-is-internal
14603         parameter.
14604
14605         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
14606
14607         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
14608
14609         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
14610         parameter.
14611
14612         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
14613         parameter.
14614
14615         * nnimap.el (nnimap-request-move-article): Add move-is-internal
14616         parameter and remove the gnus-sum-hint-move-is-internal variable.
14617
14618         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
14619         parameter.
14620
14621         * nndraft.el (nndraft-request-move-article): Add move-is-internal
14622         parameter.
14623
14624         * nndiary.el (nndiary-request-move-article): Add move-is-internal
14625         parameter.
14626
14627         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
14628
14629         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
14630         parameter.
14631
14632         * nnagent.el (nnagent-request-move-article): Add move-is-internal
14633         parameter.
14634
14635 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14636
14637         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
14638         a more conservative way.
14639
14640 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14641
14642         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
14643         buffer, so it moves the window's cursor.
14644
14645 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
14646
14647         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
14648         `mm-dissect-multipart' and receive the from field as an (optional)
14649         argument from `mm-dissect-multipart'.
14650         (mm-dissect-multipart): Receive the from field as an argument and
14651         pass it on when we call `mm-dissect-buffer' on MIME parts.
14652         Fixes verification/decryption of signed/encrypted MIME parts.
14653
14654 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
14655
14656         * gnus-sum.el (gnus-summary-move-article):
14657         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
14658         whatever it calls (right now, only nnimap-request-move article
14659         respects it).
14660
14661         * nnimap.el (nnimap-request-move-article):
14662         When gnus-sum-hint-move-is-internal is set, don't do the extra
14663         nnimap-request-article.
14664
14665 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
14666
14667         * nnheader.el (nnheader-find-file-noselect): Add doc string.
14668
14669         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
14670         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
14671
14672         * gnus-sum.el (gnus-summary-caesar-message):
14673         Apply `gnus-treat-article' after rotation.
14674
14675         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
14676         doc string.
14677
14678 2005-02-22  Simon Josefsson  <jas@extundo.com>
14679
14680         * encrypt.el (encrypt-password-cache-expiry): Remove (use
14681         `password-cache-expiry' instead).  Reported by Arne Jørgensen
14682         <arne@arnested.dk>.
14683         (encrypt): Add password-cache and password-cache-expiry as group
14684         members.
14685
14686 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
14687
14688         * smime.el (smime-ldap-host-list): Doc fix.
14689         (smime-ask-passphrase): Use `password-read-and-add' to read (and
14690         cache) password.
14691         (smime-sign-region): Use it.
14692         (smime-decrypt-region): Use it.
14693         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
14694         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
14695         fails.
14696         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
14697         certificate from DER to PEM format rather than calling openssl.
14698
14699         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
14700
14701         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
14702         for signing/encryption.
14703
14704         * mml.el (mml-parse-1): Use them.
14705
14706 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
14707
14708         * nnrss.el (nnrss-verbose): Remove.
14709         (nnrss-request-group): Use `nnheader-message' instead.
14710
14711 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
14712
14713         * nnrss.el (nnrss-verbose): New variable.
14714         (nnrss-request-group): Make it say nnrss is requesting a group.
14715
14716 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
14717
14718         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
14719         Handle news URL with given port correctly.
14720
14721 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14722
14723         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
14724         containing special characters.
14725
14726         * gnus-sum.el (gnus-summary-edit-article): Ditto.
14727
14728         * mml.el (mime-to-mml): Ditto.
14729
14730         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
14731         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
14732         (rfc2047-decode-region): Quote decoded words containing special
14733         characters when rfc2047-quote-decoded-words-containing-tspecials
14734         is non-nil.
14735
14736 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
14737
14738         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
14739
14740         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
14741
14742 2005-02-15  Simon Josefsson  <jas@extundo.com>
14743
14744         * nnimap.el (nnimap-debug): Doc fix.
14745
14746         * imap.el (imap-debug): Doc fix.
14747
14748 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14749
14750         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
14751
14752 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
14753
14754         * gnus.el (spam-contents): Improve docs for spam-contents
14755         parameter in its variable incarnation.
14756
14757 2005-02-14  Simon Josefsson  <jas@extundo.com>
14758
14759         * smime-ldap.el: Use require instead of load-library for ldap.
14760         (smime-ldap-search): Indent.
14761         (smime-ldap-search-internal): Shorten line.
14762
14763         * smime.el (smime-cert-by-dns): Add doc-string.
14764         (smime-cert-by-ldap-1): Indent.
14765
14766         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
14767         mml-smime-get-dns-ldap.
14768         (mml-smime-encrypt-query): Use new function.  Default to ldap.
14769
14770 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
14771
14772         * smime.el: Require smime-ldap.
14773         (smime-ldap-host-list): New variable.
14774         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
14775
14776         * mml-smime.el (mml-smime-encrypt-query): New function.
14777         (mml-smime-encrypt-query): Use it.
14778
14779         * smime-ldap.el: New file.
14780
14781 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14782
14783         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
14784
14785 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
14786
14787         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
14788         argument in doc string.  Make query for type more clear.
14789
14790 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
14791
14792         * gnus.el (gnus-group-startup-message): Search for gnus images in
14793         etc/images/gnus.
14794         * mm-util.el (mm-image-load-path): Likewise.
14795         * smiley.el (smiley-data-directory): Search for smilies in
14796         etc/images/smilies.
14797
14798 2005-02-09  Kim F. Storm  <storm@cua.dk>
14799
14800         Change Emacs release version from 21.4 to 22.1 throughout.
14801         Change Emacs development version from 21.3.50 to 22.0.50.
14802
14803 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14804
14805         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
14806
14807         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
14808         non-Mule XEmacs as well.
14809         (mm-decompress-buffer): Signal an error intentionally if it does
14810         not decompress compressed data because auto-compression-mode is
14811         disabled.
14812
14813 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
14814
14815         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
14816         an ID in the registry even if it has no groups.
14817
14818 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14819
14820         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
14821         merge it into mm-decompress-buffer.
14822         (gnus-mime-copy-part): Use the MIME part charset, the value which
14823         a user specified or gnus-newsgroup-charset for decoding, like
14824         gnus-mime-inline-part does; set buffer-file-coding-system to tell
14825         save-buffer what was used.  Suggested by Kevin Ryde
14826         <user42@zip.com.au>.
14827         (gnus-mime-inline-part): Allow the name parameter as well as the
14828         filename parameter; force decompressing of compressed data; always
14829         display contents being not decoded as unibyte.
14830
14831         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
14832         as well as the filename parameter.
14833
14834         * mm-util.el (mm-decompress-buffer):
14835         Merge gnus-mime-jka-compr-maybe-uncompress.
14836         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
14837         of compressed data.
14838
14839 2005-02-08  Simon Josefsson  <jas@extundo.com>
14840
14841         * imap.el (imap-log): Doc fix.
14842
14843 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14844
14845         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
14846         the coding cookies; decompress compressed parts.
14847
14848         * mml.el (mml-generate-mime-1): Add the charset parameter according
14849         to the value which a user specified manually or the coding cookie.
14850
14851         * mm-util.el (mm-string-to-multibyte): New function.
14852         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
14853         (mm-coding-system-to-mime-charset): New function.
14854         (mm-decompress-buffer): New function.
14855         (mm-find-buffer-file-coding-system): New function.
14856
14857         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
14858         (mm-display-inline-fontify): Rewrite for decoding and decompressing
14859         parts.
14860
14861 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14862
14863         * mm-view.el (mm-display-inline-fontify): Decode a part according
14864         to the charset parameter.
14865
14866 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14867
14868         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
14869         prefix arg is neither nil nor a number, as info specifies.
14870
14871 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14872
14873         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
14874         timestamps.
14875
14876 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
14877
14878         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
14879         groups error checking and notify user.
14880
14881 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
14882
14883         * message.el (message-send-mail-function): Check existence of
14884         sendmail-program first before using default value
14885         `message-send-mail-with-sendmail'.  Otherwise use more generic
14886         `smtpmail-send-it'.
14887
14888 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14889
14890         * nntp.el (nntp-request-update-info): Always return nil.
14891
14892 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14893
14894         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
14895
14896 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14897
14898         * message.el (message-beginning-of-line): Change the behavior when
14899         invoked between BOL and : so that it first moves backward.
14900
14901 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14902
14903         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
14904         article buffer when editing of the article is discarded.
14905         (gnus-article-prepare): Revert.
14906
14907 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14908
14909         * gnus-art.el (gnus-article-prepare):
14910         Remove message-strip-forbidden-properties from the local hook.
14911
14912 2005-01-27  Simon Josefsson  <jas@extundo.com>
14913
14914         * password.el (password-cache-add): Only start one timer per key.
14915         Reported by Derek Atkins <warlord@MIT.EDU>.
14916
14917 2005-01-26  Steve Youngs  <steve@sxemacs.org>
14918
14919         * run-at-time.el: Remove.  It is no longer needed as
14920         timer-funcs.el in the xemacs-base package has a working version of
14921         `run-at-time'.
14922
14923         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
14924
14925         * password.el: Require timer-funcs instead of run-at-time in
14926         XEmacs.
14927         Remove `password-run-at-time' macro.
14928         (password-cache-add): Use `run-at-time' instead of
14929         `password-run-at-time'.
14930
14931         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
14932         Remove `nnheader-cancel-function-timers' alias,
14933         `cancel-function-timers' exists in XEmacs in timer-funcs.
14934
14935         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
14936         for `run-with-idle-timer'.
14937
14938         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
14939         for `run-at-time'.
14940
14941         * mm-url.el: Require timer-funcs at compile time when in XEmacs
14942         for `with-timeout'.
14943
14944         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
14945         the same as for XEmacs 21.4.
14946         No need to ignore `run-with-idle-timer', this function exists in
14947         XEmacs now in timer-funcs.el in the xemacs-base package.
14948         (dgnushack-compile): No need to delete
14949         run-at-time.el from the list of files to compile because it
14950         doesn't exist anymore.
14951
14952 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14953
14954         * mml.el (mml-generate-mime-1): Convert string into unibyte when
14955         inserting " *mml*" buffer's contents into a unibyte temp buffer.
14956
14957 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
14958
14959         * mail-source.el (mail-source-fetch-imap): Search for ^From case
14960         sensitively.
14961
14962 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
14963
14964         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
14965
14966 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14967
14968         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
14969         which will be inserted according to the multibyteness of a buffer
14970         rather than the type of contents.  Suggested by ARISAWA Akihiro
14971         <ari@mbf.ocn.ne.jp>.
14972
14973         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
14974         of string which old xml.el may return rather than a string.
14975
14976 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14977
14978         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
14979
14980 2005-01-16  Simon Josefsson  <jas@extundo.com>
14981
14982         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
14983         idn/idna.el isn't available.
14984         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
14985         <michael@waxrat.com>.
14986
14987         * hashcash.el: Remove non-FSF copyright header.
14988
14989         * hashcash.el (hashcash-extra-generate-parameters): New variable.
14990         (hashcash-generate-payment): Use it.
14991         (hashcash-generate-payment-async): Use it.
14992
14993 2005-01-15  Simon Josefsson  <jas@extundo.com>
14994
14995         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
14996         Suggested by Raymond Scholz <ray-2005@zonix.de>.
14997
14998         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
14999         gnus-summary-idna-message.
15000         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
15001         (gnus-summary-idna-message): New function.
15002
15003 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
15004
15005         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
15006         gnus-novice-user.
15007
15008 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15009
15010         * nnrss.el (nnrss-request-delete-group): Delete entries in
15011         nnrss-group-alist as well.
15012         (nnrss-save-server-data): Insert newline.
15013
15014 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
15015
15016         * gnus.el (gnus-user-agent): Use list of symbols instead of
15017         symbols.  Display full version number for (S)XEmacs.
15018         Optionally display (S)XEmacs codename.
15019
15020         * gnus-util.el (gnus-emacs-version): Update for new
15021         `gnus-user-agent'.
15022
15023         * gnus-msg.el (gnus-extended-version): Make it possible to omit
15024         Gnus version.
15025
15026 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
15027
15028         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
15029         which is unreadable in some setups.
15030
15031 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15032
15033         * gnus-spec.el (gnus-update-format-specifications): Flush the
15034         group format spec cache if it doesn't support decoded group names.
15035
15036 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
15037
15038         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
15039         Allow to apply decay on score files matching a regexp.
15040
15041 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15042
15043         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
15044         compatibility in %g and %c.
15045
15046 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15047
15048         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
15049         name for only %g and %c.
15050         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
15051         of gnus-tmp-group to decoded group name.
15052         (gnus-group-make-rss-group): Exclude `/'s from group names.
15053
15054 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15055
15056         * nnrss.el (nnrss-get-encoding): Fix regexp.
15057
15058 2004-12-27  Simon Josefsson  <jas@extundo.com>
15059
15060         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
15061         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
15062         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
15063
15064 2004-12-17  Kim F. Storm  <storm@cua.dk>
15065
15066         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
15067
15068         * gnus-sum.el (gnus-summary-mode-map): Likewise.
15069
15070 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
15071
15072         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
15073
15074 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15075
15076         * nnrss.el: Require rfc2047 and mml.
15077         (nnrss-file-coding-system): New variable.
15078         (nnrss-format-string): Redefine it as an inline function.
15079         (nnrss-decode-group-name): New function.
15080         (nnrss-string-as-multibyte): Remove.
15081         (nnrss-retrieve-headers): Decode group name; don't use
15082         nnrss-format-string.
15083         (nnrss-request-group): Decode group name.
15084         (nnrss-request-article): Decode group name; allow a Message-ID as
15085         well as an article number; don't use nnrss-format-string; encode a
15086         Message-ID string which may contain non-ASCII characters; use
15087         mml-to-mime to compose a MIME article.
15088         (nnrss-request-expire-articles): Decode group name.
15089         (nnrss-request-delete-group): Decode group name.
15090         (nnrss-fetch): Clarify error message.
15091         (nnrss-read-server-data): Use insert-file-contents instead of load;
15092         bind file-name-coding-system; use multibyte buffer.
15093         (nnrss-save-server-data): Bind coding-system-for-write to the
15094         value of nnrss-file-coding-system; bind file-name-coding-system;
15095         add coding cookie.
15096         (nnrss-read-group-data): Use insert-file-contents instead of load;
15097         bind file-name-coding-system; use multibyte buffer.
15098         (nnrss-save-group-data): Bind coding-system-for-write to the
15099         value of nnrss-file-coding-system; bind file-name-coding-system.
15100         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
15101         make it work with non-ASCII text.
15102         (nnrss-find-el): Make it work with old xml.el as well.
15103
15104 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
15105
15106         * nnrss.el (nnrss-get-encoding): New function.
15107         (nnrss-fetch): Use unibyte buffer initially; bind
15108         coding-system-for-read while performing mm-url-insert; remove ^Ms;
15109         decode contents according to the encoding attribute.
15110         (nnrss-save-group-data): Add coding cookie.
15111         (nnrss-mime-encode-string): New function.
15112         (nnrss-check-group): Use it to encode subject and author.
15113
15114 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
15115
15116         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
15117         imaginary variable.
15118
15119 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15120
15121         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
15122         correctly even if there are wide characters.
15123
15124 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
15125
15126         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
15127         downcased symbol names; make a new cache instead of reusing
15128         bbdb-hashtable.
15129
15130 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
15131
15132         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
15133         concatenating segments rather than before concatenating them.
15134         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
15135
15136         * message.el (message-get-reply-headers): Bind `extra'.
15137
15138 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15139
15140         * message.el (message-extra-wide-headers): New variable.
15141         (message-get-reply-headers): Use it.
15142
15143 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15144
15145         * gnus-agent.el (gnus-agent-group-path): Decode group name.
15146         (gnus-agent-group-pathname): Ditto.
15147
15148         * gnus-cache.el (gnus-cache-file-name): Decode group name.
15149
15150         * gnus-group.el (gnus-group-make-group): Decode group name.
15151         (gnus-group-make-rss-group): Register the group data after opening
15152         the nnrss group.
15153
15154 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
15155
15156         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
15157         by expiry now get marked as read.
15158
15159 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15160
15161         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
15162
15163 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
15164
15165         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
15166         unify Latin characters in XEmacs.
15167         (mm-find-mime-charset-region): Use it.
15168
15169 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15170
15171         * gnus-util.el (gnus-delete-directory): New function.
15172
15173         * gnus-agent.el (gnus-agent-delete-group): Use it.
15174
15175         * gnus-cache.el (gnus-cache-delete-group): Use it.
15176
15177 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15178
15179         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
15180         names.
15181
15182 2004-12-16  Simon Josefsson  <jas@extundo.com>
15183
15184         * hashcash.el (hashcash-payment-alist): Fix custom :type.
15185
15186 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15187
15188         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
15189
15190         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
15191         (gnus-group-set-current-level): Decode group name.
15192
15193 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
15194
15195         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
15196         failed.
15197
15198 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15199
15200         * gnus-group.el (gnus-group-delete-group): Decode group name.
15201         (gnus-group-make-rss-group): Encode group name.
15202         (gnus-group-catchup-current): Decode group name.
15203         (gnus-group-kill-group): Decode group name.
15204
15205 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15206
15207         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
15208
15209 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15210
15211         * gnus-group.el (gnus-group-make-rss-group):
15212         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
15213
15214         * gnus-start.el (gnus-setup-news): Honor user's setting to
15215         gnus-message-archive-method.  Suggested by Lute Kamstra
15216         <lute@gnu.org>.
15217
15218 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
15219
15220         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
15221         global counterparts of the buffer-local variables.
15222
15223 2004-11-16  Romain Francoise  <romain@orebokech.com>
15224
15225         * gnus-sum.el (gnus-summary-exit): Don't clear the global
15226         counterparts of the buffer-local variables.
15227
15228 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15229
15230         * message.el (message-forbidden-properties): Fix typo in doc
15231         string.
15232
15233 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15234
15235         * gnus-util.el (gnus-replace-in-string): Add doc string.
15236
15237         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
15238         to avoid problems when splitting mails with many recipients.
15239
15240 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15241
15242         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
15243         pop-to-buffer, covered by the subsequent gnus-configure-windows.
15244
15245 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
15246
15247         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
15248         if there is no hashtable in memory or file modification time is
15249         newer than cached timestamp.
15250
15251 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
15252
15253         * gnus-sum.el (gnus-summary-limit-to-recipient):
15254         Implement not-matching option.
15255
15256 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
15257
15258         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
15259         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
15260         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15261         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
15262         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
15263         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
15264
15265 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15266
15267         * message.el (message-forward-make-body-mml): Remove headers
15268         according to message-forward-ignored-headers if a message is decoded.
15269
15270 2004-12-02  Romain Francoise  <romain@orebokech.com>
15271
15272         * message.el (message-forward-make-body-plain): Always remove
15273         headers according to message-forward-ignored-headers.
15274
15275 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
15276
15277         * spam.el (spam-summary-prepare-exit): Remove the
15278         gnus-summary-limit pop for now, it has problems with ham marks for
15279         me.
15280
15281 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
15282
15283         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
15284         correctly.
15285
15286 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
15287
15288         * format-spec.el (format-spec): Message the char.
15289
15290 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
15291
15292         * gnus-art.el (gnus-split-methods): Reformat comments.
15293
15294         * spam.el (spam-summary-prepare-exit): Remove article limits
15295         before exiting the summary buffer.
15296
15297 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15298
15299         * lpath.el: Remove bbdb-create-internal, bbdb-records,
15300         spam-BBDB-register-routine and spam-enter-ham-BBDB.
15301
15302         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
15303         order to silence the byte compiler.
15304
15305         * spam.el: Fix the way to silence the byte compiler, which
15306         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
15307         bbdb-search-simple, spam-BBDB-register-routine,
15308         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
15309         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
15310         spam-stat-buffer-is-spam, spam-stat-load,
15311         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
15312         spam-stat-save and spam-stat-split-fancy.
15313
15314 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15315
15316         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
15317         which may confuse users.
15318         (canlock-password-for-verify): Ditto.
15319
15320         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
15321
15322         * gnus-art.el (gnus-emphasis-alist): Ditto.
15323
15324         * gnus-registry.el (gnus-registry-max-entries): Ditto.
15325
15326         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
15327
15328         * gnus-start.el (gnus-save-killed-list): Ditto.
15329
15330         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
15331         (gnus-sum-thread-tree-root): Ditto.
15332         (gnus-sum-thread-tree-false-root): Ditto.
15333         (gnus-sum-thread-tree-single-indent): Ditto.
15334
15335         * message.el (message-courtesy-message): Ditto.
15336         (message-archive-note): Ditto.
15337         (message-subscribed-address-file): Ditto.
15338         (message-user-fqdn): Ditto.
15339
15340         * spam-report.el (spam-report-gmane-regex): Ditto.
15341
15342         * spam.el (spam-blackhole-good-server-regex): Ditto.
15343
15344 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15345
15346         * mml.el (mml-preview): Widen the message buffer before copying
15347         the contents to the preview buffer; sort headers before previewing.
15348
15349         * message.el (message-hidden-headers): Fix the way to avoid a bug
15350         in the `repeat' widget in Emacs 21.3 or earlier.
15351
15352 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15353
15354         * message.el (message-hidden-headers): Default to "^References:".
15355         Improve customization type.  Suggested by Reiner Steib
15356         <Reiner.Steib@gmx.de>.
15357
15358 2004-11-25  Romain Francoise  <romain@orebokech.com>
15359
15360         * message.el (message-strip-forbidden-properties): Remove check for
15361         obsolete `message-hidden' text property, hidden headers are not
15362         accessible in the buffer anymore.
15363
15364 2004-11-22  Romain Francoise  <romain@orebokech.com>
15365
15366         * message.el (message-header-format-alist): Add `From' in list
15367         so that it can be sorted.
15368         (message-fix-before-sending): Widen and sort headers before
15369         sending.
15370         (message-hide-headers): Use narrowing to hide headers by moving
15371         them to the top of the buffer and narrowing to the region
15372         underneath.
15373
15374 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15375
15376         * message.el (message-strip-forbidden-properties):
15377         Bind buffer-read-only (etc) to nil.
15378
15379 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15380
15381         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
15382         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
15383
15384 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
15385
15386         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
15387
15388 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15389
15390         * dns.el (query-dns): Use sit-for to time instead of
15391         accept-process-output, since that doesn't seem to work on udp
15392         sockets.
15393
15394 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15395
15396         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
15397
15398 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
15399
15400         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
15401         doc string.  Improve doc string.
15402
15403 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15404
15405         * nntp.el (nntp-request-update-info): Return nil if
15406         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
15407         may not call gnus-activate-group which uselessly issues the GROUP
15408         commands for all nntp groups and wastes time.  Reported by Romain
15409         Francoise <romain@orebokech.com>.
15410
15411         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
15412
15413 2004-11-15  Simon Josefsson  <jas@extundo.com>
15414
15415         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
15416         headers separately.
15417         (gnus-button-openpgp): New function, inspired by Jochen Küpper
15418         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
15419
15420 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
15421
15422         * gnus-start.el (gnus-convert-old-newsrc):
15423         Assign legacy-gnus-agent to 5.10.7.
15424
15425 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15426
15427         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
15428         start of the lines.
15429
15430 2004-11-14  Magnus Henoch  <mange@freemail.hu>
15431
15432         * hashcash.el (hashcash-default-payment): Change default to 20.
15433         (hashcash-default-accept-payment): Change default to 20.
15434         (hashcash-process-alist): New variable.
15435         (hashcash-generate-payment-async): Add.
15436         (hashcash-already-paid-p): Add.
15437         (hashcash-insert-payment): Don't generate payments twice.
15438         (hashcash-insert-payment-async): Add.
15439         (hashcash-insert-payment-async-2): Add.
15440         (hashcash-cancel-async): Add.
15441         (hashcash-wait-async): Add.
15442         (hashcash-processes-running-p): Add.
15443         (hashcash-wait-or-cancel): Add.
15444         (mail-add-payment): New optional argument.  Conditionally start
15445         asynchronous calculation.
15446         (mail-add-payment-async): Add.
15447
15448         * message.el (message-send-mail): Wait for asynchronous hashcash
15449         results.  Don't clobber existing X-Hashcash headers.
15450         (message-setup-1): Call mail-add-payment-async when
15451         message-generate-hashcash is non-nil.
15452
15453 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15454
15455         * message.el (message-use-alternative-email-as-from): Examine the
15456         From header as well; use message-make-from in order to include a
15457         user's full name.
15458
15459 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15460
15461         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
15462         default; improve customization type.
15463         (gnus-emphasis-custom-with-format): New macro.
15464         (gnus-emphasis-custom-value-to-external): New function.
15465         (gnus-emphasis-custom-value-to-internal): New function.
15466
15467 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15468
15469         * dns.el (query-dns): Resolve reverse addresses.
15470
15471 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15472
15473         * gnus-group.el (gnus-group-get-new-news): Use it.
15474
15475         * gnus-start.el (gnus-check-reasonable-setup): New function.
15476
15477 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15478
15479         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
15480         "Args out of range" error.  Reported by Arnaud Giersch
15481         <arnaud.giersch@free.fr>.
15482
15483 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
15484
15485         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
15486
15487 2004-11-04  Richard M. Stallman  <rms@gnu.org>
15488
15489         * spam.el (spam group): Add :version.
15490
15491         * pgg-def.el (pgg group): Add :version.
15492
15493 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15494
15495         * gnus-art.el (gnus-article-edit-article): Don't associate the
15496         article buffer with a draft file.  This is a temporary measure
15497         against the 2004-08-22 change to gnus-article-edit-mode.
15498
15499 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15500
15501         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
15502         (html2text-format-tags): Remove unused variable `attr'.
15503
15504 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
15505
15506         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
15507
15508         * tls.el (tls-process-connection-type, tls-success)
15509         (tls-certtool-program): Add :version.
15510
15511         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
15512         (starttls-extra-arguments, starttls-process-connection-type)
15513         (starttls-connect, starttls-failure, starttls-success): Add :version.
15514
15515         * spam-stat.el (spam-stat): Add :version.
15516
15517         * sieve.el (sieve): Add :version.
15518
15519         * sha1.el (sha1): Add :version.
15520         (sha1-use-external): Remove redundant version.
15521
15522         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
15523         (nnmail-cache-ignore-groups, nnmail-spool-hook)
15524         (nnmail-split-fancy-match-partial-words)
15525         (nnmail-split-lowercase-expanded): Add :version.
15526
15527         * nndiary.el (nndiary): Add :version.
15528
15529         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
15530
15531         * mml-sec.el (mml-default-sign-method)
15532         (mml-default-encrypt-method, mml-signencrypt-style-alist):
15533         Add :version.
15534
15535         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
15536
15537         * mm-url.el (mm-url-use-external, mm-url-program)
15538         (mm-url-arguments): Add :version.
15539
15540         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
15541         (mm-attachment-file-modes, mm-decrypt-option)
15542         (mm-w3m-safe-url-regexp): Add :version.
15543
15544         * message.el (message-cite-prefix-regexp)
15545         (message-sendmail-envelope-from, message-minibuffer-local-map)
15546         (message-user-fqdn, message-completion-alist): Add :version.
15547
15548         * gnus-win.el (gnus-configure-windows-hook)
15549         (gnus-use-frames-on-any-display): Add :version.
15550
15551         * gnus-art.el (gnus-article-address-banner-alist)
15552         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
15553         (gnus-treat-from-picon, gnus-treat-mail-picon)
15554         (gnus-treat-x-pgp-sig): Add :version.
15555
15556         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
15557         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
15558         (gnus-summary-article-delete-hook)
15559         (gnus-summary-display-while-building): Add :version.
15560
15561         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
15562         (gnus-get-top-new-news-hook): Add :version.
15563
15564         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15565         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
15566
15567         * gnus-registry.el (gnus-registry): Add :version.
15568
15569         * gnus-spec.el (gnus-use-correct-string-widths)
15570         (gnus-make-format-preserve-properties): Add :version.
15571
15572         * gnus.el (gnus-group-charter-alist)
15573         (gnus-group-fetch-control-use-browse-url)
15574         (gnus-install-group-spam-parameters): Add :version.
15575
15576         * gnus-diary.el (gnus-diary): Add :version.
15577
15578         * gnus-delay.el (gnus-delay): Add :version.
15579
15580         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
15581         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
15582         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
15583         Add :version.
15584
15585         * gnus-agent.el (gnus-agent-max-fetch-size)
15586         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
15587         (gnus-agent-prompt-send-queue): Add :version.
15588
15589         * deuglify.el (gnus-outlook-deuglify): Add :version.
15590
15591         * html2text.el: Beautify code.  Improve doc strings.
15592         Some checkdoc cleanup.
15593         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
15594
15595 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
15596
15597         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
15598
15599 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
15600
15601         * gnus-registry.el (gnus-registry-hashtb): Create the registry
15602         when package is loaded.
15603
15604         * spam.el (spam-summary-score-preferred-header): Add global preference
15605         for people who want to override the default SpamAssassin over
15606         Bogofilter preference (when both are set).
15607         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
15608         (spam-user-format-function-S):
15609         Check spam-summary-score-preferred-header.
15610         (spam-extra-header-to-number): Add X-Bogosity header parsing.
15611         (spam-user-format-function-S): Format the score correctly.
15612
15613 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15614
15615         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
15616         signature file.  Suggested by Manoj Srivastava
15617         <srivasta@golden-gryphon.com>.
15618
15619         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
15620         iso-2022-jp even in the Japanese language environment.
15621         Suggested by Jason Rumney <jasonr@gnu.org>.
15622
15623 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15624
15625         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
15626         use the same characters as the dummy marks; make it free from
15627         getting affected by the language environment.
15628         (gnus-summary-read-group-1): Update mark positions only when the
15629         format spec is updated.
15630
15631         * gnus-spec.el (gnus-update-format-specifications): Return a list
15632         of updated types.
15633
15634 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15635
15636         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
15637         of boundp to check if display-warning is available.
15638
15639 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
15640
15641         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
15642
15643 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15644
15645         * nnspool.el (nnspool-spool-directory): Use news-path if the
15646         news-directory variable is not bound.
15647
15648         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
15649         function instead of display-warning if it is not available.
15650
15651 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
15652
15653         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
15654         v5-10: Use `point-at-bol'.
15655
15656 2004-10-26  Simon Josefsson  <jas@extundo.com>
15657
15658         * hashcash.el: Fix URL in comment, reported by Cheng Gao
15659         <chenggao@gmail.com>.
15660
15661 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
15662
15663         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
15664         instead.
15665
15666 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
15667
15668         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
15669         to remove a server from the nnimap-server-buffer-alist.
15670         (nnimap-open-connection, nnimap-close-server): Use it.
15671
15672         * gnus-encrypt.el: Remove file in favor of encrypt.el.
15673
15674 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
15675
15676         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
15677         running the major-mode function.
15678
15679 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15680
15681         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
15682         dummy marks in the right way.
15683
15684 2004-10-18  David Edmondson  <dme@dme.org>
15685
15686         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
15687         excessively.
15688
15689 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
15690
15691         * gnus-util.el (gnus-split-references): Accept a nil references
15692         string and go on blissfully.
15693
15694         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
15695         cases where the references string is non-nil but has no references.
15696
15697         * encrypt.el: Add autoload tags.
15698
15699         * spam.el (spam-resolve-registrations-routine): Remove article
15700         from unregistration list too.  Reported by David Hanak
15701         <dhanak@isis.vanderbilt.edu>
15702
15703 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
15704
15705         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
15706         nil.  Change custom type.
15707
15708 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
15709
15710         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
15711
15712         * gnus-sum.el (gnus-summary-move-article): Use it.
15713
15714 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
15715
15716         * encrypt.el: Add autoload cookies.
15717
15718         * spam.el (spam-backend-article-list-property)
15719         (spam-backend-get-article-todo-list)
15720         (spam-backend-put-article-todo-list)
15721         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
15722         Resolve registrations separately.
15723         (spam-register-routine): Format comments.
15724         (spam-unregister-routine, spam-register-routine): Always call with
15725         specific-articles, no default list.
15726         (spam-summary-prepare-exit): Use the spam-classifications function.
15727
15728         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
15729         gnus-encrypt.el.
15730
15731         * encrypt.el: Copied from gnus-encrypt.el.
15732
15733         * gnus-encrypt.el: Commented that it's obsolete.
15734
15735 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
15736
15737         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
15738         (gnus-score-save): Use it.
15739
15740         * message.el (message-bury): Use `window-dedicated-p'.
15741
15742 2004-10-15  Simon Josefsson  <jas@extundo.com>
15743
15744         * pop3.el (top-level): Don't require nnheader.
15745         (pop3-read-timeout): Add.
15746         (pop3-accept-process-output): Add.
15747         (pop3-read-response, pop3-retr): Use it.
15748
15749 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
15750
15751         * spam.el (spam-register-routine): Move comment.
15752         (spam-verify-bogofilter): Use 'unknown for the initial
15753         spam-bogofilter-valid state, not 'never.
15754
15755         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
15756         for netrc-machine.
15757
15758         * nnimap.el (nnimap-open-connection):
15759         Use netrc-machine-user-or-password.
15760
15761 2004-10-17  Richard M. Stallman  <rms@gnu.org>
15762
15763         * gnus-registry.el (gnus-registry-unload-hook):
15764         Set as a variable with add-hook.
15765
15766         * nnspool.el (nnspool-spool-directory): Use news-directory instead
15767         of news-path.
15768
15769         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
15770
15771         * spam.el: Delete duplicate `provide'.
15772         (spam-unload-hook): Set as a variable with add-hook.
15773
15774 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
15775
15776         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
15777         in the doc string.
15778
15779         * message.el (message-ignored-news-headers)
15780         (message-ignored-supersedes-headers)
15781         (message-ignored-resent-headers)
15782         (message-forward-ignored-headers): Improve custom type.
15783
15784 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15785
15786         * message.el (message-tokenize-header): Fix 2004-09-06 change
15787         which used point-min in the wrong place.
15788
15789 2004-10-12  Simon Josefsson  <jas@extundo.com>
15790
15791         * tls.el (tls-certtool-program): New variable.
15792         (tls-certificate-information): New function, based on
15793         ssl-certificate-information.
15794
15795 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15796
15797         * compface.el: Move the version of ELisp-based uncompface program
15798         to the contrib directory because of the copyright problem.
15799
15800 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
15801
15802         * message.el (message-kill-buffer): Raise the current frame.
15803
15804 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
15805
15806         * gnus-sum.el: Mention that multibyte characters don't work as marks.
15807
15808         * gnus.el (message-y-or-n-p): Autoload.
15809
15810         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
15811         (pop3-password-required, pop3-authentication-scheme)
15812         (pop3-leave-mail-on-server): Make customizable.
15813         (pop3): New custom group.
15814         (pop3-retr): Remove `sleep-for' statements.
15815         Suggested by Dave Love <fx@gnu.org>.
15816
15817         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
15818         Windows/DOS.
15819
15820         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15821         (imap-parse-body): Fix incorrect use of `assert'.
15822         Suggested by Dave Love <fx@gnu.org>.
15823
15824         * mml.el (mml-minibuffer-read-disposition): Require match.
15825         Suggested by Dave Love <fx@gnu.org>.
15826
15827 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
15828
15829         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
15830         doc string.
15831
15832 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15833
15834         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
15835
15836 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
15837
15838         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
15839         instead of calling `mm-insert-inline', to decode text/* parts
15840         before displaying them.
15841
15842 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15843
15844         * mm-uu.el (mm-uu-text-plain-type): New variable.
15845         (mm-uu-pgp-signed-extract-1): Use it.
15846         (mm-uu-pgp-encrypted-extract-1): Use it.
15847         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
15848         bind mm-uu-text-plain-type with that value.
15849         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
15850         mm-uu-dissect.
15851
15852 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15853
15854         * gnus-group.el (gnus-update-group-mark-positions):
15855         * gnus-sum.el (gnus-update-summary-mark-positions):
15856         * message.el (message-check-news-body-syntax):
15857         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
15858         of string-as-multibyte.
15859
15860 2004-10-05  Juri Linkov  <juri@jurta.org>
15861
15862         * gnus-group.el (gnus-update-group-mark-positions):
15863         * gnus-sum.el (gnus-update-summary-mark-positions):
15864         * message.el (message-check-news-body-syntax):
15865         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
15866         8-bit unibyte values to a multibyte string for search functions.
15867
15868 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15869
15870         * mm-uu.el (mm-uu-dissect): Allow optional arg.
15871         (mm-uu-dissect-text-parts): New function.
15872
15873         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
15874         dissect text parts.
15875
15876         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
15877         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
15878
15879         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
15880
15881         * gnus-topic.el (gnus-topic-hierarchical-parameters):
15882         Use gnus-current-topics instead of gnus-current-topic.
15883
15884 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
15885
15886         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
15887
15888 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
15889
15890         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
15891         where approriate.
15892
15893         * nnml.el (nnml-generate-active-info): do.
15894
15895         * nndiary.el (nndiary-generate-active-info): do.
15896
15897         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
15898         (gnus-topic-move): do.
15899
15900         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
15901         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
15902
15903         * gnus-srvr.el (gnus-server-prepare)
15904         (gnus-server-open-all-servers): do.
15905
15906         * gnus-msg.el (gnus-summary-cancel-article)
15907         (gnus-summary-resend-message)
15908         (gnus-summary-mail-crosspost-complaint): do.
15909
15910         * gnus-move.el (gnus-change-server): do.
15911
15912         * gnus-group.el (gnus-group-unmark-all-groups)
15913         (gnus-group-set-current-level): do.
15914
15915 2004-10-04  Simon Josefsson  <jas@extundo.com>
15916
15917         * message.el (message-generate-hashcash): Doc fix.
15918
15919 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
15920
15921         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
15922         avoid infinite recursion via gnus-get-function.
15923
15924 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
15925
15926         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
15927
15928         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
15929
15930         * nnmail.el (nnmail-split-history): do.
15931
15932         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
15933         (nnml-request-delete-group): do.
15934
15935         * nnslashdot.el (nnslashdot-read-groups): do.
15936
15937         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
15938         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
15939
15940         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
15941         (nnspool-sift-nov-with-sed): Use last.
15942         (nnspool-retrieve-headers-with-nov): Use mapc.
15943         (nnspool-request-newgroups): Use dolist.
15944         (nnspool-request-group): Use last.
15945
15946         * nntp.el (nntp-read-server-type): Use dolist.
15947
15948         * nnvirtual.el (nnvirtual-create-mapping)
15949         (nnvirtual-update-read-and-marked): Use dolist.
15950         (nnvirtual-convert-headers): Simplify.
15951
15952 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
15953
15954         * gnus-agent.el (gnus-agent-synchronize-group-flags):
15955         Add support for sync'ing tick marks.
15956
15957 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15958
15959         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
15960         there's no visible header.
15961
15962 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
15963
15964         * gnus-agent.el (gnus-agent-synchronize-group-flags):
15965         When necessary, pass full group name to gnus-request-set-marks.
15966
15967 2004-10-01  Simon Josefsson  <jas@extundo.com>
15968
15969         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
15970         acroread.
15971
15972 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15973
15974         * spam-report.el (spam-report-gmane): Fix interactive.
15975
15976         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
15977
15978         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
15979         when writing file.
15980         (gnus-agent-synchronize-flags): Don't default to being
15981         interactive.
15982
15983 2004-09-30  Simon Josefsson  <jas@extundo.com>
15984
15985         * message.el (message-generate-hashcash): Add.
15986         (message-send-mail): Use it, call mail-add-payment.
15987
15988 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
15989
15990         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
15991
15992 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
15993
15994         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
15995         gnus-requst-update-info with explicit code to sync the in-memory
15996         info read flags with the marks being sync'd to the backend.
15997
15998         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
15999
16000 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16001
16002         * spam.el (spam-verify-bogofilter): Add new function.
16003         (spam-check-bogofilter)
16004         (spam-bogofilter-register-with-bogofilter): Use it.
16005         (spam-verify-bogofilter): Add small fixes.
16006
16007 2004-09-28  Simon Josefsson  <jas@extundo.com>
16008
16009         * hashcash.el (hashcash-generate-payment): Revert.
16010
16011 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16012
16013         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16014         Use gnus-extract-references instead of gnus-split-references.
16015
16016         * gnus-util.el (gnus-extract-references): Add new function, analogous
16017         to gnus-split-references but extracts only the message-ID without
16018         anything extra.
16019
16020         * hashcash.el (hashcash-generate-payment)
16021         (hashcash-check-payment): Do the right thing if hashcash-path is
16022         nil (because the hashcash program could not be found).
16023
16024         * spam.el (spam-use-hashcash): Remove comment.
16025
16026 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
16027
16028         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
16029         (gnus-cache-enter-article, gnus-cache-remove-article)
16030         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
16031
16032         * gnus-async.el (gnus-async-prefetch-remove-group): do.
16033
16034         * gnus-art.el (article-hide-boring-headers)
16035         (article-translate-strings, article-display-face)
16036         (gnus-article-mime-match-handle-first)
16037         (gnus-article-highlight-headers)
16038         (gnus-article-add-buttons-to-head): do.
16039
16040 2004-09-27  Simon Josefsson  <jas@extundo.com>
16041
16042         * hashcash.el: New version, from
16043         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
16044         ../contrib/.
16045
16046 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16047
16048         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
16049
16050 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
16051
16052         * gnus-dup.el (gnus-dup-open): Use mapc.
16053         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
16054
16055         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
16056         Reported by Stefan Wiens <s.wi@gmx.net>.
16057
16058         * gnus.el (gnus-shutdown): Use dolist.
16059
16060         * gnus-undo.el (gnus-undo): Use mapc.
16061
16062         * nnrss.el (nnrss-generate-active): do.
16063
16064         * message.el (message-cite-original-without-signature)
16065         (message-cite-original): Use mapc.
16066         (message-do-actions, message-make-forward-subject): Use dolist.
16067
16068 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
16069
16070         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
16071         deletion to remove entire duplicate line.  Fixes merged article
16072         number bug.
16073
16074 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
16075
16076         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
16077         servers that are offline.  Avoids having gnus-agent-toggle-plugged
16078         first ask if you want to open a server and then, even when you
16079         responded with no, asking if you want to synchronize the server's
16080         flags.
16081         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
16082         multi-line expressions.
16083         (gnus-agent-synchronize-group-flags): New internal function.
16084         Updates marks in memory (in the info structure) AND in the
16085         backend.
16086
16087         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
16088
16089         * nnagent.el (nnagent-request-set-mark):
16090         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
16091         method, to ensure that synchronization updates marks in the
16092         backend and in the info (in memory) structure.
16093
16094 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16095
16096         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
16097         convention fully; don't miss the root article of a thread; make
16098         the X-Draft-From header with correct article numbers.
16099
16100 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
16101
16102         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
16103         unless plugged.  Disable the agent so that an open failure causes
16104         an error.
16105
16106         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
16107         Revert 2004-09-21 change.  The backend must be opened while
16108         synchronizing flags even when the backend stores the flags
16109         locally.
16110
16111 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
16112
16113         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
16114         in `header' match.  Reported by Svend Tollak Munkejord.
16115
16116         * message.el (message-cite-original): Fix use of
16117         `message-cite-articles-with-x-no-archive'.
16118
16119 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16120
16121         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
16122         (gnus-window-to-buffer): Ditto.
16123
16124         * mml.el (mml-preview-buffer): New variable.
16125         (mml-preview): Manage window layout with gnus-buffer-configuration.
16126
16127         * gnus-msg.el (gnus-setup-message): Put article numbers into the
16128         X-Draft-From header even if those articles aren't quoted.
16129
16130 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
16131
16132         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
16133         (gnus-request-set-mark, gnus-request-update-mark): Use new
16134         g-s-t-u-l-m to decide to use backend even when unplugged.
16135
16136 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16137
16138         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
16139         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
16140
16141 2004-09-20  Simon Josefsson  <jas@extundo.com>
16142
16143         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
16144         "utf-16-le".
16145
16146 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16147
16148         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
16149
16150 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
16151
16152         * uudecode.el (uudecode-use-external): Add :version.
16153
16154         * smime.el (smime-CA-file, smime-encrypt-cipher)
16155         (smime-dns-server): Add :version.
16156
16157         * smiley.el (gnus-smiley-file-types): Add :version.
16158
16159         * sha1.el (sha1-use-external): Add :version.
16160
16161         * pgg-def.el (pgg-query-keyserver): Add :version.
16162
16163         * nnmail.el (nnmail-fancy-expiry-targets)
16164         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
16165         Add :version.
16166
16167         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
16168         (nnimap-retrieve-groups-asynchronous): Add :version.
16169         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
16170
16171         * mml.el (mml-content-disposition-parameters)
16172         (mml-insert-mime-headers-always): Add :version.
16173
16174         * mm-util.el (mm-coding-system-priorities): Add :version.
16175
16176         * mm-decode.el (mm-inline-text-html-with-images)
16177         (mm-keep-viewer-alive-types, mm-external-terminal-program)
16178         (mm-verify-option): Add :version.
16179         (mm-text-html-renderer): Change :version.
16180
16181         * message.el (message-fcc-externalize-attachments)
16182         (message-required-headers, message-draft-headers)
16183         (message-subject-trailing-was-query)
16184         (message-subject-trailing-was-ask-regexp)
16185         (message-subject-trailing-was-regexp, message-mark-insert-begin)
16186         (message-mark-insert-end, message-archive-header)
16187         (message-archive-note, message-cross-post-default)
16188         (message-cross-post-note, message-followup-to-note)
16189         (message-cross-post-note-function, message-use-mail-followup-to)
16190         (message-subscribed-address-functions)
16191         (message-subscribed-address-file, message-subscribed-addresses)
16192         (message-subscribed-regexps, message-allow-no-recipients)
16193         (message-yank-cited-prefix, message-signature-insert-empty-line)
16194         (message-hidden-headers, message-hierarchical-addresses)
16195         (message-mail-user-agent, message-use-idna)
16196         (message-valid-fqdn-regexp)
16197         (message-strip-special-text-properties, message-header-synonyms)
16198         (message-beginning-of-line, message-tab-body-function): Add :version.
16199         (message-insert-canlock, message-wide-reply-confirm-recipients):
16200         Change :version.
16201
16202         * mail-source.el (mail-source-ignore-errors): Add :group, :type
16203         and :version.
16204         (mail-source-delete-old-incoming-confirm)
16205         (mail-source-movemail-program): Add :version.
16206
16207         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
16208         (gnus-agent-cache, gnus-agent): Change :version.
16209
16210         * gnus-util.el (gnus-use-byte-compile): Change :version.
16211
16212         * gnus-sum.el (gnus-summary-make-false-root-always)
16213         (gnus-summary-default-high-score)
16214         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
16215         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
16216         (gnus-read-all-available-headers, gnus-article-emulate-mime)
16217         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
16218         (gnus-sum-thread-tree-single-indent)
16219         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
16220         (gnus-sum-thread-tree-leaf-with-other)
16221         (gnus-sum-thread-tree-single-leaf): Add :version.
16222         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
16223         (gnus-article-loose-mime): Change :version.
16224
16225         * gnus-start.el (gnus-backup-startup-file)
16226         (gnus-save-startup-file-via-temp-buffer): Add :version.
16227
16228         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
16229         (gnus-server-offline-face): Add :version.
16230
16231         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
16232
16233         * gnus-msg.el (gnus-gcc-externalize-attachments)
16234         (gnus-debug-files, gnus-debug-exclude-variables)
16235         (gnus-discouraged-post-methods): Change :version.
16236         (gnus-confirm-mail-reply-to-news)
16237         (gnus-confirm-treat-mail-like-news): Add :version.
16238
16239         * gnus-int.el (gnus-server-unopen-status): Add :version.
16240
16241         * gnus-group.el (gnus-group-jump-to-group-prompt)
16242         (gnus-large-ephemeral-newsgroup)
16243         (gnus-fetch-old-ephemeral-headers): Add :version.
16244
16245         * gnus-fun.el (gnus-x-face-directory)
16246         (gnus-convert-pbm-to-x-face-command)
16247         (gnus-convert-image-to-x-face-command)
16248         (gnus-convert-image-to-face-command): Add :version.
16249
16250         * gnus-delay.el (gnus-delay-default-hour): Add :version.
16251
16252         * gnus-cite.el (gnus-cite-blank-line-after-header)
16253         (gnus-article-boring-faces): Add :version.
16254
16255         * gnus-art.el (gnus-buttonized-mime-types)
16256         (gnus-inhibit-mime-unbuttonizing)
16257         (gnus-treat-display-face)
16258         (gnus-treat-body-boundary): Change :version.
16259         (gnus-body-boundary-delimiter, gnus-picon-databases)
16260         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
16261         (gnus-treat-date-english, gnus-treat-fold-headers)
16262         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
16263         (gnus-treat-mail-picon, gnus-treat-wash-html)
16264         (gnus-article-encrypt-protocol)
16265         (gnus-use-idna, gnus-article-over-scroll)
16266         (gnus-mime-display-multipart-alternative-as-mixed)
16267         (gnus-mime-display-multipart-related-as-mixed)
16268         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
16269         (gnus-ctan-url, gnus-button-ctan-handler)
16270         (gnus-button-handle-ctan-bogus-regexp)
16271         (gnus-button-ctan-directory-regexp)
16272         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
16273         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
16274         (gnus-button-man-level, gnus-button-emacs-level)
16275         (gnus-button-message-level, gnus-button-browse-level): Add :version.
16276
16277         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
16278         (gnus-agent-go-online): Change :version.
16279         (gnus-agent-expire-unagentized-dirs)
16280         (gnus-agent-auto-agentize-methods): Add :version.
16281
16282         * flow-fill.el (fill-flowed-display-column)
16283         (fill-flowed-encode-column): Add :version.
16284
16285         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
16286         (gnus-outlook-deuglify-unwrap-max)
16287         (gnus-outlook-deuglify-cite-marks)
16288         (gnus-outlook-deuglify-unwrap-stop-chars)
16289         (gnus-outlook-deuglify-no-wrap-chars)
16290         (gnus-outlook-deuglify-attrib-cut-regexp)
16291         (gnus-outlook-deuglify-attrib-verb-regexp)
16292         (gnus-outlook-deuglify-attrib-end-regexp)
16293         (gnus-outlook-display-hook): Add :version.
16294
16295         * binhex.el (binhex-use-external): Add :version.
16296
16297 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
16298
16299         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
16300         and `invisible'.
16301
16302 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
16303
16304         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
16305         in gnus-registry-trim.
16306
16307 2004-09-13  Simon Josefsson  <jas@extundo.com>
16308
16309         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
16310
16311         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
16312
16313         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
16314         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
16315         <yamaoka@jpl.org>.
16316         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
16317         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
16318         <yamaoka@jpl.org>.
16319
16320         * sieve.el (sieve-manage-mode): Ditto.
16321
16322 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
16323
16324         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
16325
16326 2004-09-11  Simon Josefsson  <jas@extundo.com>
16327
16328         * dns-mode.el: Add.
16329
16330         * mm-view.el (mm-display-dns-inline): Add.
16331
16332         * mm-decode.el (mm-inline-media-tests): Add text/dns.
16333         (mm-automatic-display): Ditto.
16334
16335         * mailcap.el (mailcap-mime-data): Add text/dns.
16336         (mailcap-mime-extensions): Map .soa to text/dns.
16337
16338 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
16339
16340         * gnus-art.el (article-decode-mime-words, article-babel)
16341         (gnus-article-highlight-signature, gnus-article-add-buttons)
16342         (gnus-signature-toggle): Remove unnecessary bindings of
16343         `inhibit-read-only' inherited from v5.10 merge.
16344
16345 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
16346
16347         * nntp.el (nntp): New customization group.
16348         (nntp-authinfo-file): Add customization group.
16349
16350         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
16351
16352         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
16353
16354         * gnus.el (to-address, to-list, subscribed)
16355         (large-newsgroup-initial): Ditto.
16356
16357         * flow-fill.el (fill-flowed-display-column)
16358         (fill-flowed-encode-column): Ditto.
16359
16360 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16361
16362         * message.el (message-tokenize-header, message-send-mail-with-qmail):
16363         Use point-min rather than 1.
16364         (message-send-mail): Use buffer-size rather than point-max.
16365
16366         * gnus-sum.el (gnus-summary-search-article-forward):
16367         Signal a specific `search-failed' rather than a generic `error'.
16368
16369         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
16370         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
16371         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
16372
16373 2004-09-10  Simon Josefsson  <jas@extundo.com>
16374
16375         * nndb.el (require): Remove tcp and duplicate cl.
16376
16377 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16378
16379         * gnus-agent.el (directory-files-and-attributes): Move forward.
16380
16381 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
16382
16383         * gnus-agent.el (directory-files-and-attributes):
16384         Optionally defined to support XEmacs.
16385
16386 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
16387
16388         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
16389         to avoid run-time CL dependencies.
16390         (gnus-agent-unfetch-articles): New function.
16391         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
16392         article numbers even when local .overview file is missing.
16393         (gnus-agent-read-article-number): New function.  Only accepts
16394         27-bit article numbers.
16395         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
16396         Use gnus-agent-read-article-number.
16397         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
16398         from backend while recognizing that article numbers in .overview
16399         must be valid.
16400         (gnus-agent-update-files-total-fetched-for):
16401         Use directory-files-and-attributes to improve performance.
16402         * gnus-int.el (gnus-request-move-article):
16403         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
16404         improve performance.
16405
16406         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
16407         some users confused by references to .newsrc when they only have a
16408         .newsrc.eld file.
16409         (gnus-convert-mark-converter-prompt)
16410         (gnus-convert-converter-needs-prompt): Fix use of property list.
16411         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
16412         New function.  Used internally to only display 'gnus converting
16413         files' message when actually necessary.
16414
16415         * gnus-sum.el (): Remove (require 'gnus-agent) as required
16416         methods now autoloaded.
16417
16418 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16419
16420         * gnus-sum.el (gnus-summary-insert-subject): Remove list
16421         identifiers.
16422
16423 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
16424
16425         * gnus-picon.el: Fix indentation and closing parenthesis.
16426
16427 2004-09-01  Simon Josefsson  <jas@extundo.com>
16428
16429         * message.el (message-canlock-generate): Require sha1, not
16430         sha1-el.  (Can we get rid of this require altogether?  It is ugly
16431         to require within a function.  Sadly, if sha1.el isn't loaded, the
16432         let binding in m-c-g will hide the defcustom definition, which is
16433         bad.)
16434
16435         * canlock.el: Require sha1, not sha1-el.
16436
16437         * message.el: Don't autoload sha1 (there is a autoload cookie in
16438         sha1.el).
16439
16440         * sha1-el.el: Rename to sha1.el.
16441
16442 2004-08-30  Juanma Barranquero  <lektu@terra.es>
16443
16444         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
16445
16446 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16447
16448         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
16449
16450 2004-08-30  Kim F. Storm  <storm@cua.dk>
16451
16452         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
16453
16454         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
16455         Add :group 'nnimap.
16456
16457 2004-08-30  Andreas Schwab  <schwab@suse.de>
16458
16459         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
16460         ?* and ?\;.
16461
16462         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
16463         and ?\' to symbol instead of whitespace.
16464
16465 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16466
16467         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
16468
16469         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
16470         instead of re-search-forward.
16471
16472         * gnus-uu.el (gnus-uu-save-article): Ditto.
16473         (gnus-uu-post-encode-uuencode): Ditto.
16474
16475         * html2text.el (html2text-clean-list-items): Ditto.
16476         (html2text-clean-dtdd): Ditto.
16477         (html2text-format-tags): Ditto.
16478
16479         * message.el (message-send-mail-with-sendmail): Fix regexp.
16480         (message-fill-field-general): Use search-forward instead of
16481         re-search-forward.
16482         (unbold-region): Ditto.
16483
16484         * nnrss.el (nnrss-request-article): Ditto.
16485
16486         * nnslashdot.el (nnslashdot-request-article): Ditto.
16487
16488         * nnweb.el (nnweb-gmane-wash-article): Ditto.
16489
16490         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
16491         "Unrecognized menu descriptor" error in XEmacs.
16492
16493 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
16494
16495         * gnus-sum.el (gnus-read-header): Don't remove a header for the
16496         parent article of a sparse article in the thread hashtb.
16497
16498 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
16499
16500         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
16501         (nnmail-expand-newtext): Lowercase expanded entries if
16502         nnmail-split-lowercase-expanded is non-nil.
16503
16504 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16505
16506         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
16507
16508         * gnus-group.el (gnus-group-line-format-alist): Convert the value
16509         of gnus-tmp-news-method into string under XEmacs.  It will be
16510         passed to gnus-correct-length which takes only a string argument.
16511
16512 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16513
16514         * gnus-util.el (gnus-bind-print-variables): New macro.
16515         (gnus-prin1): Use it.
16516         (gnus-prin1-to-string): Use it.
16517         (gnus-pp): New function.
16518         (gnus-pp-to-string): New function.
16519
16520         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
16521         Replace pp-to-string with gnus-pp-to-string.
16522         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
16523         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
16524         * gnus-msg.el (gnus-debug): Ditto.
16525         * gnus-score.el (gnus-score-save): Ditto.
16526         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
16527         gnus-pp-to-string.
16528         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
16529         with gnus-pp.
16530         * score-mode.el (gnus-score-pretty-print): Ditto.
16531         * webmail.el (webmail-debug): Ditto.
16532
16533 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16534
16535         * gnus-art.el (article-display-face, article-display-x-face):
16536         Use buffer-read-only.
16537
16538 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16539
16540         * gnus-art.el (article-hide-list-identifiers):
16541         Bind inhibit-read-only as t.
16542
16543 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
16544
16545         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
16546
16547 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16548
16549         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
16550         (gnus-narrow-to-page): Don't assume point-min == 1.
16551         (gnus-article-edit-mode): Derive from message-mode.
16552
16553         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
16554         point-min == 1.
16555
16556         * imap.el (imap-parse-address-list, imap-parse-body-ext):
16557         Disable incorrect use of `assert'.
16558
16559         * message.el (message-mode): Set comment-start-skip.
16560
16561
16562 2004-08-22  Sam Steingold  <sds@gnu.org>
16563
16564         * pop3.el (pop3-leave-mail-on-server): New user variable.
16565         (pop3-movemail): Delete mail only when it is nil.
16566
16567 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
16568
16569         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
16570
16571         * mml.el (mml-preview): Use `pop-to-buffer'.
16572
16573         * message.el (message-goto-mail-followup-to): Insert after "To".
16574         (message-carefully-insert-headers): Add comment.
16575
16576         * gnus.el: Remove unused variable `gnus-article-check-size'.
16577
16578         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
16579
16580         * gnus-art.el (gnus-button-alist):
16581         Improve `gnus-button-handle-library' entry.
16582
16583 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
16584
16585         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
16586         Use downcase, since XEmacs capitalizes error messages differently.
16587
16588 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
16589
16590         * nntp.el: Add (require 'gnus) due to reference to
16591         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
16592
16593 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
16594
16595         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
16596         Bind `mm-fill-flowed'.
16597
16598         * mm-decode.el (mm-dissect-singlepart): Check it.
16599
16600 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
16601
16602         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
16603         'imap' for netrc parsing.
16604
16605 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
16606
16607         * mailcap.el (mailcap-mime-data): Mark as risky.
16608
16609 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16610
16611         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
16612         may be included in the encoded word.
16613         (rfc2047-encode): Don't append a space if the encoded word
16614         includes close parenthesis.
16615
16616 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16617
16618         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
16619         of text within parentheses.
16620
16621 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
16622
16623         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
16624         (gnus-encrypt-write-file-contents): Make the password key the file
16625         name PLUS the cipher, not just the cipher.  Also remove failed
16626         passwords from the cache.
16627
16628 2004-08-06  Simon Josefsson  <jas@extundo.com>
16629
16630         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
16631         Doc fix.
16632
16633 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16634
16635         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
16636         LWSP.
16637
16638 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
16639
16640         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16641         Try to append in-reply-to: data to the references: header.
16642
16643         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
16644         (netrc-parse): Use gnus-encrypt.el functions.
16645
16646         * gnus-encrypt.el: Add new file for encryption support; currently
16647         does only a few GPG ciphers and an internal XOR cipher.
16648
16649         * password.el: Add comments on using password-read-and-add.
16650         (password-read-and-add): Add function to read and add the
16651         password to the cache at once.
16652
16653 2004-07-28  Simon Josefsson  <jas@extundo.com>
16654
16655         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
16656         parameter (but don't use it, for now).
16657
16658         * imap.el (imap-ssl-open): Use imap-process-connection-type,
16659         instead of hard coding to nil.
16660
16661 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16662
16663         * mm-view.el (mm-inline-image-emacs): Open lines under an image
16664         as mm-inline-image-xemacs does.
16665
16666 2004-07-26  Simon Josefsson  <jas@extundo.com>
16667
16668         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
16669         Revert part of 2004-07-17 change below.
16670
16671 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16672
16673         * rfc2047.el (rfc2047-encode-region): Don't infloop.
16674         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
16675
16676 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16677
16678         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
16679         quotes that actually start with ">" at the beginning of the
16680         lines.
16681
16682 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16683
16684         * rfc2047.el (rfc2047-encode-region): Fix last change.
16685         (rfc2047-encode-parameter): Remove useless concat.
16686
16687 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16688
16689         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
16690         encode special characters; fix some kind of misconfigured headers;
16691         signal a real error if debug-on-quit or debug-on-error is non-nil.
16692         (rfc2047-encode-max-chars): New variable.
16693         (rfc2047-encode-1): Use it.
16694         (rfc2047-encode-parameter): New function.
16695
16696         * mml.el (mml-insert-parameter): Remove an excessive space.
16697
16698 2004-07-17  Simon Josefsson  <jas@extundo.com>
16699
16700         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
16701         Kai Grossjohann <kai@emptydomain.de>.
16702         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
16703         (gnus-group-make-menu-bar): Ditto.
16704
16705         * gnus-util.el (gnus-group-server): Add.
16706
16707 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
16708
16709         * message.el (message-clone-locals): Clone sendmail and smtp
16710         variables.
16711
16712 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16713
16714         * rfc2047.el (rfc2047-encode-region): Fix last change.
16715
16716 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16717
16718         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
16719         characters as non-special.
16720
16721 2004-07-09  Simon Josefsson  <jas@extundo.com>
16722
16723         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
16724         Users will lose all flag changes made while unplugged with
16725         e.g. nntp unless flag synchronization happens, thus `nil' is not a
16726         good default.  See numerous reports on ding mailing list.
16727
16728 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16729
16730         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
16731         add generate-head-function and generate-article-function to the
16732         rfc822-forward entry.
16733         (nndoc-rfc822-forward-generate-article): New function.
16734         (nndoc-rfc822-forward-generate-head): New function.
16735
16736         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
16737
16738 2004-07-06  Dan Christensen  <jdc@uwo.ca>
16739
16740         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
16741         respect display group parameter and gnus-summary-expunge-below.
16742         (gnus-articles-to-read): Remove unused reference to display group
16743         parameter.
16744
16745 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16746
16747         * nnheader.el (nnheader-uniquify-message-id): New experimental
16748         variable.
16749         (nnheader-nov-read-message-id): Use it.
16750
16751         * spam-report.el (spam-report-gmane): Add interactive.
16752
16753 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16754
16755         * mm-encode.el (mm-content-transfer-encoding-defaults):
16756         Use qp-or-base64 for the application/* types.
16757
16758 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
16759
16760         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
16761
16762 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
16763
16764         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
16765         trim value.
16766
16767 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
16768
16769         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
16770         New macro and function.
16771         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
16772
16773 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16774
16775         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
16776         after-load-alist.
16777
16778 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16779
16780         * gnus-group.el (gnus-group-get-new-news-this-group):
16781         Don't update info that isn't there.
16782
16783 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
16784
16785         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
16786         entry.
16787
16788 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16789
16790         * mm-view.el (mm-inline-render-with-function): Use multibyte
16791         buffer; decode html source by charset.
16792
16793         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
16794
16795         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
16796         Mule-UCS is loaded under XEmacs.
16797         (mm-mime-mule-charset-alist): Avoid duplicated entries.
16798
16799 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
16800
16801         * nnheader.el (nnheader-max-head-length): Increase to 8192.
16802
16803 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16804
16805         * mm-util.el (mm-coding-system-p): Return a coding-system.
16806         (mm-mime-mule-charset-alist): Use shift_jis instead of
16807         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
16808         entries for the mime charsets iso-2022-jp-3 and shift_jis.
16809         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
16810         instead of japanese-shift-jis and iso-latin-1 respectively in
16811         order to share the default value with both Emacs and XEmacs-mule.
16812         (mm-mule-charset-to-mime-charset):
16813         Make mm-coding-system-priorities effective.
16814         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
16815         while predicating of candidates upon the priorities.
16816
16817 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
16818
16819         * gnus-sum.el (gnus-summary-make-menu-bar):
16820         Add gnus-uu-invert-processable.
16821
16822         * gnus.el: Autoload gnus-uu-invert-processable.
16823
16824 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16825
16826         * mm-util.el (mm-with-multibyte-buffer): New macro.
16827
16828         * rfc2047.el (rfc2047-encode-string): Use it.
16829         (rfc2047-encode-region): Move point to the end of the region after
16830         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
16831
16832 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16833
16834         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
16835         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
16836
16837 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16838
16839         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
16840         (gnus-cite-parse): Ignore quoted envelope From_.
16841         Suggested by Karl Chen <quarl@nospam.quarl.org>.
16842
16843 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
16844
16845         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
16846         invalid addresses.
16847
16848 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
16849
16850         * spam.el: Change section markers, revise TODO list.
16851         (spam-backends): Make new master list of all installed backends.
16852         (spam-summary-exit-behavior): Add new variable to determine how
16853         messages moves are done at summary exit.
16854         (spam-move-spam-nonspam-groups-only)
16855         (spam-process-ham-in-nonham-groups)
16856         (spam-process-ham-in-spam-groups): Remove variables, the
16857         spam-summary-exit-behavior variable should be used to manage this
16858         behavior.
16859         (spam-old-ham-articles, spam-old-spam-articles): Remove.
16860         (spam-old-articles): Add variable, replacing spam-old-ham-articles
16861         and spam-old-spam-articles.
16862         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
16863         Add empty variables, placeholders for the backends they represent.
16864         (spam-set-difference): Move, unchanged.
16865         (spam-list-of-processors): Declare OBSOLETE, not used anymore
16866         unless the user has a processor variable.
16867         (spam-classifications, spam-classification-valid-p)
16868         (spam-backend-properties, spam-backend-property-valid-p)
16869         (spam-backend-function-type-valid-p)
16870         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
16871         (spam-report-articles-gmane, spam-report-articles-resend):
16872         Remove functions, they are not needed.
16873         (spam-install-backend-super, spam-backend-list)
16874         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
16875         (spam-backend-function, spam-backend-ham-registration-function)
16876         (spam-backend-spam-registration-function)
16877         (spam-backend-ham-unregistration-function)
16878         (spam-backend-spam-unregistration-function)
16879         (spam-backend-statistical-p, spam-backend-mover-p)
16880         (spam-install-backend-alias, spam-install-checkonly-backend)
16881         (spam-install-mover-backend, spam-install-nocheck-backend)
16882         (spam-install-backend, spam-install-statistical-backend)
16883         (spam-install-statistical-checkonly-backend): Add backend installation
16884         support.
16885         (spam-summary-prepare-exit): Rewrite to use the new backend code.
16886         (spam-group-processor-p): Use the new backend code and respect the
16887         summary exit behavior.
16888         (spam-mark-spam-as-expired-and-move-routine): Remove.
16889         (spam-summary-prepare): Change to use the new spam-old-articles
16890         variable.
16891         (spam-copy-or-move-routine, spam-copy-spam-routine)
16892         (spam-move-spam-routine, spam-copy-ham-routine)
16893         (spam-move-ham-routine): Add code to copy/move ham or spam.
16894         (spam-fetch-field-fast): Improve doc and code, plus allow the
16895         'number request.
16896         (spam-list-of-checks, spam-list-of-statistical-checks):
16897         Remove variables.
16898         (spam-split, spam-find-spam): Use the new backend code.
16899         (spam-registration-functions): Remove variable.
16900         (spam-unregister-routine): Add convenience wrapper.
16901         (spam-log-undo-registration, spam-register-routine)
16902         (spam-log-processing-to-registry)
16903         (spam-log-unregistration-needed-p): Rename "check" to "backend"
16904         where possible.
16905         (spam-check-gmane-xref, spam-check-regex-headers)
16906         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
16907         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
16908         (spam-check-bogofilter-headers, spam-check-spamoracle)
16909         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
16910         (spam-check-crm114-headers): Use the spam-split-group that
16911         spam-split prepares, no need to determine it every time.
16912
16913         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
16914         to the nnheader-parse-naked-head call.
16915
16916         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
16917
16918         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
16919         the nnheader-nov-read-message-id call.
16920
16921 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16922
16923         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
16924         gnus-activate-group twice.  Suggested by Markus Peter
16925         <warp@spin.de>.
16926
16927 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16928
16929         * gnus-art.el (gnus-article-time-format): Exchange the order of
16930         day and month in the default value; fix customization type.
16931         (article-date-ut): Use add-text-properties.
16932         (article-make-date-line): Use message-make-date instead of
16933         current-time-string.
16934
16935         * message.el (message-fetch-field): Don't use set-text-properties.
16936         (message-make-date): Simplify.
16937
16938         * messagexmas.el (message-xmas-make-date): New function.
16939         (message-xmas-redefine): Defalias message-make-date to it.
16940
16941 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16942
16943         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
16944         (rfc2047-encode-region): Treat text within parentheses as special;
16945         show the original text when error has occurred.
16946
16947         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
16948         already-computed method to gnus-activate-group.
16949
16950         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
16951         same select-methods identical Lisp objects.
16952
16953         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
16954         object when modifying the info.
16955
16956 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16957
16958         * gnus-srvr.el (gnus-server-set-info): Remove the server from
16959         gnus-opened-servers since it has never been opened with the new
16960         configuration yet.
16961
16962 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16963
16964         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
16965         arg to nnheader-generate-fake-message-id.
16966
16967 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
16968
16969         * nnheader.el (nnheader-generate-fake-message-id): Accept a
16970         number and build a fake message ID localized to a group and
16971         article number (so it's repeatable from that point on).
16972         (nnheader-fake-message-id-p): Change regex to accomodate new fake
16973         ID format.
16974
16975         * gnus-sum.el (gnus-get-newsgroup-headers):
16976         Call nnheader-generate-fake-message-id with the article number.
16977
16978 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
16979
16980         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
16981         end-of-buffer.
16982
16983 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16984
16985         * message.el (message-ignored-supersedes-headers): Add Approved.
16986
16987 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16988
16989         * rfc2047.el (rfc2047-encode-message-header): Remove useless
16990         goto-char.
16991         (rfc2047-encode): Fold the line before encoding.
16992
16993 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16994
16995         * rfc2047.el (rfc2047-encode-message-header): Disabled header
16996         folding -- not all headers can be folded, and this should be done
16997         by the message composition mode.  Probably.  I think.
16998
16999 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17000
17001         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
17002         fast.
17003
17004         * gnus-ems.el (gnus-remove-image): Don't use
17005         message-text-with-property; remove only the image found first.
17006
17007         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
17008         found first.
17009
17010 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
17011
17012         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
17013
17014 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17015
17016         * message.el (message-text-with-property): Make it fast and accept
17017         optional arguments.
17018         (message-strip-forbidden-properties): Use it.
17019         (message-fix-before-sending): Follow the m-t-w-p change.
17020
17021         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
17022
17023 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17024
17025         * gnus-art.el (article-hide-headers): Don't change the buffer
17026         mistakenly when performing mml-preview even if
17027         gnus-single-article-buffer is nil.
17028
17029 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
17030
17031         * message.el (message-expand-name-databases): New user option.
17032         (message-expand-name): Use it.
17033
17034 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
17035
17036         * spam.el (spam-report-articles-resend)
17037         (spam-report-resend-register-routine): Allow ham reporting.
17038         (spam-report-resend-register-ham-routine): Add wrapper.
17039         (spam-registration-functions): Add ham resending functions.
17040         (spam-list-of-processors): Add ham resend processor.
17041
17042         * gnus.el (ham-resend-to): Add new group parameter.
17043         (spam-process): Add ham resend option.
17044
17045         * spam-report.el (spam-report-resend): Allow reporting ham.
17046         (spam-report-resend-ham): Add wrapper.
17047
17048 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17049
17050         * message.el (message-cite-articles-with-x-no-archive):
17051         New variable.
17052         (message-cite-original): Use it.
17053
17054 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17055
17056         * message.el (message-cite-original): Respect X-No-Archive.
17057
17058 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17059
17060         * gnus-art.el (article-hide-headers): Refer to the values for
17061         gnus-ignored-headers and gnus-visible-headers in the summary
17062         buffer since a user may have set them as group parameters.
17063
17064 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
17065
17066         * assistant.el (assistant-node-name): Add convenience function.
17067         (assistant-render-text, assistant-render-node): Add error handling,
17068         plus handle multiple next nodes.
17069         (assistant-find-next-node): Comment out for now.
17070         (assistant-find-next-nodes): Add function, returns list of next
17071         nodes.
17072
17073 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
17074
17075         * mail-source.el (mail-source-directory): Fix doc-string.
17076
17077 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
17078
17079         * assistant.el (assistant-render-text, assistant-eval): Add :set
17080         widget type, which is different because it takes and returns a
17081         list.  Much hilarity ensues.
17082
17083 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
17084
17085         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
17086
17087         * gnus-group.el (gnus-group-get-new-news-this-group):
17088         Add doc-string.
17089
17090         * gnus-start.el (gnus-activate-group): Add doc-string.
17091
17092 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17093
17094         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
17095
17096 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
17097
17098         * assistant.el (assistant-render-text): Try to add a :set
17099         widget, more to come.
17100
17101         * spam.el (spam-group-spam-contents-p): Handle empty groupname
17102         strings.
17103         (spam-report-articles-resend)
17104         (spam-register-routine): Do registration iff any articles warrant
17105         it.
17106         (spam-summary-prepare-exit): Change log message for nil group
17107         destinations.
17108
17109 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
17110
17111         * spam.el (spam-report-resend-register-routine):
17112         Allow spam-report-resend-to to be a group parameter or a global value.
17113
17114 2004-05-26  Simon Josefsson  <jas@extundo.com>
17115
17116         * starttls.el: Merge with my GNUTLS based starttls.el.
17117         (starttls-gnutls-program, starttls-use-gnutls)
17118         (starttls-extra-arguments, starttls-process-connection-type)
17119         (starttls-connect, starttls-failure, starttls-success):
17120         New variables.
17121         (starttls-program, starttls-extra-args): Doc fix.
17122         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
17123         New functions.
17124         (starttls-negotiate, starttls-open-stream):
17125         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
17126         function if it is set.
17127
17128 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17129
17130         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
17131         structured fields.
17132
17133 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17134
17135         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
17136
17137 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
17138
17139         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
17140         Add variable.
17141         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
17142         assigning the spam-mark to new messages.
17143
17144 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
17145
17146         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
17147
17148 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17149
17150         * dgnushack.el: Autoload customize-set-variable for XEmacs.
17151
17152         * rfc2047.el (rfc2047-encodable-p): Don't move point.
17153         (rfc2047-decode): Treat the ascii coding-system as raw-text by
17154         default.
17155
17156 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
17157
17158         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
17159         correct data.
17160
17161 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
17162
17163         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
17164         (spam-group-processor-p): Fix function.
17165         (spam-group-processor-multiple-p)
17166         (spam-group-spam-processor-report-gmane-p)
17167         (spam-group-spam-processor-report-resend-p)
17168         (spam-group-spam-processor-bogofilter-p)
17169         (spam-group-spam-processor-blacklist-p)
17170         (spam-group-spam-processor-ifile-p)
17171         (spam-group-ham-processor-ifile-p)
17172         (spam-group-spam-processor-spamoracle-p)
17173         (spam-group-spam-processor-crm114-p)
17174         (spam-group-ham-processor-bogofilter-p)
17175         (spam-group-spam-processor-stat-p)
17176         (spam-group-ham-processor-stat-p)
17177         (spam-group-ham-processor-whitelist-p)
17178         (spam-group-ham-processor-BBDB-p)
17179         (spam-group-ham-processor-spamoracle-p)
17180         (spam-group-ham-processor-copy-p): Remove functions with some
17181         prejudice against unneeded code.
17182         (spam-report-articles-resend)
17183         (spam-report-resend-register-routine): Allow the group/topic
17184         spam-resend-to value to override spam-report-resend-to.
17185         (spam-summary-prepare-exit): Invoke spam-group-processor-p
17186         properly now.
17187
17188         * gnus.el (spam-resend-to): Add group/topic parameter.
17189         (spam-process): Move the OBSOLETE processors to the end of the
17190         choices.
17191
17192 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
17193
17194         * spam-report.el (spam-report-resend-to, spam-report-resend):
17195         Start with resend-to set to nil, and then ask the user if necessary.
17196         (spam-report-resend): spam-report-resend takes a list of articles, not
17197         separate article numbers.
17198
17199 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17200
17201         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
17202         addition to emacs-w3m.
17203
17204 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17205
17206         * assistant.el (assistant-authinfo-data): New function.
17207         (assistant-eval): Eval for entire assistant.
17208
17209         * netrc.el (netrc-services-file): New variable.
17210         (netrc-parse-services): New function.
17211         (netrc-find-service-name): New function.
17212         (netrc-find-service-number): New function.
17213         (netrc-port-equal): New function.
17214         (netrc-machine): Use it.
17215
17216         * nnimap.el (nnimap-open-connection): Use netrc.
17217
17218         * gnus-util.el (gnus-netrc-get): Remove aliases.
17219
17220         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
17221
17222         * assistant.el (wid-edit): Fix compilation.
17223
17224         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
17225
17226 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
17227
17228         * gnus-util.el (gnus-set-file-modes): New function.  (small
17229         patch).
17230
17231 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17232
17233         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
17234
17235         * assistant.el (assistant-render-node): Fix up rendering and
17236         read-only text.
17237         (assistant-render-node): Reset.
17238         (assistant-make-read-only): Not sticky.
17239
17240 2004-05-20  Danny Siu  <dsiu@adobe.com>
17241
17242         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
17243         centered even when gnus-auto-center-summary is t.
17244
17245 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17246
17247         * dns.el (dns-get-txt-answer): New function.
17248         (dns-read-txt): Ditto.
17249         (query-dns): Use it.
17250
17251 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17252
17253         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
17254         active for foreign groups even if the group level is higher than
17255         the specified value.
17256
17257 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17258
17259         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
17260         non-active groups.
17261
17262         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
17263
17264 2004-05-20  Magnus Henoch  <mange@freemail.hu>
17265
17266         * dns.el (dns-read-type): Add support for SVR.  (small patch)
17267
17268 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
17269
17270         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
17271         (spam-crm114-header, spam-crm114-spam-switch)
17272         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
17273         (spam-crm114-positive-spam-header)
17274         (spam-crm114-database-directory, spam-list-of-processors)
17275         (spam-group-spam-processor-crm114-p)
17276         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
17277         (spam-generic-score, spam-list-of-checks)
17278         (spam-list-of-statistical-checks, spam-registration-functions)
17279         (spam-check-crm114-headers, spam-crm114-score)
17280         (spam-check-crm114, spam-crm114-register-with-crm114)
17281         (spam-crm114-register-spam-routine)
17282         (spam-crm114-unregister-spam-routine)
17283         (spam-crm114-register-ham-routine)
17284         (spam-crm114-unregister-ham-routine): Add CRM114 support.
17285         From asjo@koldfront.dk (Adam Sjøgren).
17286
17287         * gnus.el: Add spam-use-crm114.
17288
17289         * spam.el (spam-list-of-processors, spam-registration-functions):
17290         Add spam-use-resend.
17291         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
17292         (spam-report-articles-gmane): Add doc fix.
17293         (spam-report-articles-resend, spam-report-resend-register-routine):
17294         Add wrappers around spam-report-resend-to.
17295
17296         * spam-report.el (spam-report-resend-to, spam-report-resend):
17297         Add support for resending spam.
17298         (spam-report-gmane): Fix line length >80.
17299
17300         * gnus.el (spam-process): Add spam-use-resend.
17301
17302 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17303
17304         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
17305         number of processed spam messages.
17306         (spam-ham-copy-or-move-routine): Return the number of processed
17307         ham messages.
17308         (spam-summary-prepare-exit): Use the above values to decide
17309         whether status messages shouled be displayed.
17310
17311 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17312
17313         * rfc2047.el (rfc2047-encode-function-alist): Rename from
17314         `rfc2047-encoding-function-alist' in order to avoid conflicting
17315         with the old version.
17316         (rfc2047-encode-region): Concatenate words containing non-ASCII
17317         characters in structured fields; don't encode space-delimited
17318         ASCII words even in unstructured fields; don't break words at
17319         char-category boundaries.
17320         (rfc2047-encode-1): New function.
17321         (rfc2047-encode): Use it; encode text so that it occupies the
17322         maximum width within 76-column; work correctly on Q encoding for
17323         iso-2022-* charsets.
17324         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
17325         sure not to break a line just after the header name.
17326         (rfc2047-b-encode-region): Remove.
17327         (rfc2047-b-encode-string): New function.
17328         (rfc2047-q-encode-region): Remove.
17329         (rfc2047-q-encode-string): New function.
17330
17331         * mm-util.el (mm-replace-in-string): New function.
17332
17333 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17334
17335         * gnus-msg.el (gnus-inews-make-draft-meta-information):
17336         Really get it right.
17337         (gnus-inews-make-draft): Really.
17338
17339 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
17340
17341         * nnmh.el (nnmh-request-list-1): Don't check the link count
17342         before descending.  (small patch)
17343
17344 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17345
17346         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
17347         stuff.
17348
17349         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
17350         Match on real group name.
17351
17352         * gnus-art.el (gnus-signature-limit): Doc fix.
17353
17354         * gnus-msg.el (gnus-inews-make-draft): Quote list.
17355
17356         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
17357
17358 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
17359
17360         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
17361         isn't a string.
17362
17363 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17364
17365         * gnus-draft.el (gnus-draft-send):
17366         Bind rfc2047-encode-encoded-words.
17367
17368         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
17369         (rfc2047-encodable-p): Say that =? needs encoding.
17370         (rfc2047-encode-encoded-words): New variable.
17371
17372         * gnus-group.el (gnus-group-select-group): Doc fix.
17373
17374         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
17375
17376         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
17377         to nil.
17378
17379         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
17380
17381         * nnheader.el (nnheader-get-lines-and-char): New function.
17382
17383 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
17384
17385         * gnus-msg.el (gnus-summary-followup-with-original):
17386         Document yanking of region when active.
17387
17388 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17389
17390         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
17391         groups if the group level is higher than the specified value.
17392
17393 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17394
17395         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
17396         (gnus-group-jump-to-group): Add prefix argument using
17397         `gnus-group-jump-to-group-prompt'.  Query before jumping to
17398         non-active group.
17399
17400         * compface.el (uncompface): Be verbose when changing
17401         `uncompface-use-external'.
17402
17403         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
17404         handle manual section.
17405
17406 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17407
17408         * gnus-art.el (gnus-button-alist): Revert previous change.
17409
17410 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17411
17412         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
17413
17414 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17415
17416         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
17417         whether backend can accept message.
17418
17419         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
17420
17421 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
17422
17423         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
17424         Avoid creating directory when nntp-marks-is-evil is true.
17425         Reported by Reiner Steib.
17426
17427 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17428
17429         * gnus-picon.el (gnus-picon-style): New variable.
17430         (gnus-picon-insert-glyph): Add optional `nostring' argument.
17431         (gnus-picon-transform-address): Support `gnus-picon-style'.
17432         From Jesper Harder <harder@ifa.au.dk>.
17433
17434 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17435
17436         * message.el (message-fill-field): Return point.
17437         (message-generate-headers): Go to end of field.
17438
17439         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
17440         stuff for non-living groups.
17441
17442 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
17443
17444         * gnus-art.el (gnus-article-followup-with-original)
17445         (gnus-article-reply-with-original): gnus-mark-active-p ->
17446         gnus-region-active-p.
17447
17448 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
17449
17450         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
17451         only when there is spam or ham to be processed.
17452
17453 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17454
17455         * mail-source.el (mail-source-delete-crash-box): Refactor.
17456         (mail-source-fetch): Use it.
17457         (mail-source-fetch-file): Ditto.
17458         (mail-source-fetch-directory): Run postscript in loop.
17459         (mail-source-fetch-pop): Delete.
17460         (mail-source-fetch-maildir): Ditto.
17461         (mail-source-fetch-imap): Ditto.
17462
17463         * imap.el (imap-authenticators): Comment out sasl.
17464
17465         * message.el (message-skip-to-next-address): New function.
17466         (message-fill-header-address): Refactor.
17467         (message-fill-address): Use it.
17468         (message-delete-address): Use it.
17469         (message-fill-header-general): Refactor.
17470         (message-fill-field-address): Rename.
17471         (message-narrow-to-field): Find the start of the header.
17472         (message-header-format-alist): Don't pre-fill.
17473         (message-fill-header): Remove.
17474         (message-insert-header): New function.
17475         (message-shorten-references): Use it.
17476
17477         * rfc2047.el (rfc2047-field-value): Strip props.
17478
17479         * mail-parse.el (mail-header-make-address): New alias.
17480
17481         * ietf-drums.el (ietf-drums-make-address): New function.
17482
17483         * imap.el: Add compiler directives.
17484
17485         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
17486
17487         * gnus-art.el (article-decode-idna-rhs): Don't use
17488         message-idna-inside-rhs-p.
17489
17490 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17491
17492         * message.el (message-idna-inside-rhs-p): Remove.
17493         (message-idna-to-ascii-rhs-1): Use proper address parsing.
17494
17495         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
17496         false positives.
17497
17498 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
17499
17500         * imap.el (imap-sasl-make-mechanisms): Use sasl.
17501
17502 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17503
17504         * nneething.el (nneething-file-name): Don't create spurious
17505         files.
17506
17507         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
17508         (gnus-inews-do-gcc): Remove sleep.
17509
17510         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
17511         part under point.
17512
17513         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
17514         (gnus-agent-regenerate-group): Using nil messages aren't valid.
17515
17516 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
17517
17518         * spam.el (spam-summary-prepare-exit): Fix (length).
17519
17520 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
17521
17522         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
17523         as expired without moving it" message when there are spam
17524         messages left.
17525
17526 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
17527
17528         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
17529         header is not nil.
17530
17531 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
17532
17533         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
17534         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
17535         (nntp-marks-changed-p): New arg SERVER.
17536         (nntp-request-update-info): Adjust caller.
17537
17538 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
17539
17540         * nntp.el (nntp-save-marks): Pass missing arg.
17541
17542 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
17543
17544         * nntp.el: Support marks.
17545         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
17546         (nntp-marks-modtime, nntp-marks-directory): New variables.
17547         (nntp-request-set-mark, nntp-request-update-info)
17548         (nntp-possibly-create-directory, nntp-marks-changed-p)
17549         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
17550         New functions.
17551
17552 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
17553
17554         * gnus-xmas.el (gnus-xmas-select-lowest-window)
17555         (gnus-xmas-redefine): Rename.
17556
17557         * gnus-score.el (gnus-score-insert-help):
17558         Use gnus-select-lowest-window.
17559
17560         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
17561         appt-select-lowest-window and rename to gnus-select-lowest-window.
17562
17563         * gnus.el: do.
17564
17565 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17566
17567         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
17568         encodings of MIME-encoded words, in order to improve
17569         interoperability with several broken MUAs.
17570
17571 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17572
17573         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
17574         tags, only when charsets are not specified in headers.
17575         (mm-inline-text-html-render-with-w3m): Ditto.
17576
17577         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
17578         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
17579
17580 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17581
17582         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
17583         instead of MIME-decoded from fields when checking
17584         `gnus-article-address-banner-alist'.
17585
17586 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
17587
17588         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
17589         description rather than subject.
17590
17591 2004-05-02  Steve Youngs  <steve@youngs.au.com>
17592
17593         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
17594
17595 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17596
17597         * gnus.el (gnus-version-number): Bump.
17598
17599 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17600
17601         * gnus.el: No Gnus v0.2 is released.
17602
17603 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17604
17605         * gnus-agent.el (gnus-agent-read-agentview):
17606         Inline gnus-uncompress-range.
17607
17608 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17609
17610         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
17611         `exec-installed-p'.
17612
17613 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17614
17615         * gnus.el (spam-process, spam-autodetect-methods):
17616         Add bsfilter and bsfilter-headers.
17617
17618         * spam.el (spam-bsfilter): New customize group.
17619         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
17620         (spam-bsfilter-header, spam-bsfilter-probability-header)
17621         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
17622         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
17623         (spam-bsfilter-database-directory): New options.
17624         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
17625         (spam-list-of-statistical-checks, spam-registration-functions):
17626         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
17627         (spam-bsfilter-score): New command.
17628         (spam-check-bsfilter-headers, spam-check-bsfilter)
17629         (spam-bsfilter-register-with-bsfilter)
17630         (spam-bsfilter-register-spam-routine)
17631         (spam-bsfilter-unregister-spam-routine)
17632         (spam-bsfilter-register-ham-routine)
17633         (spam-bsfilter-unregister-ham-routine): New functions.
17634         (spam-generic-score): Support bsfilter; Accept an optional argument
17635         to recalcurate spam score even if scoring header has already been
17636         added.
17637         (spam-bogofilter-score, spam-spamassassin-score): Accept an
17638         optional argument to recalcurate spam score even if scoring header
17639         has already been added.
17640
17641 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
17642
17643         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
17644         strings!  Reported by David D. Smith <davidsmith@acm.org>.
17645         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
17646         link is missing.
17647
17648 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
17649
17650         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
17651         (html2text-get-attr): Rewrite.
17652
17653         * message.el (message-setup-1): Remove redundant put-text-property
17654         on mail-header-separator.
17655
17656 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
17657
17658         * gnus-registry.el (gnus-registry-cache-whitespace)
17659         (gnus-registry-action, gnus-registry-spool-action)
17660         (gnus-registry-split-fancy-with-parent): Change message levels
17661         from 5 to 3 or 7, as needed.
17662
17663         * spam.el (spam-summary-prepare-exit)
17664         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
17665         (spam-split, spam-find-spam, spam-log-undo-registration)
17666         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
17667         level from 5 to 6.
17668
17669 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17670
17671         * gnus-ems.el: Autoload appt-select-lowest-window (revert
17672         2004-03-04 change).
17673
17674 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
17675
17676         * sieve-manage.el (sieve-manage-open):
17677         * nnweb.el (nnweb-insert-html):
17678         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
17679         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
17680         * nnspool.el (nnspool-request-group):
17681         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
17682         * nnml.el (nnml-request-update-info):
17683         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
17684         (nnmh-request-create-group, nnmh-update-gnus-unreads):
17685         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
17686         (nnimap-request-set-mark):
17687         * nnfolder.el (nnfolder-request-update-info):
17688         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
17689         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
17690         * gnus-uu.el (gnus-uu-find-articles-matching):
17691         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
17692         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
17693         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
17694         * gnus-nocem.el (gnus-nocem-scan-groups):
17695         * gnus-int.el (gnus-start-news-server):
17696         * gnus-group.el (gnus-group-make-kiboze-group)
17697         (gnus-group-browse-foreign-server):
17698         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
17699         Use mapc when appropriate.
17700
17701 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
17702
17703         FIXME: Make separate entries for each person.
17704
17705         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
17706         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
17707         <shields@msrl.com>:
17708
17709         * spam.el (spam-necessary-extra-headers): Get the extra headers we
17710         may need for spam sorting and scoring.
17711         (spam-user-format-function-S): Add user format function suitable for
17712         general use.
17713         (spam-article-sort-by-spam-status): Add sorting function for summary
17714         sorting.
17715         (spam-extra-header-to-number): Add function to get a score from a
17716         header.
17717         (spam-summary-score): Add function to get a numeric score from the
17718         headers.
17719         (spam-generic-score): Fix function doc, was in wrong place.
17720         (spam-initialize): Take symbols when it's run, and install the
17721         extra headers that spam-necessary-extra-headers thinks we need.
17722
17723 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
17724
17725         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
17726         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
17727
17728 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
17729
17730         * gnus-sum.el (gnus-set-global-variables)
17731         (gnus-build-all-threads, gnus-get-newsgroup-headers)
17732         (gnus-article-get-xrefs, gnus-summary-best-group)
17733         (gnus-summary-next-article, gnus-summary-enter-digest-group)
17734         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
17735         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
17736         Use with-current-buffer.
17737
17738 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
17739
17740         * spam.el (spam-summary-prepare-exit): Simplify logic.
17741         (spam-fetch-article-header): Read the article header if it's not
17742         available.
17743         (spam-list-articles): Simplify logic.
17744         (spam-filelist-register-routine): Fix bug with unregister-list.
17745
17746         * gnus-registry.el: Fix comments at beginning.
17747
17748 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
17749
17750         * message.el (message-cater-to-broken-inn): Remove.
17751         (message-shorten-references): Make sure the total folded length of
17752         References is shorter than 998 characters to cater to a bug in INN
17753         2.3.  Also, don't pretend that references aren't folded -- this
17754         hasn't worked for a while.
17755
17756 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17757
17758         * gnus-agent.el (gnus-agentize):
17759         gnus-agent-send-mail-real-function no longer set to current value
17760         of message-send-mail-function but rather a lambda that calls
17761         message-send-mail-function.  The change makes the agent real-time
17762         responsive to user changes to message-send-mail-function.
17763
17764 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17765
17766         * legacy-gnus-agent.el
17767         (gnus-agent-convert-to-compressed-agentview): Fix typos with
17768         help from Florian Weimer <fw@deneb.enyo.de>
17769
17770 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17771
17772         * nnmail.el (nnmail-cache-insert): Revert last change.
17773
17774 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17775
17776         * nnmail.el (nnmail-cache-insert): Always check whether
17777         nnmail-cache-ignore-groups matches a group name.
17778
17779 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
17780
17781         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
17782         (spam-find-spam, spam-log-processing-to-registry)
17783         (spam-log-registered-p, spam-log-unregistration-needed-p)
17784         (spam-log-undo-registration): Use gnus-message instead of
17785         gnus-error, none of these errors are fatal.
17786
17787         * gnus-registry.el (gnus-registry-clean-empty-function)
17788         (gnus-registry-clean-empty): Remove only empty entries without
17789         extra data.
17790
17791 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
17792
17793         * spam-stat.el (spam-stat-buffer-change-to-spam)
17794         (spam-stat-buffer-change-to-non-spam): Change (error) to
17795         (gnus-message 8) invocation.
17796
17797 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17798
17799         * nntp.el (nntp-via-netcat-command): New variable.
17800         (nntp-via-netcat-switches): New variable.
17801         (nntp-open-via-rlogin-and-netcat): New function.
17802         (nntp-open-connection-function): Doc fix.
17803         (nntp-telnet-command): Doc fix.
17804         (nntp-end-of-line): Doc fix.
17805         (nntp-via-rlogin-command): Doc fix.
17806         (nntp-via-user-name): Doc fix.
17807         (nntp-via-address): Doc fix.
17808
17809 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17810
17811         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
17812         error in Emacs 21.1.
17813
17814 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
17815
17816         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
17817
17818 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
17819
17820         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
17821         (gnus-agent-with-refreshed-group): New macro.
17822         (gnus-agent-rename-group): New function.
17823         (gnus-agent-delete-group): New function.
17824         (gnus-agent-save-group-info): Use gnus-command-method when
17825         `method' parameter is nil.  Don't write nil entries into the
17826         active file.
17827         (gnus-agent-get-group-info): New function.
17828         (gnus-agent-fetch-articles):
17829         Use gnus-agent-update-files-total-fetched-for to increment disk space
17830         used.
17831         (gnus-agent-fetch-headers, gnus-agent-save-alist):
17832         Use gnus-agent-update-view-total-fetched-for to increment disk space
17833         used.
17834         (gnus-agent-get-local): Add optional parameters to avoid calling
17835         gnus-group-real-name and gnus-find-method-for-group.
17836         (gnus-agent-set-local): Delete stored entry if either min, or max,
17837         are nil.
17838         (gnus-agent-fetch-session): Reworded error/quit messages.
17839         On quit, use gnus-agent-regenerate-group to record existance of any
17840         articles fetched to disk before the quit occurred.
17841         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
17842         gnus-agent-update-view-total-fetched-for, and
17843         gnus-agent-update-files-total-fetched-for to decrement disk space
17844         used.
17845         (gnus-agent-retrieve-headers):
17846         Use gnus-agent-update-view-total-fetched-for to increment disk space
17847         used.
17848         (gnus-agent-regenerate-group): Replace gnus-group-update-group
17849         with gnus-agent-update-files-total-fetched-for to decrement disk
17850         space and fresh group buffer.
17851         (gnus-agent-inhibit-update-total-fetched-for): New variable.
17852         (gnus-agent-need-update-total-fetched-for): New variable.
17853         (gnus-agent-update-files-total-fetched-for): New function.
17854         (gnus-agent-update-view-total-fetched-for): New function.
17855         (gnus-agent-total-fetched-for): New function.
17856
17857         * gnus-cache.el (gnus-cache-save-buffers):
17858         Use gnus-cache-update-overview-total-fetched-for to change disk space
17859         used by this group.
17860         (gnus-cache-possibly-enter-article):
17861         Use gnus-cache-update-file-total-fetched-for to increment disk space
17862         used by this group.
17863         (gnus-cache-possibly-remove-article):
17864         Use gnus-cache-update-file-total-fetched-for to decrement disk space
17865         used by this group.
17866         (gnus-cache-generate-nov-databases): Purge total fetched cache.
17867         (gnus-cache-rename-group): New function.
17868         (gnus-cache-delete-group): New function.
17869         (gnus-cache-inhibit-update-total-fetched-for): New variable.
17870         (gnus-cache-need-update-total-fetched-for): New variable.
17871         (gnus-cache-with-refreshed-group): New macro.
17872         (gnus-cache-update-file-total-fetched-for): New function.
17873         (gnus-cache-update-overview-total-fetched-for): New function.
17874         (gnus-cache-rename-group-total-fetched-for): New function.
17875         (gnus-cache-delete-group-total-fetched-for): New function.
17876         (gnus-cache-total-fetched-for): New function.
17877
17878         * gnus-group.el: Require gnus-sum and autoload functions to
17879         resolve warnings when gnus-group.el compiled alone.
17880         (gnus-group-line-format): Documented new %F.
17881         (size of Fetched data) group line format; identifies disk space
17882         used by agent and cache.
17883         (gnus-group-line-format-alist): Defined new F format.
17884         (gnus-total-fetched-for): New function.
17885         (gnus-group-delete-group): No longer update
17886         gnus-cache-active-altered as gnus-request-delete-group now keeps
17887         the cache in sync.
17888         (gnus-group-list-active): Let the agent store a server's active
17889         list if currently plugged.
17890
17891         * gnus-int.el (gnus-request-delete-group):
17892         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
17893         local disk in sync with the server.
17894         (gnus-request-rename-group):
17895         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
17896         local disk in sync with the server.
17897
17898         * gnus-start.el (gnus-get-unread-articles):
17899         Cosmetic simplification to logic.
17900
17901         * gnus-util.el (gnus-rename-file): New function.
17902
17903 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
17904
17905         * mm-util.el (mm-image-load-path): Handle nil in load-path.
17906
17907 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
17908
17909         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
17910         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
17911
17912 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
17913
17914         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
17915         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
17916
17917 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
17918
17919         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
17920
17921 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
17922
17923         * spam.el (spam-set-difference): Add function to replace
17924         gnus-set-difference in spam.el.
17925         (spam-summary-prepare-exit): Use spam-set-difference.
17926
17927 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
17928
17929         * gnus-registry.el (gnus-registry-cache-file): Update to use
17930         gnus-dribble-directory OR gnus-home-directory OR ~.
17931         (gnus-registry-split-fancy-with-parent): Fix doc.
17932
17933 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17934
17935         * message.el (message-exchange-point-and-mark):
17936         Use message-mark-active-p.  Suggested by Jesper Harder
17937         <harder@ifa.au.dk>.
17938
17939 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17940
17941         * message.el (message-exchange-point-and-mark): Don't activate
17942         region if it was inactive.  Suggested by Hiroshi Fujishima
17943         <pooh@nature.tsukuba.ac.jp>.
17944
17945 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17946
17947         * gnus-art.el (article-display-face): Display Faces in the same
17948         order as X-Faces.
17949
17950 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17951
17952         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
17953
17954 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17955
17956         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
17957         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
17958         (gnus-article-mime-hierarchy): Remove.
17959         (gnus-article-mime-hierarchy-next): Remove.
17960         (gnus-article-mode): Revert 2004-03-19 change.
17961         (gnus-article-setup-buffer): Revert 2004-03-19 change.
17962         (gnus-insert-mime-button): Revert 2004-03-19 change.
17963         (gnus-mime-accumulate-hierarchy): Remove.
17964         (gnus-mime-enter-multipart): Remove.
17965         (gnus-mime-leave-multipart): Remove.
17966         (gnus-mime-display-part): Revert 2004-03-19 change.
17967         (gnus-mime-display-alternative): Revert 2004-03-19 change.
17968
17969         * mml.el (mml-preview): Revert 2004-03-19 change.
17970
17971 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
17972
17973         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
17974
17975 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17976
17977         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
17978         t while entering a file name using the mm-with-multibyte macro.
17979         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
17980
17981         * mm-util.el (mm-with-multibyte): New macro.
17982
17983 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17984
17985         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
17986         New user option.
17987         (gnus-mime-multipart-functions): Doc and customization fix.
17988         (gnus-article-mime-hierarchy): New variable.
17989         (gnus-article-mime-hierarchy-next): New variable.
17990         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
17991         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
17992         gnus-article-mime-hierarchy-next to nil.
17993         (gnus-insert-mime-button): Show hierarchy numbers.
17994         (gnus-mime-accumulate-hierarchy): New function.
17995         (gnus-mime-enter-multipart): New function.
17996         (gnus-mime-leave-multipart): New function.
17997         (gnus-mime-display-part): Recompute hierarchical MIME structure.
17998         (gnus-mime-display-alternative): Show hierarchy numbers.
17999
18000         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
18001         gnus-article-mime-hierarchy-next to nil.
18002
18003 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
18004
18005         * dns.el: Don't require gnus-xmas.
18006
18007 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
18008
18009         * mml.el (mml-generate-mime-1): Don't use format=flowed with
18010         inline PGP.
18011         (mml-menu): Disable mml-quote-region if mark is inactive.
18012
18013 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18014
18015         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
18016         when the group's active is not available.
18017
18018 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18019
18020         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
18021         error.
18022
18023 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
18024
18025         * imap.el (imap-store-password): New variable.
18026         (imap-interactive-login): Use it.
18027         Suggested by Mark Plaksin <happy@mcplaksin.org>.
18028
18029 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18030
18031         * gnus-art.el (gnus-article-read-summary-keys): Restore new
18032         window-start and hscroll to summary window.
18033
18034 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18035
18036         * gnus-start.el (gnus-convert-old-newsrc): Only write the
18037         conversion message to newsrc-dribble when an actual conversion is
18038         performed.
18039
18040 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
18041
18042         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
18043
18044 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18045
18046         * mm-decode.el (mm-complicated-handles): New function reviving
18047         former definition of mm-multiple-handles.
18048
18049         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
18050         (gnus-mime-delete-part): Use it.
18051
18052 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18053
18054         * gnus-agent.el (gnus-agent-read-local):
18055         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
18056         avoid the implicit assumption that they will always be equal.
18057         (gnus-agent-save-local): Bind buffer-file-coding-system, not
18058         coding-system-for-write, as the with-temp-file macro first prints
18059         to a buffer then saves the buffer.
18060
18061 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18062
18063         * gnus-art.el (gnus-article-edit-part): New function.
18064         (gnus-mime-save-part-and-strip): Use it; do query instead of
18065         signaling an error; don't use mm-multiple-handles.
18066         (gnus-mime-delete-part): Ditto.
18067
18068 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18069
18070         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
18071         old file versions.
18072         (gnus-group-prepare-hook): Remove function that converted list
18073         form of gnus-agent-expire-days to group properties.
18074
18075         * gnus-int.el: Autoload gnus-agent-regenerate-group.
18076         (gnus-request-accept-article): Re-indented.
18077
18078         * gnus-start.el (gnus-convert-old-newsrc): Registered new
18079         converters to handle old agent file formats.  Add logic for a
18080         "backup before upgrading warning".
18081         (gnus-convert-mark-converter-prompt): Developers can mark
18082         functions as needing (default), or not needing,
18083         gnus-convert-old-newsrc's "backup before upgrading warning".
18084         (gnus-convert-converter-needs-prompt): Tests whether the user
18085         should be protected from potentially irreversable changes by the
18086         function.
18087
18088         * legacy-gnus-agent.el: New.  Provides converters that are only
18089         loaded when gnus-convert-old-newsrc needs to call them.
18090
18091 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18092
18093         * mail-source.el (mail-source-touch-pop): Doc fix.
18094
18095         * message.el (message-smtpmail-send-it): Doc fix.
18096
18097 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
18098
18099         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
18100
18101         * nnmail.el (nnmail-split-fancy): do.
18102
18103         * gnus-kill.el (gnus-kill, gnus-execute): do.
18104
18105 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
18106
18107         * gnus-sum.el (gnus-widget-reversible-match)
18108         (gnus-widget-reversible-to-internal)
18109         (gnus-widget-reversible-to-external): New functions.
18110         (gnus-widget-reversible): New widget.
18111         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
18112
18113 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
18114
18115         * gnus-sum.el (gnus-thread-sort-functions)
18116         (gnus-article-sort-functions): Document `(not F)' items.
18117
18118 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
18119
18120         * spam.el (spam-use-gmane-xref): Add new backend.
18121         (spam-gmane-xref-spam-group): Add variable to control the name of the
18122         Gmane spam group.
18123         (spam-blackhole-servers, spam-blackhole-good-server-regex)
18124         (spam-regex-headers-spam, spam-regex-headers-ham)
18125         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
18126         (spam-list-of-checks): Add spam-use-gmane-xref to list of
18127         backends and checks.
18128         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
18129
18130         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
18131         an autodetect method.
18132
18133 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18134
18135         * gnus-int.el (gnus-request-accept-article): Inform the agent that
18136         articles are being added to a group.
18137         (gnus-request-replace-article): Inform the agent that articles
18138         need to be uncached as the cached contents are no longer valid.
18139
18140 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18141
18142         * binhex.el: Don't autoload executable-find.
18143
18144         * canlock.el: Don't autoload mail-fetch-field.
18145
18146         * dgnushack.el: Autoload c-mode for XEmacs.
18147
18148         * gnus-ems.el: Don't autoload appt-select-lowest-window.
18149
18150         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
18151         rmail-dont-reply-to and rmail-output.
18152
18153         * gnus-score.el: Don't autoload ffap-string-at-point.
18154
18155         * gnus-setup.el: Don't autoload sc-cite-original.
18156
18157         * imap.el: Don't autoload base64-decode-string,
18158         base64-encode-string and md5.
18159
18160         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
18161         and rmail-msg-restore-non-pruned-header.
18162
18163         * mm-decode.el: Don't autoload executable-find.
18164
18165         * mm-url.el: Don't autoload executable-find.
18166
18167         * mm-view.el: Don't autoload diff-mode.
18168
18169         * nndb.el: Don't autoload news-reply-mode, news-setup,
18170         cancel-timer and telnet.
18171
18172         * password.el: Don't autoload run-at-time for Emacs.
18173
18174         * sha1-el.el: Don't autoload executable-find.
18175
18176         * sieve-mode.el: Don't autoload c-mode.
18177
18178         * uudecode.el: Don't autoload executable-find.
18179
18180 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18181
18182         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
18183         (gnus-agent-possibly-alter-active): Avoid null in numeric
18184         comparison.
18185         (gnus-agent-set-local): Refuse to save null in local object table.
18186         (gnus-agent-regenerate-group): The REREAD parameter can now be a
18187         list of articles that will be marked as unread.
18188
18189 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18190
18191         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
18192
18193 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
18194
18195         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
18196         language tags.
18197
18198 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
18199
18200         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
18201         Don't bind "obarray".
18202
18203         * gnus-sum.el (gnus-thread-sort-functions):
18204         Add `gnus-thread-sort-by-most-recent-number' and
18205         `gnus-thread-sort-by-most-recent-date'.
18206         Reported by Kai Grossjohann <kai@emptydomain.de>.
18207
18208 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18209
18210         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
18211
18212 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18213
18214         * gnus-cus.el (gnus-agent-customize-category):
18215         Remove ignore-errors macro reference that required cl to be loaded at
18216         run-time.
18217
18218         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
18219         single-interval range of the form (min . max).  Previously the
18220         range had to look like ((min . max)).  Likewise, return
18221         (min . max) rather than ((min . max)).
18222         (gnus-range-map): Use gnus-range-normalize to accept
18223         single-interval range.
18224
18225         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
18226         the cache, but not the agent, now appear with their usual face.
18227
18228         * dgnushack.el (loaddir): New variable that is bound to the
18229         directory containing the dgnushack.el file. Use loaddir, rather
18230         than srcdir, to update load-path. Change lets dgnushack compile
18231         code in directories other than GNUS/lisp.
18232
18233 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18234
18235         * lpath.el: Don't bind w3m-safe-url-regexp.
18236
18237         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
18238         w3m-safe-url-regexp variable buffer-local.
18239
18240         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
18241
18242 2004-02-27  Simon Josefsson  <jas@extundo.com>
18243
18244         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
18245         gnus-group-real-prefix.
18246         (gnus-summary-move-article): Use it, instead of
18247         gnus-group-real-prefix.
18248
18249 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18250
18251         * lpath.el: Bind w3m-safe-url-regexp.
18252
18253         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
18254         w3m-safe-url-regexp variable buffer-local and set it as the value
18255         of mm-w3m-safe-url-regexp.
18256
18257         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
18258
18259         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
18260         parsing gnus-posting-styles when the message is not for replying.
18261
18262         * dgnushack.el: Autoload sgml-mode for XEmacs.
18263
18264         * nnrss.el (nnrss-opml-export):
18265         Use mm-set-buffer-file-coding-system instead of
18266         set-buffer-file-coding-system.
18267
18268 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
18269
18270         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
18271         of checkdoc.el).
18272         * nnrss.el: do.
18273         * gnus-mlspl.el: do.
18274         * gnus-ml.el: do.
18275         * gnus-srvr.el: do.
18276
18277         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
18278
18279 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
18280
18281         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
18282         Corrections to custom-manual links.
18283
18284         * gnus-art.el (gnus-article): Ditto.
18285
18286         * mm-decode.el (mime-display, mime-security): Ditto.
18287
18288 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
18289
18290         * flow-fill.el: Typo.
18291
18292 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
18293
18294         * spam-wash.el: New file.
18295
18296 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
18297
18298         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
18299
18300 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
18301
18302         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
18303         to be run with new-articles as LIST1, not LIST2.
18304         (spam-registration-functions): Add spam-use-ham-copy as a nil
18305         registration backend.
18306
18307 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
18308
18309         * spam-stat.el (spam-stat-washing-hook): New option.
18310         (spam-stat-buffer-words): Use it.
18311         (spam-stat-process-directory, spam-stat-test-directory):
18312         Use insert-file-contents-literally.
18313         (spam-stat-coding-system): New variable.
18314         (spam-stat-load, spam-stat-save): Use it.
18315
18316 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18317
18318         * spam-report.el (spam-report-plug-agent):
18319         Quote spam-report-url-to-file and spam-report-url-ping-plain.
18320
18321 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
18322
18323         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
18324         Allow / in mailto URLs.
18325
18326 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18327
18328         * spam-report.el (spam-report-process-queue): Fix interactive use.
18329         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
18330         (spam-report-unplug-agent): Doc fixes.
18331         (spam-report-url-ping-mm-url, spam-report-url-to-file)
18332         (spam-report-agentize, spam-report-deagentize): Autoload.
18333
18334 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18335
18336         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
18337
18338         * message.el (message-setup-fill-variables): Add mml tags to
18339         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
18340         <ajk@iu.edu>.
18341         (message-mode): Don't modify paragraph-separate there.
18342
18343 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18344
18345         * compface.el (uncompface-use-external): Default to undecided.
18346         (uncompface-use-external-threshold): New variable.
18347         (uncompface-float-time): New macro.
18348         (uncompface): Determine whether to use the external decoder if
18349         uncompface-use-external is undecided.
18350
18351 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18352
18353         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
18354         after images.
18355
18356         * gnus-art.el (gnus-mime-display-single): Remove dead code.
18357
18358 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
18359
18360         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
18361
18362         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
18363
18364         * gnus-sum.el (gnus-summary-limit-to-age)
18365         (gnus-summary-limit-children): do.
18366
18367         * gnus-int.el (gnus-request-scan): do.
18368
18369         * gnus-group.el (gnus-group-suspend): do.
18370
18371         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
18372
18373         * gnus-cite.el (gnus-cite-parse-attributions): do.
18374
18375         * gnus-agent.el (gnus-summary-set-agent-mark)
18376         (gnus-agent-regenerate-group): do.
18377
18378         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
18379
18380         * binhex.el (binhex-decode-region-internal): do.
18381
18382 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18383
18384         * gnus-fun.el (gnus-face-properties-alist): New user option.
18385         (gnus-display-x-face-in-from): Use it.
18386
18387         * gnus-art.el (article-display-face): Ditto.
18388
18389         * compface.el (uncompface-use-external): Default to nil.
18390
18391 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
18392
18393         * nntp.el (nntp-erase-buffer): New function.
18394         (nntp-retrieve-data, nntp-send-command)
18395         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
18396         (nntp-possibly-change-group): Use it.
18397
18398         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
18399         Use with-current-buffer.
18400
18401 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
18402
18403         * compface.el: Merge the ELisp-based uncompface program.
18404         (compface): New customization group.
18405         (uncompface-use-external): New user option.
18406         (uncompface): Call uncompface-internal if uncompface-use-external
18407         is nil.
18408         (uncompface-internal): New function.  Note that there are also
18409         some other functions and variables added for this function.
18410
18411 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
18412
18413         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
18414         if necessary.
18415
18416 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
18417
18418         * spam-report.el (spam-report-unplug-agent)
18419         (spam-report-plug-agent, spam-report-deagentize)
18420         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
18421         Add support for the Agent in spam-report: when unplugged, report to a
18422         file; when plugged, submit all the requests.
18423
18424         * spam.el (spam-register-routine): Fix message about
18425         registration.
18426
18427 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
18428
18429         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
18430         dependencies.
18431         (rfc2047-encode): Use it.
18432
18433         * gnus-art.el (gnus-button-marker-list): Move before first
18434         reference.
18435
18436         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
18437         (imap-parse-body): Fix format string mismatch.
18438
18439         * gnus-score.el (gnus-summary-increase-score): do.
18440
18441         * nnrss.el (nnrss-close): New function.
18442
18443 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
18444
18445         * nnrss.el (nnrss-make-filename): New function.
18446         (nnrss-request-delete-group, nnrss-read-server-data)
18447         (nnrss-save-server-data, nnrss-read-group-data)
18448         (nnrss-save-group-data): Use it.
18449         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
18450         (nnrss-read-server-data, nnrss-read-group-data): Use load.
18451         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
18452
18453 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
18454
18455         * mml.el (mml-compute-boundary-1): Don't uncompress files.
18456
18457 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
18458
18459         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
18460         files.
18461
18462         * message.el (message-generate-headers-first): Don't quote nil
18463         and t in docstrings.
18464
18465         * imap.el (imap-id): do.
18466
18467         * gnus-agent.el (gnus-agent-consider-all-articles)
18468         (gnus-agent-queue-mail): do.
18469
18470 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
18471
18472         * spam-report.el (spam-report-process-queue): New function.
18473         Process requests from `spam-report-requests-file'.
18474         (spam-report-process-queue): Doc fix.
18475
18476 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
18477
18478         * spam.el (spam-register-routine)
18479         (spam-log-processing-to-registry, spam-log-registered-p)
18480         (spam-log-unregistration-needed-p, spam-log-undo-registration):
18481         Change "check" to "spam-check" for semi-clarity.
18482
18483 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
18484
18485         * pop3.el: Require nnheader.
18486
18487         * mml-smime.el: Require cl.  Autoload message-fetch-field.
18488
18489         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
18490
18491         * gnus-picon.el: Require cl.
18492
18493         * gnus-fun.el: Require gnus-ems and gnus-util.
18494
18495         * gnus.el (gnus-method-to-server): Move defsubst before first use.
18496
18497         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
18498
18499         * gnus-art.el (gnus-article-edit-mode): Define before first
18500         reference.
18501
18502 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
18503
18504         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
18505         (gnus-uu-post-encoded): Use point-at-bol.
18506
18507         * gnus-topic.el (gnus-group-active-topic-p): do.
18508
18509         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
18510
18511         * gnus-group.el (gnus-group-kill-region): do.
18512
18513         * gnus-art.el (article-date-ut): do.
18514
18515         * message.el (message-fetch-field): Remove redundant
18516         case-fold-search binding.
18517         (message-narrow-to-field): Simplify.
18518
18519 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
18520
18521         * spam.el (spam-directory): Derive from `gnus-directory'.
18522
18523         * spam-report.el (spam-report-url-to-file)
18524         (spam-report-requests-file): New function and variable for offline
18525         reporting.
18526         (spam-report-url-ping-function): Add `spam-report-url-to-file'
18527         and user defined function.
18528         (spam-report-url-ping-mm-url): Remove doubled slash.
18529
18530 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
18531
18532         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
18533
18534 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
18535
18536         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
18537         Fix format string mismatch.
18538
18539         * sieve.el (sieve-deactivate-all): do.
18540
18541         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
18542
18543         * nnlistserv.el (nnlistserv-kk-wash-article): do.
18544
18545         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
18546
18547         * mm-bodies.el (mm-7bit-chars): Don't include \r.
18548
18549 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
18550
18551         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
18552         the list of checks.
18553
18554 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
18555
18556         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
18557         padding.
18558
18559 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
18560
18561         * mm-view.el (mm-fill-flowed): New variable.
18562         (mm-inline-text): Use it.
18563
18564 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
18565
18566         * spam.el (spam-spamassassin-register-ham-routine)
18567         (spam-spamassassin-register-spam-routine): Fix function names.
18568
18569 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18570
18571         * gnus.el (gnus-tmp-grouplens): Remove.
18572         (gnus-summary-line-format): Remove grouplens.
18573
18574         * gnus-group.el (gnus-group-line-format): Ditto.
18575
18576         * gnus-spec.el (gnus-format-specs): Ditto.
18577         (gnus-update-format-specifications): Flush the group format spec
18578         cache if there's the grouplens stuff.
18579         (gnus-parse-simple-format): Replace %l with the empty string.
18580
18581 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
18582
18583         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
18584         omission.
18585
18586 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18587
18588         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
18589         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
18590
18591 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
18592
18593         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
18594         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
18595         New macros and functions.
18596         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
18597         Handle > NLINK_MAX messages.
18598         * nnmaildir.el (nnmaildir-request-set-mark):
18599         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
18600
18601 2004-01-25  Alex Schroeder  <alex@gnu.org>
18602
18603         * spam-stat.el (spam-stat-process-directory-age): New option.
18604         (spam-stat-process-directory): Use it.
18605
18606 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
18607
18608         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
18609         (spam-stat-save): Accept prefix argument.
18610
18611 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
18612
18613         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
18614         links" error.
18615
18616 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18617
18618         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
18619         the rest of the and/or forms.
18620
18621 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
18622
18623         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
18624         compatibility with old .newsrc.eld files.
18625
18626         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
18627
18628         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
18629
18630         * gnus-start.el (gnus-1): do.
18631
18632         * gnus-group.el (gnus-group-line-format-alist): do.
18633
18634         * gnus.el (gnus-use-grouplens, gnus-visual): do.
18635
18636         * gnus-gl.el: Remove.
18637
18638 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18639
18640         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
18641         marks consisting of a single range {for example, (3 . 5)} rather
18642         than a list of a single range { ((3 . 5)) }.
18643
18644 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
18645
18646         * spam-stat.el (spam-stat-store-gnus-article-buffer):
18647         Use with-current-buffer.
18648         (spam-stat-store-current-buffer): Use insert-buffer-substring to
18649         avoid consing a string.
18650
18651         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
18652         Remove obsolete entries for big5 and gb2312.
18653
18654 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18655
18656         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
18657         uncompressed list.
18658
18659 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
18660
18661         * spam-stat.el (spam-stat-strip-xref): New function.
18662         (spam-stat-process-directory): Use it.
18663
18664         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
18665         here -- it's done in message-fetch-field.
18666
18667 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18668
18669         * gnus-agent.el (gnus-agent-queue-mail)
18670         (gnus-agent-prompt-send-queue): New variables.
18671         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
18672         * gnus-draft.el (gnus-group-send-queue): Pass the group name
18673         "nndraft:queue" along to gnus-draft-send.
18674         Use gnus-agent-prompt-send-queue.
18675         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
18676         is "nndraft:queue".  Suggested by Gaute Strokkenes
18677         <gs234@srcf.ucam.org>
18678
18679         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
18680         (agent-enable-undownloaded-faces): Add.
18681         (gnus-agent-cat-groups): Use eval-and-compile, not
18682         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
18683         method of gnus-agent-cat-groups even when the buffer has been
18684         evaled.
18685         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
18686         delete gnus-agent-save-active-1.
18687         (gnus-agent-save-groups): Delete.  Identical to
18688         gnus-agent-save-active.
18689         (gnus-agent-write-active): No longer adjust agent's copy of active
18690         file as agent's adjustments are now stored in their own
18691         file.  Remove optional parameter.
18692         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
18693         servers.  Add use of min/max range limits from server's local
18694         file.
18695         (gnus-agent-save-alist): Remove unused optional argument.
18696         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
18697         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
18698         (gnus-agent-set-local): A per-server file that keeps min/max range
18699         limits for articles known to the agent.  Provides a fast mechanism
18700         for altering many active ranges.
18701         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
18702         active file (local makes it unnecessary).
18703         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
18704
18705         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
18706         (agent-enable-undownloaded-faces): Add.
18707
18708         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
18709         disable it when sending to "nndraft:queue".
18710         (gnus-group-send-queue): Add safety check to avoid sending queue
18711         when unplugged.
18712
18713         * gnus-group.el (gnus-group-catchup): Use new
18714         gnus-sequence-of-unread-articles, not
18715         gnus-list-of-unread-articles, to avoid exhausting memory with huge
18716         numbers of articles.  Use gnus-range-map to avoid having to
18717         uncompress the unread list.
18718         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
18719         Fix invalid ange-ftp reference.
18720
18721         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
18722         (gnus-sorted-range-intersection): Intersection of two ranges
18723         without requiring that they first be uncompressed.
18724
18725         * gnus-start.el (gnus-activate-group): Unless blocked by the
18726         caller, possibly expand the active range to include both cached
18727         and agentized articles.
18728         (gnus-convert-old-newsrc): Rewrote in anticipation of having
18729         multiple version-dependent converters.
18730         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
18731         gnus-agent-save-active.
18732         (gnus-save-newsrc-file): Save dirty agent range limits.
18733
18734         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
18735         gnus-agent-possibly-alter-active.
18736         (gnus-adjust-marked-articles): Faster handling of simple lists.
18737
18738 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
18739
18740         * spam-stat.el (spam-stat-test-directory): New optional argument
18741         displays a list of files detected.  Suggested by Andrew Cohen
18742         <cohen@andy.bu.edu>.
18743         (spam-stat-buffer-words-with-scores): Don't narrow and change
18744         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
18745
18746 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
18747
18748         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
18749         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
18750         (spam-spamassassin-arguments)
18751         (spam-spamassassin-spam-flag-header)
18752         (spam-spamassassin-positive-spam-flag-header)
18753         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
18754         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
18755         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
18756         (spam-list-of-processors, spam-list-of-checks)
18757         (spam-list-of-statistical-checks, spam-registration-functions)
18758         (spam-check-spamassassin-headers, spam-check-spamassassin)
18759         (spam-spamassassin-score)
18760         (spam-spamassassin-register-with-sa-learn)
18761         (spam-spamassassin-register-spam-routine)
18762         (spam-spamassassin-register-ham-routine)
18763         (spam-assassin-register-spam-routine)
18764         (spam-assassin-register-ham-routine): Add SpamAssassin support.
18765         (spam-bogofilter-score): Fix to show article before scoring.
18766
18767 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
18768
18769         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
18770         default scoring function.
18771         (spam-generic-score): Call spam-spamassassin-score if
18772         spam-use-spamassassin or spam-use-spamassassin-headers is on;
18773         spam-bogofilter-score otherwise.
18774
18775         * gnus.el (spam-process, spam-autodetect-methods):
18776         Add spamassassin and spamassassin-headers.
18777
18778 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
18779
18780         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
18781         Suppress unnecessary messages.
18782
18783 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
18784
18785         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
18786         make-hash-table.
18787
18788 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18789
18790         * canlock.el (base64-encode-string): Don't autoload it.
18791
18792 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18793
18794         * run-at-time.el: Remove useless (require 'itimer),
18795         eval-and-compile and (featurep 'xemacs).
18796
18797 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
18798
18799         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
18800         GROUP is a virtual group.
18801
18802 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
18803
18804         * gnus.el: Autoload `message-y-or-n-p'.
18805
18806 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
18807
18808         * pgg-parse.el: Remove unnecessary (require 'custom).
18809
18810         * pgg-def.el: do.
18811
18812         * nnmail.el: do.
18813
18814         * gnus-undo.el: do.
18815
18816         * gnus-picon.el: do.
18817
18818         * gnus-util.el: do.
18819
18820 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
18821
18822         * gnus-sum.el (gnus-pick-line-number): Add autoload.
18823
18824 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18825
18826         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
18827         handle, as well as a list.
18828
18829         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
18830         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
18831         (mm-w3m-cid-retrieve): Simplify.
18832
18833 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
18834
18835         * message.el (message-kill-to-signature): Allow prefix arg to
18836         specify number of lines to keep before signature.
18837
18838 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
18839
18840         * message.el (message-kill-to-signature): Change docstring.
18841
18842 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18843
18844         * canlock.el: Always require sha1-el.
18845         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
18846
18847         * message.el: Autoload sha1 only when compiling.
18848
18849         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
18850         eudc-expand-inline for XEmacs.
18851
18852 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18853
18854         * message.el (message-canlock-generate): Require sha1-el.
18855
18856 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
18857
18858         * message.el (message-expand-name): Silence the byte compiler.
18859
18860         * lpath.el: Add detect-coding-system.
18861
18862         * dgnushack.el (dgnushack-compile): Remove obsolete check for
18863         cus-edit.
18864
18865 2004-01-13  Simon Josefsson  <jas@extundo.com>
18866
18867         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
18868         Invoke gnus-score-mode.
18869         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
18870
18871         * gnus-range.el (gnus-compress-sequence): Doc fix.
18872         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
18873
18874 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
18875
18876         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
18877
18878 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
18879
18880         * spam.el (spam-get-article-as-string): Update to use
18881         gnus-request-article-this-buffer, much simpler.
18882         (spam-get-article-as-buffer): Remove.
18883
18884 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
18885
18886         * message.el (message-expand-name): Use EUDC if the user uses that.
18887
18888 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
18889
18890         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
18891         character for the encoding to avoid consing a string.
18892
18893         * rfc2047.el (rfc2047-decode-string): Don't cons a string
18894         unnecessarily.
18895
18896         * mm-util.el (mm-replace-chars-in-string): Remove.
18897
18898         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
18899         of mm-replace-chars-in-string.
18900
18901 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
18902
18903         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
18904
18905         * mm-util.el (mm-subst-char-in-string): Support inplace.
18906
18907         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
18908         a new string in every iteration.  Use shy groups.
18909
18910 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
18911
18912         * gnus-srvr.el (gnus-browse-unsubscribe-group):
18913         * gnus-soup.el (gnus-soup-group-brew):
18914         * gnus-msg.el (gnus-put-message):
18915         * gnus-move.el (gnus-group-move-group-to-server):
18916         * gnus-kill.el (gnus-batch-score):
18917         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
18918         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
18919         (gnus-group-update-group, gnus-group-read-group)
18920         (gnus-group-make-group, gnus-group-make-help-group)
18921         (gnus-group-make-archive-group, gnus-group-make-directory-group)
18922         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
18923         (gnus-group-sort-by-unread, gnus-group-catchup)
18924         (gnus-group-unsubscribe-group, gnus-group-kill-group)
18925         (gnus-group-yank-group, gnus-group-set-info)
18926         (gnus-group-list-groups):
18927         * gnus.el (gnus-generate-new-group-name):
18928         * gnus-delay.el (gnus-delay-send-queue):
18929         * nnvirtual.el (nnvirtual-catchup-group):
18930         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
18931         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
18932         (gnus-group-prepare-topics, gnus-topic-check-topology):
18933         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
18934         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
18935         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
18936         (gnus-group-make-articles-read):
18937         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
18938         (gnus-group-change-level, gnus-kill-newsgroup)
18939         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
18940         (gnus-get-unread-articles, gnus-make-articles-unread)
18941         (gnus-make-ascending-articles-unread): Use accessor
18942         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
18943         to get group information for improved readability.
18944
18945
18946 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18947
18948         * gnus-art.el (article-decode-mime-words, article-babel)
18949         (gnus-article-highlight-signature, gnus-article-add-buttons)
18950         (gnus-signature-toggle): Use gnus-with-article-buffer.
18951
18952         * gnus-art.el (gnus-article-highlight-headers)
18953         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
18954
18955         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
18956         (gnus-article-set-globals, gnus-request-article-this-buffer)
18957         (gnus-button-message-id, gnus-article-maybe-hide-headers)
18958         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
18959         (gnus-mime-display-alternative): Use with-current-buffer.
18960
18961 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18962
18963         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
18964         also under 80 char limit, and call gnus-error if needed.
18965         (spam-fetch-article-header): Fix - it was a
18966         buffer-local variable (gnus-newsgroup-data).
18967         (spam-find-spam): Use spam-generate-fake-headers, forget about
18968         spam-insert-fake-headers.
18969         (spam-insert-fake-headers): Remove.
18970
18971 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18972
18973         * deuglify.el (gnus-article-outlook-unwrap-lines)
18974         (gnus-outlook-rearrange-article)
18975         (gnus-outlook-repair-attribution-outlook)
18976         (gnus-outlook-repair-attribution-block)
18977         (gnus-outlook-repair-attribution-other): Remove redundant
18978         save-excursion.
18979
18980 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18981
18982         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
18983         (spam-fetch-field-subject-fast)
18984         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
18985         (spam-fetch-article-header): Add functions to deal with Gnus
18986         internals for fast retrieval of article header data.
18987         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
18988
18989 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
18990
18991         * pop3.el (pop3-md5): Remove.
18992         (pop3-apop): Replace pop3-md5 with md5.
18993
18994         * mm-bodies.el: base64 is always built-in.
18995
18996         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18997         Use with-current-buffer.
18998
18999 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19000
19001         * canlock.el (canlock-insert-header): Remove excessive grouping in
19002         regexp.
19003
19004         * gnus-sum.el (gnus-summary-read-document): Ditto.
19005
19006         * gnus-uu.el (gnus-uu-part-number): Ditto.
19007
19008         * html2text.el (html2text-remove-tags): Ditto.
19009         (html2text-format-tags): Ditto.
19010         (html2text-format-single-elements): Ditto.
19011
19012         * mml.el (mml-parse-1): Ditto.
19013
19014 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
19015
19016         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
19017
19018         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
19019
19020         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
19021
19022         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
19023
19024 2003-11-15  Simon Josefsson  <jas@extundo.com>
19025
19026         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
19027         (pgg-gpg-lookup-key): Use regexp match instead of
19028         split-string (split-string is different between emacs 21.2 and
19029         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
19030
19031 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
19032
19033         * gnus-art.el (gnus-mime-view-all-parts)
19034         (gnus-article-part-wrapper, gnus-article-view-part):
19035         Use with-current-buffer.
19036
19037 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
19038
19039         * spam.el (spam-disable-spam-split-during-ham-respool)
19040         (spam-spamoracle-database, spam-cache-lookups)
19041         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
19042         (spam-group-ham-mark-p, spam-group-spam-mark-p)
19043         (spam-group-ham-marks, spam-group-spam-marks)
19044         (spam-group-spam-contents-p, spam-group-ham-contents-p)
19045         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
19046         also add spam-use-blackholes to the statistical checks.
19047         (spam-fetch-field-fast): Add interface to fetching fields, may
19048         become a macro.
19049         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
19050         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
19051         (spam-insert-fake-headers): Fake an article when needed.
19052         (spam-find-spam): Fake article when possible.
19053         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
19054         (spam-check-bogofilter-headers): Use message-fetch-field instead
19055         of nnmail-fetch-field.
19056
19057 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
19058
19059         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
19060
19061 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
19062
19063         * spam.el (spam-split): Do not require spam-use-CHECK to be
19064         enabled if that check is passed to spam-split explicitly; also
19065         fix so 'spam doesn't get converted to spam-split-group when
19066         spam-split-symbolic-return is t.
19067         (spam-find-spam): Find registrations of the article and use those
19068         instead of re-running spam-split to find the spam/ham
19069         classification of the article.
19070         (spam-log-processing-to-registry, spam-log-registered-p)
19071         (spam-log-unregistration-needed-p, spam-log-undo-registration):
19072         Use gnus-error instead of gnus-message.
19073         (spam-log-registration-type): Add function to determine the
19074         classification of a message based on registry entries; will
19075         return nil if both 'spam and 'ham are found.
19076         (spam-check-BBDB): Expand all the BBDB macros here so we can have
19077         a reasonably fast local cache without the loading errors.
19078         (spam-cache-lookups): Set to t by default.
19079         (spam-find-spam): Don't try to guess spam-cache-lookups.
19080         (spam-enter-whitelist, spam-enter-blacklist): Clear the
19081         spam-caches entry.
19082         (spam-filelist-build-cache, spam-filelist-check-cache):
19083         Fix caching of whitelist/blacklist entries.
19084         (spam-check-whitelist, spam-check-blacklist):
19085         Invoke spam-from-listed-p with a type, not a cache variable.
19086         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
19087
19088 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
19089
19090         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
19091
19092         * nnmail.el (nnmail-split-fancy): do.
19093
19094         * mml.el (mml-parse): do.
19095
19096         * gnus-score.el (gnus-enter-score-words-into-hashtb)
19097         (gnus-score-adaptive): do.
19098
19099 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19100
19101         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
19102         (gnus-mime-button-map): Don't set keymap parent.
19103         (gnus-button-ctan-directory-regexp): Use shy grouping.
19104         (gnus-prev-page-map): Don't set keymap parent.
19105         (gnus-prev-page-map): Remove duplicated one.
19106         (gnus-next-page-map): Don't set keymap parent.
19107         (gnus-mime-security-button-map): Ditto.
19108
19109         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
19110         version number.
19111
19112         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
19113
19114 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19115
19116         * canlock.el (canlock-sha1-function): Remove.
19117         (canlock-sha1-function-for-verify): Remove.
19118         (canlock-openssl-program): Remove.
19119         (canlock-openssl-args): Remove.
19120         (canlock-ignore-errors): Remove.
19121         (canlock-sha1-with-openssl): Remove.
19122         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
19123         (canlock-verify): Don't use canlock-ignore-errors.
19124
19125         * sha1-el.el (sha1-string-external): Make it can return a string
19126         in binary form.
19127         (sha1-region-external): Ditto.
19128         (sha1-string-internal): Ditto.
19129         (sha1-region-internal): Ditto.
19130         (sha1-region): Ditto.
19131         (sha1-string): Ditto.
19132         (sha1): Ditto.
19133
19134 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19135
19136         * spam.el (spam-report-articles-gmane): New command.
19137
19138 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19139
19140         * gnus.el: Don't make unnecessary *Group* buffer when loading.
19141
19142         * run-at-time.el (run-at-time-saved): Remove.
19143         (run-at-time): Doc fix.
19144
19145 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
19146
19147         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
19148         (gnus-summary-limit-map): Add it.
19149         (gnus-summary-make-menu-bar): do.
19150
19151 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
19152
19153         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
19154         Make attempt at some caching support (done for BBDB only now).
19155         (spam-find-spam): Set spam-cache-lookups if there are more than 2
19156         addresses to be checked.
19157         (spam-clear-cache-BBDB): Add function, to be invoked by
19158         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
19159         (spam-check-BBDB): Check and use the caches, if
19160         spam-cache-lookups is on, remove superfluous (provide).
19161
19162 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
19163
19164         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
19165
19166 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
19167
19168         * run-at-time.el (run-at-time-saved): Move to after the definition
19169         of `run-at-time'.
19170
19171         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
19172
19173 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19174
19175         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
19176         mm-w3m-local-map-property.
19177
19178         * mm-view.el (mm-w3m-mode-map): Remove.
19179         (mm-w3m-local-map-property): Remove.
19180         (mm-inline-text-html-render-with-w3m): Don't use
19181         mm-w3m-local-map-property.
19182
19183 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19184
19185         * run-at-time.el: New file.
19186
19187         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
19188         under Emacs.
19189
19190         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
19191         of gnus-set-text-properties.
19192
19193         * gnus-uu.el (gnus-uu-save-article): Ditto.
19194
19195         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
19196
19197         * gnus-cite.el (gnus-cite-parse): Ditto.
19198
19199         * gnus-art.el (gnus-button-push): Use set-text-properties instead
19200         of gnus-.
19201
19202         * gnus-xmas.el (run-at-time): Require run-at-time.
19203
19204         * gnus.el: Change calls to nnheader-run-at-time and
19205         password-run-at-time throughout to use run-at-time directly.
19206
19207         * password.el: Remove definition of run-at-time.
19208
19209         * nnheaderxm.el: Remove definition of run-at-time.
19210
19211 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
19212
19213         * mml.el (mml-minibuffer-read-disposition): Show attachment type
19214         in prompt.
19215
19216 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
19217
19218         * messagexmas.el (message-xmas-redefine): Alias
19219         `message-make-caesar-translation-table' to
19220         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
19221         version.
19222
19223         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
19224         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
19225         `gnus-xmas-set-text-properties'.
19226         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
19227         `gnus-xmas-completing-read'.
19228         (gnus-xmas-completing-read): Removed.
19229         (gnus-xmas-open-network-stream): Removed.
19230
19231         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
19232         XEmacs version.
19233
19234         * dns.el (dns-make-network-process): Use `open-network-stream'
19235         instead of `gnus-xmas-open-network-stream'.
19236
19237         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
19238
19239         * .cvsignore: Add auto-autoloads.el, custom-load.el.
19240
19241 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
19242
19243         * gnus-art.el (gnus-mime-display-alternative)
19244         (gnus-insert-mime-button, gnus-insert-mime-security-button)
19245         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
19246         Don't use gnus-local-map-property.
19247
19248         * gnus-util.el (gnus-local-map-property): Remove.
19249
19250         * mm-view.el (mm-view-pkcs7-decrypt):
19251         Replace gnus-completing-read-maybe-default with completing-read.
19252
19253         * gnus-util.el (gnus-completing-read): do.
19254         (gnus-completing-read-maybe-default): Remove.
19255
19256 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
19257
19258         * password.el: Only autoload `run-at-time' if not XEmacs.
19259         Only autoload the itimer functions if XEmacs.
19260
19261 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19262
19263         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
19264         XEmacsen.
19265
19266         * dgnushack.el: Autoload executable-find for XEmacs.
19267
19268 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
19269
19270         * gnus-art.el (gnus-read-string): Remove.
19271         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
19272         read-string.
19273
19274 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
19275
19276         * netrc.el: Autoload password-read.
19277         (netrc): Add configuration group.
19278         (netrc-encoding-method, netrc-openssl-path):
19279         Add variables for encoding and decoding of files with symmetric
19280         ciphers.
19281         (netrc-encode): Add assistant function to encode a file with
19282         netrc-encoding-method.
19283         (netrc-parse): Add interactive parameter, added optional
19284         decoding if netrc-encoding-method is non-nil but otherwise
19285         behavior is standard.
19286         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
19287         Do s/encode/encrypt/ everywhere.
19288
19289         * spam.el: Remove executable-find autoload.
19290
19291 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
19292
19293         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
19294
19295         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
19296
19297 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19298
19299         * gnus-art.el (gnus-treat-ansi-sequences)
19300         (article-treat-ansi-sequences): New variable and function.
19301         Suggested by Dan Jacobson <jidanni@jidanni.org>.
19302
19303         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
19304         Use it.
19305
19306 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
19307
19308         * mm-util.el (mm-quote-arg): Remove.
19309
19310         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
19311         shell-quote-argument.
19312
19313         * gnus-uu.el (gnus-uu-command): do.
19314
19315         * gnus-sum.el (gnus-summary-insert-pseudos): do.
19316
19317         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
19318         with make-char.
19319
19320         * mm-util.el (mm-make-char): Remove.
19321
19322         * mml.el (mml-mode): Replace gnus-add-minor-mode with
19323         add-minor-mode.
19324
19325         * gnus-undo.el (gnus-undo-mode): do.
19326
19327         * gnus-topic.el (gnus-topic-mode): do.
19328
19329         * gnus-sum.el (gnus-dead-summary-mode): do.
19330
19331         * gnus-start.el (gnus-slave-mode): do.
19332
19333         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
19334
19335         * gnus-ml.el (gnus-mailing-list-mode): do.
19336
19337         * gnus-gl.el (gnus-grouplens-mode): do.
19338
19339         * gnus-draft.el (gnus-draft-mode): do.
19340
19341         * gnus-dired.el (gnus-dired-mode): do.
19342
19343         * gnus-ems.el (gnus-add-minor-mode): Remove.
19344
19345         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
19346         Replace gnus-char-width with char-width.
19347
19348         * gnus-ems.el (gnus-char-width): Remove.
19349
19350         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
19351         Replace gnus-char-width with char-width.
19352
19353         * gnus-ems.el (gnus-char-width): Remove.
19354
19355         * spam-stat.el (with-syntax-table): Remove with-syntax-table
19356         definition.
19357         Remove Emacs 20 hash table compatibility code.
19358
19359         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
19360         20 compatibility code.
19361
19362         * spam.el (spam-point-at-eol): Replace with point-at-eol.
19363
19364         * smime.el (smime-point-at-eol): Replace with point-at-eol.
19365
19366         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
19367         Replace with point-at-{eol,bol}.
19368
19369         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
19370
19371         * imap.el (imap-point-at-eol): Replace with point-at-eol.
19372
19373         * flow-fill.el (fill-flowed-point-at-bol)
19374         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
19375
19376         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
19377         Replace with point-at-{eol,bol} throughout all files.
19378
19379 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19380
19381         * ntlm.el (ntlm-string-as-unibyte): New macro.
19382         (ntlm-build-auth-response): Use it.
19383
19384         Remove Emacs 20 stuff:
19385         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
19386         (butlast, mapc, remove): Remove the compiler macros.
19387         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
19388         of delq and copy-sequence.
19389         * gnus-art.el (popup-menu): Remove the compiler macro.
19390         * nnmail.el (nnmail-split-fancy): Don't support customizing with
19391         Emacs 20.
19392
19393 2004-01-05  Simon Josefsson  <jas@extundo.com>
19394
19395         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
19396         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
19397         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
19398         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
19399         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
19400         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
19401         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
19402         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
19403         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
19404         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
19405         ntlm-string-permute, string-lshift into ntlm-string-lshift,
19406         string-xor into ntlm-string-xor.
19407         Suggested by Jesper Harder <harder@myrealbox.com>.
19408
19409         * ntlm.el: Don't include poem.
19410
19411         * md4.el (print-int32, print-string-hexa): Remove.
19412         Suggested by Jesper Harder <harder@myrealbox.com>.
19413
19414         * sasl-ntlm.el, ntlm.el, md4.el: New files.
19415
19416         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
19417         probably breaks emacs with DL patch, but do we care? Is anyone
19418         still using the DL stuff?)
19419
19420         * sieve-manage.el: Use the password package.
19421         (sieve-manage-read-passwd): Remove.
19422         (sieve-manage-interactive-login): Use password.  Re-add
19423         condition-case around loop.
19424
19425         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
19426         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
19427         Use the password package.
19428
19429 2003-02-19  Simon Josefsson  <jas@extundo.com>
19430
19431         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
19432         token.
19433
19434 2002-08-07  Simon Josefsson  <jas@extundo.com>
19435
19436         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
19437         (sieve-manage-authenticators):
19438         (sieve-manage-authenticator-alist): Add some SASL mechs.
19439         (sieve-sasl-auth): New function.
19440         (sieve-manage-cram-md5-auth):
19441         (sieve-manage-plain-auth): Rewrite using SASL library.
19442         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
19443         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
19444         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
19445         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
19446
19447 2004-01-05  Simon Josefsson  <jas@extundo.com>
19448
19449         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
19450         New files.
19451
19452 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19453
19454         * gnus-group.el (gnus-no-groups-message): Update.
19455
19456         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
19457
19458 2003-11-09  Simon Josefsson  <jas@extundo.com>
19459
19460         * imap.el: Support for ID IMAP extension (RFC 2971).
19461         (imap-local-variables): Add imap-id.
19462         (imap-id): New variable.
19463         (imap-id): New function.
19464         (imap-parse-response): Parse untagged ID response.
19465         * nnimap.el (nnimap-id): New variable.
19466         (nnimap-open-connection): Use it.
19467
19468 2003-12-28  Simon Josefsson  <jas@extundo.com>
19469
19470         * gnus-score.el (gnus-score-edit-all-score): New.
19471         * gnus-group.el (gnus-group-score-map): Bind it to W e.
19472
19473 2004-01-04  Simon Josefsson  <jas@extundo.com>
19474
19475         * password.el: Add.
19476
19477 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
19478
19479         * dns.el (dns-query-types): Fix typo.
19480         (dns-query-types): New function.
19481         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
19482         PTR and SOA replies, see RFC 1035.
19483
19484 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19485
19486         * gnus.el (gnus-logo-color-style): Change colors to `no'.
19487
19488         * Move to Changelog.2.
19489
19490 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19491
19492         * gnus.el (gnus-version-number): Bump version.
19493
19494 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19495
19496         * gnus.el: No Gnus v0.1 is released.
19497
19498 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19499
19500         * gnus.el: No Gnus v0.0 is released.
19501
19502 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19503
19504         * gnus.el (gnus-version-number): Bump.
19505         (gnus-version): No.
19506
19507 See ChangeLog.2 for earlier changes.
19508
19509     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
19510       Free Software Foundation, Inc.
19511
19512   This file is part of GNU Emacs.
19513
19514   GNU Emacs is free software: you can redistribute it and/or modify
19515   it under the terms of the GNU General Public License as published by
19516   the Free Software Foundation, either version 3 of the License, or
19517   (at your option) any later version.
19518
19519   GNU Emacs is distributed in the hope that it will be useful,
19520   but WITHOUT ANY WARRANTY; without even the implied warranty of
19521   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19522   GNU General Public License for more details.
19523
19524   You should have received a copy of the GNU General Public License
19525   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
19526
19527 ;; Local Variables:
19528 ;; coding: utf-8
19529 ;; fill-column: 79
19530 ;; add-log-time-zone-rule: t
19531 ;; End: