bf683933365327f05236b6d632bfbf58e3640202
[gnus] / lisp / ChangeLog
1 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * shr.el (shr-colorize-region): Put the colours over the entire region.
4         (shr-inhibit-decoration): New variable.
5         (shr-add-font): Use it to inhibit text property decorations while doing
6         preliminary table renderings.  This speeds up typical Wikipedia page
7         renderings by 15%.
8
9         * eww.el (eww-button): New face.
10         (eww-convert-widgets): Use it to make submit buttons more button-like.
11
12         * mm-decode.el (mm-convert-shr-links): Override the shr local map, so
13         that Gnus commands work.
14
15         * shr.el (shr-render-td): Support horizontal alignment.
16
17         * eww.el (eww-put-color): Removed.
18         (eww-colorize-region): Use `add-face-text-property'.
19
20         * shr.el (shr-add-font): Append face data, so that we get the correct
21         presedence: The innermost value (which is applied first) wins.
22         (shr-make-overlay): Obsolete function.
23
24         * mm-decode.el (mm-convert-shr-links): New function to convert
25         new-style shr URL links into widgets.
26         (mm-shr): Use it.
27
28         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
29         widget commands, since we're no longer using widgets for links.
30
31         * shr.el (shr-next-link): New command.
32         (shr-previous-link): New command.
33         (shr-urlify): Don't use `widget-convert', because that's slow.
34         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
35         because collecting the overlays and reapplying them when generating
36         tables is slow.
37         (shr-insert-table): Ditto.
38
39 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
40
41         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
42         * shr.el (browse-url): Require `url'.
43         * eww.el (url): Require format-spec.
44
45 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
46
47         * eww.el (eww-display-html): Default to using the entire window width.
48         (eww-browse-url): Don't add a User-Agent header (twice), because that
49         makes Bing refuse connection.
50
51         * shr.el (shr-make-table): Cache the table rendering at the table
52         level, and not the <td> level.  This is a bit faster.
53
54         * eww.el (eww-render): Go to the correct ID when given URLs ending with
55         #id.
56
57         * shr.el (shr-tag-li): Don't require a new paragraph, since other
58         browsers don't.
59         (shr-expand-url): Respect #anchor links.
60         (shr-parse-base): Chop off the anchor before using.
61         (shr-descend): Respect display: none.
62         (shr-descend): Allow marking elements that have certain IDs.
63
64         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
65
66         * shr.el (shr-expand-url): Don't bug out on zero-length links.
67
68         * eww.el (eww-tag-textarea): Support <textarea>.
69
70 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
71
72         * shr.el (shr-dom-to-xml): Fixed function call.
73
74         * eww.el (eww): New group.
75         (eww-header-line-format): New custom variable.
76         (eww-current-title): New variable.
77         (eww-display-html): Update header and handle title tag.
78         (eww-update-header-line-format): New function.
79         (eww-tag-title): New function.
80
81         * shr.el (shr-dom-to-xml): (shr-dom-to-xml): New function.
82         (shr-tag-svg): Add support for the SVG tag.
83         (shr-bullet): New custom variable.
84         (shr-tag-li): Support custom bullet in unordered lists.
85
86 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
87
88         * shr.el (shr-expand-url): Respect // URLs.
89
90         * eww.el (eww-tag-body): Override the shr body rendering so that we can
91         put a background colour onto the entire buffer.
92         (eww-render): When being redirected, use the redirect URL as the new
93         base URL.
94
95         * shr.el (shr-parse-base): Fix parsing error.
96
97         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
98
99         * shr.el (shr-parse-base): New function.
100         (shr-expand-url): Use it to expand relative URLs reliably.
101
102 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
103
104         * auth-source.el (auth-source-search-collection): Fix docstring.
105         (auth-source-netrc-parse): Refactor and improve netrc parser to support
106         single-quoted strings and multiline entries.
107         (auth-source-netrc-parse-next-interesting)
108         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
109         functions to support parser.
110
111 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
112
113         * eww.el (eww-submit): Get submit button logic right when hitting RET
114         on non-submit buttons.
115
116         * shr.el: Remove shr-preliminary-table-render, since that can't really
117         be used for anything in practice.
118
119 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
120
121         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
122         (sieve-manage-quit).
123
124 2013-06-14  Glenn Morris  <rgm@gnu.org>
125
126         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
127
128 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
129
130         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
131         control the maximum size of photo ID image.
132         (mml2015-epg-key-image-to-string): Respect it.
133
134 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
135
136         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
137         instead of the final one so that we can more easily distinguish them.
138
139         * eww.el (eww-submit): Compute the submission URL correctly.
140
141 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
142
143         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
144         Use plist-get rather than CL's getf.
145         (sieve-manage-parse-capability): Avoid CL's remove-if.
146
147 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
148
149         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
150         (sieve-manage-quit).
151
152 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
153
154         * shr.el (shr-expand-url): Expansion should chop off the bits after the
155         last slash.
156
157         * eww.el (eww-tag-select): Use the first value as the default value.
158
159 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
160
161         * eww.el (eww): Prepend urls with http:// if scheme is missing.
162         (eww-mode): Use `define-derived-mode'.
163         (eww-parse-headers): Parse headers from beginning of buffer so that
164         file:// links work.
165
166 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
167
168         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
169
170 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
171
172         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
173         to handle them at all.
174
175 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
176
177         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
178         work, too.
179         (eww-tag-select): Implement <select>.
180
181 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
182
183         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
184         stream managing functions by using open-protocol-stream to do most of
185         the work. Has the nice benefit of enabling STARTTLS.
186         Wait for capabilities after STARTTLS: following RFC5804, the server
187         sends new capabilities after successfully establishing a TLS connection
188         with the client. The client should update the cached list of
189         capabilities, but we just ignore the answer for now.
190         (sieve-manage-network-p, sieve-manage-network-open)
191         (sieve-manage-starttls-p, sieve-manage-starttls-open)
192         (sieve-manage-forward, sieve-manage-streams)
193         (sieve-manage-stream-alist): Remove unneeded functions neither in the
194         API, nor called by any other function.
195         Enable Multibyte for SieveManage buffers: The parser won't properly
196         handle umlauts and line endings unless multibyte is turned on in the
197         process buffer.
198
199 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
200
201         * eww.el (eww-tag-input): Support password fields.
202         (eww-submit): Support POST.
203
204 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
205
206         * eww.el (eww-tag-form): Protect against degenerate forms.
207
208         * shr.el (shr-expand-url): Expand URLs that start with a slash
209         correctly.
210
211         * eww.el (eww-submit): Get submit button logic right.
212
213         * shr.el (shr-final-table-render): New variable to signal when we're
214         doing the final table rendering so that we can collect more data at
215         that point.
216
217         * eww.el (eww-submit): Make form submission work.
218         (eww-tag-input): Implement submit buttons.
219         (eww-click-radio): Implement radio and checkboxes.
220         (eww-submit): Handle hidden elements.
221
222         * shr.el (shr-descend): Allow other packages to override (or provide)
223         rendering of elements.
224         (shr-expand-url): Strip query strings from URLs before expanding them.
225
226         * eww.el: Don't require cl-lib.
227         (eww-tag-form): Start form support.
228
229         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
230
231         * eww.el: Start writing a new, tiny web browser.
232         (eww-previous-url): New command.
233         (eww-quit): New command.
234
235 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
236
237         * sieve.el: Put point at beginning of buffer when viewing a script.
238         (sieve-open-server): respect the PORT parameter. Show the correct port
239         number in sieve-buffer's header. Fixed code to also work with a string
240         as port specifier. Properly close the connection on pressing 'q'. Make
241         sieve-manage-quit close the connection and process buffer. Also, remove
242         duplicate keybinding for 'q'.
243
244 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
245
246         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
247         make it easier to read.
248         (mm-pkcs7-enveloped-magic): Ditto.
249
250 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
251
252         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
253         before `image-type-available-p' to avoid loading the image libraries
254         needlessly.
255
256 2013-06-05  David Engster  <deng@randomsample.de>
257
258         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
259         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
260         to see whether the group was synced before.
261
262 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
263
264         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
265         when opening the connection.
266         Suggested by João Távora <joaotavora@gmail.com> in
267         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
268
269 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
270
271         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
272         assume Date header begins with "Date", that may be customized into
273         something like "X-Sent" using gnus-article-time-format.
274         (article-transform-date): Allow multi-line Date header.
275
276 2013-06-02  David Engster  <deng@randomsample.de>
277
278         * registry.el (initialize-instance, registry-lookup)
279         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
280         (registry-lookup-secondary-value, registry-search, registry-delete)
281         (registry-insert, registry-reindex, registry-size, registry-prune): Do
282         not wrap methods in `eval-and-compile'.  This breaks due to latest
283         changes in EIEIO (introduction of eieio-core.el).
284
285 2013-05-30  Glenn Morris  <rgm@gnu.org>
286
287         * nnmail.el (nnmail-fancy-expiry-target):
288         Also bind mail-dont-reply-to-names.
289
290         * spam-stat.el (spam-stat-save):
291         No need to tweak font-lock in temp buffers.
292
293         * shr.el (shr-put-image): Silence compiler.
294
295 2013-05-29  Glenn Morris  <rgm@gnu.org>
296
297         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
298
299         * gnus-group.el (gnus-sequence-of-unread-articles)
300         (gnus-summary-add-mark, gnus-mark-article-as-read)
301         (gnus-group-make-articles-read): Declare.
302
303         * gnus-sum.el (gnus-parameter-list-identifier)
304         (gnus-article-stop-animations, gnus-stop-downloads)
305         (gnus-article-only-boring-p, article-goto-body)
306         (gnus-flush-original-article-buffer, article-narrow-to-head)
307         (gnus-article-hidden-text-p, gnus-delete-wash-type)
308         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
309
310         * gnus.el: No need to eval-and-compile autoloads.
311
312         * gravatar.el (help-function-arglist): Autoload.
313
314         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
315
316         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
317
318         * spam.el: No need to load spam-report when compiling.
319         No need to eval-and-compile autoloads.
320         (spam-report-resend-to): Declare.
321         (spam-report-resend-register-routine): Require 'spam-report.
322
323 2013-05-24  Julien Danjou  <julien@danjou.info>
324
325         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
326         setup.
327
328 2013-05-23  Glenn Morris  <rgm@gnu.org>
329
330         * gnus-util.el (rmail-swap-buffers-maybe)
331         (rmail-maybe-set-message-counters, rmail-count-new-messages)
332         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
333         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
334
335         * mm-decode.el: No need to load term when compiling.
336         (term-mode, term-char-mode): Declare.
337
338         * mm-util.el: No need to load jka-compr when compiling.
339         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
340
341         * nnmaildir.el: Require is automatically eval-and-compile.
342         (nnmail): Require at run-time too.
343
344         * registry.el (registry-size): Move definition before use.
345
346 2013-05-22  Daiki Ueno  <ueno@gnu.org>
347
348         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
349         signed data to conform the standard.  (Bug#14232)
350
351 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
352
353         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
354         double angle quotation mark.
355
356 2013-05-20  Glenn Morris  <rgm@gnu.org>
357
358         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
359
360 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
361
362         * message.el (message-insert-formatted-citation-line): handle finding
363         first/lastname when more than 2 names appear.
364
365 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
366
367         * shr.el (shr-tag-span): New function.
368
369 2013-05-18  Glenn Morris  <rgm@gnu.org>
370
371         * message.el (message-mode): Use message-mode-abbrev-table,
372         with text-mode-abbrev-table as parent.  (Bug#14413)
373
374 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
375
376         * message.el (message-expand-group): Decode group names.
377
378 2013-05-16  Julien Danjou  <julien@danjou.info>
379
380         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
381         app-icon.
382
383 2013-05-15  Glenn Morris  <rgm@gnu.org>
384
385         * shr-color.el (shr-color-visible-luminance-min)
386         (shr-color-visible-distance-min): Use shr-color group.
387
388 2013-05-11  Glenn Morris  <rgm@gnu.org>
389
390         * gnus-vm.el: Make it loadable without VM.
391         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
392         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
393
394 2013-05-09  Glenn Morris  <rgm@gnu.org>
395
396         * mml1991.el: Make it loadable.  (Bug#13456)
397
398         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
399         * gnus-async.el (gnus-async-post-fetch-function):
400         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
401         * gnus-html.el (gnus-html-image-cache-ttl):
402         * gnus-notifications.el (gnus-notifications-timeout):
403         * gnus-picon.el (gnus-picon-properties):
404         * gnus-util.el (gnus-completion-styles):
405         * gnus.el (gnus-other-frame-resume-function):
406         * message.el (message-user-organization-file)
407         (message-cite-reply-position):
408         * nnir.el (nnir-summary-line-format)
409         (nnir-retrieve-headers-override-function):
410         * shr-color.el (shr-color-visible-luminance-min):
411         * shr.el (shr-blocked-images):
412         * spam-report.el (spam-report-resend-to):
413         * spam.el (spam-summary-exit-behavior): Fix custom types.
414
415         * gnus-salt.el (gnus-selected-tree-face): Fix default.
416
417 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
418
419         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
420         because of let-binding help-xref-following.  (Bug#14356)
421
422 2013-05-06  Glenn Morris  <rgm@gnu.org>
423
424         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
425
426 2013-05-04  Andrew Cohen  <cohen@bu.edu>
427
428         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
429         entering into the registry.
430
431 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
432
433         * gnus.el: Ma Gnus v0.7 is released.
434
435 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
436
437         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
438         (Bug#14304)
439
440 2013-04-27  Glenn Morris  <rgm@gnu.org>
441
442         * gnus.el (gnus-list-debbugs):
443         Use require rather than autoload.  (Bug#14262)
444
445 2013-04-27  Julien Danjou  <julien@danjou.info>
446
447         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
448         port to "sieve" now that it has an official IANA port assigned.
449
450 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
451
452         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
453         Don't set the MAILHOST environment variable permanently (Bug#14271).
454
455 2013-04-26  Glenn Morris  <rgm@gnu.org>
456
457         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
458
459 2013-04-25  Andrew Cohen  <cohen@bu.edu>
460
461         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
462         string values of 'gcc-self. Thanks to Saroj Thirumalai.
463
464 2013-04-24  Andrew Cohen  <cohen@bu.edu>
465
466         * nnir.el (nnir-close-group): Make sure we are in the right group.
467
468         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
469         dependency table from all newly retrieved headers.
470
471 2013-04-16  David Edmondson  <dme@dme.org>
472
473         Support <img src="data:...">.
474
475         * shr.el (shr-image-from-data): New function.
476         (shr-tag-img): Use it.
477
478 2013-04-14  Andrew Cohen  <cohen@bu.edu>
479
480         * nnir.el (nnir-request-set-mark): Make sure we are in the right
481         group.
482
483 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
484
485         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
486         corresponding to any existing group (Bug#14166).
487
488 2013-04-10  Andrew Cohen  <cohen@bu.edu>
489
490         * nnir.el (number-sequence): No longer used.
491         (nnir-request-set-mark): New function.
492         (nnir-request-update-info): Improve marks updating.
493         (nnir-request-scan): Don't duplicate marks updating.
494         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
495         Use 'assq rather than 'assoc. Quote anonymous function.
496         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
497         Use 'gnus-group-prefixed-p.
498         (gnus-summary-create-nnir-group): Make sure server for method is open.
499
500 2013-04-04  Andrew Cohen  <cohen@bu.edu>
501
502         * nnir.el (gnus-nnir-group-p): New function.
503         (nnir-possibly-change-group): Use it.
504
505         * gnus-msg.el (gnus-setup-message): Use it.
506
507 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
508
509         * mml.el (mml-minibuffer-read-description): Use `default' insted of
510         `initial-input' for the argument name.
511         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
512
513 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
514
515         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
516         (used by MH-E).
517
518 2013-04-01  Andrew Cohen  <cohen@bu.edu>
519
520         * nnir.el (nnir-request-update-mark): Improve mark updating in original
521         group.
522
523         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
524         fix compilation.
525
526 2013-03-31  Andrew Cohen  <cohen@bu.edu>
527
528         * nnir.el (nnir-method-default-engines): And another typo.
529
530 2013-03-30  Andrew Cohen  <cohen@bu.edu>
531
532         * nnir.el (nnir-method-default-engines): Fix typo.
533
534 2013-03-29  Andrew Cohen  <cohen@bu.edu>
535
536         * nnir.el: Define 'number-sequence for xemacs.
537         (gnus-summary-create-nnir-group): New function to create an nnir group
538         from an nnir summary buffer based on the current query.
539         (nnir-request-create-group): Update to allow nnir group creation based
540         on the current query.
541
542 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
543
544         * nndraft.el (nndraft-request-expire-articles):
545         Make expiry target always `delete'.
546
547 2013-03-27  Andrew Cohen  <cohen@bu.edu>
548
549         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
550         buffer use the posting-style and gcc of the original article group.
551         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
552
553         * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come
554         after other deffoos.
555
556 2013-03-25  Andrew Cohen  <cohen@bu.edu>
557
558         * nnir.el: Major rewrite. Cleaner separation between searches and group
559         management. Marks are now shown in nnir summary buffers. Rudimentary
560         support for real (i.e. not ephemeral) nnir groups.
561         (gnus-summary-make-nnir-group): New function for initiating searches
562         from a summary buffer.
563
564 2013-03-18  Sam Steingold  <sds@gnu.org>
565
566         * message.el (message-bury): Minor cleanup.
567
568 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
569
570         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
571
572 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
573
574         * nndir.el (nndir-request-list): Remove 2nd argument passed to
575         nnml-request-list.  (Bug#13873)
576         (nndir-request-newsgroups): Remove, unused.
577
578         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
579
580 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
581
582         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
583         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
584         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
585
586 2013-03-03  Ted Phelps  <phelps@gnusto.com>
587
588         * shr.el: Make all the overlays set the `evaporate' property so that
589         they're removed properly.
590
591 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
592
593         * mml2015-el (mml2015-epg-key-image): wrap epg-gpg-program in
594         shell-quote-argument.
595
596 2013-02-22  David Engster  <deng@randomsample.de>
597
598         * gnus-registry.el (gnus-registry-save): Provide class name when
599         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
600         `condition-case' to stay compatible with older EIEIO versions which
601         only accept one argument.
602
603 2013-02-17  Daiki Ueno  <ueno@gnu.org>
604
605         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
606         (epg-user-id-validity): Autoload.
607         (mml2015-epg-check-user-id): New function.
608         (mml2015-epg-check-sub-key): New function split from
609         mml2015-epg-find-usable-key.
610         (mml2015-epg-find-usable-key): Accept context, name, usage, and
611         optional name-is-key-id, to handle the case when user-id is unusable.
612         Reported by Łukasz Stelmach <stlman@poczta.fm>.
613
614 2013-02-17  Glenn Morris  <rgm@gnu.org>
615
616         * shr.el (shr-put-image): Use image-multi-frame-p if available.
617
618 2013-02-16  Glenn Morris  <rgm@gnu.org>
619
620         * shr.el (shr-put-image): Only animate images that specify a delay.
621         This is consistent with the old image-animated-p behavior.
622
623 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
624
625         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
626         for XEmacs.
627
628 2013-02-13  Juri Linkov  <juri@jurta.org>
629
630         * gnus-art.el (gnus-article-mode-map):
631         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
632         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
633
634 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
635
636         * auth-source.el (auth-source-format-prompt): Don't get confused by
637         any "\" in replacement text.  (Bug#13637)
638
639 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
640
641         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
642         (gnus-backend-trace): Honour gnus-backend-trace.
643
644         * mml.el (mml-insert-part): Insert closing tag.
645
646         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
647
648 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
649
650         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
651         able to find the article, which can happen in debbugs groups,
652         apparently.
653
654 2013-01-16  Glenn Morris  <rgm@gnu.org>
655
656         * smiley.el (smiley-style): Make the file loadable in batch mode.
657
658 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
659
660         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
661         imap process running.
662
663 2013-01-14  Julien Danjou  <julien@danjou.info>
664
665         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
666         Compare addresses against addresses, not against the full From field.
667
668 2013-01-13  Richard Stallman  <rms@gnu.org>
669
670         * message.el (message-forward-make-body-mime): New args BEG, END
671         specify what part of FORWARD-BUFFER to use.  Do the work directly
672         instead of calling `mml-insert-buffer'.
673
674 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
675
676         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
677         cross-reference(s).
678
679         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
680         cross-reference(s).
681
682 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
683
684         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
685         and point-max-marker.
686         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
687
688 2013-01-11  Julien Danjou  <julien@danjou.info>
689
690         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
691         max are almost equal. Also return the correct value for V which is
692         already between 0 and 1.
693
694 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
695
696         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
697         to mml2015-encrypt-to-self.
698         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
699
700 2013-01-09  Daiki Ueno  <ueno@gnu.org>
701
702         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
703         mml-smime-epg-find-usable-secret-key.
704
705 2013-01-08  Glenn Morris  <rgm@gnu.org>
706
707         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
708
709 2013-01-07  Daiki Ueno  <ueno@gnu.org>
710
711         * mml-smime.el: Support signing by sender.
712         Requested by Uwe Brauer.
713         (mml-smime-sign-with-sender): New user option analogous
714         to mml2015-sign-with-sender.
715         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
716         (mml-smime-epg-find-usable-secret-key): New helper function copied from
717         mml2015.el.
718
719 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
720
721         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
722         isn't running, because Gnus will probably not know how to handle the
723         Gcc header (bug#11941).
724
725         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
726         articles.
727
728 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
729
730         * nnfolder.el (nnfolder-recursive-directory-files): New function.
731         (nnfolder-generate-active-file): Make this function work with recursive
732         folder names.
733
734 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
735
736         * nntp.el (nntp-open-connection): Use HELP as the capability command
737         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
738         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
739
740 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
741
742         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
743         place holder since this gives `Invalid face reference: nil' messages.
744         Use the `default' face instead.  It has the same effect here, even
745         though it is not no-op.
746
747         * gnus-util.el
748         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
749
750 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
751
752         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
753         non-string posting styles (bug#13285).
754
755 2012-12-27  Glenn Morris  <rgm@gnu.org>
756
757         * plstore.el (plstore-passphrase-callback-function):
758         Use plstore-get-file.
759
760 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
761
762         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
763         stderr.
764
765 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
766
767         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
768
769         * gnus-compat.el (set-buffer-multibyte): Remove.
770
771 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
772
773         * mml2015.el (mml2015-epg-key-image): use --attribute-fd rather than
774         temporary file to get PGP key image. Pass no-show-photos when extracting
775         image to avoid having it pop up twice.
776
777 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
778
779         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
780         eligible for treatment.
781
782         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
783         lines.  This makes summary commands with hidden threads work more
784         reliably.
785
786         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
787         button to mark the hidden citations (bug#9395).
788
789 2012-12-26  Daiki Ueno  <ueno@gnu.org>
790
791         * mml2015.el (mml2015-epg-signature-to-string): New function.
792         (mml2015-epg-verify-result-to-string): New function.
793         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
794         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
795         instead of epg-verify-result-to-string.
796         (epg-signature-key-id, epg-signature-to-string): Autoload.
797         (epg-verify-result-to-string): Remove autoload.
798
799 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
800
801         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
802         ID image from GPG public key.
803         (mml2015-epg-key-image-to-string): New function.
804
805 2012-12-25  Leo Liu  <sdl.web@gmail.com>
806
807         * plstore.el (plstore-passphrase-callback-function): Fix error when
808         error when plstore-cache-passphrase-for-symmetric-encryption is set
809         (bug#13264).
810
811 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
812
813         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
814         buffer to the article buffer here, because that clobbers multiple
815         article buffers.
816
817         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
818         buffer always points to the right summary buffer.
819
820 2012-12-25  John Wiegley  <jwiegley@gmail.com>
821
822         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
823         the password (bug#12097).
824
825 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
826
827         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
828         (bug#13263).
829
830         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
831         buffer exists before using it (bug#12475).
832
833         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
834         offline groups (bug#11937).
835
836         * message.el (message-yank-original): When using customize to set the
837         value of `message-cite-style', the variable it set to a symbol that's
838         the name of the variable, which must then be dereferenced (bug#12616).
839
840 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
841
842         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
843         the `face' property with a list whose car is the face specified in the
844         format string and whose cdr is (nil).
845         * lisp/gnus-util.el
846         (gnus-put-text-property-excluding-characters-with-faces):
847         Change accordingly.
848         (gnus-get-text-property-excluding-characters-with-faces): New function.
849         * lisp/gnus-sum.el (gnus-summary-highlight-line):
850         * lisp/gnus-salt.el (gnus-tree-highlight-node):
851         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
852
853 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
854
855         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
856         login methods.
857         (nnimap-login): Respect the `nnimap-authenticator' variable.
858
859         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
860         mark state when moving articles.  Otherwise unticked articles will get
861         their ticks back after moving.
862
863 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
864
865         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
866
867         * message.el (message-ignored-news-headers): Always remove
868         X-Message-SMTP-Method to avoid information leakage if the user
869         mistakenly inserts the header into news messages.
870
871         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
872
873         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
874         right than four characters, this command would move point to
875         `point-max'.  Don't do that.
876
877         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
878         to nil to allow re-selecting groups that gain articles.
879         (gnus-bug-group-download-format-alist): Update the URL.
880
881 2012-12-23  Andreas Schwab  <schwab@suse.de>
882
883         * shr.el (shr-tag-em): Render em as italic, not bold.
884
885 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
886
887         * gnus-int.el (gnus-backend-trace): Factor out into its own function
888         for reuse.
889         (gnus-open-server): Use it to add more tracing.
890         (gnus-finish-retrieve-group-infos): Add backend tracing.
891         (gnus-backend-trace): Also note the elapsed seconds.
892
893 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
894
895         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
896         Set epa-file-encrypt-to from variable to avoid querying.
897
898 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
899
900         * sieve-mode.el (sieve-font-lock-keywords):
901         Keywords should be word delimited.  (Bug#13173)
902
903 2012-12-13  Andreas Schwab  <schwab@suse.de>
904
905         * tls.el (tls-program): Update customize type.
906
907 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
908
909         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
910         instead of <pre> to align message header.
911
912 2012-12-12  Sam Steingold  <sds@gnu.org>
913
914         * gnus.el (gnus-other-frame-resume-function): Add user option.
915         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
916
917 2012-12-06  Sam Steingold  <sds@gnu.org>
918
919         * gnus-start.el (gnus-before-resume-hook): Add.
920         (gnus-1): Run it when Gnus is alive.
921
922 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
923
924         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
925         * gnus-art.el (article-unsplit-urls)
926         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
927         * gnus-registry.el (gnus-registry-get-article-marks)
928         * message.el (message-goto-body): Use it.
929         (message-called-interactively-p): Remove.
930
931         * spam-stat.el (spam-stat-called-interactively-p): New macro.
932         (spam-stat-score-buffer): Use it.
933
934         * spam.el: Silence the warnings against BBDB functions when compiling.
935
936         * gnus-score.el (gnus-score-decode-text-parts):
937         Use append+mapcar instead of the cl function mapcan.
938
939 2012-12-05  Sam Steingold  <sds@gnu.org>
940
941         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
942         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
943         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
944
945 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
946
947         * gmm-utils.el (gmm-called-interactively-p): Revert.
948         This seems to cause Emacs to get stuck!
949         * gnus-art.el (article-unsplit-urls)
950         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
951         * gnus-registry.el (gnus-registry-get-article-marks)
952         * message.el (message-goto-body)
953         (message-called-interactively-p): Revert.
954
955         * gmm-utils.el (gmm-called-interactively-p): New function.
956         * gnus-art.el (article-unsplit-urls)
957         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
958         * gnus-registry.el (gnus-registry-get-article-marks)
959         * message.el (message-goto-body): Use it.
960         (message-called-interactively-p): Remove.
961
962         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
963         * gnus-sync.el (gnus-sync-lesync-call)
964         * message.el (message-read-from-minibuffer): Use it.
965
966 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
967
968         * gmm-utils.el (gmm-flet): Remove.
969         * gnus-sync.el (gnus-sync-lesync-call)
970         * message.el (message-read-from-minibuffer): Don't use it.
971
972 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
973
974         * gmm-utils.el (gmm-labels): Use cl-labels if available.
975
976 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
977
978         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
979
980         * gnus-sync.el (gnus-sync-lesync-call)
981         * message.el (message-read-from-minibuffer): Use gmm-flet.
982
983         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
984
985         * gnus-util.el (gnus-macroexpand-all): Remove.
986
987 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
988
989         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
990         to TAB, not [tab].
991         (gnus-summary-article-map): Likewise.
992
993         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
994         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
995
996 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
997
998         * time-date.el: Commentary fix.
999
1000 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1001
1002         * color.el: Don't require cl.
1003         (color-complement): `caddr' -> `nth 2'.
1004
1005         * time-date.el (time-to-seconds): De-obsolete.
1006
1007 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1008
1009         * message.el (message-get-reply-headers):
1010         Make sure the reply goes to the author if it is a wide reply.
1011
1012 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
1013
1014         * gnus-score.el (gnus-score-body):
1015         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
1016         scoring by body.
1017
1018 2012-11-16  Glenn Morris  <rgm@gnu.org>
1019
1020         * gnus-diary.el (nndiary-request-create-group-functions)
1021         (nndiary-request-update-info-functions)
1022         (gnus-subscribe-newsgroup-functions)
1023         (nndiary-request-accept-article-functions):
1024         Use new names for hooks rather than obsolete aliases.
1025
1026 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1027
1028         * dgnushack.el (define-obsolete-variable-alias): Simplify.
1029
1030 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1031
1032         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
1033         in meta tag with the one the part specifies in its header.
1034
1035 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1036
1037         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
1038         by default.
1039
1040 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1041
1042         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
1043         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
1044
1045 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1046
1047         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
1048         and a runtime function for it, of which the XEmacs version takes only
1049         two arguments.
1050
1051 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1052
1053         * nndiary.el (nndiary-request-create-group-functions)
1054         (nndiary-request-update-info-functions)
1055         (nndiary-request-accept-article-functions):
1056         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
1057         "-hooks" suffix.
1058
1059 2012-10-19  Julien Danjou  <julien@danjou.info>
1060
1061         * gnus-art.el: Require gnus-util because it uses
1062         `gnus-timer--function'.
1063
1064 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1065
1066         * starttls.el (starttls-extra-arguments): Doc fix.
1067
1068 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1069
1070         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
1071         it.
1072
1073 2012-10-06  Glenn Morris  <rgm@gnu.org>
1074
1075         * gnus-notifications.el (gnus-notifications):
1076         Add missing group :version tag.
1077         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
1078         (gnus-gcc-post-body-encode-hook):
1079         * gnus-sync.el (gnus-sync-lesync-name)
1080         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
1081
1082 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
1083
1084         * color.el (color-hsl-to-rgb): Fix incorrect results for
1085         small and large hue values.  (Bug#12559)
1086
1087 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1088
1089         New UIDL implementation.
1090
1091         * mail-source.el (mail-sources, mail-source-keyword-map):
1092         Add :leave as a pop3 keyword.
1093         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
1094
1095         * pop3.el (pop3-leave-mail-on-server): Allow number.
1096         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
1097         (pop3-movemail): Add UIDL support.
1098         (pop3-send-streaming-command): Take a list of mail numbers instead of
1099         the number of mails.
1100         (pop3-write-to-file): Add X-UIDL header.
1101         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
1102         (pop3-uidl-add-xheader): New functions.
1103
1104         * message.el (message-ignored-resent-headers):
1105         Add X-Content-Length and X-UIDL headers.
1106
1107 2012-10-05  Glenn Morris  <rgm@gnu.org>
1108
1109         * color.el (color-name-to-rgb, color-rgb-to-hex)
1110         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1111         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1112         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1113         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1114
1115 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1116
1117         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
1118         a user about whether to delete temp files if once a user answered as n.
1119
1120 2012-09-25  Chong Yidong  <cyd@gnu.org>
1121
1122         * password-cache.el (password-read-and-add): Use a declare form to mark
1123         this function obsolete.
1124
1125 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1126
1127         * lpath.el: Bind mail-encode-mml for old Emacsen.
1128
1129 2012-09-17  Richard Stallman  <rms@gnu.org>
1130
1131         * message.el (message-in-body-p): Don't set mark or modify buffer.
1132
1133         * mml.el (mml-attach-file): Doc fix.
1134         (mml-attach-external, mml-attach-buffer, mml-attach-file):
1135         Set mail-encode-mml when in Mail mode.
1136         Simplify code to set HEAD and move back to HEAD.
1137         (mml-insert-multipart, mml-insert-part):
1138         Set mail-encode-mml when in Mail mode.
1139
1140 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1141
1142         * gnus-util.el (gnus-timer--function): New function.
1143
1144         * gnus-art.el (gnus-article-stop-animations): Use it.
1145
1146 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1147
1148         Fix glitches caused by addition of psec to timers.
1149         * gnus-art.el (gnus-article-stop-animations): Use timer--function
1150         rather than raw access to timer vector.
1151
1152 2012-09-11  Julien Danjou  <julien@danjou.info>
1153
1154         * gnus-notifications.el (gnus-notifications): Check for nil values in
1155         ignored addresses check.
1156
1157 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1158
1159         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
1160
1161 2012-09-07  Chong Yidong  <cyd@gnu.org>
1162
1163         * gnus-util.el
1164         (gnus-put-text-property-excluding-characters-with-faces): Restore.
1165
1166         * gnus-salt.el (gnus-tree-highlight-node):
1167         * gnus-sum.el (gnus-summary-highlight-line):
1168         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
1169
1170 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1171
1172         * gnus-util.el: Fix compilation error on XEmacs 21.4.
1173
1174 2012-09-06  Juri Linkov  <juri@jurta.org>
1175
1176         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
1177         scheme for buffer names to be more consistent with other group and
1178         article buffer names in Gnus.
1179
1180 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1181
1182         * gnus-util.el
1183         (gnus-put-text-property-excluding-characters-with-faces): Removed.
1184
1185         * gnus-compat.el: Define compat function `add-face' from Wolfgang
1186         Jenkner.
1187
1188         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
1189
1190         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
1191
1192         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
1193
1194 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1195
1196         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
1197         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
1198
1199         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
1200         string-prefix-p in Emacs >=23.2.
1201
1202         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
1203         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
1204         instead of string-match-p.
1205         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
1206
1207 2012-09-06  Kenichi Handa  <handa@gnu.org>
1208
1209         * qp.el (quoted-printable-decode-region): Fix previous change; handle
1210         lowercase a..f.
1211
1212 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1213
1214         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
1215
1216 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
1217
1218         * nnimap.el (nnimap-request-move-article): Decode the group name when
1219         doing internal moves to avoid charset issues.
1220
1221         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
1222         TIME is set.
1223
1224 2012-09-05  Juri Linkov  <juri@jurta.org>
1225
1226         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
1227         than one group at a time (bug#11961).
1228
1229 2012-09-05  Julien Danjou  <julien@danjou.info>
1230
1231         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
1232         this hide the real reason with a message giving absolutely no hint.
1233
1234 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
1235
1236         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
1237         to the backend (bug#11804).
1238
1239         * message.el (message-insert-newsgroups): Don't insert newsgroup
1240         duplicates (bug#12275).
1241
1242 2012-09-05  John Wiegley  <johnw@newartisans.com>
1243
1244         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
1245         sieve rules.
1246
1247 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
1248
1249         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
1250         function.
1251
1252         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
1253
1254         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
1255
1256 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1257
1258         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
1259         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
1260         This should make nnmaildir more usable with offlineimap.
1261
1262 2012-09-05  Julien Danjou  <julien@danjou.info>
1263
1264         * nnimap.el (nnimap-request-list): Revert change that made listing
1265         synchronous.
1266         (nnimap-get-responses): Restore.
1267
1268 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
1269
1270         * dgnushack.el: XEmacs 21.5 compilation fix.
1271
1272         * gnus-notifications.el (gnus-notifications-notify): Use it.
1273
1274         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
1275         warnings on XEmacs.
1276
1277 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1278
1279         Better seeds for (random).
1280         * gnus-sync.el (gnus-sync-lesync-setup):
1281         * message.el (message-canlock-generate, message-unique-id):
1282         Change (random t) to (random), now that the latter is more random.
1283
1284 2012-08-31  Dave Abrahams  <dave@boostpro.com>
1285
1286         * nnimap.el (nnimap-change-group): Document result value
1287
1288         * auth-source.el (auth-sources): Fix macos keychain access.
1289
1290         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
1291         allow the backend `request-head' function to determine the group
1292         name on its own.
1293         (gnus-request-expire-articles): Filter out negative article numbers
1294         during expiry (Bug#11980).
1295
1296         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
1297         O(N^2) to O(N).  This makes warping into huge groups tolerable.
1298
1299         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
1300         you've found the article when you haven't.
1301
1302         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
1303         that nnimap-change-group can return t.
1304
1305 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1306
1307         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
1308
1309 2012-08-30  Julien Danjou  <julien@danjou.info>
1310
1311         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
1312         `gnus-notifications-timeout'.
1313         (gnus-notifications-timeout): Add.
1314         (gnus-notifications-action): New function.
1315         (gnus-notifications-notify): Add :action using
1316         `gnus-notifications-action'.
1317         (gnus-notifications-id-to-msg): New variable.
1318         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
1319         notifications id to messages.
1320
1321 2012-08-30  Kenichi Handa  <handa@gnu.org>
1322
1323         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
1324         once.
1325
1326 2012-08-29  Julien Danjou  <julien@danjou.info>
1327
1328         * gnus-notifications.el: New file.
1329         (gnus-notifications-notify): New function.
1330         (gnus-notifications): Use `gnus-notifications-notify'.
1331
1332 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1333
1334         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
1335         transfer encoding first; bind gnus-newsgroup-charset to the charset
1336         that the article specifies (Bug#12209).
1337
1338 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1339
1340         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
1341         (gnus-group-customize-done): Encode values posting-style holds.
1342
1343         * gnus-msg.el (gnus-summary-resend-message)
1344         (gnus-configure-posting-styles): Decode values posting-style group
1345         parameter holds.
1346
1347 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1348
1349         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
1350         `name' and `address' in Resent-From header.
1351
1352 2012-08-14  Chong Yidong  <cyd@gnu.org>
1353
1354         * gnus-art.el (article-display-face): Handle failure in
1355         gnus-create-image (Bug#11802).
1356
1357 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1358
1359         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
1360         Use defsetf.
1361
1362 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
1363
1364         * auth-source.el: (auth-source-plstore-search)
1365         (auth-source-secrets-search): Ignore :require and :type in search spec.
1366
1367 2012-08-06  Julien Danjou  <julien@danjou.info>
1368
1369         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
1370         `nnimap-request-move-article'.
1371
1372         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1373         Remove autoload, already handled by gnus.el.
1374
1375         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
1376
1377         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
1378         supported by nnimap actually. Reverts previous change.
1379
1380         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
1381         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
1382         to-buffer argument that is already supported.
1383
1384 2012-08-05  Julien Danjou  <julien@danjou.info>
1385
1386         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1387         Add autoload.
1388
1389 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1390
1391         * gnus.el (gnus-valid-select-methods): Fix custom type.
1392
1393 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
1394
1395         * auth-source.el (auth-sources, auth-source-backend-parse)
1396         (auth-source-macos-keychain-search)
1397         (auth-source-macos-keychain-search-items)
1398         (auth-source-macos-keychain-result-append)
1399         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
1400         auth-source.el through the /usr/bin/security utility.
1401         (auth-sources): Fix syntax error.
1402         (auth-source-macos-keychain-result-append): Fix variable name.
1403         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
1404
1405 2012-07-27  Julien Danjou  <julien@danjou.info>
1406
1407         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
1408         Emacs < 24.1
1409
1410 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1411
1412         * message.el (message-kill-address): Don't kill last newline.
1413         (message-skip-to-next-address): Don't move to the next header.
1414         (message-fill-field-address): Work properly.
1415
1416 2012-07-25  Julien Danjou  <julien@danjou.info>
1417
1418         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
1419
1420 2012-07-24  Julien Danjou  <julien@danjou.info>
1421
1422         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
1423
1424         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
1425         (nntp-async-timer-handler): Remove, unused.
1426
1427         * nnimap.el (nnimap-get-responses): Remove, unused.
1428
1429         * nnheader.el (mail-header-set-extra): Remove, unused.
1430
1431         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
1432         unused.
1433
1434         * mm-view.el (mm-view-sound-file): Remove, unused.
1435
1436         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
1437         (mm-url-encode-multipart-form-data): Remove, unused.
1438
1439         * message.el (message-remove-signature, message-make-host-name)
1440         (message-fill-address): Remove, unused.
1441
1442         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
1443         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
1444         unused.
1445
1446         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
1447         (gnus-xmas-call-region): Remove, unused.
1448
1449         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
1450
1451         * gnus-util.el (gnus-extract-address-component-name)
1452         (gnus-extract-address-component-email, gnus-sortable-date)
1453         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
1454         (gnus-process-live-p): Remove, unused.
1455
1456         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
1457
1458         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
1459         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
1460         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
1461         function.
1462
1463         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
1464
1465         * gnus-score.el (gnus-summary-score-crossposting)
1466         (gnus-score-regexp-bad-p): Remove, unused.
1467
1468         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
1469
1470         * gnus-range.el (gnus-sublist-p): Remove, unused.
1471
1472         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
1473         unused.
1474
1475         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
1476
1477         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
1478         (gnus-request-associate-buffer): Remove, unused.
1479
1480         * gnus-group.el (gnus-group-set-method-info)
1481         (gnus-group-set-params-info): Remove, unused.
1482
1483         * gnus-fun.el (gnus-shell-command-to-string)
1484         (gnus-shell-command-on-region): Remove, unused.
1485
1486         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
1487
1488         * gnus-art.el (gnus-article-text-type-exists-p)
1489         (article-translate-characters, gnus-article-hide-text-of-type)
1490         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
1491         Remove, unused.
1492
1493 2012-07-22  Andrew Cohen  <cohen@bu.edu>
1494
1495         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
1496
1497 2012-07-21  Julien Danjou  <julien@danjou.info>
1498
1499         * message.el (message-dont-reply-to-names): Replace deprecated
1500         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
1501         (message-get-reply-headers): Ditto.
1502
1503 2012-07-18  Julien Danjou  <julien@danjou.info>
1504
1505         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
1506         `sieve-upload-and-kill'.
1507
1508         * sieve.el (sieve-bury-buffer): Remove function.
1509         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
1510         (sieve-upload-and-kill): New function, mapped to C-c C-c.
1511
1512 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1513
1514         * shr.el (shr-expand-url): Handle URL starting with `//'.
1515
1516 2012-07-13  Chong Yidong  <cyd@gnu.org>
1517
1518         * smime.el (smime-certificate-info): Set buffer-read-only directly,
1519         instead of calling toggle-read-only with a (bogus) argument.
1520
1521 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
1522
1523         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
1524         of initial input when reading the author to restrict the summary to.
1525
1526 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1527
1528         * mm-decode.el (mm-shr):
1529         Allow overriding charset by mm-charset-override-alist.
1530
1531 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1532
1533         * gnus-art.el (gnus-article-view-part):
1534         Toggle subparts of multipart/alternative part.
1535
1536 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1537
1538         * shr.el (shr-render-buffer): New command.
1539         (shr-visit-file): Use it.
1540
1541 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1542
1543         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
1544         Set no-byte-compile and no-update-autoloads.
1545
1546 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1547
1548         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
1549
1550 2012-06-25  Julien Danjou  <julien@danjou.info>
1551
1552         * nnimap.el (nnimap-request-articles-find-limit): Rename from
1553         `nnimap-request-move-articles-find-limit' since we do not use it only
1554         for move operations.
1555         (nnimap-request-accept-article): Use
1556         `nnimap-request-articles-find-limit' to limit search by message-id.
1557
1558 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1559
1560         Support higher-resolution time stamps (Bug#9000).
1561
1562         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
1563         VARLIST.  It's optional, for backward compatibility.
1564         (encode-time-value): New optional arg PICO.  New type 3.
1565         (time-to-seconds) [!float-time]: Support the new picoseconds
1566         component if it's used.
1567         (seconds-to-time, time-subtract, time-add):
1568         Support ps-resolution time stamps as well.
1569
1570 2012-06-19  Julien Danjou  <julien@danjou.info>
1571
1572         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
1573
1574         * nnimap.el (nnimap-log-buffer): Check that
1575         `window-point-insertion-type' is boundp, since it's not available in
1576         XEmacs.
1577
1578 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1579
1580         * nnimap.el (nnimap-log-buffer): Add this, setting
1581         `window-point-insertion-type' in the buffer to t.
1582         (nnimap-log-command): Use nnimap-log-buffer.
1583
1584 2012-06-19  Julien Danjou  <julien@danjou.info>
1585
1586         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
1587         argument to be able to limit the search.
1588         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
1589         (nnimap-request-move-articles-find-limit): Add this to limit the search
1590         by Message-Id after a message move.
1591         (nnimap): Add defgroup.
1592
1593 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
1594
1595         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
1596
1597 2012-06-15  Julien Danjou  <julien@danjou.info>
1598
1599         * nnimap.el (nnimap-find-article-by-message-id): Use
1600         `nnimap-possibly-change-group' rather than its own EXAMINE call.
1601         (nnimap-possibly-change-group): Add read-only argument.
1602         (nnimap-request-list): Use nnimap-possibly-change-group rather than
1603         issuing EXAMINE manually.
1604         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
1605         with read-only argument.
1606         (nnimap-change-group): Rename from `nnimap-possibly-change-group'. We
1607         cannot possibly change because we need to be sure that it's either
1608         read-write or read-only.
1609
1610 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1611
1612         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
1613         being bound to a lambda form.
1614
1615 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
1616
1617         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
1618         articles when fetch-old is non-nil (bug#11370).
1619
1620 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
1621
1622         * gnus-picon.el (gnus-picon-properties): New defcustom.
1623         (gnus-picon-create-glyph): Use it.
1624
1625 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1626
1627         * gnus-group.el (gnus-group-get-new-news): Respect
1628         `gnus-group-use-permanent-levels', as documented (bug#11638).
1629
1630 2012-06-10  Dave Abrahams  <dave@boostpro.com>
1631
1632         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
1633         groups (bug#11641).
1634
1635 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
1636
1637         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
1638         is an integer to avoid later problems.
1639
1640 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1641
1642         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
1643         locales.
1644
1645         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
1646         on a handle.
1647
1648         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
1649         address as the default.
1650         (gnus-summary-insert-old-articles): Don't include unexistent messages.
1651
1652         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
1653         makes no sense to query the user about internal files.
1654
1655         * gnus-spec.el: Remove all the byte-compilation stuff, since
1656         benchmarking shows that it doesn't help when entering large summary
1657         buffers.
1658
1659         * gnus-xmas.el (gnus-xmas-define): Remove.
1660
1661         * gnus-util.el (gnus-byte-code): Remove.
1662
1663         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
1664         grouplens stuff.
1665
1666 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1667
1668         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
1669         (bug#11514).
1670
1671 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1672
1673         * message.el (message-buffers): Return all buffers derived from Message
1674         to make `gnus-dired-attach' work with mu4e.
1675
1676 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1677
1678         * nntp.el: Stop the `letf' madness.
1679         (nntp--report-1): New var.
1680         (nntp-report): Merge nntp-report-1 into it.
1681         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
1682         the nntp-report function.
1683
1684         * auth-source.el: Fix comment-style to follow the convention.
1685
1686 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
1687
1688         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
1689         (mm-dissect-singlepart): Don't guess the MIME type of
1690         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
1691         set.
1692         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
1693         toplevel MIME type is multipart/encrypted.
1694
1695 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1696
1697         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
1698         a string so that Gcc works (bug#11514).
1699
1700 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1701
1702         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
1703         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
1704
1705 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1706
1707         * gnus-win.el (gnus-configure-frame): Don't signal an error when
1708         jumping to *Server* from a dedicated *Group* window.
1709         (gnus-configure-frame): CSE.
1710
1711         * gnus-registry.el: Minor style cleanup.
1712         (gnus-registry--set/remove-mark): New function, extracted from
1713         gnus-registry-install-shortcuts.
1714         (gnus-registry-install-shortcuts): Use it.
1715
1716 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1717
1718         * nnspool.el (news-path): Use eval-and-compile.
1719
1720 2012-05-24  Glenn Morris  <rgm@gnu.org>
1721
1722         * nnspool.el (news-directory, news-path, news-inews-program):
1723         Move here from paths.el.  Don't see a need for these to be autoloaded.
1724
1725         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
1726         Merge in doc from paths.el version.  Don't see any need for this to be
1727         autoloaded, or for the warning about users not setting it.
1728
1729 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
1730
1731         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
1732         format.  In particular, add an optional argument and a docstring.
1733
1734         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
1735
1736         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
1737         current before calling `gnus-groups-to-gnus-format'.
1738         Note that this was already the case for `gnus-active-to-gnus-format'.
1739
1740 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1741
1742         Fix minor Y10k bug.
1743         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
1744
1745 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1746
1747         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
1748         message once it's actually open.
1749
1750 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1751
1752         * gnus.el: Ma Gnus v0.5 is released.
1753
1754 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1755
1756         * auth-source.el (auth-source--aput-1, auth-source--aput)
1757         (auth-source--aget): New functions and macros.
1758         Use them instead of aput/aget.
1759
1760 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
1761
1762         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
1763
1764 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1765
1766         * plstore.el (plstore-called-interactively-p): New compat macro copied
1767         from message.el.
1768         (plstore-mode): Use it.
1769
1770 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1771
1772         * plstore.el: Revive the editing feature.
1773         (plstore-mode): New mode to edit plstore file.
1774         (plstore-mode-toggle-display, plstore-mode-original)
1775         (plstore-mode-decoded): New command.
1776         (plstore--encode, plstore--decode, plstore--write-contents-functions)
1777         (plstore--insert-buffer, plstore--make): New function.
1778         (plstore-open, plstore-save): Simplify by using them.
1779
1780 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1781
1782         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
1783
1784 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
1785
1786         * tls.el (open-tls-stream): Remove unused binding.
1787
1788 2012-04-16  Glenn Morris  <rgm@gnu.org>
1789
1790         * nndraft.el (nndraft-request-list): Fix declaration.
1791
1792 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1793
1794         * mm-decode.el (mm-dissect-buffer): Doc fix.
1795
1796         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
1797         don't have a current group.
1798
1799         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
1800         buffer if it doesn't exist.
1801
1802         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
1803         given, mark the group as ephemeral with the current window conf.
1804
1805         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
1806         buffer exists, which it doesn't if we haven't started Gnus.
1807         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
1808
1809 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1810
1811         * mml.el (mml-generate-mime): Allow specifying what the top-level part
1812         type is.
1813
1814         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
1815         `unexists' entries.
1816         (gnus-clean-old-newsrc): Fix last checkin.
1817
1818         * nnimap.el (nnimap-update-info): None of the articles below the active
1819         low-water mark exist.
1820
1821         * dgnushack.el: Get rid of XEmacs compilation warning.
1822
1823         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
1824         would have gotten if we posted to the group, and use that to compare
1825         against the message we want to cancel (bug#10808).
1826
1827         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
1828         on XEmacs.
1829
1830 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
1831
1832         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
1833         `scroll-margin'.
1834
1835 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
1836
1837         * gnus-cite.el (gnus-dissect-cited-text): A single line without
1838         citation prefix within a block of cited text should be considered part
1839         of that block *only* if it is a blank line.
1840
1841 2012-04-09  Chong Yidong  <cyd@gnu.org>
1842
1843         * binhex.el, hashcash.el, uudecode.el:
1844         Remove * characters from the front of variable docstrings.
1845
1846 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1847
1848         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
1849         before kinsoku-bol characters nor within kinsoku-eol characters.
1850
1851 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1852
1853         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
1854         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
1855         (gnus-sync-read): Use mapc instead of mapcar.
1856
1857         * mm-archive.el: Require mm-decode for some macros.
1858         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
1859         the byte compiler.
1860         (mm-archive-decoders): New function that returns the value of
1861         the mm-archive-decoders variable.
1862
1863         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
1864         instead.
1865         (mm-dissect-singlepart): Use the function mm-archive-decoders.
1866
1867         * nnimap.el (gnus-refer-thread-use-nnir):
1868         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
1869
1870 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1871
1872         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
1873
1874 2012-03-12  Peter Münster  <pmrb@free.fr>
1875
1876         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
1877         (gnus-demon-cancel): Ditto.
1878         (gnus-demon-run-callback): When function cannot be called due to low
1879         idleness, call it when idleness reaches the expected value, instead of
1880         waiting another timer period.
1881         (gnus-demon-init): Add `time' to arguments of call-back.
1882
1883 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1884
1885         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
1886
1887         * gnus.el: Register gnus-registry functions.
1888
1889         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
1890         indent.
1891
1892         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
1893         enabled before warping.
1894
1895 2012-03-22  Dave Abrahams  <dave@boostpro.com>
1896
1897         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
1898         registry about each article retrieved.
1899
1900         * gnus-int.el (gnus-select-group-with-message-id): New function.
1901         (gnus-try-warping-via-registry): Ditto.
1902         (gnus-warp-to-article): Fall back on the registry.
1903
1904 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
1905
1906         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
1907         inboxes.
1908
1909 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1910
1911         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
1912
1913 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1914
1915         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
1916         gnus-gcc-self-resent-messages may be a group parameter.
1917         (gnus-summary-resend-message): Don't encode encoded words in header
1918         when Gcc'ing resent message.
1919
1920 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1921
1922         * shr.el (shr-insert): Treat non-breaking space just like normal
1923         space.  This seems to produce more pleasing results.
1924         (shr-insert): Only insert a blank line if we're starting from an image.
1925         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
1926         (shr-ensure-paragraph): Consider lines with white space to be blank.
1927
1928 2012-03-15  Elias Pipping  <pipping@lavabit.com>
1929
1930         * Makefile.in: Respect DESTDIR.
1931
1932 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
1933
1934         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
1935         and gnus-gcc-post-body-encode-hook.
1936
1937 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1938
1939         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
1940         messages that don't exist.
1941
1942         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
1943
1944 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1945
1946         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
1947         Remove.
1948
1949         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
1950
1951         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
1952
1953 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1954
1955         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
1956         have a group name.
1957
1958         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
1959         a multibyte buffer (bug#7410).
1960         (article-wash-html): Parse the original article buffer to get the
1961         unencoded data (bug#7410).
1962
1963         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
1964         .newsrc.el files.
1965
1966 2012-04-05  Bastien Guerry  <bzg@altern.org>
1967
1968         * color.el (color-lighten-name): Fix typo.
1969
1970 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1971
1972         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
1973         "#" to avoid having them interpreted as comments.
1974
1975 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1976
1977         * shr.el (shr-insert): Update the text state properly to avoid
1978         inserting spurious paragraph starts.
1979
1980 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1981
1982         * shr.el (shr-table-widths): Divide the extra width more fairly over
1983         the TDs (bug#10973).
1984         (shr-render-td): Don't delete too much padding.
1985         (shr-natural-width): Compute the natural width more correctly.
1986         (shr-insert): Allow the natural width to be computed for tables again.
1987         (shr-tag-table-1): Rework how the natural widths are computed by
1988         rendering the table a third time.
1989         (shr-natural-width): Removed.
1990         (shr-buffer-width): New function.
1991         (shr-expand-newlines): Use it.
1992
1993         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
1994         using a `gnus-use-full-window' setup (bug#11013).
1995
1996 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1997
1998         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
1999         24.1 release.
2000
2001 2012-03-10  David Edmondson  <dme@dme.org>
2002
2003         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
2004         'Forwarded Message' header and the start of the message.
2005
2006 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2007
2008         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
2009         isn't running (bug#10897).
2010
2011 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2012
2013         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
2014         This is inconsistent with all the other stream functions, which leave
2015         the setting up to the higher levels (if so wanted) (bug#10931).
2016
2017 2012-02-28  Glenn Morris  <rgm@gnu.org>
2018
2019         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
2020         mm-decode.el: Standardize possessive apostrophe usage.
2021
2022 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2023
2024         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
2025
2026 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
2027
2028         * parse-time.el (parse-time-string): Allow extractor to return nil.
2029
2030 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2031
2032         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
2033
2034 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2035
2036         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
2037
2038 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2039
2040         * mm-decode.el (mm-shr): Remove "soft hyphens".
2041
2042         * nnimap.el (nnimap-request-list): Return the group names encoded as
2043         utf8.  Otherwise non-European group names don't work.
2044         (nnimap-request-newgroups): Ditto.
2045
2046         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
2047         the default in `read-string' (bug#10757).
2048
2049         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
2050         topics (bug#10843).
2051
2052         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
2053         buffer.  Suggested by Herbert Valerio Riedel.
2054         (nnimap-request-move-article): Delete the message from the correct IMAP
2055         server.
2056
2057 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2058
2059         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
2060         Reported by Peter Münster.
2061
2062 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
2063
2064         * shr.el (shr-image-fetched): Make sure we really kill the right
2065         buffer.
2066
2067 2012-02-16  Leo Liu  <sdl.web@gmail.com>
2068
2069         * gnus-start.el (gnus-1): Avoid duplicate entries.
2070
2071 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2072
2073         * imap.el: Remove.
2074
2075         * nntp.el (nntp-coding-system-for-read): Remove.
2076         (nntp-coding-system-for-write): Ditto.
2077         (nntp-open-connection): Just use `binary' directly.
2078
2079         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
2080         Gnus 0.3.
2081
2082 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
2083
2084         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
2085         application/octet-stream parts really is.
2086
2087         * gnus-sum.el (gnus-propagate-marks): Remove.
2088
2089 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2090
2091         * shr.el (shr-rescale-image): Undo previous change; see
2092         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
2093
2094 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2095
2096         * gnus.el: Ma Gnus v0.3 is released.
2097
2098 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2099
2100         * gnus-sum.el (gnus-summary-local-variables): Make
2101         `gnus-newsgroup-unexist' into a local variable.
2102
2103 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
2104
2105         * registry.el (registry-usage-test, registry-persistence-test): Move to
2106         tests/gnustest-registry.el.
2107         (registry-make-testable-db, registry-match-test)
2108         (registry-instantiation-test): Move to tests/gnustest-registry.el.
2109
2110         * gnus-registry.el (gnus-registry-misc-test)
2111         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
2112
2113         * tests/gnustest-registry.el: New file with the registry and
2114         gnus-registry ERT tests.
2115
2116 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2117
2118         * gnus-msg.el (gnus-summary-resend-message): Make
2119         gnus-summary-resend-message-insert-gcc be last item in
2120         message-header-setup-hook.
2121
2122 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2123
2124         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
2125         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
2126         Remove.
2127         (nnfolder-open-server): Don't use marks.
2128         (nnfolder-request-delete-group): Ditto.
2129         (nnfolder-request-rename-group): Ditto.
2130         (nnfolder-request-set-mark, nnfolder-request-marks)
2131         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
2132         (nnfolder-save-marks, nnfolder-open-marks): Remove.
2133
2134         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
2135         (nnml-marks-modtime): Remove.
2136         (nnml-request-delete-group): Don't use marks.
2137         (nnml-request-rename-group): Ditto.
2138         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
2139         (nnml-save-marks, nnml-open-marks): Remove.
2140
2141         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
2142         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
2143         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
2144         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
2145         (nntp-server-to-method-cache): Remove.
2146
2147         * shr.el (shr-rescale-image): Fix wrong merge.
2148
2149 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2150
2151         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
2152         too-wide lines.
2153
2154 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2155
2156         * nnimap.el (nnimap-record-commands): New variable.
2157         (nnimap-log-command): Use it.
2158         (nnimap-make-process-buffer): Add a space to the process buffer.
2159         (nnimap-transform-headers): Don't bug out on header lines containing
2160         stuff that look like IMAP length encodings.
2161
2162         * shr.el (shr-rescale-image): Allow viewing large images.
2163
2164 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
2165
2166         * nnml.el (nnml-request-compact-group): Delete the marks file after
2167         compaction (bug#10800).
2168
2169         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
2170         group exit.
2171
2172         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
2173         QRESYNC/FETCH output.
2174
2175 2012-02-11  Glenn Morris  <rgm@gnu.org>
2176
2177         * sieve-manage.el (sieve-manage-default-stream):
2178         * shr.el (shr):
2179         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
2180         (nnir-retrieve-headers-override-function)
2181         (nnir-imap-default-search-key, nnir-notmuch-program)
2182         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
2183         (nnir-method-default-engines):
2184         * message.el (message-cite-reply-position):
2185         * gssapi.el (gssapi-program):
2186         * gravatar.el (gravatar):
2187         * gnus-sum.el (gnus-refer-thread-use-nnir):
2188         * gnus-registry.el (gnus-registry-unfollowed-addresses)
2189         (gnus-registry-max-pruned-entries):
2190         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
2191         * gnus-int.el (gnus-after-set-mark-hook)
2192         (gnus-before-update-mark-hook):
2193         * gnus-async.el (gnus-async-post-fetch-function):
2194         * auth-source.el (auth-source-cache-expiry):
2195         Add missing :version tags to new defcustoms and defgroups.
2196
2197 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
2198
2199         * gnus-sum.el (gnus-adjust-marked-articles): Add to
2200         `gnus-newsgroup-unexist'.
2201
2202         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
2203         marks.
2204         (gnus-article-special-mark-lists): Put the `unexist' in the special
2205         marks list instead.
2206
2207         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
2208         articles in the list of articles to be selected.
2209
2210         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
2211         articles.
2212         (nnimap-update-info): Keep track of unexisting articles.
2213         (nnimap-update-qresync-info): Ditto.
2214
2215 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
2216
2217         * message.el (message-default-send-mail-function): Made into own
2218         function for reuse by emacsbug.el.
2219
2220 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
2221
2222         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
2223         `gnus-sloppily-equal-method-parameters' to avoid a warning.
2224
2225 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2226
2227         * mm-archive.el (mm-archive-dissect-and-inline): New function.
2228         (mm-archive-dissect-and-inline): Fix up the undisplayer.
2229
2230         * gnus-compat.el: Define `timer-set-function'.
2231
2232         * mm-decode.el (mm-display-external): Output the text from the command
2233         in the buffer after the command finished.  This makes text-based
2234         commands behave better.
2235
2236 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2237
2238         * gnus-compat.el: Add a compat for the old `url-retrieve'.
2239
2240 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2241
2242         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
2243         23.1.
2244
2245 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2246
2247         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
2248
2249 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2250
2251         * message.el (smtpmail-smtp-user): Silence compiler warning.
2252
2253 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2254
2255         * message.el (message-multi-smtp-send-mail): Also allow specifying the
2256         SMTP user name.
2257
2258 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2259
2260         * gnus-sum.el (gnus-summary-show-thread):
2261         next-single-char-property-change may return nil in XEmacs.
2262         (gnus-summary-article-map): Fix typo.
2263
2264 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2265
2266         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
2267         running.
2268
2269         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
2270
2271         * gnus.el (gnus-server-extend-method): Don't add an -address component
2272         if the method already has one (bug#9676).
2273
2274 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2275
2276         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
2277         of an initial-input for consistency (bug#10757).
2278
2279         * dgnushack.el: Fix XEmacs compilation warning.
2280
2281         * shr.el: Inhibit getting and sending cookies when fetching pictures.
2282
2283         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
2284
2285 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2286
2287         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
2288         lines that are narrower than the window width.  Otherwise background
2289         "blocks" will look less readable.
2290
2291 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2292
2293         * nnimap.el (nnimap-transform-headers): Remove unused variable.
2294         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
2295         have newlines within the strings, and where the UID comes after the
2296         BODYSTRUCTURE element (bug#10537).
2297
2298         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
2299         (bug#10732).
2300
2301         * shr.el (shr-insert-document): Add doc string.
2302         (shr-visit-file): Ditto.
2303         (shr-remove-trailing-whitespace): New function.
2304         (shr-insert-document): Use it to clean up trailing whitespace as the
2305         final step (bug#10714).
2306
2307 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2308
2309         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
2310         buffer if `gnus-kill-summary-on-exit' is nil.
2311
2312 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2313
2314         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
2315         when just reading a single group from "without" Gnus.
2316
2317 2012-02-06  Chong Yidong  <cyd@gnu.org>
2318
2319         * gnus-sum.el (gnus-summary-show-thread):
2320         next-single-char-property-change never returns nil (Bug#8657).
2321
2322 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2323
2324         * message.el (message-multi-smtp-send-mail): New function.
2325         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
2326         header to implement multi-SMTP functionality.
2327
2328         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
2329         (gnus-agentize): Don't set it.
2330         (gnus-agent-send-mail): Don't use it.
2331
2332         * gnus-sum.el (gnus-summary-widget-backward): New function and
2333         keystroke.
2334
2335         * gnus-compat.el: More the compat functions more compatible.
2336
2337         * shr.el (shr-put-image): Remove underlines from sliced images.
2338         (shr-zoom-image): Compute the region to be replaced more correctly.
2339
2340 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2341
2342         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
2343         (gnus-summary-resend-message-insert-gcc): New function.
2344         (gnus-summary-resend-message): Modify message-header-setup-hook and
2345         message-sent-hook to make it work for Gcc.
2346         (gnus-inews-do-gcc): Update the number of unread articles of groups
2347         that messages are Gcc'd to.
2348
2349         * message.el (message-resend): Run message-sent-hook to do Gcc.
2350
2351 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2352
2353         * lpath.el: Fix an XEmacs compilation warning.
2354
2355         * gnus-compat.el: Require `help-fns' to fix compilation error.
2356
2357         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
2358         a higher level to silence compilation.
2359
2360         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
2361         parameter to allow controlling the scaling.
2362
2363         * shr.el (shr-zoom-image): New command and keystroke.
2364         (shr-put-image): Take a `size' flag to say how to scale the image.
2365
2366         * gnus-compat.el: Redefine `delete-directory' to provide recursive
2367         deletion unless already defined.
2368
2369         * gnus.el (gnus-compat): Require it.
2370
2371         * gnus-compat.el: New file.
2372
2373         * gnus-start.el (gnus-clean-old-newsrc): New function.
2374         (gnus-read-newsrc-file): Use it.
2375
2376         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
2377         Use recursive deletion.
2378         (mm-dissect-archive): Add support for zip files.
2379
2380         * gnus-util.el (gnus-recursive-directory-files): New function.
2381
2382         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
2383         (mm-archive-decoders): Add tgz support.
2384
2385         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
2386         Otherwise inserting text into the Gnus buffer can look odd.
2387
2388         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
2389
2390         * mm-archive.el (mm-archive-decoders): Add support for tar.
2391
2392         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
2393
2394         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
2395
2396 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2397
2398         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
2399
2400         * mm-archive.el: New file.
2401
2402         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
2403
2404         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
2405
2406         * message.el (message-goto-*): Make all the `message-goto-*' commands
2407         push the mark before moving point.  This makes it easier to go back to
2408         where you came from after editing whatever you jumped to.
2409
2410 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2411
2412         * gnus.el: Ma Gnus v0.1 is released.
2413
2414 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
2415
2416         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
2417         without reconnecting.
2418         (nnimap-possibly-change-group): Ditto.
2419         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
2420         connection has died before being called.
2421
2422 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2423
2424         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
2425         an initial sync unless we're really doing one.
2426
2427         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
2428         address parameter if one already exists (bug#9676).
2429
2430         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
2431         not the prefix, as documented (bug#10689).
2432
2433 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2434
2435         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
2436         the "server".
2437
2438         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
2439         the real error message with the useless "previously known to be down".
2440         Which isn't even correct.
2441
2442         * nntp.el (nntp-open-connection): Report the error message if the nntp
2443         server can't be reached.
2444
2445         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
2446         groups we do a total scan for.
2447         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
2448         doing that.
2449
2450 2012-01-31  Jim Meyering  <jim@meyering.net>
2451
2452         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2453         Correct a comment (insert "not") and hide nominally-doubled "to".
2454
2455 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2456
2457         * gnus.el (gnus-version): Change name to "Ma Gnus".
2458
2459 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2460
2461         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
2462         section in the manual.
2463
2464 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
2465
2466         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
2467         words.
2468         (rfc2047-encode-string): Ditto.
2469         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
2470         understand folded filename="..." parameters, for instance.
2471
2472         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
2473         the message for greater debuggability.
2474
2475 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
2476
2477         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
2478         instead of setting it locally, since the latter doesn't seem to have
2479         any effect (most of the time).
2480
2481 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
2482
2483         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
2484         function call.
2485
2486 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2487
2488         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
2489         seconds, and make the repeat clause with HH:MM specs work as
2490         documented.
2491
2492 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2493
2494         * proto-stream.el (proto-stream-capability-open): Fall back on
2495         :end-of-command if :end-of-capability doesn't exist.
2496
2497 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2498
2499         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
2500         bound globally in old Emacsen and XEmacsen.
2501
2502 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2503
2504         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
2505         so that previous errors don't prohibit getting new news.
2506
2507         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
2508
2509         * nntp.el (nntp-retrieve-group-data-early): Ditto.
2510
2511 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
2512
2513         * gnus.el (gnus-group-find-parameter): Check for liveness of the
2514         buffer, not of the string which is its name.
2515
2516 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2517
2518         * proto-stream.el (proto-stream-capability-open): Wait for
2519         :end-of-capability, not :end-of-command.
2520
2521         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
2522         non-server-marks groups.
2523         (gnus-group-make-articles-read): Ditto.
2524
2525         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
2526         methods (bug#9676).
2527
2528         * gnus.el (gnus-method-ephemeral-p): New function.
2529
2530 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2531
2532         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
2533         left-to-right.
2534
2535 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2536
2537         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
2538         warning.
2539
2540 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
2541
2542         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
2543         macroexpand the nnir things, since they haven't been defined yet, and
2544         nnir requires gnus-sum.
2545
2546 2012-01-24  Julien Danjou  <julien@danjou.info>
2547
2548         * color.el (color-rgb-to-hsl): Fix value computing.
2549         (color-hue-to-rgb): New function.
2550         (color-hsl-to-rgb): New function.
2551         (color-clamp, color-saturate-hsl, color-saturate-name)
2552         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2553         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
2554
2555 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2556
2557         * mm-decode.el (mm-interactively-view-part): Fix prompt.
2558
2559 2012-01-19  Julien Danjou  <julien@danjou.info>
2560
2561         * color.el (color-name-to-rgb): Use the white color to find the max
2562         color component value and return correctly computed values.
2563         (color-name-to-rgb): Add missing float conversion for max value.
2564
2565 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
2566
2567         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
2568         logical server name in addition to the actual machine address.
2569
2570         * auth-source.el (auth-source-user-and-password): Add convenience
2571         wrapper to search by just host and optionally user.
2572
2573 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2574
2575         * shr.el (shr-visit-file): Move point to the beginning of the buffer
2576         after rendering.
2577
2578 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
2579
2580         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
2581         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
2582         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
2583
2584 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2585
2586         * gnus-sum.el (gnus-summary-read-group): Document more parameters
2587         (bug#9693).
2588         (gnus-summary-setup-buffer): Document return value (bug#9697).
2589
2590         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
2591         since ido doesn't work on symbols (bug#9632).
2592
2593         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
2594         when getting a single value as when getting all the values.  This means
2595         that atoms like `gcc-self' work cumulatively, like variable settings,
2596         instead of getting the value from the last matching clause.
2597         (gnus-group-find-parameter): Protect against the group buffer not
2598         existing (bug#9585).
2599
2600 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2601
2602         * gnus-start.el (gnus-activate-group): Document more parameters
2603         (bug#9694).
2604
2605         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
2606         (bug#9692).
2607
2608         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
2609         article was fetched, so that it can be expired later (bug#9958).
2610         (gnus-agent-summary-fetch-series): Add doc string.
2611         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
2612         (bug#9517).
2613
2614         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
2615         retrieval is happening.
2616
2617         * gnus.el (gnus-parameters): Doc fix.
2618
2619 2012-01-06  Dave Abrahams  <dave@boostpro.com>
2620
2621         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
2622         show the thread after expansion.
2623
2624 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2625
2626         * gnus-art.el (article-narrow-to-head): If the head is completely
2627         empty, narrow to the empty region (bug#9764).
2628
2629         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
2630         read, and then mark them as unread only when the unread mark is used.
2631         This makes `C-- T k' actually work, even though it's confusing.
2632
2633         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
2634         alive before we try to find its window.
2635
2636 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
2637
2638         * mm-decode.el (mm-display-external): Use a longer timeout for the
2639         deletion to allow slow programs to display the file.
2640
2641 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2642
2643         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
2644         prompt to be less confusing.
2645
2646         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
2647         argument to `message-reply'.  This broke `special-display-*' frame
2648         pop-uping (bug#10238).
2649
2650 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2651
2652         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
2653         systems, since these allegedly don't work there.
2654
2655 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
2656
2657         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
2658         live buffer.
2659
2660 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2661
2662         * nnir.el (nnir-retrieve-headers): Protect against the article not
2663         existing on the server (bug#10335).
2664
2665 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
2666
2667         * gnus-agent.el (gnus-agent-load-local): Recompute
2668         gnus-agent-article-local on changing method.
2669
2670 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2671
2672         * gnus.el (gnus-parameters): Note precedence.
2673
2674 2012-01-04  Leo Liu  <sdl.web@gmail.com>
2675
2676         * nndraft.el (nndraft-update-unread-articles): Don't move point around
2677         in the group buffer.
2678
2679 2012-01-04  Julien Danjou  <julien@danjou.info>
2680
2681         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
2682         change.
2683
2684 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2685
2686         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
2687         too.
2688
2689         * nntp.el (nntp-retrieve-group-data-early): Use it.
2690
2691 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2692
2693         * nntp.el (nntp-retrieval-in-progress): New variable.
2694         (nntp-make-process-buffer): Make it buffer-local.
2695
2696         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
2697         2010.
2698         (gnus-demon-init): Use it to compute the time if time is on the form
2699         "04:23".
2700
2701         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
2702
2703         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
2704         status in the correct buffer.
2705
2706 2012-01-03  Leo Liu  <sdl.web@gmail.com>
2707
2708         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
2709         when opening topics (bug#10407).
2710
2711 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2712
2713         * gnus-cus.el (gnus-score-customize):
2714         * gnus-sum.el (gnus-sort-gathered-threads):
2715         * message.el (message-shorten-references):
2716         * nnmairix.el (nnmairix-request-group):
2717         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
2718
2719 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2720
2721         * gnus-agent.el (gnus-agent-regenerate-group):
2722         * gnus-int.el (gnus-retrieve-group-data-early):
2723         * mm-util.el (mm-codepage-ibm-list):
2724         * nndiary.el (Commentary, nndiary-get-new-mail):
2725         * nnir.el (nnir):
2726         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
2727
2728 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2729
2730         * mm-view.el (mm-display-inline-fontify): Add comment.
2731
2732 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2733
2734         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
2735         * ntlm.el (ntlm-smb-dohash): Spelling fix.
2736
2737 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
2738
2739         * gnus-art.el (gnus-split-methods):
2740         * gnus-msg.el (gnus-configure-posting-styles):
2741         * gnus-spec.el (gnus-parse-simple-format):
2742         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2743         * message.el (message-do-actions): Spelling fix.
2744
2745 2011-12-15  Juri Linkov  <juri@jurta.org>
2746
2747         * mm-decode.el (mm-inline-media-tests): Add missing
2748         `mm-handle-media-subtype'.
2749
2750 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2751
2752         * gnus-group.el (gnus-group-tool-bar):
2753         * gnus-sum.el (gnus-summary-tool-bar):
2754         * message.el (message-tool-bar):
2755         * rfc2231.el (rfc2231-parse-string): Spelling fix.
2756
2757 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
2758
2759         * plstore.el (plstore--insert-buffer): Spelling fix.
2760
2761 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
2762
2763         * message.el (message-valid-fqdn-regexp): Update with newly approved
2764         top-level domain names ".tel" and ".asia".
2765
2766 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2767
2768         * gnus-sum.el (gnus-summary-show-article): Don't load shr
2769         unconditionally.
2770
2771 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2772
2773         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
2774         pop-to-buffer-same-window for old Emacsen.
2775
2776 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
2777
2778         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
2779
2780 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2781
2782         * netrc.el (netrc-credentials): Spelling fix.
2783
2784 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
2785
2786         * gnus-fun.el (gnus-fun-ppm-change-string):
2787         * gnus-msg.el (gnus-inews-do-gcc):
2788         * gnus-sum.el (gnus-summary-find-for-reselect):
2789         * gnus.el (gnus-summary-cancelled):
2790         * message.el (message-cancel-hook, message-send-news):
2791         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
2792         * nnir.el (nnir-run-hyrex):
2793         * nntp.el (nntp-with-open-group-function):
2794         * pgg.el (pgg-pending-timers): Spelling fix.
2795
2796 2011-12-04  Chong Yidong  <cyd@gnu.org>
2797
2798         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
2799         change (Bug#10200).
2800
2801 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2802
2803         * compface.el (uncompface):
2804         * gnus-art.el (gnus-article-x-face-command): Update the header format
2805         of icon data for the most recent icontopbm program.
2806
2807 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2808
2809         * gnus-msg.el (gnus-inews-do-gcc):
2810         * message.el (message-send-mail):
2811         * mml.el (mml-generate-mime): Share the value of the buffer-local
2812         `message-options' variable between a draft buffer and temprary working
2813         buffers.
2814
2815 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2816
2817         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
2818
2819 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2820
2821         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
2822         for Cygwin.
2823
2824 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2825
2826         * gnus-group.el (gnus-group-prepare-flat):
2827         * mm-bodies.el (mm-encode-body):
2828         * mml.el (mml-preview):
2829         * nnml.el (nnml-request-compact-group):
2830         * pop3.el (pop3-stream-type): Spelling fix.
2831
2832 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2833
2834         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
2835
2836 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
2837
2838         * color.el (color-rgb-to-hsl):
2839         * gmm-utils.el (gmm-tool-bar-style):
2840         * gnus-group.el (gnus-group-prepare-flat):
2841         * gnus-topic.el (gnus-topic-prepare-topic):
2842         * mm-decode.el (mm-discouraged-alternatives):
2843         * rfc2047.el (rfc2047-encode-1):
2844         * starttls.el: Spelling fix.
2845
2846 2011-11-24  Glenn Morris  <rgm@gnu.org>
2847
2848         * binhex.el (binhex-begin-line): Give it basic doc-string.
2849
2850         * starttls.el, tls.el: Fix case of "GnuTLS".
2851
2852 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
2853
2854         * gnus-group.el (gnus-group-highlight): Fix typo.
2855
2856 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
2857
2858         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
2859         value of `delete-file', that returns nil for a local file but returns t
2860         for a remote file using ssh.
2861
2862 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
2863
2864         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
2865
2866 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2867
2868         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
2869         avoid later breakage.
2870
2871 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2872
2873         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
2874         article buffers' name.
2875
2876 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2877
2878         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
2879         by Paul Eggert's spellfixes two days ago.
2880
2881 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2882
2883         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
2884         doesn't have it.
2885
2886         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
2887         buffer-local instead of binding them to avoid warnings.  Also demote
2888         errors (bug#10063).
2889         (font-lock-mode-hook): Shut up byte compiler.
2890
2891 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
2892
2893         * mm-util.el (mm-charset-after):
2894         * nnir.el (nnir-run-hyrex):
2895         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
2896         (ntlm-get-password-hashes, ntlm-md4hash):
2897         * smime.el: Fix typo.
2898
2899 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2900
2901         * gnus-agent.el (gnus-agent-expire-group-1):
2902         * nndiary.el (nndiary-last-occurence):
2903         * nnimap.el (nnimap-request-set-mark):
2904         * nnmairix.el (nnmairix-only-use-registry):
2905         * gnus-group.el (gnus-group-prepare-flat):
2906         * gnus-sum.el (gnus-decode-encoded-word-methods):
2907         * message.el (message-wash-subject):
2908         * nntp.el (nntp-retrieve-headers-with-xover):
2909         * smime.el (smime-certificate-directory): Spelling fix.
2910
2911 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
2912
2913         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
2914
2915         * color.el:
2916         * gnus-agent.el (gnus-agent-possibly-alter-active):
2917         * gnus-dired.el (gnus-dired-print):
2918         * mail-parse.el:
2919         * nnmairix.el (nnmairix-request-group):
2920         * shr.el (shr-image-displayer):
2921         * sieve-manage.el:
2922         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
2923
2924 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
2925
2926         * gnus-sum.el (gnus-auto-select-subject):
2927         * spam-report.el (spam-report-resend): Spelling fix.
2928
2929 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2930
2931         * gnus-agent.el (gnus-agent-get-undownloaded-list):
2932         * gnus-art.el (gnus-default-article-saver):
2933         * gnus-srvr.el (gnus-server-copy-server):
2934         * gnus.el (gnus-sloppily-equal-method-parameters):
2935         * html2text.el (html2text-format-tag-list):
2936         * message.el (message-narrow-to-head):
2937         * nndiary.el:
2938         * nnmairix.el (nnmairix-determine-original-group-from-registry):
2939         * sieve.el: Spelling fix.
2940
2941 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
2942
2943         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2944         * gnus-sum.el (gnus-summary-make-menu-bar):
2945         * gnus-uu.el (gnus-uu-decode-postscript)
2946         (gnus-uu-decode-postscript-and-save):
2947         * mailcap.el (mailcap-print-command):
2948         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
2949         Fix typos.
2950
2951 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
2952
2953         * gnus-art.el (gnus-article-part-wrapper):
2954         * html2text.el (html2text-fix-paragraphs):
2955         * mm-decode.el (mm-image-fit-p):
2956         * rfc2047.el (rfc2047-encode-message-header):
2957         * shr-color.el (shr-color-visible-distance-min)
2958         (shr-color-relative-to-absolute, set-minimum-interval)
2959         (shr-color-visible): Fix typos.
2960
2961 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
2962
2963         * gmm-utils.el (gmm-tool-bar-item):
2964         * gnus-art.el (gnus-treat-body-boundary):
2965         * gnus-diary.el (gnus-user-format-function-d):
2966         * gnus-start.el (gnus-get-unread-articles):
2967         * pgg-gpg.el (pgg-gpg-update-agent):
2968         * smime.el (smime-cert-by-ldap-1): Spelling fix.
2969
2970 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2971
2972         * gnus-topic.el (gnus-group-prepare-topics):
2973         * gnus-uu.el (gnus-extract-view):
2974         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
2975
2976 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
2977
2978         * spam.el: Move BBDB autoloads.
2979         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
2980         BBDB 2 and 3.
2981         (spam-check-BBDB): Use it.
2982         (spam-enter-ham-BBDB): Use it.
2983
2984 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2985
2986         * smime.el (smime-draw-buffer): Spelling fix.
2987
2988 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
2989
2990         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
2991         for scanning exactly one level.
2992         * gnus-start.el (gnus-get-unread-articles): Ditto.
2993
2994 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2995
2996         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
2997         slightly clearer.
2998
2999 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
3000
3001         * gnus-sync.el: More commentary about setup.
3002
3003 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3004
3005         * message.el (message-send-and-exit): Document `arg'.
3006
3007 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3008
3009         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
3010
3011 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
3012
3013         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
3014
3015         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
3016         we don't use `bound-and-true-p'.
3017
3018 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
3019
3020         * gnus-util.el (gnus-bound-and-true-p): Remove.
3021         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
3022         * nnir.el: Use it.
3023         * nnmairix.el: Use it.
3024
3025 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
3026
3027         * gnus-sync.el: Improve docs about CouchDB admins.
3028
3029         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
3030         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
3031         for reasons unknown.
3032         * nnir.el: Use it.
3033         * nnmairix.el: Use it.
3034
3035         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
3036         * nnir.el: Ditto.
3037         * nnmairix.el: Ditto.
3038
3039         * gnus-registry.el (gnus-registry-enabled): Default to nil.
3040
3041 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
3042
3043         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
3044         not needed.  Provide xmlplistread list function to produce XML plist
3045         output for non-Gnus LeSync clients.
3046
3047 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
3048
3049         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
3050
3051         * gnus-sync.el: Add LeSync synchronization backend and logic to read
3052         and save against it.  Group subscriptions, read marks, other marks,
3053         subscription levels, topic names, and topic offsets (the group's
3054         position within the topic) are saved.  This is an experimental backend
3055         and may change significantly.  Load json.el from the gnus-fallback-lib
3056         if it's not available otherwise.
3057         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
3058
3059 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3060
3061         * message.el (message-completion-function): Make sure
3062         message-tab-body-function is not attempted if one of
3063         message-completion-alist fails to find a completion (bug#9158).
3064
3065 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
3066
3067         * mml.el (mml-quote-region): Quote <#secure> tag.
3068         (mml-generate-mime-1): Unquote <#secure> tag.
3069
3070 2011-10-20  Chong Yidong  <cyd@gnu.org>
3071
3072         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
3073         calling a minor mode from Lisp with nil arg enables it, so we have to
3074         make the wording a bit ambiguous here).
3075
3076 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
3077
3078         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
3079         * nnir.el (nnir-mode): Use it.
3080         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3081         Use it.
3082
3083         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
3084         * nnmairix.el (gnus-registry-enabled): Ditto.
3085
3086 2011-10-17  Dave Abrahams  <dave@boostpro.com>
3087
3088         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
3089         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
3090         only while we need to find out if it should be t or nil.
3091         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
3092         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
3093         the registry is installed.  Set it to nil when it's unloaded.
3094         (gnus-registry-install-p): Provide user guidance for the initial value
3095         of `gnus-registry-install' when it's 'ask, otherwise return its value.
3096         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
3097         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3098         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3099         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3100         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
3101         `gnus-registry-install'.
3102
3103 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
3104
3105         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
3106         previous change.
3107         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
3108         primary key is marked as disabled.
3109
3110 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
3111
3112         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
3113         primary key is marked as disabled.
3114
3115 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
3116
3117         * html2text.el (html2text-clean-anchor): Check for quotes around
3118         `href' value.
3119
3120 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
3121
3122         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
3123         searching.  Drop `bbdb-cache'.
3124
3125 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3126
3127         * message.el (message-signed-or-encrypted-p): Exclude header when
3128         checking if there is signed or encrypted body in text/plain message.
3129
3130 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
3131
3132         * html2text.el (html2text-get-attr): Correctly handle attribute values
3133         containing "=".
3134
3135 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
3136
3137         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
3138         handle bindings.
3139
3140 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3141
3142         * gnus-win.el (gnus-configure-windows): Protect against reading
3143         ephemeral groups outside of Gnus.
3144
3145 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3146
3147         * shr.el (shr-tag-img): Don't get images displayed in tables.
3148
3149 2011-10-03  Glenn Morris  <rgm@gnu.org>
3150
3151         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
3152         the "maintainer" version of debbugs.gnu.org reports.
3153
3154 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3155
3156         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
3157         make asynchronous adjacent image insertion work better.
3158
3159 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
3160
3161         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
3162         documentation.
3163
3164 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3165
3166         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
3167         `gnus-asynchronous' isn't shadowed.
3168
3169 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3170
3171         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
3172
3173         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
3174         (nnimap-insert-partial-structure): The charset parameter isn't
3175         case-sensitive.
3176
3177         * nnheader.el (nnheader-message-maybe): New function.
3178
3179         * shr.el (shr-tag-table): Render totally broken tables better.
3180
3181         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
3182         computing the boundary.
3183
3184 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3185
3186         * pop3.el (pop3-number-of-responses): Remove.
3187         (pop3-wait-for-messages): Rewrite to take linear time instead of
3188         exponential time.
3189
3190 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3191
3192         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
3193         re-fetch images.
3194
3195         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
3196         re-fetch images when hitting `g' in Gnus.
3197
3198 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3199
3200         * mml.el (mml-inhibit-compute-boundary): New internal variable.
3201         (mml-compute-boundary): Don't check collision if it is non-nil.
3202         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
3203         before checking collision.
3204
3205 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3206
3207         * message.el (message-indent-citation): Really make sure there's a
3208         newline at the end.
3209
3210         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
3211         Fix suggested by John Wiegley.
3212
3213         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
3214
3215         * gnus-art.el (gnus-treat-hide-citation): Add doc.
3216
3217         * message.el (message-default-send-rename-function): Break out into its
3218         own function.
3219
3220         * ecomplete.el (ecomplete-display-matches): Revert patch since it
3221         doesn't work under XEmacs.
3222
3223         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
3224         of "imaps" to word around Windows problems.
3225         (nnimap-open-connection-1): Use it.
3226
3227         * message.el (message-indent-citation): Revert last change which made
3228         `F' not work.
3229
3230 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
3231
3232         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
3233         terminal as well.
3234
3235 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3236
3237         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
3238         because it displays images using overlays that aren't easy to copy to
3239         the article buffer.
3240
3241 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
3242
3243         * message.el (message-indent-citation): Fix empty line removal at the
3244         end of the citation.
3245
3246 2011-09-20  Julien Danjou  <julien@danjou.info>
3247
3248         * auth-source.el (auth-source-netrc-create): Use default value for
3249         password if specified.  Evaluate default.
3250         (auth-source-plstore-create): Ditto.
3251         (auth-source-plstore-create, auth-source-netrc-create): Fix default
3252         value evaluation.
3253         (auth-source-netrc-create): Typo fix.
3254         (auth-source-plstore-create): Ditto.
3255
3256         * password-cache.el (password-cache-remove): Remove entries even if the
3257         value is nil, so that password with a nil value (negative caching) is
3258         possible to invalidate.
3259
3260         * auth-source.el (auth-source-format-cache-entry): New function.
3261
3262 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3263
3264         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
3265
3266 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3267
3268         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
3269
3270 2011-09-19  Julien Danjou  <julien@danjou.info>
3271
3272         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
3273         which work with things that are not ASCII.
3274
3275 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3276
3277         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
3278
3279 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3280
3281         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
3282         message level.
3283
3284 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3285
3286         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
3287
3288 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3289
3290         * gnus.el (gnus-interactive-exit): Update defcustom spec.
3291
3292 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3293
3294         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
3295         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
3296
3297 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
3298
3299         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
3300         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
3301         articles.
3302
3303 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
3304
3305         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
3306         (message-mail-other-window, message-mail-other-frame)
3307         (message-news-other-window, message-news-other-frame):
3308         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
3309         instead of setting buffer display varibles.
3310
3311 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3312
3313         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
3314
3315         * gnus-sum.el (gnus-fetch-headers): Bump message level.
3316
3317 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3318
3319         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
3320         duplicates" to a higher level.
3321
3322         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
3323         most egregious messages.
3324
3325 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3326
3327         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
3328
3329 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
3330
3331         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
3332         up the file (bug#9351).
3333
3334 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3335
3336         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
3337         it does with all other backends, but decode the names immediately after
3338         getting them.
3339
3340         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
3341         decoding nnimap groups.
3342
3343         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
3344         newsrc file.  It doesn't seem like an important optimization any more.
3345
3346 2011-09-10  Dave Abrahams  <dave@boostpro.com>
3347
3348         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
3349         overflows.
3350
3351 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3352
3353         * gnus.el (gnus-article-mark-lists): Remove `recent'.
3354         (gnus-interactive-exit): Extend to `quiet'.
3355
3356         * gnus-sum.el (gnus-offer-save-summaries): Use it.
3357
3358         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
3359         string.
3360
3361         * plstore.el (plstore--get-buffer): Silence compiler warnings by
3362         renaming function arguments from `this'.
3363
3364         * gnus-sum.el (gnus-newsgroup-recent): Remove.
3365
3366         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
3367         has been renamed.
3368         (gnus-lrm-string-p): Include RLM and PDF, too.
3369
3370         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
3371         (bug#9225).
3372
3373 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
3374
3375         Add autoload cookies for functions used by sendmail.el.
3376         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
3377
3378         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
3379
3380 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3381
3382         * gnus-art.el (article-date-ut): Work properly even when there are
3383         things like Date header in the body; work for forwarded parts.
3384
3385 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
3386
3387         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
3388         original-article-buffer.
3389
3390 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
3391
3392         * nnir.el (nnir-compose-result): Fix matching of server type.
3393         (nnir-run-swish++): Ditto.
3394         (nnir-run-namazu): Ditto.
3395         (nnir-run-notmuch): Ditto.
3396
3397 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3398
3399         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
3400         (bug#9405).
3401
3402         * gnus-score.el (gnus-summary-increase-score): Doc clarification
3403         (bug#9421).
3404
3405         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
3406         (bug#9425).
3407
3408         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
3409         thing (bug#9426).
3410
3411 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3412
3413         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
3414         the error message.
3415
3416 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
3417
3418         * message.el (message-setup-1): Return t (Bug#9392).
3419
3420 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
3421
3422         * gnus-sum.el: When adding article headers to a summary buffer also
3423         update gnus-newsgroup-articles (bug#9386).
3424
3425 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3426
3427         * auth-source.el: Autoload help-mode.
3428
3429 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3430
3431         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
3432         names.
3433
3434 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
3435
3436         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
3437         mm-replace-in-string for compatibility issues.
3438         * mml2015.el (mml2015-epg-verify): Ditto.
3439
3440 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3441
3442         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
3443
3444         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
3445
3446 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3447
3448         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
3449         continue on and do the clean-up phase (bug#9188).
3450
3451         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
3452         just ignore groups that can't be opened instead of erroring out
3453         (bug#9225).
3454
3455         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
3456         nil since some many people are fuddy-duddies.
3457
3458         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
3459         images.
3460
3461         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
3462         instead.
3463
3464         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
3465
3466         * gnus-util.el (gnus-process-live-p): Copy over compat function.
3467
3468         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
3469         processing.
3470
3471         * nntp.el (nntp-kill-buffer): Kill the process before killing the
3472         buffer to avoid warnings.
3473
3474 2011-08-20  Simon Josefsson  <simon@josefsson.org>
3475
3476         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
3477         specified to reduce precision.
3478
3479 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3480
3481         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
3482         bodystructures (bug#9314).
3483
3484 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3485
3486         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
3487         Make button keymap non-sticky after buttons.
3488
3489 2011-08-18  David Engster  <dengste@eml.cc>
3490
3491         * nnmairix.el (nnmairix-request-set-mark)
3492         (nnmairix-goto-original-article): Remove adding of article to registry,
3493         since `gnus-registry-add-group' isn't available anymore.
3494         (nnmairix-determine-original-group-from-registry):
3495         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
3496         available anymore.
3497
3498 2011-08-12  Simon Josefsson  <simon@josefsson.org>
3499
3500         * starttls.el (starttls-any-program-available): Define as obsolete
3501         function.
3502
3503 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3504
3505         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
3506         versions which Gnus use when appropriate.
3507
3508         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
3509         a pretty destructive command.
3510
3511         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
3512
3513 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3514
3515         * message.el (message-fix-before-sending): Make a different warning
3516         about NUL characters (bug#9270).
3517
3518         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
3519         from custom (bug#9260).
3520
3521         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
3522         things work in Emacs 22 and XEmacs, too.
3523
3524         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
3525         default From.
3526
3527         * gnus-spec.el (gnus-lrm-string-p): New macro.
3528         (gnus-lrm-string): New constant.
3529         (gnus-summary-line-format-spec): LRM-ify the from.
3530         (gnus-tilde-max-form): LRM-ify string chopping.
3531
3532         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
3533
3534         * message.el (message-is-yours-p): Allow disabling canlock checking
3535         (bug#9295).
3536         (message-shoot-gnksa-feet): Add `canlock-verify'.
3537         (message-auto-save-directory): Use ~/ as the auto-save directory if the
3538         message directory isn't writable (bug#9304).
3539
3540         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
3541         non-world-readable.
3542
3543 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3544
3545         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
3546         articles.
3547
3548 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
3549
3550         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
3551         copy-list.
3552
3553 2011-08-12  Sam Steingold  <sds@gnu.org>
3554
3555         * gnus-score.el (gnus-score-find-alist): Keep the score files already
3556         in the reverse order to avoid modifying the cache with `nreverse'.
3557         (gnus-all-score-files): Do not modify the value returned by
3558         `gnus-score-find-alist' because it lives in a cache variable.
3559         (gnus-current-home-score-file): No need to `nreverse' the return value
3560         of `gnus-score-find-alist', it is already in the correct order.
3561
3562 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
3563
3564         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
3565         type MESSAGE and subtype RFC822 is slightly different from those of
3566         type TEXT.
3567
3568 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
3569
3570         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
3571         This allows article-referral to work from an nnir group.
3572
3573 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
3574
3575         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
3576
3577 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
3578
3579         * mml1991.el (mml1991-epg-find-usable-key)
3580         (mml1991-epg-find-usable-secret-key): New function.
3581         (mml1991-epg-sign): Check if signing key is usable.
3582         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
3583
3584 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
3585
3586         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
3587         server-variables only.  This should fix a bug introduced with commit
3588         e1889675b7f4adf057833c5513c9374134c4e053.
3589         (nnir-run-query): 'nnir-search-engine should not be set from the global
3590         environment.
3591
3592 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
3593
3594         * nnir.el (nnir-search-thread): Position point on referring article
3595         line.
3596         (nnir-warp-to-article): Clean up summary buffers.
3597
3598         * nnimap.el (nnimap-request-thread): Whitespace fix.
3599
3600 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
3601
3602         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
3603
3604 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3605
3606         * starttls.el (starttls-available-p): Rename from
3607         `starttls-any-program-available' and changed return convention.
3608
3609 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
3610
3611         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
3612         `unix-sync' unless it's defined.
3613
3614 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
3615
3616         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
3617         `aref' for XEmacs compatibiltiy.
3618
3619 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3620
3621         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
3622
3623 2011-07-31  Dave Abrahams  <dave@boostpro.com>
3624
3625         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
3626         closures, quote the form properly (bug#9194).
3627
3628 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3629
3630         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
3631         (gnus-summary-insert-new-articles): Protect against servers that are
3632         down.
3633
3634 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
3635
3636         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
3637         in mm handle if none is specified.
3638
3639 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
3640
3641         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
3642
3643 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
3644
3645         * nnir.el (nnir-search-thread): New function to make an nnir group
3646         based on a thread query.
3647
3648         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
3649         of nnir in thread referral.
3650         (gnus-summary-refer-thread): Use it.
3651
3652         * nnimap.el (nnimap-request-thread): Use it.
3653
3654 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3655
3656         * shr.el (shr-tag-comment): Ignore HTML comments.
3657
3658 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
3659
3660         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
3661         argument.
3662         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
3663         Use `nnir-address' to handle server info rather than passing an arg.
3664
3665         * nnimap.el (nnimap-make-thread-query): New utility function to format
3666         an imap thread search query.
3667         (nnimap-request-thread): Use it.
3668
3669         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
3670         right select-method if we are not going back to the group buffer.
3671
3672 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3673
3674         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
3675         enter invalid buffer configurations into the quit form (bug#9107).
3676         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
3677         unplugged/plugged.
3678
3679         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
3680         keep track of which ones are unread (bug#9061).
3681
3682         * gnus.el (gnus-refer-article-method): Allow entering any sexp
3683         (bug#9055).
3684
3685         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
3686         (bug#9041).
3687
3688         * gnus-html.el (mm-util): Require (bug#9073).
3689
3690         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
3691         (gnus-summary-refer-thread): Use it to remove duplicates in the
3692         un-threaded view (bug#9053).
3693         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
3694
3695 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
3696
3697         * nnir.el (nnir-read-server-parm): Use default value from global
3698         variable.  Without this the default search engine parameters aren't
3699         used at all.
3700
3701 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3702
3703         * message.el (message-unique-id): Don't use the undocumented return
3704         value from (random t) (bug#9118).
3705
3706 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3707
3708         * message.el (message-auto-save-directory): If the ~/Mail directory
3709         doesn't exist, use ~ as the auto-save directory (bug#4432).
3710
3711         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
3712         hasn't already been started.
3713
3714 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3715
3716         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
3717
3718         * message.el (message-reply): Work around mysterious bug where
3719         `message-mode' seems to overwrite the locally bound `subject' variable.
3720
3721 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
3722
3723         * nnimap.el (nnimap-request-thread): Ensure search is performed in
3724         correct group.
3725
3726         * gnus-int.el (gnus-request-thread): Add group argument.
3727
3728         * gnus-sum.el (gnus-summary-refer-thread): Use it.
3729
3730 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3731
3732         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
3733
3734         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
3735         renamed to `debbugs-gnu-*'.
3736
3737 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
3738
3739         * plstore.el: Revert the editing feature since it is not urgent.
3740         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
3741         (plstore-mode-decoded): Remove.
3742
3743 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3744
3745         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
3746         isn't very interesting any more, and it leaks potentially secret data.
3747         (gnus-debug): Remove.
3748
3749         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
3750         use of :custom-show.
3751
3752 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
3753
3754         * plstore.el: Add documentation.
3755         (plstore-mode): New mode to edit plstore file.
3756         (plstore-mode-toggle-display, plstore-mode-original)
3757         (plstore-mode-decoded): New command.
3758         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3759         (plstore--insert-buffer, plstore--make): New function.
3760         (plstore-open, plstore-save): Simplify by using them.
3761
3762 2011-07-06  Glenn Morris  <rgm@gnu.org>
3763
3764         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
3765
3766 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3767
3768         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
3769         no longer is much used.
3770         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
3771         Articles".
3772
3773 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
3774
3775         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
3776         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
3777         `notmuch' backend.
3778
3779 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3780
3781         * mm-decode.el (mm-text-html-renderer): Doc fix.
3782
3783         * gnus-msg.el (gnus-bug): Fix the MML tag.
3784
3785         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
3786
3787 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
3788
3789         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
3790         secondary methods if started with `gnus-no-server'.
3791
3792 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
3793
3794         * message.el (message-return-action): Fix typo in docstring.
3795
3796 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3797
3798         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
3799         bug reports at once.
3800
3801         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
3802
3803 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3804
3805         * nndraft.el: Require gnus-group.
3806         (nndraft-request-list): Declare.
3807
3808         * nndraft.el (nndraft-update-unread-articles): Don't show group having
3809         no unread article unless it matches gnus-permanently-visible-groups.
3810
3811         * nndraft.el (nndraft-update-unread-articles): New function.
3812         (nndraft-request-associate-buffer): Use it to update the number of
3813         unread articles for the nndraft groups in the group buffer when saving
3814         or killing a draft message.
3815
3816 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3817
3818         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
3819         systems to binary before writing and reading the mbox files.
3820
3821         * gnus.el (gnus-summary-line-format): Link to the info node for %U
3822         instead of trying to list them all (bug#8978).
3823
3824 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3825
3826         * pop3.el (pop3-open-server): Use :end-of-capability.
3827
3828 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3829
3830         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
3831         the id is always a number.
3832
3833         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
3834
3835         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
3836         debbugs mode, if possible.
3837
3838 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
3839
3840         * auth-source.el (auth-source-token-passphrase-callback-function):
3841         Reindent.
3842         (epg-context-operation): Remove unnecessary autoload.
3843
3844 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3845
3846         * gnus.el (gnus-list-debbugs): New command.
3847
3848         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
3849         mboxstat instead of the maintbox, since the stat seems to be fuller.
3850
3851         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
3852         summary buffers.
3853
3854         * message.el (message-get-reply-headers): Delete all duplicates,
3855         instead of the first.
3856         (message-get-reply-headers): Ensure that we have progress while
3857         deleting duplicates.
3858
3859         * gnus-msg.el (gnus-configure-posting-styles): Get the local
3860         gnus-posting-style value from the summary buffer to make it easier to
3861         make that a per-buffer conf.
3862
3863 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
3864
3865         * nnir.el (nnir-run-imap): Allow halting a search when an article is
3866         found by setting `shortcut' in 'query.
3867         (nnir-request-article): Use `shortcut' setting when requesting article
3868         by Message-ID.
3869
3870 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
3871
3872         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
3873         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
3874         Bring the pseudo-headers back too.
3875
3876 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3877
3878         * auth-source.el (auth-source-token-passphrase-callback-function):
3879         Simplify and remove EPA dependency.
3880
3881 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
3882
3883         * nnir.el (nnir-request-article): Fix error message text.
3884
3885 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3886
3887         * auth-source.el (plstore-delete): Autoload.
3888         (auth-source-plstore-search): Support delete operation.
3889         * plstore.el (plstore-delete): New function.
3890
3891 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3892
3893         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
3894         mark actually existing articles as unread rather than the ones that
3895         active asserts.
3896
3897 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
3898
3899         * nntp.el (nntp-record-command):
3900         * gnus-util.el (gnus-message-with-timestamp-1):
3901         Use format-time-string rather than decoding time stamps by hand.
3902         This is simpler and insulates the code from potential changes to
3903         current-time format.
3904
3905 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3906
3907         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
3908
3909 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3910
3911         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
3912         (plstore-save): Support public key encryption.
3913         (plstore--init-from-buffer): New function.
3914         (plstore-open): Use it; fix error when opening a non-existent file.
3915         (plstore-revert): Use plstore--init-from-buffer.
3916
3917 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3918
3919         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
3920
3921 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3922
3923         * mml2015.el (mml2015-use): Replace string-match-p with string-match
3924         for old Emacsen.
3925
3926 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3927
3928         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
3929         is not fully working.
3930
3931 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3932
3933         * dgnushack.el: Autoload sha1 on XEmacs.
3934
3935         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
3936         quit window configuration.
3937
3938         * auth-source.el (epg-context-set-passphrase-callback):
3939         Remove duplicate autoload.
3940
3941 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3942
3943         * nnir.el (nnir-request-article): Allow requesting articles by
3944         Message-ID with nnimap.
3945
3946         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
3947         current server.
3948
3949 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3950
3951         * auth-source.el: Autoload EPA/EPG functions.
3952         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
3953         changed when EPA/EPG is not available.
3954         (auth-source-backend): Rename "arg" member to "data".
3955         (auth-source-backend-parse, auth-source-plstore-search)
3956         (auth-source-plstore-create): Use it.
3957
3958 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3959
3960         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
3961         `gnus-refer-article-methods'.
3962
3963 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3964
3965         * auth-source.el: Require EPA and EPG.
3966         (auth-source-passphrase-alist): New variable.
3967         (auth-source-passphrase-callback-function)
3968         (auth-source-token-passphrase-callback-function): Callbacks for the
3969         netrc field encryption (GPG tokens).
3970         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
3971         Symmetric encryption and decryption of the netrc GPG tokens.
3972         (auth-source-netrc-normalize): Use them, simplifying the closure.
3973
3974 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3975
3976         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
3977         is available.
3978
3979 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3980
3981         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
3982         non-nil, and `nnimap-split-methods' is nil, use the former.
3983
3984 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3985
3986         * plstore.el (plstore-revert): New function.
3987         (plstore-open): Use it; hide the buffer from user.
3988
3989 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3990
3991         * auth-source.el (auth-source-backend): New member "arg".
3992         (auth-source-backend-parse): Handle new backend 'plstore.
3993         * plstore.el: New file.
3994
3995 2011-06-30  Glenn Morris  <rgm@gnu.org>
3996
3997         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
3998
3999 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4000
4001         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
4002         expiring articles to.
4003
4004         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
4005         variations as ASCII (bug#5458).
4006
4007 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4008
4009         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
4010
4011 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4012
4013         * message.el (message-point-in-header-p): Tweak the function to default
4014         to saying that we're not in the headers if there is no separator at
4015         all.  This makes it possible to use the Message version of `M-q' in
4016         buffers with no headers (bug#7987).
4017         (message-point-in-header-p): Fix last checkin to work with an empty
4018         mail-header-separator, too.
4019
4020         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
4021         again, save the choice via customize.
4022
4023 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4024
4025         * message.el (message-send-mail-function): Add `sendmail-query-once'.
4026
4027         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
4028         ended the connection, bail out before waiting infinitely on a new
4029         connection.
4030
4031 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
4032
4033         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
4034         reports.
4035
4036         * gnus.el (gnus-bug-package): Use "gnus."
4037         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
4038
4039 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4040
4041         * dgnushack.el: Make the timer warning go away on XEmacs.
4042
4043         * gnus-art.el (gnus-article-stop-animations): New function to stop any
4044         animations going on at article exit time.
4045
4046         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
4047         since removing it breaks people upgrading.
4048
4049         * shr.el (shr-put-image): Use the new interface for animating images.
4050         (shr-put-image): Animate for 60 seconds.
4051
4052         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
4053         avoid compiler warnings.
4054
4055         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
4056         error with `find-file-hooks' on Emacs 22.
4057         (with-auth-source-epa-overrides): Ugly hack to Wrap the
4058         `find-file-hook' things in `symbol-value' to avoid compilation warnings
4059         on all architectures.
4060
4061         * spam.el (spam-stat): Require in a normal fashion without binding
4062         `spam-stat-install-hooks' to avoid compilation warnings.
4063
4064         * spam-stat.el (spam-stat-install-hooks): Remove.
4065         (spam-stat-install-hooks): Don't run automatically.
4066
4067 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
4068
4069         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
4070         and keystroke.
4071
4072 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4073
4074         * auth-source.el (auth-source-netrc-cache): Move forward.
4075
4076 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4077
4078         * proto-stream.el (proto-stream-open-starttls): Use
4079         `gnutls-available-p' to see whether we have built-in support.
4080
4081         * auth-source.el (auth-source-netrc-create): Don't query the bits that
4082         we already know.
4083         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
4084         (auth-source-netrc-create): Don't prompt for the stuff we already know.
4085
4086 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4087
4088         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
4089         %S format, since that looks odd.
4090         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
4091         file, especially when saving.
4092
4093 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
4094
4095         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
4096         article found.
4097
4098 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
4099
4100         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
4101         `auth-source-save-secrets' with a more sensitive alist that can be
4102         configured per file.  Experimental, so defaults to 'never.
4103         (auth-source-netrc-create): Use it.  Still experimental code.
4104         (with-auth-source-epa-overrides): Use `find-file-hooks' if
4105         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
4106
4107 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
4108
4109         * auth-source.el (auth-source-save-secrets): New variable to control if
4110         secret tokens should be saved encrypted.
4111         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
4112         to `auth-source-netrc-normalize'.
4113         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
4114         on the EPA variables being defined.
4115         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
4116         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
4117         the lexical-let closure.
4118         (auth-source-netrc-create): Create "gpg:" tokens according to
4119         `auth-source-save-secrets'.
4120
4121 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4122
4123         * gnus-group.el (gnus-group-update-group): Add new argument
4124         `info-unchanged' that stops updating dribble buffer.
4125
4126         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
4127         deletes lines matching to it in dribble buffer.
4128
4129         * gnus-agent.el (gnus-agent-fetch-group-1):
4130         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
4131         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
4132         * gnus-start.el (gnus-group-change-level):
4133         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
4134
4135         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
4136         if newsgroup info is not changed.
4137
4138         * gnus-group.el (gnus-group-get-new-news-this-group):
4139         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
4140         Don't update dribble buffer.
4141
4142 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
4143
4144         * gnus-registry.el (gnus-registry-remove-ignored): New function to
4145         remove entries with groups we ignore.
4146
4147 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4148
4149         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
4150         the underline comes at the bottom.
4151
4152 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
4153
4154         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
4155         `gnus-registry-user-format-function-M' and declare the latter obsolete.
4156         (gnus-registry-article-marks-to-names): Rename from
4157         `gnus-registry-user-format-function-M2'.
4158
4159 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4160
4161         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
4162         ephemeral group.
4163
4164 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4165
4166         * shr.el (shr-browse-image): Copy the URL if called interactively.
4167
4168 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4169
4170         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
4171         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
4172         done, then unselected articles may be marked as read.
4173
4174         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
4175         since not doing this seems to lead to a race condition in pop3-logon.
4176
4177         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
4178         so that the call chain it correct when we call "upwards".
4179
4180         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
4181         in read-only groups.
4182
4183         * gnus-group.el (gnus-group-mark-article-read): Ditto.
4184
4185         * message.el (message-cite-reply-position): Doc string fix.
4186
4187         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
4188         avoid regexp overflow.
4189         (nnimap-transform-split-mail): Ditto.
4190
4191         * pop3.el (pop3-retr): Error out if the server closes the connection.
4192
4193 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4194
4195         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
4196         mm-with-unibyte-current-buffer.  The buffer should not contain any
4197         multibyte chars anyway at this stage.
4198
4199 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4200
4201         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
4202         at the end of lines.
4203
4204 2011-05-29  Julien Danjou  <julien@danjou.info>
4205
4206         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
4207
4208 2011-05-27  Glenn Morris  <rgm@gnu.org>
4209
4210         * gnus-group.el (gnus-bug-group-download-format-alist):
4211         Use the "maintainer" version of debian reports as well.
4212
4213 2011-05-26  Glenn Morris  <rgm@gnu.org>
4214
4215         * gnus-group.el (gnus-bug-group-download-format-alist):
4216         Use the "maintainer" version of debbugs.gnu.org reports.
4217
4218 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4219
4220         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
4221
4222 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4223
4224         * gnus-cus.el (gnus-agent-customize-category):
4225         * gnus-delay.el (gnus-delay-send-queue):
4226         * gnus.el (gnus-other-frame):
4227         Don't quote lambda expressions with `quote'.
4228
4229 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
4230
4231         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
4232         the thread moves us backwards and so we loop forever.
4233
4234 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4235
4236         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
4237         whitespace in base64 data lines.
4238
4239 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
4240
4241         * gnus-registry.el (gnus-registry-user-format-function-M):
4242         Use `mapconcat'.
4243         (gnus-registry-user-format-function-M2): Use to see the full text of
4244         the marks.  Make "," the mark text separator.
4245
4246         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
4247         authentication with auth-source.
4248
4249 2011-05-17  Glenn Morris  <rgm@gnu.org>
4250
4251         * gnus-group.el (gnus-import-other-newsrc-file):
4252         Use insert-file-contents.
4253
4254 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
4255
4256         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
4257         1000 iterations.
4258
4259 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4260
4261         * nntp.el (nntp-open-connection): Check if process-type is available.
4262
4263 2011-05-16  Julien Danjou  <julien@danjou.info>
4264
4265         * shr.el (shr-tag-del): Add support for del tag.
4266
4267 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4268
4269         * gnus-html.el (gnus-html-put-image): Register a displayer.
4270
4271         * shr.el (shr-image-displayer): Don't remove text props from alt text.
4272
4273 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
4274
4275         * registry.el (prune-factor): New initialization parameter defaulting
4276         to 0.1.
4277         (registry-prune-hard): Use it.
4278
4279         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
4280         0.1 expicitly.
4281
4282 2011-05-13  Glenn Morris  <rgm@gnu.org>
4283
4284         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
4285         is bound, since this function requires sendmail.
4286
4287 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
4288
4289         * registry.el (registry-usage-test): Disable pruning test.
4290
4291 2011-05-11  David Engster  <dengste@eml.cc>
4292
4293         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
4294         Bind set-network-process-option for XEmacs.
4295
4296 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
4297
4298         * registry.el (registry-prune-hard-candidates)
4299         (registry-prune-soft-candidates): Helper methods for registry pruning.
4300         (registry-prune): Use them.  Make the sort function optional.
4301
4302 2011-05-10  Jim Meyering  <meyering@redhat.com>
4303
4304         * shr.el (shr-colorize-region): Fix typo "on on -> on".
4305
4306 2011-05-10  Julien Danjou  <julien@danjou.info>
4307
4308         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
4309         symbol and not a list.
4310
4311 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4312
4313         * gnus-art.el (gnus-article-mode): Move binding of
4314         shr-put-image-function here from gnus-article-prepare-display.
4315
4316         * shr.el (shr-put-image-function): New variable.
4317         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
4318         (shr-put-image): Return scaled image.
4319
4320         * gnus-art.el (gnus-shr-put-image): New function.
4321         (gnus-article-prepare-display): Bind shr-put-image-function to it.
4322
4323         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
4324         original ones, as deletable.
4325
4326 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4327
4328         * nntp.el (nntp-open-connection): Set TCP keepalive option.
4329
4330 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
4331
4332         * registry.el (registry-full): Add convenience method.  Fix logic.
4333         (registry-insert): Use it.  Fix logic here too.
4334
4335         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
4336         `registry-prune' if `registry-full' returns t.
4337         (gnus-registry-handle-action)
4338         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
4339         (gnus-registry-usage-test): Use it.
4340
4341 2011-05-07  Julien Danjou  <julien@danjou.info>
4342
4343         * shr.el (shr-link): Make shr-link inherit from link by default.
4344
4345 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
4346
4347         * shr.el (shr-urlify, shr-link): Fix shr-link face.
4348
4349 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
4350
4351         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
4352         error out because the face is not a list.
4353
4354 2011-05-05  Glenn Morris  <rgm@gnu.org>
4355
4356         * proto-stream.el (gnutls-negotiate): Fix declarations.
4357
4358         * gnus-start.el (gnus-propagate-marks): Declare.
4359
4360 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
4361
4362         * registry.el (registry-reindex): Fix percentage message.
4363
4364         * proto-stream.el (network-stream-open-starttls): Adjust to call
4365         `gnutls-negotiate' with :process and :hostname arguments.
4366
4367 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
4368
4369         * shr.el: Add shr-link face for links.
4370         (shr-urlify): Use it.
4371
4372         * registry.el (registry-insert): Make error message more helpful.
4373
4374 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4375
4376         * gnus-html.el (gnus-html-schedule-image-fetching):
4377         Use url-queue-retrieve, if it exists.
4378
4379         * shr.el (shr-tag-img): Ditto.
4380
4381         * gnus.el: Autoload more gnus-agent functions.
4382
4383         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
4384         agent if we haven't already (bug#8502).
4385
4386         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
4387         into the Agent, too.
4388
4389         * gnus-agent.el (gnus-agent-store-article): New function.
4390
4391         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
4392         and moved from that file for reuse.
4393
4394         * pop3.el (pop3-open-server): Error messages are "-ERR".
4395
4396 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4397
4398         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
4399         (open-tls-stream): Remove superfluous tls/starttls autoloads.
4400
4401 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4402
4403         * gnus.el: No Gnus v0.17 is released.
4404
4405 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4406
4407         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
4408         buffer has moved to a different frame.
4409
4410 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4411
4412         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
4413         to get the conversion from unibyte to multibyte buffers to work on
4414         Emacs 22.
4415
4416         * nntp.el (nntp-request-article): Slight clean-up.
4417
4418 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4419
4420         * shr.el (shr-strike-through): New face.
4421         (shr-tag-s): Use it to provide <s> support.
4422         (shr-tag-s): Remove duplicate definition.
4423
4424 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
4425
4426         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
4427         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
4428
4429 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
4430
4431         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
4432         `gnutls-negotiate'.
4433         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
4434
4435 2011-04-23  Glenn Morris  <rgm@gnu.org>
4436
4437         * gnus-sum.el (gnus-extra-headers): Bump :version.
4438
4439 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4440
4441         * shr.el (shr-tag-sup): New function.
4442         (shr-tag-sub): Ditto.
4443
4444 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
4445
4446         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
4447         for the case where `gnus-registry-ignored-groups' is a list of lists,
4448         and don't call `gnus-parameter-registry-ignore' otherwise.
4449
4450 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
4451
4452         * nnimap.el (nnimap-user): New backend variable.
4453         (nnimap-open-connection-1): Use it.
4454         (nnimap-credentials): Accept user parameter so it's explicit what user
4455         name is desired.
4456
4457         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
4458         default.
4459
4460         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
4461         not gnus-registry.el.
4462
4463         * gnus-registry.el: Mention in comments how to modify
4464         `gnus-extra-headers' for proper recipient tracking and that it may
4465         already have To and Cc recently, which it does as of this commit.
4466         (gnus-registry-ignored-groups): Remove defcustom.
4467         Explain why in comments.
4468         (gnus-registry-action): Fix data-header reference to use the extra
4469         headers.  Explain in package commentary how to add To and Cc headers to
4470         the gnus-extra-headers.
4471         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
4472         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
4473         parameter list or a string list in `gnus-registry-ignored-groups'.
4474         Fix logic error.
4475
4476 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4477
4478         * shr.el (shr-expand-url): Protect against null urls.
4479
4480 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4481
4482         * shr.el (shr-base): New binding.
4483         (shr-tag-base): Keep track of <base>.
4484         (shr-expand-url): New function used throughout.
4485
4486 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
4487
4488         * gnus-registry.el
4489         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
4490         (gnus-registry-ignored-groups): New variable.
4491         (gnus-registry-ignore-group-p): Use it.
4492         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
4493         set the destination group to nil (same as delete) if it's ignored.
4494
4495 2011-04-20  David Engster  <dengste@eml.cc>
4496
4497         * tests/gnustest-nntp.el: New file for simple NNTP testing.
4498
4499         * Makefile.in (test-nntp): New rule.
4500         (check): Add it.
4501         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
4502
4503 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4504
4505         * gnus-registry.el (gnus-registry-action)
4506         (gnus-registry-fetch-header-fast):
4507         Don't use mail-header that looks an internal function of mailheader.el.
4508
4509 2011-04-19  Glenn Morris  <rgm@gnu.org>
4510
4511         * time-date.el (time-to-days): Remove unused local variables.
4512
4513 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4514
4515         * gnus-registry.el: Eliminate cl functions.
4516         (gnus-registry-sort-addresses): New function that replaces mapcan.
4517         (gnus-registry-action, gnus-registry-spool-action)
4518         (gnus-registry-split-fancy-with-parent)
4519         (gnus-registry-fetch-recipients-fast): Use it.
4520         (gnus-registry-import-eld): Replace delete* with dolist + delq.
4521
4522         * registry.el (initialize-instance, registry-lookup)
4523         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
4524         (registry-lookup-secondary-value, registry-search, registry-delete)
4525         (registry-insert, registry-reindex, registry-size, registry-prune):
4526         Use eval-and-compile.
4527
4528 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
4529
4530         * registry.el (registry-reindex): New method to recreate the secondary
4531         registry indices.
4532
4533         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
4534         tracked field changes.
4535         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
4536         (gnus-registry-action, gnus-registry-spool-action)
4537         (gnus-registry-handle-action)
4538         (gnus-registry--split-fancy-with-parent-internal)
4539         (gnus-registry-split-fancy-with-parent)
4540         (gnus-registry-register-message-ids): Add recipient tracking on spool,
4541         move, and delete actions, and for fancy splitting with parent.
4542         (gnus-registry-extract-addresses)
4543         (gnus-registry-fetch-recipients-fast)
4544         (gnus-registry-fetch-header-fast): Convenience functions.
4545         (gnus-registry-misc-test): ERT test of
4546         `gnus-registry-extract-addresses'.
4547
4548 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
4549
4550         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4551         Track by subject first, then sender.
4552
4553 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4554
4555         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
4556
4557         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
4558         Lisp.
4559
4560         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
4561         (gnus-draft-send): Use it to avoid popping
4562         up frames from gnus-group-send-queue.
4563
4564 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
4565
4566         * gnus-registry.el: Updated gnus-registry docs.
4567
4568 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
4569
4570         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4571         Fix logic bug.
4572         (gnus-registry-post-process-groups): Fix logging of no results and
4573         quote sender and subject.
4574
4575 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4576
4577         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
4578         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
4579         gnutls-cli are too slow to be done opportunistically.
4580
4581         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
4582         (gnus-read-active-for-groups): Don't try to finish getting stuff where
4583         we had no early-data returned.
4584         (gnus-get-unread-articles): Add a sanity check so that we don't issue
4585         two async commands to the same server at the same time.
4586
4587 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
4588
4589         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
4590
4591 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4592
4593         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
4594         "warning" level.
4595
4596         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
4597         (mm-url-insert-file-contents): Don't set the package names.
4598
4599 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
4600
4601         * gnus-registry.el (gnus-registry-action): Remove properties and
4602         simplify subject in `gnus-registry-handle-action'.
4603         (gnus-registry-spool-action): Get subject and sender from message if
4604         they are not passed in.
4605         (gnus-registry-handle-action): Remove properties and simplify subject
4606         consistently.
4607
4608 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4609
4610         * registry.el: Require CL before using defmacro*.
4611
4612 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4613
4614         * gnus-art.el (article-treat-date): Assume that
4615         gnus-article-date-headers may be a group parameter.
4616
4617 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
4618
4619         * gnus-registry.el (gnus-registry-handle-action): More debugging.
4620
4621         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
4622         interactively so the newsrc file can contain foreign groups too.
4623         Useful for debugging but not much for users.
4624
4625 2011-04-07  David Engster  <dengste@eml.cc>
4626
4627         * registry.el (registry-usage-test): Only do
4628         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
4629         lexical binding.
4630
4631 2011-04-07  David Engster  <dengste@eml.cc>
4632
4633         * Makefile.in (check, test-registry): New rules for test-suite.
4634
4635 2011-04-06  David Engster  <dengste@eml.cc>
4636
4637         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
4638         argument NOERROR for `require', since XEmacs 21.4 does not support it.
4639
4640 2011-04-06  David Engster  <dengste@eml.cc>
4641
4642         * registry.el (initialize-instance): Change :after to :AFTER to be
4643         compatible with old EIEIO version in XEmacs.
4644
4645 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4646
4647         * gnus-registry.el (gnus-registry-post-process-groups)
4648         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
4649         and provide better messaging.
4650
4651 2011-04-06  David Engster  <dengste@eml.cc>
4652
4653         * Makefile.in (fail-on-warning): New rule to compile with warnings as
4654         errors.
4655
4656         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
4657         dgnushack-compile with error-on-warn enabled, and to signal an error if
4658         clean compilation failed.
4659         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
4660         with `byte-compile-error-on-warn'.  Return nil if errors occured.
4661
4662 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4663
4664         * gnus-registry.el: Don't use ERT if it's not available.  Load it
4665         unconditionally anyway, discarding errors.
4666         (gnus-registry-delete-entries): New convenience function.
4667         (gnus-registry-import-eld): Import from old .eld registry.
4668
4669         * registry.el: Don't use ERT if it's not available.  Load it
4670         unconditionally anyway, discarding errors.
4671
4672         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
4673         version from the Claudio Bley GnuTLS patch (extra optional parameters
4674         and host name).
4675
4676 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
4677
4678         * gnus-registry.el (gnus-registry-fixup-registry): New function to
4679         fixup the parameters that can be customized by the user between
4680         save/read cycles.
4681         (gnus-registry-read): Use it.
4682         (gnus-registry-make-db): Use it.
4683         (gnus-registry-spool-action, gnus-registry-handle-action):
4684         Fix messaging.
4685         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
4686         Map references to actual group names with sender and subject tracking.
4687         (gnus-registry-post-process-groups): Use `cond' for better messaging.
4688         (gnus-registry-usage-test): Add subject lookup test.
4689
4690         * registry.el (registry-db, initialize-instance): Set up constructor
4691         instead of :initform arguments for the sake of older Emacsen.
4692         (registry-lookup-breaks-before-lexbind): New method to demonstrate
4693         pre-lexbind merge bug.
4694         (registry-usage-test): Use it.
4695         (initialize-instance, registry-db): Move the non-function initforms
4696         back to the class definition.
4697
4698 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
4699
4700         * registry.el: New library to manage gnus-registry-style data.
4701
4702         * gnus-registry.el: Use it (major rewrite).
4703
4704         * nnregistry.el: Use it.
4705
4706         * spam.el: Use it.
4707
4708 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4709
4710         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
4711         marks on non-selected articles.
4712
4713 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
4714
4715         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
4716         parameter to open-protocol-stream.
4717
4718 2011-04-01  Julien Danjou  <julien@danjou.info>
4719
4720         * mm-view.el (mm-display-inline-fontify): Do not fontify with
4721         fundamental-mode.
4722
4723 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4724
4725         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
4726         servers.
4727
4728 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4729
4730         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
4731         made marks not propagate, again.
4732
4733 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
4734
4735         * proto-stream.el (open-protocol-stream): Bring back `network' type.
4736         Make this the default type.
4737         (proto-stream-open-plain): Rename from proto-stream-open-default.
4738         (open-protocol-stream, proto-stream-open-starttls)
4739         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
4740         with `plain'.
4741
4742         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
4743         value.
4744
4745         * nntp.el (nntp-open-connection-function): Document the fact that some
4746         values are not functions but are instead handled specially.
4747         Recognize nntp-open-plain-stream value.
4748         (nntp-open-connection): Recognize that value.
4749
4750 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4751
4752         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
4753         where it seems to be needed.
4754
4755 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4756
4757         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
4758         stuff.
4759
4760         * gnus-score.el (gnus-score-string): Fix calling convention of
4761         `gnus-simplify-buffer-fuzzy' after last patches.
4762
4763         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
4764         server for articles we didn't get any headers for.  This is a sanity
4765         check.
4766
4767 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
4768
4769         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
4770         new CAPABILITY, use it.
4771
4772 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4773
4774         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
4775         downloading anything.
4776
4777         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
4778
4779 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
4780
4781         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
4782         colors.
4783         (gnus-splash-svg-color-symbols): New function.
4784
4785 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4786
4787         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
4788         instead of using the global gnus-simplify-subject-fuzzy-regexp.
4789         (gnus-simplify-subject-fuzzy): Use the local
4790         gnus-simplify-subject-fuzzy-regex instead of the global one.
4791         This makes using this variable in group parameters work.
4792
4793 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4794
4795         * gnus-registry.el (gnus-registry-unfollowed-groups):
4796         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
4797         archive:sent-YYYY-MM-DD groups).
4798         (gnus-registry-split-fancy-with-parent): Bail out early in sender
4799         tracking if there are more than `gnus-registry-max-track-groups'
4800         matches.
4801
4802 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4803
4804         * message.el (message--yank-original-internal): New function to do the
4805         insertion cleanly inside eval in `message-yank-original'.
4806         (message-yank-original): Use it.
4807
4808 2011-03-29  Julien Danjou  <julien@danjou.info>
4809
4810         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
4811         local variables disabled rather than `normal-mode'.
4812
4813 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
4814
4815         * imap.el (imap-shell-open, imap-process-connection-type):
4816         Use imap-process-connection-type for 'shell' streams as well as
4817         Kerberos, SSL, other subprocesses.
4818
4819 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
4820
4821         * proto-stream.el: Changes preparatory to merging open-protocol-stream
4822         with open-network-stream.
4823         (proto-stream-always-use-starttls): Option removed.
4824         (open-protocol-stream): Return a process object by default.  Provide a
4825         new parameter :return-list specifying a list-type return value, which
4826         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
4827         :type `network' to `try-starttls', and `network-only' to `default'.
4828         Make `default' the default, for compatibility with open-network-stream.
4829         Handle the no-parameter case exactly as open-network-stream, with no
4830         additional stream processing.  Search plists using plist-get.
4831         Explicitly add :end-of-commend parameter if it is missing.
4832         (proto-stream-open-default): Rename from
4833         proto-stream-open-network-only.  Return 'default as the type.
4834         (proto-stream-open-starttls): Rename from proto-stream-open-network.
4835         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
4836         failed.  Always return a list with a (possibly dead) process as the
4837         first element, for compatibility with open-network-stream.
4838         (proto-stream-open-tls): Use plist-get.  Always return a list.
4839         (proto-stream-open-shell): Return `default' as connection type.
4840         (proto-stream-capability-open): Use plist-get.
4841         (proto-stream-eoc): Function deleted.
4842
4843         * nnimap.el (nnimap-stream, nnimap-open-connection)
4844         (nnimap-open-connection-1): Handle renaming of :type parameter for
4845         open-protocol-stream.
4846         (nnimap-open-connection-1): Pass a :return-list parameter
4847         open-protocol-stream to obtain a list return value.  Parse this list
4848         using plist-get.
4849
4850         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
4851         for open-protocol-stream.  Accept open-protocol-stream return value
4852         that is a subprocess object instead of a list.  Handle the case of a
4853         dead returned process.
4854
4855 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
4856
4857         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
4858
4859         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
4860
4861 2011-03-21  Julien Danjou  <julien@danjou.info>
4862
4863         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
4864         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
4865         query.
4866         (mm-inline-text): Render normal text with fontification whenever
4867         possible.
4868
4869         * gnus-sum.el (gnus-summary-save-parts-1):
4870         * gnus-art.el (gnus-article-browse-html-save-cid-content)
4871         (gnus-article-browse-html-parts, gnus-mime-delete-part)
4872         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
4873         Use `mm-handle-filename'.
4874
4875         * mm-util.el (mm-handle-filename): New function, return the filename of
4876         an handle.
4877
4878 2011-03-18  Julien Danjou  <julien@danjou.info>
4879
4880         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
4881         (gnus-buffer-live-p): Check that buffer is not nil.
4882
4883 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4884
4885         * gnus.el: No Gnus v0.15 is released.
4886
4887 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4888
4889         * time-date.el (format-seconds): Use assoc instead of assoc-string to
4890         avoid warning on XEmacs.
4891
4892         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
4893         on XEmacs.
4894
4895         * gnus-art.el: Require mouse, which the build bot seems to say is
4896         needed.
4897
4898         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
4899
4900         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
4901         XEmacs, since it doesn't have url-retrieve-synchronously.
4902
4903         * time-date.el (format-seconds): Use assoc instead of assoc-string,
4904         since assoc-string doesn't exist in XEmacs.
4905
4906 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
4907
4908         * gnus-group.el (gnus-group-list-ticked): New function.
4909         (gnus-group-make-menu-bar): Provide a menu entry for it.
4910         (gnus-group-list-map): Provide a binding for it.
4911
4912 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4913
4914         * shr.el (shr-visit-file): New command.
4915
4916         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
4917
4918 2011-03-17  Bjørn Mork  <bjorn@mork.no>
4919
4920         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
4921         servers.
4922
4923 2011-03-16  Julien Danjou  <julien@danjou.info>
4924
4925         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
4926         inline.
4927
4928         * gnus-art.el (article-hide-list-identifiers):
4929         Use gnus-group-get-list-identifiers.
4930
4931         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
4932         (gnus-summary-remove-list-identifiers):
4933         Use gnus-group-get-list-identifiers to get regexp.
4934         (gnus-select-newsgroup, gnus-summary-insert-subject)
4935         (gnus-summary-insert-articles):
4936         Call gnus-summary-remove-list-identifiers unconditionally.
4937
4938 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4939
4940         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
4941         we're selecting a group with unread articles.
4942
4943         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
4944
4945         * gssapi.el: New file separated out from imap.el to provide a general
4946         Kerberos 5 connection facility for Emacs.
4947
4948         * message.el (message-elide-ellipsis): Document the format spec
4949         ellipsis.
4950
4951 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
4952
4953         * message.el (message-elide-region): Allow the ellipsis to say how many
4954         lines were removed.
4955
4956 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4957
4958         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
4959         window configurations containing buffers that are now dead.
4960
4961         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
4962         parsing to avoid integer overflows.
4963         (nnimap-parse-flags): Simplify the last change.
4964         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
4965         too large for 32-bit Emacsen.
4966
4967 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4968
4969         * auth-source.el (auth-source-netrc-create):
4970         * message.el (message-yank-original): Fix use of `case'.
4971
4972 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
4973
4974         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
4975         XEmacs, which was one character too wide.
4976
4977 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
4978
4979         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
4980         default number of articles to display.
4981         (gnus-articles-to-read): Use pretty names for prompt.
4982
4983 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4984
4985         * gnus-int.el (gnus-open-server): Ditto.
4986
4987         * gnus-start.el (gnus-activate-group): Give a backtrace if
4988         debug-on-quit is set and the user hits `C-g'.
4989         (gnus-read-active-file): Ditto.
4990
4991         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
4992
4993 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
4994
4995         * message.el (message-yank-original): Use cond instead of CL case.
4996
4997 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4998
4999         * auth-source.el (auth-source-netrc-create): Use usual format for the
5000         default in prompts.
5001
5002 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5003
5004         * lpath.el: Fbind read-char-choice for XEmacs.
5005
5006 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
5007
5008         * auth-source.el (auth-source-netrc-create): Show the default in the
5009         prompt when prompting for token creation.
5010
5011 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
5012
5013         * auth-source.el (auth-source-format-prompt): Always convert the value
5014         to a string to avoid evaluating non-string arguments.
5015         (auth-source-netrc-create): Offer default properly, not as initial
5016         content in `read-string'.
5017         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
5018         of line to determine if we've been run before.  If so, don't run again,
5019         but print a trivial message to indicate the cache was hit instead.
5020
5021 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
5022
5023         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
5024         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
5025         The user will have to run `gnus-sync-read' manually and wait for Cloudy
5026         Gnus.
5027
5028 2011-03-11  Julien Danjou  <julien@danjou.info>
5029
5030         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
5031         modified file".
5032
5033 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
5034
5035         * auth-source.el (auth-source-read-char-choice): New function to read a
5036         character choice using `dropdown-list', `read-char-choice', or
5037         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
5038         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
5039         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
5040         (auth-source-netrc-saver): Use it.
5041         (auth-source-pick-first-password): New convenience function.
5042
5043 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
5044
5045         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
5046         parameter in the credentials.
5047         (nnimap-open-connection-1): Use it after a successful login.
5048         (nnimap-credentials): Add IMAP-specific user and password prompt.
5049
5050         * auth-source.el (auth-source-search): Add :require parameter, taking a
5051         list.  Document it and the :save-function return token.  Pass :require
5052         down.  Change the CREATED message from a warning to a debug statement.
5053         (auth-source-search-backends): Pass :require down.
5054         (auth-source-netrc-search): Pass :require down.
5055         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
5056         Change save prompt to indicate all modifications saved here are
5057         deletions.
5058         (auth-source-netrc-create): Take user login name as default in user
5059         prompt.  Move all the save functionality to a lexically bound function
5060         under the :save-function token in the returned list.  Set up clearer
5061         default prompts for user, host, port, and secret.
5062         (auth-source-netrc-saver): New function, intended to be wrapped for
5063         :save-function.
5064
5065 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5066
5067         * shr.el (shr-table-horizontal-line): Change the defaults for the table
5068         lines to be spaces instead.
5069
5070 2011-03-07  Julien Danjou  <julien@danjou.info>
5071
5072         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
5073         (sieve-sasl-auth): Check that auth-source-search did return something,
5074         or just return an empty string.
5075
5076 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5077
5078         * gnus.el (gnus-interactive): Use read-directory-name.
5079
5080         * gnus-uu.el (gnus-uu-decode-uu-and-save)
5081         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
5082         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
5083         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
5084         Likewise.
5085
5086         * gnus-group.el (gnus-group-make-directory-group): Likewise.
5087
5088 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5089
5090         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
5091         onto the list of killed groups, too.  This makes killed nnimap groups,
5092         for instance, more reliably not reappear.
5093
5094         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
5095         the parent.
5096
5097         * gnus-sum.el (gnus-update-read-articles): Fix typo.
5098
5099         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
5100         really have server-side marks.
5101
5102         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
5103         since most backends do not usefully have server-side marks.
5104         (gnus-update-read-articles): Propagate marks to all backends that
5105         really have server-side marks.
5106
5107 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5108
5109         * message.el (message-cite-reply-position, message-cite-style):
5110         New variables.
5111         (message-yank-original): Use the new citation styles.
5112
5113 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
5114
5115         * message.el (message-options): Revert 22da67af (workaround for XEmacs
5116         buffer-local issue); don't mark it buffer-local when running under
5117         XEmacs.
5118
5119 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
5120
5121         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
5122         numbers too big to be `read'.
5123
5124 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
5125
5126         * password-cache.el (password-in-cache-p): Add autoload.
5127
5128         * message.el (message-options): Make buffer-local two ways to attempt
5129         to fix a XEmacs bug.
5130
5131 2011-03-02  Julien Danjou  <julien@danjou.info>
5132
5133         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
5134
5135 2011-03-01  Julien Danjou  <julien@danjou.info>
5136
5137         * gnus-art.el (list-identifier): Add list-identifier as a parameter
5138         group.
5139         (article-hide-list-identifiers): Use list-identifier group parameter.
5140
5141 2011-02-28  Julien Danjou  <julien@danjou.info>
5142
5143         * sieve.el (sieve-buffer-script-name): New local variable to store
5144         sieve script name.
5145         (sieve-edit-script): Store sieve script name.
5146         (sieve-upload): Use sieve script name when uploading.
5147         (sieve-upload): Use substitute-command-keys.
5148         (sieve-edit-script): Use substitute-command-keys.
5149         (sieve-refresh-scriptlist): Use substitute-command-keys.
5150         (sieve-manage-mode-map): Define keymap properly.
5151         (sieve-manage-mode): Do not set mode name manually, change mode-name to
5152         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
5153         Remove commented code about cvs.
5154         (sieve-manage-quit): New function.
5155         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
5156
5157 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5158
5159         * gnus-group.el (gnus-import-other-newsrc-file): New function.
5160
5161 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
5162
5163         * auth-source.el (auth-source-search): Cache empty result sets.
5164
5165         * password-cache.el (password-in-cache-p): Convenience function to
5166         check if a key is in the cache, even if the value is nil.
5167
5168         * auth-source.el (auth-source-save-behavior): New variable to replace
5169         `auth-source-never-create'.
5170         (auth-source-netrc-create): Use it.
5171         (auth-source-never-save): Remove.
5172
5173 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
5174
5175         * nnimap.el (nnimap-stream): Doc fix.
5176         (nnimap-open-connection-1): Reverse the order of the ports to that the
5177         prompted-for port is first.
5178
5179         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
5180         retrieval by the no-group selection.
5181
5182         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
5183         numerical parameters.
5184
5185 2011-02-25  Julien Danjou  <julien@danjou.info>
5186
5187         * gnus-gravatar.el: Use gnus-with-article-buffer.
5188
5189         * gnus-art.el (gnus-with-article-buffer): Check that the
5190         gnus-article-buffer is alive.
5191
5192 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
5193
5194         * auth-source.el (auth-source-creation-prompts): New variable to manage
5195         creation-time prompts.
5196         (auth-source-search): Document it.
5197         (auth-source-format-prompt): Add utility function.
5198         (auth-source-netrc-create): Don't default the user name to
5199         user-login-name.  Use `auth-source-creation-prompts' and some default
5200         prompts for user, host, port, and password (the default generic prompt
5201         remains ugly).
5202         (auth-source-never-save): Add customizable option to never save info.
5203         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
5204         mode excursion.
5205
5206 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5207
5208         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
5209         argument that XEmacs doesn't support.
5210
5211         * dgnushack.el (dgnushack-compile): Exclude color.el from being
5212         compiled for Emacsen having no `libxml-parse-html-region' support.
5213
5214         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
5215
5216         * lpath.el: Bind buffer-save-without-query for XEmacs.
5217
5218 2011-02-23  Julien Danjou  <julien@danjou.info>
5219
5220         * gnus-art.el (article-make-date-line): Ignore errors if time is
5221         invalid and not convertible.
5222         (article-make-date-line): Only add lapsed time if time is not nil.
5223
5224 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
5225
5226         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
5227         `read-char-choice' for backwards compatibility.
5228         (auth-source-netrc-element-or-first): New function to DTRT for
5229         parameter extraction.
5230         (auth-source-netrc-create): Use it and fix multiple parameter print
5231         bug.  Use the default passed from above (given-default) or the
5232         built-in (user-login-name for :user).
5233
5234 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
5235
5236         * gnus-start.el (gnus-dribble-read-file):
5237         Set buffer-save-without-query, since we always want to save the dribble
5238         file, probably.
5239
5240         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
5241         nnimap.
5242
5243         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
5244         -summary- since it's a user-visible variable.
5245
5246         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
5247         first time you use the new Gnus.
5248
5249 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
5250
5251         * auth-source.el: Don't load netrc.el.
5252         (auth-sources): Search ~/.netrc as well by default.
5253         (auth-source-debug): Add 'trivia option for extra output.
5254         (auth-source-do-trivia): Use it.
5255         (auth-source-search): Simplify logic to use
5256         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
5257         appropriate.  Don't keep a running count at this level.  Layer :create
5258         and :delete options appropriately on the first and second passes.
5259         Don't track the backend with the search results.
5260         (auth-source-search-backends): New function to search a list of
5261         backends for a processed spec.
5262         (auth-source-netrc-parse): Cache all netrc files, making
5263         auth-source-netrc-cache an alist keyed by the file name and using the
5264         file mtime as the caching criterion.  Keep the obfuscated data secret
5265         with a lexical bind.
5266         (auth-source-netrc-search): Don't calculate the length of the results
5267         unnecessarily.
5268         (auth-source-search-backends): Fix bug.
5269         (auth-source-netrc-create): Rework prompts.
5270
5271 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
5272
5273         * nnir.el (nnir-imap-search-arguments,nnir-imap-default-search-key):
5274         Lower case names of search constraints.
5275         (nnir-run-query): Cache and reuse search constraints for all imap
5276         servers.
5277
5278 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
5279
5280         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
5281         after exit.
5282         (gnus-setup-message): Define missing variable from last checkin.
5283
5284         * gnus-sum.el (gnus-summary-show-article): When called with t as the
5285         value, show the raw article.
5286
5287 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5288
5289         * gnus.el: No Gnus v0.13 is released.
5290
5291 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5292
5293         * nnimap.el (nnimap-open-connection-1): Revert last change, since
5294         auth-source now accepts numbers.
5295
5296         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
5297         spec, too.
5298         (auth-source-ensure-strings): New function.
5299
5300         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
5301         (gnus-article-setup-buffer): Always restart the date timer so that user
5302         changes to the frequency is respected.
5303
5304         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
5305         port numbers, so make sure it gets that if nnimap-server-port is
5306         explicit.
5307
5308 2011-02-21  Simon Josefsson  <simon@josefsson.org>
5309
5310         * nnimap.el (nnimap-inbox): Doc fix.
5311
5312 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
5313
5314         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
5315         Autoload.  Add optional arg FRAME, and pass it to color-values.
5316         (color-complement): Caller changed.  Doc fix.
5317         (color-gradient): Rewrite for better clarity and efficiency.
5318
5319 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
5320
5321         * shr-color.el (shr-color->hexadecimal): Use renamed function names
5322         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
5323         color-lab-to-srgb.
5324
5325 2011-02-20  Drew Adams  <drew.adams@oracle.com>
5326
5327         * color.el: First part of merge from hexrgb.el.
5328         (color-rgb-to-hex): Rename from color-rgb->hex.
5329         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
5330         saturation to zero if the value is too small.
5331         (color-rgb-to-hsl): Rename from color-rgb->hsl.
5332         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
5333         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
5334         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
5335         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
5336         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
5337         (color-cie-de2000): Doc fix.
5338
5339 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5340
5341         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
5342         given method as in the group name if we're using an extended method.
5343         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
5344         command, if we're using that, instead of waiting for the beginning.
5345
5346         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
5347         we're sure to get unique server names, and we don't output two async
5348         commands in the same buffer.  This fixes an NNTP hang for some users.
5349
5350 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5351
5352         * gnus.el: No Gnus v0.11 is released.
5353
5354 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5355
5356         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
5357         summary buffer before reading going to the next buffer.  This avoids
5358         putting the point in the group buffer if you `C-g' the command.
5359
5360         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
5361         cache (for now) to make ~/.authinfo.gpg files usable.
5362
5363         * nnfolder.el (copyright-update): Define for the compiler.
5364
5365         * auth-source.el (auth-source-search): Fix unbound variable.
5366
5367 2011-02-19  Glenn Morris  <rgm@gnu.org>
5368
5369         * gnus.el (gnus-meta): Doc fix.
5370
5371 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
5372
5373         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
5374         in case it's not yet loaded.
5375
5376 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
5377
5378         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
5379         line we're waiting for.
5380
5381 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
5382
5383         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
5384         face with line-width greater than zero will cause RET in gnus summary
5385         buffer to scroll down article page-wise because auto vscroll happens,
5386         it should be temporally disabled when doing a scroll-up.
5387
5388 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
5389
5390         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
5391         outputs from the server.
5392
5393 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5394
5395         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
5396         later so that bbdb can hook in easier.
5397
5398 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
5399
5400         * auth-source.el (auth-source-search): Don't try to create credentials
5401         if the caller doesn't want that.
5402         (auth-source-search): If we don't find a match, don't bug out on
5403         non-bound variables.
5404         (auth-source-search): Only ask a single backend to create the
5405         credentials.
5406
5407         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
5408         logging.
5409         (nnimap-credentials): Protect against auth-source-search returning nil.
5410         (nnimap-request-list): Protect against not being able to open the
5411         server.
5412
5413 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
5414
5415         * auth-source.el (auth-source-search): Do a two-phase search, one with
5416         no :create to get the responses from all backends.
5417
5418         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
5419         when getting credentials.
5420
5421         * gnus-util.el (gnus-delete-duplicates): New function.
5422
5423 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
5424
5425         * nnimap.el (nnimap-credentials): Instead of picking the first port as
5426         a creation default, pass the whole port list down.  It will be
5427         completed.
5428
5429         * auth-source.el (auth-source-search): Updated docs to talk about
5430         multiple creation choices.
5431         (auth-source-netrc-create): Accept a list as a value (from the search
5432         parameters) and do completion on that list.  Keep a separate netrc line
5433         with the password obscured for showing the user.
5434
5435         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
5436         first choice to `auth-source-search' so it will be used for entry
5437         creation instead of the server's Gnus-specific name.
5438         (nnimap-credentials): Rely on the auth-source library to select which
5439         port is actually wanted in the new netrc entry, so don't override
5440         `auth-source-creation-defaults'.
5441
5442         * auth-source.el (auth-source-netrc-parse): Use :port instead of
5443         :protocol and accept a missing user, host, or port as a wildcard match.
5444         (auth-source-debug): Default to off.
5445
5446         (auth-source-netrc-search, auth-source-netrc-create)
5447         (auth-source-secrets-search, auth-source-secrets-create)
5448         (auth-source-user-or-password, auth-source-backend, auth-sources)
5449         (auth-source-backend-parse-parameters, auth-source-search): Use :port
5450         instead of :protocol.
5451
5452         * nnimap.el (nnimap-credentials): Pass a port default to
5453         `auth-source-search' in case an entry needs to be created.
5454         (nnimap-open-connection-1): Use :port instead of :protocol.
5455
5456 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5457
5458         * auth-source.el: Bind load-path when loading EIEIO from
5459         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
5460         21.4 doesn't support, to `require'.
5461         (auth-source-secrets-search): Use mm-delete-duplicates instead of
5462         delete-dups that is not available in XEmacs 21.4.
5463
5464 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
5465
5466         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
5467         as EIEIO must also be loaded when auth-source.el is being
5468         byte-compiled.
5469
5470 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5471
5472         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
5473
5474         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
5475
5476         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
5477
5478         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
5479
5480         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
5481
5482         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
5483
5484         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
5485
5486         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
5487         necessary.
5488
5489 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
5490
5491         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
5492         nil means that nnimap doesn't get updated.
5493
5494 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5495
5496         * auth-source.el (auth-source-netrc-create): Return a synthetic search
5497         result when the user doesn't want to write to the file.
5498         (auth-source-netrc-search): Expect a synthetic result and proceed
5499         accordingly.
5500         (auth-source-cache-expiry): New variable to override
5501         `password-cache-expiry'.
5502         (auth-source-remember): Use it.
5503
5504         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
5505         parameter.  Create entry if necessary by using :create t.
5506         (nnimap-open-connection-1): Don't pass `inhibit-create'.
5507
5508 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
5509
5510         * auth-source.el (auth-source-debug): Enable by default and don't
5511         mention the obsolete `auth-source-hide-passwords'.
5512         (auth-source-do-warn): New function to debug unconditionally.
5513         (auth-source-do-debug): Use it.
5514         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
5515         and for Secrets API entries when the secrets.el library is not
5516         available.
5517
5518 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5519
5520         * gnus-sum.el (gnus-propagate-marks): Default to nil.
5521         (gnus-summary-exit): Kill the correct article buffer on exit from a
5522         `C-d' group.
5523
5524         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
5525         gnus-propagate-marks.
5526
5527         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
5528         before killing the buffers so that a non-full window conf gets handled
5529         correctly.
5530         (gnus-summary-exit): Ditto.
5531         (gnus-summary-read-group-1): Ditto.
5532
5533         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
5534         async code again so that we can debug it properly.
5535
5536         * message.el (message-reply): Take an optional switch-buffer parameter
5537         so that Gnus window confs are respected better.
5538
5539 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
5540
5541         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
5542         `plist-get' to accept non-list parameters (XEmacs issue).
5543         Fix docstring.
5544         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
5545         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
5546         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
5547         Login collection is "Login" and not "login".
5548
5549 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5550
5551         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
5552         multiple headers.
5553
5554         * nnimap.el (nnimap-inhibit-logging): New variable.
5555         (nnimap-log-command): Don't log login commands.
5556
5557         * auth-source.el (auth-source-netrc-search): The asserts seem to want
5558         to have more parameters.
5559
5560         * nnimap.el (nnimap-send-command): Mark the command time for each
5561         command, so that we don't get NOOPs stepping on our toes.
5562
5563         * gnus-art.el (article-date-ut): Get the date from the Date header on
5564         `t'.
5565
5566 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5567
5568         * auth-source.el (auth-source-search): Use copy-sequence instead of
5569         the cl.el copy-list.
5570
5571 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5572
5573         * imap.el: Bring it back (revert
5574         84d800cd31de3064f0ed39617d725709a2f8f42f).
5575
5576 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
5577
5578         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
5579         Improve prompt.
5580
5581 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
5582
5583         * gnus-art.el (gnus-article-mode-line-format): Remove the article
5584         washing status from the default format.  It isn't very informative.
5585
5586 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
5587
5588         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
5589         Fix Gcc processing on imap.
5590
5591 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5592
5593         * imap.el: Remove file.  All the functionality is in nnimap.el.
5594
5595 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5596
5597         * message.el (message-bury): Don't pop up a new window when selected
5598         window is dedicated.
5599
5600 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5601
5602         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
5603
5604 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
5605
5606         * sieve-manage.el: Autoload `auth-source-search'.
5607         (sieve-sasl-auth): Use it.
5608
5609 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
5610
5611         * nnimap.el: Autoload `auth-source-forget+'.
5612         (nnimap-open-connection-1): Use it if the connection fails.
5613
5614         * auth-source.el: Require `password-cache'.
5615         (auth-source-hide-passwords, auth-source-cache): Remove and mark
5616         obsolete.
5617         (auth-source-magic): Marker for `password-cache' keys.
5618         (auth-source-do-cache): Update docstring.
5619         (auth-source-search): Use and check cache.
5620         (auth-source-forget-all-cached, auth-source-remember)
5621         (auth-source-recall, auth-source-forget, auth-source-forget+)
5622         (auth-source-specmatchp): Caching support functions.
5623         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
5624         Remove and obsolete.
5625         (auth-source-user-or-password): Remove caching to further discourage
5626         using it.  Always hide passwords.
5627
5628         * password-cache.el (password-cache-remove): Accept secrets that are
5629         not strings.
5630
5631 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
5632
5633         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
5634         code for now, since it doesn't work for all users.
5635
5636 2011-02-09  Julien Danjou  <julien@danjou.info>
5637
5638         * message.el (message-options): Make message-options really buffer
5639         local.
5640
5641 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
5642
5643         * mail-source.el: Autoload `auth-source-search'.
5644         (mail-source-keyword-map): Note order matters.
5645         (mail-source-set-1): Get all the mail-source source values and
5646         defaults and search auth-source on those if needed.  This can all
5647         probably be simplified.
5648
5649         * nnimap.el: Autoload `auth-source-search'.
5650         (nnimap-credentials): Use it.
5651         (nnimap-open-connection-1): Ask for the virtual server and physical
5652         address in one shot.
5653
5654         * nntp.el: Autoload `auth-source-search'.
5655         (nntp-send-authinfo): Use it.  Note TODO.
5656
5657 2011-02-08  Julien Danjou  <julien@danjou.info>
5658
5659         * shr.el (shr-tag-body): Add support for text attribute in body
5660         markups.
5661
5662         * message.el (message-options): Make message-options a local variable.
5663
5664 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
5665
5666         * auth-source.el (auth-source-secrets-search)
5667         (auth-source-user-or-password): Use `append' instead of `nconc'.
5668         (auth-source-user-or-password): Build return list better and protect
5669         against nil :secret.
5670
5671 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
5672
5673         * nnimap.el (nnimap-update-info): Refactor slightly.
5674         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
5675         (nnimap-update-info): Clean up slightly.
5676         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
5677         characters.
5678         (nnimap-process-quirk): Rename function to avoid collision.
5679         (nnimap-update-info): Fix macrology bug-out.
5680         (nnimap-update-info): Simplify split history test.
5681
5682 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
5683
5684         * auth-source.el (top): Require 'eieio unconditionally.
5685         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
5686         (auth-source-secrets-search): Limit search when `max' is greater than
5687         number of results.
5688
5689 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
5690
5691         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
5692         part not returning any data.
5693
5694         * proto-stream.el (open-protocol-stream): Document the return value.
5695
5696 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5697
5698         * auth-source.el (auth-source-secrets-search): Add examples.
5699
5700 2011-02-06  Julien Danjou  <julien@danjou.info>
5701
5702         * message.el (message-setup-1): Handle message-generate-headers-first
5703         set to t.
5704
5705 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5706
5707         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
5708         API with a string "secrets:collection-name" and with 'default.
5709         (auth-source-backend-parse): Parse "secrets:collection-name" and
5710         'default.  Recurse on parses instead of repeating code.  Use the
5711         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
5712         message when ignoring a source.
5713         (auth-source-search): List ignored search keys at the top level.
5714         (auth-source-netrc-create): Use `case' instead of `cond'.
5715         (auth-source-secrets-search): Created with TODOs.
5716         (auth-source-secrets-create): Created with TODOs.
5717         (auth-source-retrieve, auth-source-create, auth-source-delete)
5718         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
5719         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
5720         (auth-source-user-or-password-sftp)
5721         (auth-source-user-or-password-smtp): Remove.
5722         (auth-source-user-or-password): Deprecated and modified to be a wrapper
5723         around `auth-source-search'.  Not tested thoroughly.
5724
5725 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
5726
5727         * auth-source.el: Bring in assoc and eioeio libraries.
5728         (secrets-enabled): New variable to track the status of the Secrets API.
5729         (auth-source-backend): New EIOEIO class to represent a backend.
5730         (auth-source-creation-defaults): New variable to set prompt defaults
5731         during token creation (see the `auth-source-search' docstring for
5732         details).
5733         (auth-sources): Simplify to allow a simple string as a netrc backend
5734         spec.
5735         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
5736         (auth-source-backend-parse-parameters): Fill in the backend parameters.
5737         (auth-source-search): Main auth-source API entry point.
5738         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
5739         (auth-source-search-collection): Helper function for searching.
5740         (auth-source-netrc-parse, auth-source-netrc-normalize)
5741         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
5742         Supports search, create, and delete.
5743         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
5744         backend stubs.
5745         (auth-source-user-or-password): Call `auth-source-search' but it's not
5746         ready yet.
5747
5748 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
5749
5750         * message.el (message-setup-1): Remove the read-only stuff, since it
5751         doesn't work under XEmacs, for some reason.
5752
5753         * gnus-sum.el (gnus-user-date): Rename back from
5754         gnus-summary-user-date since user code refers to it.
5755
5756         * shr.el (shr-render-td): Store the actual background color used.
5757
5758         * message.el (message-setup-1): Don't bind the constant
5759         -forbidden-properties.
5760         (message-setup-1): Revert previous change, since it needs to bind the
5761         props to insert them.
5762         (message-resend): Allow removing the read-only separator line.
5763
5764 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5765
5766         * nnimap.el (nnimap-request-accept-article): Give an error message if
5767         the APPEND wasn't successful.
5768
5769 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
5770
5771         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
5772         that have no groups.
5773
5774 2011-02-03  Julien Danjou  <julien@danjou.info>
5775
5776         * gnus-draft.el: Remove progn around gnus-draft-setup.
5777
5778 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5779
5780         * gnus-start.el (gnus-read-active-for-groups): This function is never
5781         called with a nil `infos', so clean that up.
5782         (gnus-get-unread-articles): Request active files from primary/secondary
5783         methods that have no groups (yet).
5784
5785 2011-02-03  Julien Danjou  <julien@danjou.info>
5786
5787         * message.el (message-setup-1): Always generate References first.
5788         (message-mail): Return the return value of message-setup, not always t.
5789         (message-setup-1): Insert mail-header-separator with read-only and
5790         intangible properties set.
5791
5792         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
5793         user-date in docstring.
5794
5795         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
5796
5797         * gnus.el (gnus-summary-line-format): Mention &user-date format in
5798         docstring.
5799
5800         * gnus.el (gnus-user-date-format-alist): Change default value.
5801         Use defcustom, with type and group. Move from gnus-util.el.
5802         Rename to gnus-summary-user-date-format-alist.
5803
5804 2011-02-03  Glenn Morris  <rgm@gnu.org>
5805
5806         * nnimap.el (gnus-fetch-headers): Declare.
5807
5808         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
5809
5810 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5811
5812         * message.el (message-forward-make-body-digest-plain)
5813         (message-followup, message-reply): Clean up things noted by Stefan.
5814
5815         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
5816         gnus-article-update-date-headers is nil.
5817         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
5818         it didn't really work with defcustom.
5819         (article-update-date-lapsed): Make sure the window start doesn't move,
5820         either.
5821
5822 2011-02-01  Julien Danjou  <julien@danjou.info>
5823
5824         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
5825         format.
5826
5827         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
5828         standard in Emacs nowadays.
5829
5830         * color.el (color-gradient): Add a color-gradient function.
5831
5832 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5833
5834         * message.el (message-expand-name): Don't trust the return value of
5835         bbdb-complete-name.
5836         (message-check-news-header-syntax): Remove unused var `start'.
5837         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
5838         (message-inhibit-body-encoding): Move to before first use.
5839         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
5840         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
5841         (Organization, Message-ID, Date, mh-previous-window-config):
5842         Defvar the vars using dynamic scoping.
5843
5844 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
5845
5846         * shr.el (shr-render-td): Only do colors at the final rendering.
5847         Should be slightly faster.
5848         (shr-insert-table): Fix up TD background colors when doing the
5849         vertical padding.
5850
5851         * gnus-art.el (article-date-ut): Protect against articles with no Date
5852         header.
5853         (article-update-date-lapsed): Don't use current-column to find the
5854         horizontal position.  It's fragile in the presence of \003 characters.
5855
5856         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
5857
5858 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5859
5860         * gnus-art.el (article-transform-date): Rewrite to still work when
5861         there are several rfc2822 parts.
5862         (article-transform-date): Fix infinite recursion.
5863         (article-date-ut): Replace infinitely many Date headers with a single
5864         one when called interactively.
5865
5866         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
5867         secure manner.
5868
5869         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
5870         move around by not using save-window-excursion.  It seems to work...
5871
5872 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5873
5874         * gnus-art.el (article-make-date-line): Work for user-defined format.
5875
5876 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5877
5878         * nntp.el (nntp-retrieve-group-data-early)
5879         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
5880         fetching functions.
5881
5882         * gnus-start.el (gnus-read-active-for-groups): Read the active files
5883         thoroughly for all backends that have no known groups.  This should
5884         allow new nnml methods to retrieve mail.
5885
5886         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
5887         that Gnus doesn't know exists again.
5888
5889         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
5890         (gnus-treat-date-ut): Ditto.
5891         (gnus-article-update-date-header): Rename.
5892         (gnus-treat-date-local): Remove.
5893         (gnus-treat-date-english): Remove.
5894         (gnus-treat-date-lapsed): Remove.
5895         (gnus-treat-date-combined-lapsed): Remove.
5896         (gnus-treat-date-original): Remove.
5897         (gnus-treat-date-iso8601): Remove.
5898         (gnus-treat-date-user-defined): Remove.
5899         (gnus-article-date-headers): New variable to control all the date
5900         header options.
5901         (article-date-ut): Rewrite to allow using the new way to format date
5902         headers(s).
5903
5904 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
5905
5906         * nnmail.el (nnmail-article-group): Check for a direct fancy split
5907         method.
5908         (nnmail-article-group): A better test for fanciness.
5909
5910         * nnimap.el (nnimap-request-head): Protect against not finding the
5911         article by Message-ID.
5912
5913 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
5914
5915         * gnus-art.el (article-update-date-lapsed): Try a better way to really
5916         keep point at the "same place".
5917
5918 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5919
5920         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
5921         data if the group is inactive.
5922
5923 2011-01-28  Julien Danjou  <julien@danjou.info>
5924
5925         * gnus-win.el: Remove dead function gnus-window-configuration-element.
5926         (gnus-all-windows-visible-p): Remove old compatibility code.
5927         (gnus-window-top-edge): Add docstring.
5928
5929         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
5930
5931 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5932
5933         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
5934         older request-update-info.
5935
5936         * gnus-art.el (article-make-date-line): Limit the length a bit more.
5937
5938 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
5939
5940         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
5941         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
5942
5943 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5944
5945         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
5946         groups.  This makes the nndraft:queue group pop up if it's not already
5947         there.
5948
5949         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
5950         messages" logic, which was reversed.
5951
5952         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
5953         the "same place" even if point is on the line being replaced.
5954         (article-update-date-lapsed): Allow updating both the combined lapsed
5955         and the lapsed headers.
5956         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
5957         (article-make-date-line): Limit the number of segments dynamically to
5958         avoid too-long lines.
5959
5960 2011-01-27  Julien Danjou  <julien@danjou.info>
5961
5962         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
5963         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
5964
5965 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5966
5967         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
5968         Use plist-get instead of the cl function getf.
5969
5970 2011-01-27  Glenn Morris  <rgm@gnu.org>
5971
5972         * gnus-util.el (float-time): Get rid of compiler warning, again.
5973
5974 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5975
5976         * shr.el (shr-put-color): Special-case background colors: Do put them
5977         at the blank parts at the front of the lines.
5978
5979         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
5980         exit hook to nix out all data on readedness on group exit.
5981
5982         * gnus-util.el (float-time): If float-time is bound, always use it on
5983         all Emacsen.  It's unclear why the subrp check was there.
5984         (time-date): Require to make some autoload issues on XEmacs go away.
5985
5986         * shr.el (shr-put-color): Don't do the box padding in tables, since
5987         they're already padded.
5988
5989 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
5990
5991         * gnus-art.el (gnus-article-next-page): When the last line of the
5992         article is displayed, scroll down once more instead of going to the
5993         next article at once.
5994         (article-lapsed-string): Refactor out and allow specifying how many
5995         segments you want.
5996         (gnus-article-setup-buffer): Start updating the lapsed header directly.
5997         (gnus-article-update-lapsed-header): New variable.
5998
5999         * shr.el: Revert change that made headings use different-sized faces.
6000         The Emacs display engine isn't advanced enough that, for instance,
6001         tables can comfortably use differently-sized faces.
6002
6003 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
6004
6005         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
6006         used.
6007         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
6008         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
6009         we're using an encrypted connection.
6010
6011         * proto-stream.el: Alter the interface functions to also return the
6012         actual stream type used: network or tls.
6013
6014 2011-01-25  Julien Danjou  <julien@danjou.info>
6015
6016         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
6017         (mm-display-javascript-inline): New function.
6018
6019         * mm-decode.el (mm-inline-media-tests): Add application/javascript
6020         viewing function.
6021
6022 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6023
6024         * shr.el (shr-expand-newlines): Fix variable name.
6025
6026 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
6027
6028         * shr.el (shr-expand-newlines): Make nested boxes work.
6029
6030 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6031
6032         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
6033         backgrounds.
6034         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
6035         in a more sensible manner.
6036
6037 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
6038
6039         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
6040         if EPG is loaded.
6041
6042 2011-01-24  Julien Danjou  <julien@danjou.info>
6043
6044         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
6045         tags.
6046
6047 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6048
6049         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
6050         commands.
6051
6052         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
6053         in the article buffer.
6054         (gnus-gravatar-insert): Use blank space from the current buffer to
6055         avoid breaking text properties.  This makes X-Sent updating work again.
6056
6057         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
6058
6059 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
6060
6061         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
6062         fix the bug in url-http.el instead.
6063
6064         * shr.el (shr-image-fetched): Ditto.
6065
6066         * shr.el (shr-image-fetched): Avoid having point move in the article
6067         buffer.
6068
6069         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
6070         buffer after being called.  It's apparently being killed by url.el, and
6071         killing it made point move to end-of-buffer in a random buffer.
6072
6073         * shr.el (shr-image-fetched): Ditto.
6074
6075 2011-01-23  Julien Danjou  <julien@danjou.info>
6076
6077         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
6078
6079         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
6080         text/x-org.
6081
6082 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6083
6084         * gnus-sum.el (gnus-summary-move-article): Protect against backends
6085         (i.e., nnimap) returning nil as the article number.
6086
6087 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6088
6089         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
6090         "DelSp" parameter in RFC3676.
6091
6092 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6093
6094         * message.el (message-check-recipients): Display the encoded version of
6095         the bogus address if they differ.
6096
6097         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
6098         after sending.
6099
6100         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6101
6102         * gnus-group.el (gnus-group-refresh-group): New convenience function.
6103
6104         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
6105         group buffer after sending the queue.
6106
6107         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6108
6109 2011-01-22  Julien Danjou  <julien@danjou.info>
6110
6111         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
6112
6113 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6114
6115         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
6116         nested related parts.
6117
6118         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
6119         unexpired articles.  This fixes the regression that led expiry marks to
6120         disappear from nnfolder groups.
6121
6122 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6123
6124         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
6125         Don't confuse the "ret" of "retrograde" with RET.
6126
6127 2011-01-21  Julien Danjou  <julien@danjou.info>
6128
6129         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
6130         than mm-insert-inline.
6131
6132 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6133
6134         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
6135         Widen article buffer.
6136
6137 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6138
6139         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
6140         the temp buffer.
6141         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
6142
6143 2011-01-20  Julien Danjou  <julien@danjou.info>
6144
6145         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
6146
6147         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
6148         than mm-insert-inline to insert inline part: this respect
6149         mm-inline-media-tests displayers.
6150
6151         * mm-view.el (mm-display-shell-script-inline): New function.
6152
6153         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
6154
6155         * mm-uu.el (mm-uu-type-alist): Add org block.
6156         (mm-uu-org-src-code-block-extract): New function.
6157
6158         * mm-view.el (mm-display-org-inline): New function.
6159
6160         * mm-decode.el (mm-automatic-display): Add text/org.
6161
6162         * mailcap.el (mailcap-mime-extensions): Add .org.
6163
6164 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6165
6166         * gnus-art.el (gnus-article-highlight): Remove argument passed to
6167         gnus-article-add-buttons.
6168
6169 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
6170
6171         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
6172         From header with a date and "nobody" as the sender.
6173
6174 2011-01-19  Julien Danjou  <julien@danjou.info>
6175
6176         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
6177         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
6178         if you have the same regexp several times.
6179         (gnus-button-push): Fix matching when regexp is symbol.
6180
6181 2011-01-15  Glenn Morris  <rgm@gnu.org>
6182
6183         * message.el (message-mail): A compose-mail function should
6184         accept headers as strings.
6185
6186 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
6187
6188         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
6189         Add :vert-only tags.
6190         (message-mail): New arg RETURN-ACTION.
6191         (message-return-action): New var.
6192         (message-bury): Use it.
6193         (message-mode): Make it buffer-local.
6194         (message-send-and-exit): Always call message-bury.
6195
6196         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
6197         message-mail.
6198
6199 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6200
6201         * nnimap.el (nnimap-convert-partial-article): Protect against
6202         zero-length body parts.
6203
6204         * mm-decode.el (mm-preferred-alternative-precedence):
6205         Discourage showing empty parts.
6206
6207         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
6208         and stuff if the backend didn't return the article number.  This fixes
6209         an Exchange-related nnimap bug.
6210
6211         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
6212         group window, because it does the wrong thing when a separate frame
6213         displays the group buffer.
6214
6215         * proto-stream.el (open-protocol-stream): Protect against the low-level
6216         transport functions returning nil.
6217
6218 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
6219
6220         * mml2015.el (epg-sub-key-fingerprint): Autoload.
6221         (mml2015-epg-find-usable-secret-key): New function.
6222         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
6223         mml2015-epg-find-usable-key (Bug#7797).
6224         (mml2015-epg-encrypt): Ditto.
6225
6226 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6227
6228         * dgnushack.el (rot13-string): Fix the way to get the argument.
6229
6230 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6231
6232         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
6233
6234 2011-01-03  Glenn Morris  <rgm@gnu.org>
6235
6236         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
6237
6238         * sieve.el (sieve-open-server): Give a more explicit error if
6239         sieve-manage-open returns nil.  (Bug#7720)
6240
6241 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
6242
6243         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
6244
6245 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6246
6247         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
6248         This avoids sending passwords in plain text over non-encrypted
6249         channels.
6250
6251         * shr.el (shr-rescale-image): Display all GIF images as animated images.
6252
6253         * nnimap.el (nnimap-login): Refactored out into own function, and
6254         implement CRAM-MD5.
6255         (nnimap-wait-for-line): Refactored out.
6256
6257         * mm-view.el (mml-smime): Require.
6258
6259 2010-12-20  David Engster  <deng@eml.cc>
6260
6261         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
6262         use EPG to decrypt S/MIME messages instead of openssl.
6263
6264 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6265
6266         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
6267
6268         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
6269         status is the group clearly is unreachable.
6270
6271         * auth-source.el (auth-source-create): Add the optional second
6272         parameter to `local-variable-p' to be compatible with XEmacs.
6273
6274 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
6275
6276         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
6277         work when using a compressed nnml folder.
6278
6279 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6280
6281         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
6282         backends after sanitising on entry, because this never makes sense:
6283         If the articles have gone missing, then the data no longer exists on
6284         the backend, and if they haven't, then Gnus is wrong, and shouldn't
6285         overwrite anything anyway.
6286
6287         * shr.el (shr-insert-document): Bind shr-width dynamically to
6288         window-width if it's nil.
6289
6290 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
6291
6292         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
6293         with the meaning of using the full emacs window width for rendering.
6294
6295 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
6296
6297         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
6298         case when sender is not given.
6299
6300 2010-12-23  Julien Danjou  <julien@danjou.info>
6301
6302         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
6303         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
6304         the addresses, otherwise we might misplaced the gravatar.
6305
6306 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
6307
6308         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
6309         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
6310         obsolete in Emacs.
6311
6312 2010-12-20  Julien Danjou  <julien@danjou.info>
6313
6314         * gnus-util.el (gnus-rescale-image): Revert last change.
6315
6316 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
6317
6318         * binhex.el: Improve commentary (Bug#7482).
6319
6320 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6321
6322         * gnus-group.el (gnus-group-delete-articles): New command.
6323
6324 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6325
6326         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
6327
6328 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6329
6330         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
6331         here, since it's up to the backends to do CRLF removal if their
6332         protocol has it.
6333
6334         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
6335
6336 2010-12-17  Julien Danjou  <julien@danjou.info>
6337
6338         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
6339         they are from file.  Can also scale up.
6340
6341 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6342
6343         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
6344         Restore gnus-use-agent.
6345         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
6346
6347         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
6348
6349 2010-12-17  Julien Danjou  <julien@danjou.info>
6350
6351         * gravatar.el (gravatar-retrieve-synchronously): New function.
6352         (gravatar-get-data): Make more robust.
6353
6354 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6355
6356         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
6357
6358 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6359
6360         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
6361         to really consider the last line.
6362
6363 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
6364
6365         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
6366         list of recipient keys, or use symmetric encryption if not a list.
6367         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
6368         EPA override, replacing the call to `netrc-store-data'.
6369
6370 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
6371
6372         * gnus-srvr.el: Avoid passing nil regexp argument to
6373         delete-matching-lines.
6374
6375 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6376
6377         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
6378         fetching stops when Gnus exits.
6379
6380         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
6381         function.
6382         (nnfolder-request-expire-articles): Save all the buffers after doing
6383         expiry.
6384
6385         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
6386         the last article", since that led to serious performance regressions
6387         when expiring nnml groups.
6388
6389 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
6390
6391         * nnir.el: Improve customizations.
6392
6393 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6394
6395         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
6396
6397         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
6398         group has been killed.
6399         (gnus-group-yank-group): Ditto.
6400
6401         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
6402
6403         * nnimap.el (nnimap-request-update-group-status): New function.
6404
6405         * gnus-int.el (gnus-request-update-group-status): New interface
6406         function.
6407
6408         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
6409         copying read-ness to the backends.
6410
6411         * nnimap.el (nnimap-quirk): New function.
6412         (nnimap-retrieve-group-data-early): Use it.
6413         (nnimap-quirks): New alist.
6414
6415 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6416
6417         * shr.el (shr-insert): Set shr-start after deleting trailing space;
6418         don't delete it within indentation.
6419
6420 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6421
6422         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
6423         previous line.
6424
6425 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6426
6427         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
6428         QRESYNC command by deleting a superfluous space which broke Cyrus
6429         servers.  This change will break other servers that are buggy the other
6430         way around.
6431
6432 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
6433
6434         * spam.el: Reindent and fix long lines.
6435         (spam-copy-or-move-routine): Exclude invalid move destinations.
6436
6437 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
6438
6439         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
6440         installed the registry.
6441
6442 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6443
6444         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
6445
6446 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6447
6448         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
6449         groupname doesn't contain "gmane".
6450
6451 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6452
6453         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
6454         and netrc-bound-and-true-p bindings.
6455         (netrc-parse): Cache the netrc contents.
6456
6457         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
6458         (gnus-1): Don't create the nndrafts group twice.
6459         (gnus-setup-news): There's no need to read the active file here, since
6460         that's done again later on a per-backend basis.
6461         (gnus-start-draft-setup): Make sure that the new group is started out
6462         empty.
6463
6464         * gnus-agent.el (gnus-agentize): Don't create the queue group
6465         automatically on startup.  It'll be created later, if needed.
6466
6467         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
6468         of automatically subscribed groups.
6469         (gnus-auto-subscribed-categories): New variable.
6470         (gnus-matches-options-n): Use it.
6471         (gnus-default-subscribed-newsgroups): Remove unused variable.
6472         (gnus-start-draft-setup): Message a bit less.
6473
6474 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6475
6476         * nnir.el (nnir-run-imap): Return article list in order of increasing
6477         UID.
6478
6479 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6480
6481         * gnus-sum.el (gnus-summary-enter-digest-group):
6482         Mention gnus-auto-select-on-ephemeral-exit.
6483
6484         * proto-stream.el (proto-stream-open-network-only): Fix the calling
6485         convention of the network-only option.
6486
6487 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6488
6489         * proto-stream.el (proto-stream-open-network-only): New function to
6490         have a way to specify non-STARTTLS upgrade connections.
6491
6492 2010-12-10  Julien Danjou  <julien@danjou.info>
6493
6494         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
6495         email address is nil.
6496
6497         * message.el (message-bogus-recipient-p): Set address to "" if nil.
6498
6499 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
6500
6501         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
6502         deletion.
6503         (nnir-run-imap): Only need to parse list once.
6504
6505 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6506
6507         * shr.el (shr-tag-script): Ignore <script>.
6508         (shr-tag-label): Add <label> support.
6509
6510 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6511
6512         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
6513
6514         * shr.el (shr-image-displayer): Work for images lined side by side.
6515
6516 2010-12-08  Robert Pluim  <rpluim@gmail.com>
6517
6518         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
6519         parameter, since XEmacs doesn't accept t as a parameter.
6520
6521 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
6522
6523         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
6524         ids.
6525         (nnir-run-gmane): Simplify groupspec formatting.
6526         (nnir-request-expire-articles): New function.
6527
6528 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6529
6530         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
6531         overflow, possibly.
6532
6533         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
6534         (shr-render-td): Handle td style="" better.
6535         (shr-tag-table): Use the color from the style sheet.
6536         (shr-render-td): Make sure we copy over all the overlays, too.
6537
6538 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
6539
6540         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
6541         (nnir-request-article): Improve article retrieval.
6542
6543 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6544
6545         * mm-util.el (mm-extra-numeric-entities): New variable.
6546
6547         * mm-url.el (mm-url-decode-entities):
6548         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
6549
6550         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
6551
6552 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6553
6554         * message.el: Use completion-at-point.
6555         (message-completion-function): New fun, extracted from message-tab.
6556         (message-mode): Use it for completion-at-point-functions.
6557         (message-tab): Use it and completion-at-point.
6558
6559 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6560
6561         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
6562         character if a non-breakable character follows.
6563
6564 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6565
6566         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
6567         any stream.
6568
6569         * shr.el (shr-tag-font): Colorize the region.
6570         (shr-tag-body): Ditto.
6571         (shr-tag-font): Actually let the styles be inherited instead of
6572         overwriting them.
6573         (shr-tag-font): Get the background color right.
6574         (shr-tag-style): Ignore all <style> tags for the moment.
6575
6576         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
6577         a Message-ID to avoid having nnimap depend on gnus-sum.
6578
6579         * shr.el (shr-descend): Only colorize something if we have a node that
6580         sets colors.
6581
6582 2010-12-06  Julien Danjou  <julien@danjou.info>
6583
6584         * shr.el (shr-render-td): Render td content with shr-descend, so style
6585         will be applied to <td> too.
6586         (shr-colorize-region): Colorize region even if we only have a background.
6587         (shr-tag-body): Fix color and background color inheritance.
6588         Do not recolorize after shr-generic.
6589         (shr-tag-font): Let shr-generic colorize via inheritance.
6590
6591 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6592
6593         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
6594
6595 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
6596
6597         * nnir.el (nnir-request-move-article): Remove obsolete code.
6598
6599 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6600
6601         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
6602
6603 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6604
6605         * gnus-sum.el (gnus-summary-respool-article): The completion function
6606         expects a list instead of an alist.
6607
6608         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
6609         string as the parameter.
6610
6611         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
6612
6613         * shr.el (shr-stylesheet): New dynamic variable for cascading the
6614         styles.
6615         (shr-colorize-region): New function.
6616         (shr-insert-background-overlay): Remove.
6617         (shr-render-td): Background setting should be taken care of on a higher
6618         level.
6619         (shr-tag-body): Use post-hoc colorizations.
6620         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
6621         (shr-put-color-1): Don't overwrite old colors.
6622         (shr-colorize-region): When the background color isn't explicit, use
6623         a fixed background.
6624
6625         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
6626         nnmail variables.
6627
6628 2010-12-05  Bjørn Mork  <bjorn@mork.no>
6629
6630         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
6631         unless necessary.
6632
6633 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
6634
6635         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
6636         server.
6637
6638 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6639
6640         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
6641         so that TAB works.
6642
6643         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
6644         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
6645
6646         * shr.el (shr-urlify): Show the URL before the title to avoid
6647         misleading URLs.
6648
6649 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
6650
6651         * shr.el (shr-urlify): Display the title in <a> tags.
6652
6653 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
6654
6655         * nnir.el (nnir-categorize): Replace mapcar with mapc.
6656
6657 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
6658
6659         * nnir.el: Rearrange code to allow macros to be autoloaded by
6660         gnus-sum.el.
6661         (nnir-retrieve-headers-override-function): Make this variable
6662         customizable.
6663         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
6664
6665         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
6666         from nnir.el.
6667
6668 2010-12-03  Julien Danjou  <julien@danjou.info>
6669
6670         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
6671
6672 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6673
6674         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
6675         allow optional argument `environment'.
6676
6677 2010-12-03  Glenn Morris  <rgm@gnu.org>
6678
6679         * mm-extern.el (message-goto-body): Update declaration.
6680
6681 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6682
6683         * gnus-util.el (gnus-macroexpand-all): New function.
6684
6685         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
6686         instead of macroexpand-all that is unavailable in XEmacs.
6687
6688 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
6689
6690         * nnir.el (nnir-summary-line-format): New variable.
6691         (nnir-mode): Use it.
6692         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
6693         (nnir-article-ids): Reimplement as defsubst.
6694         (nnir-retrieve-headers): Don't mangle the subject header.
6695         (nnir-run-imap): Use 100 as RSV score.
6696         (nnir-run-find-grep): Fix for full server searching.
6697         (nnir-run-gmane): Better restriction to gmane groups.
6698
6699         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
6700         summary buffers.
6701
6702 2010-12-02  Julien Danjou  <julien@danjou.info>
6703
6704         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
6705
6706         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
6707
6708         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
6709         support.
6710
6711 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
6712
6713         * nnir.el: Update to handle the registry better.
6714         (autoload): Silence byte-compiler.
6715         (nnir-open-server): Add a hook for nnir groups.
6716         (nnir-request-move-article): Don't mangle the header.  Better to use
6717         formatting variables (which will be added in the future).
6718         (nnir-registry-action): Update the registry using the original article
6719         group name.
6720         (nnir-mode): Install nnir-specific hooks for updating the registry.
6721
6722         * gnus-sum.el
6723         (gnus-article-original-subject,gnus-newsgroup-original-name):
6724         Remove obsolete variables.
6725         (gnus-summary-move-article): Remove use of obsolete variables.
6726         (gnus-summary-local-variables): Make move and delete hooks local to
6727         summary buffers.
6728
6729 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6730
6731         * rtree.el: New file.
6732
6733 2010-12-01  Julien Danjou  <julien@danjou.info>
6734
6735         * message.el (message-user-organization): Do not use
6736         gnus-local-organization.
6737
6738         * gnus.el: Remove gnus-local-organization.
6739
6740         * gnus-msg.el: Remove nastygram thing.
6741
6742 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
6743
6744         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
6745         funcall.
6746
6747 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6748
6749         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
6750         names.
6751
6752         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
6753         characters.
6754
6755         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
6756         to t of inhibit-read-only since it is inside gnus-with-article-headers.
6757         Suggested by Štěpán Němec <stepnem@gmail.com>.
6758         (gnus-gravatar-transform-address): Use mail-extract-address-components
6759         that supports non-ASCII names rather than mail-header-parse-addresses.
6760
6761 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6762
6763         * proto-stream.el (open-protocol-stream): All starttls connections are
6764         handled by the network handler.
6765
6766 2010-11-30  Julien Danjou  <julien@danjou.info>
6767
6768         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
6769         (nnimap-open-connection-1): Fix PREAUTH.
6770
6771         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
6772
6773 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6774
6775         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
6776         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
6777         (shr-insert): Use them.
6778         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
6779
6780 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6781
6782         * nnir.el (nnir-request-move-article): Bail out if original group
6783         doesn't support article moves.
6784         (nnir-get-active): Improve active list retrieval.
6785
6786 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6787
6788         * shr.el (shr-find-fill-point): Don't break before apostrophes.
6789
6790 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
6791
6792         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
6793         seem to accept strings-with-numbers as port numbers.
6794
6795 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6796
6797         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
6798         change the registry.
6799
6800 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6801
6802         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
6803         delete-dups that is not available in XEmacs 21.4.
6804
6805         * mm-util.el (mm-delete-duplicates): Add comment.
6806
6807 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
6808
6809         * nnir.el (nnir-ignored-newsgroups): New variable.
6810         (nnir-get-active): Use it.
6811
6812 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6813
6814         * proto-stream.el (proto-stream-open-network): Add some comments.
6815
6816         * nntp.el (nntp-open-connection): Provide a :success condition.
6817
6818         * nnimap.el (nnimap-open-connection-1): Ditto.
6819
6820         * proto-stream.el (proto-stream-open-network): See what the response to
6821         the STARTTLS command is.
6822
6823         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
6824         backwards compatibility).
6825         (nnimap-open-connection-1): Really respect nnimap-server-port.
6826
6827         * proto-stream.el (proto-stream-open-network): When doing opportunistic
6828         TLS upgrades we don't really care about the identity of the peer.
6829         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
6830         that what we've checked for.
6831         (proto-stream-always-use-starttls): Only default to t if
6832         open-gnutls-stream exists.
6833         (proto-stream-open-network): If STARTTLS failed, then just open a
6834         normal connection.
6835         (proto-stream-open-network): Wait until the greeting before doing
6836         STARTTLS.
6837
6838         * nntp.el (nntp-open-connection): Report what the connection error is.
6839
6840         * proto-stream.el (open-protocol-stream): Rename from
6841         open-proto-stream.
6842
6843 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6844
6845         * nnimap.el (nnimap-stream): Change default to `undecided'.
6846         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
6847         first, and then network.
6848         (nnimap-open-connection-1): Respect nnimap-server-port.
6849         (nnimap-open-connection): Be more backwards-compatible.
6850
6851         * proto-stream.el (proto-stream-always-use-starttls): New variable.
6852         (proto-stream-open-starttls): De-duplicate the starttls code.
6853         (proto-stream-open-starttls): Folded back into the main function.
6854         (proto-stream-open-network): Fix typo in the gnutls path.
6855         (proto-stream-command): Refactor out.
6856
6857         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
6858
6859         * proto-stream.el (proto-stream-open-starttls): Actually implement the
6860         starttls.el STARTTLS.
6861
6862         * color.el (color-lab->srgb): Fix function call name.
6863
6864         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
6865         if we're using tls.el.
6866         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
6867         built in, then don't try to establish a STARTTLS connection.
6868
6869         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
6870         servers.
6871
6872         * proto-stream.el (open-proto-stream): Use network, not stream.
6873         (open-proto-stream): Add a way to specify what the end of a command is.
6874
6875         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
6876         connections types.
6877         (nntp-open-network-stream): Remove.
6878         (nntp-open-ssl-stream): Remove.
6879         (nntp-open-tls-stream): Remove.
6880         (nntp-ssl-program): Remove.
6881
6882         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
6883
6884 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
6885
6886         * nnir.el: Fix typos.
6887         (nnir-retrieve-headers-override-function): Rename variable to reflect
6888         new semantics.
6889         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
6890         macros.
6891         (nnir-request-article, nnir-request-move-article): Use them.
6892         (nnir-categorize): New function.
6893         (nnir-run-query): Use it.
6894         (nnir-retrieve-headers): Rewrite to batch header retrieval.
6895         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
6896         sorted.
6897         (nnir-group-full-name): Use gnus-group-full-name instead.
6898         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
6899         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
6900
6901 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6902
6903         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
6904
6905         * proto-stream.el: New library to provide protocol-specific
6906         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
6907         protocols.
6908         (open-proto-stream): Complete the documentation.
6909         (proto-stream-open-network): Fix some typos.
6910
6911         * nnimap.el (nnimap-open-connection): Use it.
6912
6913 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
6914
6915         * pop3.el (pop3-open-server): Read server greeting before starting TLS
6916         negotiation.
6917
6918 2010-11-26  Julien Danjou  <julien@danjou.info>
6919
6920         * color.el: Rename various rgb functions to srgb.
6921
6922 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6923
6924         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
6925         names.
6926
6927 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6928
6929         * shr.el (shr-insert): Revert last change.
6930         (shr-find-fill-point): Never leave point being at bol;
6931         relax the kinsoku limitation when rendering tables.
6932
6933 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6934
6935         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
6936         results from -accept-article.
6937
6938         * shr-color.el: Require cl when compiling.
6939
6940         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
6941         checkin.
6942
6943         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
6944
6945         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
6946
6947         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
6948         'add and 'delete to set backend marks.
6949
6950         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
6951
6952         * nnheader.el (nnheader-update-marks-actions): Refactor out.
6953
6954         * nntp.el (nntp-request-set-mark): Use it.
6955
6956         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6957
6958         * nnml.el (nnml-request-set-mark): Ditto.
6959
6960         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
6961         introduces regressions in article selection.
6962         (nnimap-find-uid-response): New function.
6963         (nnimap-request-accept-article): Use the UID returned, if any.
6964         (nnimap-request-move-article): Use the UID returned, if any.
6965         (nnimap-get-groups): Reimplement to work with folded lines.
6966         (nnimap-find-uid-response): The UID is the last element in the list.
6967         (nnimap-request-set-mark): Extend syntax with 'set.
6968
6969         * nnml.el (nnml-request-set-mark): Ditto.
6970
6971         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6972
6973         * nntp.el (nntp-request-set-mark): Ditto.
6974
6975 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6976
6977         * message.el (message-called-interactively-p): A temporary macro.
6978         (message-goto-body): Use it temporarily.
6979
6980 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6981
6982         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
6983         (nnimap-last-response-string): Unfold quoted lines, if they exist.
6984         (nnimap-last-response-string): Fix last unfolding fix.
6985
6986 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6987
6988         * shr.el (shr-insert): Fix the way to fold lines.
6989
6990 2010-11-25  Julien Danjou  <julien@danjou.info>
6991
6992         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
6993
6994         * color.el: Rename from color-lab.el
6995         (color-rgb->hex): Add.
6996         (color-complement): Add.
6997         (color-complement-hex): Add.
6998
6999         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
7000
7001 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7002
7003         * shr-color.el (shr-color-visible): Don't bug out if the color names
7004         don't exist.
7005
7006 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7007
7008         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
7009         assuming that article displaying or another mml-preview may be
7010         interrupted for an error or for the like.
7011
7012         * shr.el (shr-get-background): Fix argument name.
7013
7014 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7015
7016         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
7017
7018         * gnus-sum.el (gnus-summary-include-articles): New function.
7019
7020         * message.el (message-goto-body): called-interactively-p needs a
7021         parameter, so use `any'.
7022
7023         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
7024         clear marks before moving, since they're synced from the Gnus side
7025         first.
7026
7027         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
7028         (gnus-summary-move-article): Copy over all marks before moving, so that
7029         IMAP doesn't think a new article has arrived.
7030
7031 2010-11-24  Julien Danjou  <julien@danjou.info>
7032
7033         * shr.el (shr-insert-background-overlay): Fix typo.
7034         (shr-render-td): Copy the background before rendering.
7035
7036         * shr-color.el (shr-color-visible): Fix docstring.
7037
7038         * shr.el (shr-tag-table): Add bgcolor support.
7039         (shr-render-td): Add bgcolor support.
7040         (shr-get-background): Add.
7041         (shr-insert-foreground-overlay): Use shr-get-background.
7042
7043         * message.el (message-goto-body): Use called-interactively-p.
7044         (message-in-body-p): message-goto-body returns point.
7045
7046 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7047
7048         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
7049         Fixes something or other in Emacs 23, and is backwards compatible.
7050
7051         * message.el (message-goto-body): Remove the <#secure special-casing,
7052         which is too special.
7053
7054         * shr.el (shr-parse-style): Drop !important from styles.
7055
7056 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
7057
7058         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
7059         this function to return incorrect results when calling it with an
7060         explicit article argument different from
7061         (gnus-summary-article-number).
7062
7063 2010-11-24  Julien Danjou  <julien@danjou.info>
7064
7065         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
7066         (shr-tag-body): Add background support.
7067         (shr-descend): Add background support.
7068         (shr-tag-title): Add.
7069
7070         * shr-color.el (shr-color-visible): Really return original background
7071         if fixed.
7072
7073 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7074
7075         * shr.el (shr-color-check): Protect against non-existent color names.
7076
7077 2010-11-24  Julien Danjou  <julien@danjou.info>
7078
7079         * color-lab.el: Require 'cl when compiling.
7080
7081         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
7082
7083         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
7084         matched part.
7085
7086         * color-lab.el: Fix all expt calls to use float type.
7087
7088 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7089
7090         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
7091         expression to shr-color-check as is.
7092
7093         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
7094
7095         * color-lab.el: Add coding cookie.
7096         (float-pi): Use eval-and-compile.
7097
7098         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
7099         compiled for Emacsen having no `libxml-parse-html-region' support.
7100
7101 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7102
7103         * shr.el (shr-insert-color-overlay): Split stuff like
7104         "#444444 !important" to find the real color.
7105         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
7106         parse <font color="red"> entries.
7107
7108 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
7109
7110         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
7111         point when parsing headers.
7112
7113         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
7114         is positioned properly when parsing headers.
7115
7116 2010-11-23  Julien Danjou  <julien@danjou.info>
7117
7118         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
7119
7120         * shr-color.el (shr-color->hexadecimal): Add support for color names.
7121
7122         * shr.el (shr-parse-style): Replace \n with space in style parsing.
7123
7124         * shr-color.el (shr-color-hsl-to-rgb-fractions):
7125         Use shr-color-hue-to-rgb.
7126         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
7127
7128 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7129
7130         * shr.el (shr-color->hexadecimal): Autoload.
7131         (shr-descend): Add color to all tags.
7132
7133 2010-11-22  Julien Danjou  <julien@danjou.info>
7134
7135         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
7136         shr-color->hexadecimal.
7137
7138         * shr-color.el (shr-color->hexadecimal): Add converting functions for
7139         RGB() or HSL() color representation.
7140
7141         * shr.el (shr-tag-font): Add.
7142         (shr-tag-color-check): New function to get better colors.
7143         (shr-tag-insert-color-overlay): Factorize code between tag-font and
7144         tag-span.
7145
7146         * shr-color.el: New file.
7147
7148         * color-lab.el: New file.
7149
7150         * gnus-art.el (gnus-url-mailto): Do not downcase args.
7151
7152 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
7153
7154         * nnir.el: Fix typo in comments.
7155         (nnir-run-imap): Simplify code.  No need to reverse artlist.
7156         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
7157
7158 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7159
7160         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
7161
7162         * nnimap.el (nnimap-get-capabilities): Refactor out.
7163         (nnimap-open-connection): Re-request capabilities after STARTTLS.
7164
7165 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
7166
7167         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
7168         appearing when `mm-uu-hide-markers' is nil.
7169
7170 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7171
7172         * nnimap.el (nnimap-unselect-group): Make into its own function.
7173         (nnimap-request-rename-group): Unselect group before renaming.
7174         This had gotten lost somewhere.
7175         (nnimap-request-accept-article): Keep track of examined groups, and
7176         unselect the group before APPENDing to read-only groups.
7177         (nnimap-request-move-article): Clear flags before moving so that they
7178         can be re-set later.
7179
7180 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7181
7182         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
7183         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
7184
7185 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7186
7187         * gnus-art.el (gnus-mime-display-single):
7188         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
7189         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
7190         parameter.
7191
7192 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7193
7194         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
7195         (shr-table-vertical-line): New variable.
7196         (shr-insert-table): Use it.
7197
7198 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7199
7200         * gnus-html.el (gnus-html-wash-images): Don't display images if
7201         gnus-inhibit-images is non-nil; register displayer for cid images.
7202         (gnus-html-display-image): Work for cid image.
7203         (gnus-html-insert-image): Allow arguments.
7204         (gnus-html-put-image): Inhibit read-only.
7205         (gnus-html-prefetch-images): Don't prefetch images if
7206         gnus-inhibit-images is non-nil.
7207
7208 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7209
7210         * shr.el (shr-put-image): Break lines when inserting big pictures.
7211
7212 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7213
7214         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
7215         sender, thanks Katsumi Yamaoka.
7216
7217 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
7218
7219         * nnir.el (nnir-run-imap): Reverse the article list for each group
7220         rather than the whole list.
7221
7222 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7223
7224         * shr.el (shr-image-displayer): Protect function against non-existent
7225         image source.
7226
7227         * gnus-art.el (gnus-inhibit-images): New user option.
7228         (gnus-mime-display-single): Don't display image if it is non-nil.
7229
7230         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
7231         gnus-inhibit-images.
7232
7233         * shr.el (shr-image-displayer): New function.
7234         (shr-tag-img): Use it.
7235
7236 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7237
7238         * mml2015.el (mml2015-epg-sign): Use From header.
7239
7240 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7241
7242         * gnus-html.el (gnus-html-wash-images): Register a displayer.
7243
7244         * gnus-util.el (gnus-find-text-property-region): Return markers.
7245
7246         * shr.el (shr-tag-img): Put a displayer in the text property.
7247
7248         * gnus-util.el (gnus-find-text-property-region): New utility function.
7249
7250         * gnus-html.el (gnus-html-display-image): Make the alt optional.
7251         (gnus-html-show-images): Remove.
7252
7253         * gnus-art.el (gnus-article-show-images): New, more general function.
7254
7255         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
7256         image url text properties.
7257
7258         * shr.el: Ditto.
7259
7260         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
7261         gnus-agent-auto-agentize-methods is set.  Which it isn't.
7262
7263 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7264
7265         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
7266         work for two or more articles.
7267
7268 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7269
7270         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
7271         divide an image that's in an html article to two or more when washing
7272         non-ASCII characters in alt text of it.
7273
7274 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7275
7276         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
7277         smime-decrypt-region using function argument.
7278         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
7279
7280         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
7281
7282         * smime.el (smime-decrypt-region): Catch it.
7283
7284 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7285
7286         * smime.el (smime-mode-map): Move initialization into declaration.
7287         (gnus-run-mode-hooks): Don't autoload.
7288         (smime-mode): Use define-derived-mode.
7289
7290 2010-11-11  Glenn Morris  <rgm@gnu.org>
7291
7292         * smime.el (from): Restrict declaration to XEmacs.
7293
7294         * nnir.el (gnus-group-topic-name): Autoload.
7295
7296 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7297
7298         * shr.el (shr-insert): Don't break long line if it is because of
7299         kinsoku-bol characters in the line end.
7300
7301 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
7302
7303         * nnir.el (nnir-request-move-article): Fix to provide original group
7304         and subject.
7305         (nnir-warp-to-article): Don't fail on articles whose headers haven't
7306         been retrieved.
7307
7308         * gnus-sum.el (gnus-summary-move-article): Use original group and
7309         subject for virtual articles such as those in an nnir summary buffer.
7310
7311 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7312
7313         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
7314         least 21.5).
7315
7316         * smime.el (from): Declare it again for XEmacs.
7317
7318 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7319
7320         * message.el (message-resend): Don't disable encoding unless it's
7321         already encoded.
7322
7323         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
7324         low-numbered articles.
7325
7326 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7327
7328         * rfc2047.el (rfc2047-syntax-table): Simplify.
7329
7330         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
7331
7332         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
7333         set-char-table-range for XEmacs.
7334
7335 2010-11-10  Glenn Morris  <rgm@gnu.org>
7336
7337         * time-date.el (time-to-seconds): Always an alias on Emacs,
7338         never a real function.
7339         (with-no-warnings): Remove compat stub, now unused.
7340         (time-less-p): Doc fix.
7341         (time-to-number-of-days): Simplify.
7342
7343         * smime.el (from): Remove unused declaration.
7344
7345         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
7346         (gnus-float-time): On Emacs, always an alias.
7347
7348         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
7349         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
7350
7351 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7352
7353         * dgnushack.el: Don't use ignore-errors in the top level form since it
7354         is unavailable in XEmacs even if cl is loaded.
7355
7356         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
7357
7358 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7359
7360         * shr.el (browse-url-mailto): Autoload.
7361
7362         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
7363
7364         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
7365         regexp doesn't need quoting.
7366
7367 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
7368
7369         * message.el (message-subject-trailing-was-ask-regexp)
7370         (message-subject-trailing-was-regexp): Match was: in addition to was.
7371
7372 2010-11-09  Glenn Morris  <rgm@gnu.org>
7373
7374         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
7375         (nnbabyl-check-mbox): Use point-at-bol.
7376
7377 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7378
7379         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
7380
7381         * message.el (message-mailto): New function.
7382         (message-mailto): Should accept other parameters.
7383         (message-mailto): Remove since it duplicates browse-url-mailto
7384         functionality.
7385
7386 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7387
7388         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
7389         methods.
7390         (gnus-read-active-file): Ditto.
7391
7392         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
7393         ": " from the prompt.
7394         (gnus-group-make-group): Ditto.
7395
7396 2010-11-07  Glenn Morris  <rgm@gnu.org>
7397
7398         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
7399         (gnus-bookmark-kill-line): Use point-at-eol.
7400
7401 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7402
7403         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
7404         asterisks in From header.
7405
7406 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7407
7408         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
7409         string to avoid making the From headers syntactically invalid.
7410
7411         * message.el (message-send-mail): Don't insert courtesy messages if the
7412         message already has List-Post and List-ID messages.
7413
7414 2010-11-06  Glenn Morris  <rgm@gnu.org>
7415
7416         * gnus-art.el (gnus-treat-article): Give dynamic local variables
7417         `condition', `type', `length' a prefix.
7418         (gnus-treat-predicate): Update for above name changes.
7419
7420 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
7421
7422         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
7423         binding.  Handled by `gnus-summary-refer-thread' instead.
7424         (nnir-warp-to-article): New backend function.
7425
7426         * nnimap.el (nnimap-request-thread): Force dependency updating.
7427
7428         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
7429         (gnus-summary-refer-thread): Rework to improve thread-referral.
7430
7431         * gnus-int.el (gnus-warp-to-article): New function.
7432
7433         * gnus-sum.el (gnus-summary-article-map): Bind it.
7434
7435 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
7436
7437         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
7438         gnus-summary-refer-thread.
7439
7440         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
7441         headers.
7442         (gnus-summary-limit-include-thread): Prevent articles in thread from
7443         being cut in gnus-cut-threads.
7444         (gnus-summary-refer-thread): Limit retrieved headers to those in
7445         thread.
7446
7447 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7448
7449         * message.el (message-send-mail): Use the value of
7450         message-courtesy-message from the message buffer.
7451
7452         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
7453
7454         * shr.el (shr-browse-url): Implement mailto: URLs.
7455
7456         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
7457         "raw".
7458
7459         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
7460         if it's already selected.
7461
7462         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
7463
7464 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7465
7466         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
7467         to measure the length and truncate alt text.
7468
7469 2010-11-03  Glenn Morris  <rgm@gnu.org>
7470
7471         * nndiary.el (nndiary-generate-nov-databases-1)
7472         (nndiary-generate-active-info): Rename dynamic variable `files' to
7473         something less generic.
7474
7475 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
7476
7477         * nnir.el (nnir-request-move-article): Call the underlying backend to
7478         move articles from nnir.
7479
7480 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7481
7482         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
7483
7484 2010-11-02  Julien Danjou  <julien@danjou.info>
7485
7486         * nnir.el: Remove wais support.
7487
7488 2010-11-02  Glenn Morris  <rgm@gnu.org>
7489
7490         * gnus-html.el: Reorder requirements to quieten compiler.
7491
7492 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7493
7494         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
7495         properly for XEmacs as well.
7496         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
7497         (gnus-article-natural-long-line-p): Use window-width rather than
7498         frame-width.
7499
7500 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
7501
7502         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
7503         (nnir-read-parms): Don't modify query.
7504         (nnir-run-query): Add ability to search topic on current line.
7505         (nnir-get-active): Clean up.
7506
7507 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7508
7509         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
7510         degenerate articles.
7511
7512         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
7513         (gnus-print-buffer): Just print the buffer as is, without any copying
7514         to a buffer and then re-highlighting.
7515
7516         * nnimap.el (nnimap-request-group): Store the new updated info.
7517         (nnimap-request-group): Select the group when we don't know whether it
7518         exists or not.
7519
7520         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
7521         groups.
7522
7523         * gnus-group.el (gnus-group-find-new-groups): Display all the new
7524         groups.
7525
7526         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
7527         groups.
7528
7529         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
7530         long-lines case by only filling the long lines.
7531
7532         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
7533         (bug #7311).
7534
7535 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7536
7537         * shr.el: No need to declare `declare-function' since shr.el is for
7538         only Emacsen that provide `libxml-parse-html-region'.
7539
7540         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
7541         effective only in a file it is referred to.
7542
7543 2010-11-01  Glenn Morris  <rgm@gnu.org>
7544
7545         * mm-util.el (gnus-completing-read): Autoload.
7546         (mm-read-coding-system): Simplify Emacs definition.
7547
7548         * nnmail.el (gnus-activate-group):
7549         * nnimap.el (gnutls-negotiate):
7550         * nntp.el (netrc-parse): Fix declarations.
7551
7552 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7553
7554         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
7555         string-match-p in Emacs >=23.
7556
7557         * gnus-msg.el (gnus-configure-posting-styles):
7558         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
7559
7560 2010-11-01  Glenn Morris  <rgm@gnu.org>
7561
7562         * nnir.el (declare-function): Add compat stub.
7563         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
7564         (nnir-run-gmane): Require 'mm-url.
7565
7566         * mm-util.el (mm-string-to-multibyte): Simplify.
7567
7568         * shr.el (declare-function): Add compat stub.
7569         (url-cache-create-filename): Declare.
7570         (mm-disable-multibyte, widget-convert-button): Autoload.
7571
7572         * smime.el (ldap-search): Declare.
7573         (smime-cert-by-ldap-1): Require ldap on Emacs.
7574
7575         * nnimap.el: Require nnmail, and gnus-sum when compiling.
7576         (nnimap-keepalive): Use gnus-float-time.
7577
7578         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
7579         (mail-source-delete-crash-box): Use gnus-float-time.
7580
7581         * gnus-dired.el (gnus-completing-read): Autoload.
7582
7583         * mm-view.el (gnus-rescale-image): Autoload.
7584
7585         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
7586
7587         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
7588
7589         * sieve-manage.el: Require 'cl when compiling.
7590
7591         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
7592         (gnus-iswitchb-completing-read): Require iswitchb.
7593         (gnus-select-frame-set-input-focus): Silence compiler.
7594
7595 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7596
7597         * message.el (message-subject-trailing-was-query): Change default to t,
7598         since I think that's what most people want.
7599
7600         * nnimap.el (nnimap-request-accept-article): Erase buffer before
7601         appending for easier debugging.
7602         (nnimap-wait-for-connection): Take a regexp.
7603         (nnimap-request-accept-article): Wait for the continuation line before
7604         sending anything unless we're streaming.
7605
7606         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
7607         leave the header washing to take place.
7608
7609 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7610
7611         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
7612         regular expression match and replace in posting styles.
7613
7614 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
7615
7616         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
7617         an entire server.
7618         (nnir-get-active): New function.
7619         (nnir-run-imap): Use it.
7620         (nnir-run-gmane): Who knew, gmane search returns an article score!
7621
7622         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
7623         server on the current line with nnir.
7624
7625 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7626
7627         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
7628         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
7629         left edge.
7630         (gnus-article-foldable-buffer): Skip past the prefix when determining
7631         raggedness.
7632
7633         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
7634         the raw article, and change `C-u g' to show the article without doing
7635         treatments.
7636
7637         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
7638         on to `gnus-treat-article'.
7639         (gnus-inhibit-article-treatments): New variable.
7640
7641         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
7642
7643         * gnus-art.el (gnus-treatment-function-alist): Have
7644         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
7645         (gnus-treat-fill-long-lines): Change default to fill all text/plain
7646         sections.
7647
7648         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
7649         parameter.
7650         (gnus-article-fill-cited-long-lines): New function.
7651         (gnus-article-fill-cited-article): Allow filling only long sections.
7652
7653         * shr.el (shr-find-fill-point): Don't break lines between punctuation
7654         and non-punctuation (like after the apostrophe in "'We").
7655
7656         * gnus-sum.el (gnus-summary-select-article): Make sure
7657         gnus-original-article-buffer is alive.
7658
7659         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
7660         reflect the order they're in in the digest.
7661
7662         * gnus.el (gnus-group-startup-message): Move point to the start of the
7663         buffer.
7664
7665         * nnimap.el (nnimap-capability): New function.
7666         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
7667         is set.
7668
7669 2010-10-31  David Engster  <dengste@eml.cc>
7670
7671         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
7672         conform with changes to gnus-completing-read.
7673
7674 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7675
7676         * shr.el (shr-tag-img): Output "*" instead of "[img]".
7677
7678 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7679
7680         * nnir.el: Move defvar, defcustom around to keep file organized
7681         and keep byte-compiler quiet.
7682         (nnir-read-parms): Accept search-engine as arg.
7683         (nnir-run-query): Pass search-engine as arg.
7684         (nnir-search-engine): Remove.
7685
7686 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7687
7688         * shr.el (shr-generic): The text nodes should be text, not :text.
7689
7690         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
7691         later in the file.
7692
7693 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7694
7695         * nnir.el: General clean up.  Allow searching with multiple engines.
7696         Allow separate extra-parameters for each engine.
7697         Batch queries when possible.
7698         (nnir-imap-default-search-key,nnir-method-default-engines):
7699         Add customize interface.
7700         (nnir-run-gmane): New engine.
7701         (nnir-engines): Use it.  Qualify all prompts with engine name.
7702         (nnir-search-engine): Remove global variable.
7703         (nnir-run-hyrex): Restore for now.
7704         (nnir-extra-parms,nnir-search-history): New variables.
7705         (gnus-group-make-nnir-group): Use them.
7706         (nnir-group-server): Remove in favor of gnus-group-server.
7707         (nnir-request-group): Avoid searching twice.
7708         (nnir-sort-groups-by-server): New function.
7709
7710 2010-10-30  Julien Danjou  <julien@danjou.info>
7711
7712         * gnus-group.el: Remove gnus-group-fetch-control.
7713
7714         * gnus-start.el (gnus-find-new-newsgroups):
7715         Remove gnus-check-first-time-used.
7716
7717         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
7718
7719 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7720
7721         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
7722         set on groups that don't have \* permanentflags.
7723
7724 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7725
7726         * shr.el (shr-tag-span): Drop colorization of regions since we don't
7727         control the background color.
7728         (shr-tag-img): Ignore very small web bug type images.
7729         (shr-put-image): Add help-echo alt texts to the images.
7730         (shr-tag-video): Show the video poster image.
7731
7732 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7733
7734         * shr.el (shr-table-depth): New variable.
7735         (shr-tag-table-1): Only insert the images after the top-level table.
7736
7737         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
7738
7739         * gnus-util.el (gnus-list-memq-of-list): New function.
7740
7741         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
7742         selected.
7743         (nnimap-unsplittable-articles): New slot.
7744         (nnimap-new-articles): Use it.
7745
7746 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
7747
7748         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
7749         move to the previous line on `M-g'.
7750
7751 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7752
7753         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
7754         *-request-group, which seems unnecessary.
7755
7756         * nnimap.el (nnimap-quote-specials): Function copied over from
7757         imap.el.
7758         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
7759         they support that.  Suggested by Tom Regner.
7760
7761 2010-10-29  Julien Danjou  <julien@danjou.info>
7762
7763         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
7764         defalias.
7765         (gnus-summary-delete-marked-with): Remove obsolete defalias.
7766
7767         * gnus.el: Remove `gnus-nntp-service' variable.
7768         (gnus-secondary-servers): Make obsolete.
7769         (gnus-nntp-server): Make obsolete.
7770
7771         * gnus-start.el (gnus-1): Remove x-splash calls.
7772
7773         * gnus-ems.el (gnus-x-splash): Remove.
7774
7775         * gnus.el (gnus-group-startup-message): Simplify/update code.
7776
7777         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
7778         definition.
7779
7780         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
7781         capability before doing anything.
7782         (gnus-group-insert-group-line): Remove useless
7783         gnus-group-remove-excess-properties.
7784
7785 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7786
7787         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
7788
7789 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7790
7791         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
7792         config after reselecting.
7793
7794 2010-10-28  Julien Danjou  <julien@danjou.info>
7795
7796         * shr.el (shr-put-image): Use point even if only inserting text.
7797         (shr-put-image): Save excursion when inserting alt text on non-graphic
7798         display, so the behavior is the same when we are on a graphic display.
7799
7800         * nnir.el (nnir-run-swish-e): Remove hyrex support.
7801
7802 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7803
7804         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
7805         (gnus-mime-copy-part): Check coding system, not charset.
7806         (gnus-mime-view-part-externally): Never remove part.
7807         (gnus-mime-view-part-internally): Don't remove part here.
7808         (gnus-article-part-wrapper): Make sure MIME tag is visible.
7809         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
7810         multipart/alternative.
7811
7812         * mm-decode.el (mm-display-part): Take optional arg `force'.
7813
7814 2010-10-26  Julien Danjou  <julien@danjou.info>
7815
7816         * gnus-group.el (gnus-group-default-list-level): Add this function to
7817         compute the default list level.
7818         (gnus-group-default-list-level): Add possibility to use a function.
7819
7820 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7821
7822         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
7823
7824         * gnus-group.el (gnus-group-completing-read)
7825         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
7826         gnus-replace-in-string.
7827
7828 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7829
7830         * shr.el (shr-tag-div): Add.
7831
7832         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
7833
7834 2010-10-25  Julien Danjou  <julien@danjou.info>
7835
7836         * gnus-util.el: Remove `gnus-with-local-quit'.
7837
7838         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
7839
7840 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7841
7842         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
7843         the original article buffer.
7844
7845 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7846
7847         * nnimap.el (nnimap-request-head): New function.
7848         (nnimap-request-move-article): Try to be slightly faster by not
7849         requesting the entire message when moving.
7850         (nnimap-transform-headers): Don't bug out on bodiless articles.
7851         (nnimap-send-command): Have no outstanding messages if the IMAP server
7852         doesn't support streaming.
7853         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
7854
7855 2010-10-24  Julien Danjou  <julien@danjou.info>
7856
7857         * message.el (message-default-headers): Fix type.
7858
7859 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7860
7861         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
7862         prefetching images.
7863
7864         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
7865         backend for unknown groups.  This is mainly useful for nnimap groups.
7866
7867         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
7868         group isn't covered by the agent.
7869
7870 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
7871
7872         * nnir.el (nnir-method-default-engines): New variable.
7873         (nnir-run-query): Use it.
7874         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
7875         (gnus-summary-nnir-goto-thread): Change group if needed.
7876
7877         * gnus-group.el (gnus-group-group-map): Add key binding for
7878         gnus-group-make-nnir-group.
7879
7880 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7881
7882         * shr.el (shr-tag-object): Add.
7883
7884         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
7885         original article buffer live.
7886         (gnus-summary-select-article-buffer):
7887         Mention gnus-widen-article-buffer.
7888
7889 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7890
7891         * shr.el (shr-tag-strong): Add.
7892
7893 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7894
7895         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
7896         group names.  They mess up the group buffer badly.
7897
7898         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
7899
7900         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
7901         instead of the summary one.
7902
7903 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7904
7905         * mml.el (mml-preview): Work properly when editing article.
7906
7907         * gnus-start.el (gnus-read-active-file-1): Don't add method to
7908         gnus-have-read-active-file if it's already been in.
7909
7910 2010-10-22  Tom Tromey  <tromey@redhat.com>
7911
7912         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
7913         gnus-group-completing-read.
7914
7915 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7916
7917         * message.el (message-mode-map): Don't bind M-; to comment region, to
7918         allow the global comment-dwim to work.
7919
7920 2010-10-21  Julien Danjou  <julien@danjou.info>
7921
7922         * message.el (message-setup-1): Allow message-default-headers to be a
7923         function.
7924
7925 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7926
7927         * shr.el (shr-tag-table): Simplify.
7928
7929 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7930
7931         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
7932         to avoid trying to snarf invalid stuff.
7933
7934         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
7935
7936         * gnus.el (gnus-message-archive-group): Quote value.
7937         (gnus-message-archive-group): Mark as changed.
7938
7939         * shr.el (shr-add-font): Don't put the font properties on the newline
7940         or the indentation.
7941
7942         * message.el (message-fix-before-sending): Change options when sending
7943         non-printable characters.
7944
7945         * gnus.el (gnus-message-archive-method): Change the default to
7946         monthly outgoing groups.
7947
7948         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
7949         that have gotten new numbers.
7950
7951         * nnimap.el (nnimap-request-replace-article): New function.
7952
7953 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7954
7955         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
7956         (nnrss-request-article): Don't use special html washing code.
7957
7958 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7959
7960         * shr.el (shr-tag-table): Remove useless nconc.
7961
7962 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7963
7964         * gnus-art.el (article-wash-html): Simplify and remove the charset
7965         stuff.  Use the normal html rendering code instead of the special html
7966         washing code.
7967
7968         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
7969         `gnus-w3m' symbols.
7970         (mm-text-html-washer-alist): Remove.
7971
7972         * mm-decode.el (mm-inline-text-html-renderer): Remove.
7973         (mm-inline-media-tests): Remove use.
7974         (mm-text-html-renderer): Change default to the `shr' symbol.
7975
7976         * mm-view.el (mm-inline-text-html): Remove use.
7977
7978         * gnus-art.el (gnus-blocked-images): New function.  Allow the
7979         `gnus-blocked-images' to be a function.
7980         (gnus-article-wash-function): Remove.
7981
7982 2010-10-20  Julien Danjou  <julien@danjou.info>
7983
7984         * spam.el (spam-list-of-processors): Mark as obsolete.
7985
7986         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
7987         (nnimap-insert-partial-structure): Fix boundary detection.
7988
7989 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
7990
7991         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
7992         run file-truename on remote files.  This can be expensive and even
7993         prevent one from editing drafts if some unrelated buffer has a stale
7994         connection.
7995
7996 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7997
7998         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
7999         kinsoku-eol regardless of shr-kinsoku-shorten.
8000         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
8001         (shr-tag-table): Support caption, thead, and tfoot.
8002
8003 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8004
8005         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
8006         lines.
8007         (shr-save-contents): New command and keystroke.
8008
8009         * nndoc.el (nndoc-type-alist): Add git support.
8010         (nndoc-git-type-p): New function.
8011         (nndoc-transform-git-article): Ditto.
8012         (nndoc-transform-git-headers): Ditto.
8013         (nndoc-transform-git-headers): Generate Subject headers.
8014
8015         * shr.el (shr-parse-style): New function.
8016         (shr-tag-span): Ditto.
8017
8018         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
8019         to `G G' to avoid collisions.
8020
8021 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8022
8023         * shr.el: Load kinsoku if necessary.
8024         (shr-kinsoku-shorten): New internal variable.
8025         (shr-find-fill-point): Make kinsoku shorten text line if
8026         shr-kinsoku-shorten is bound to non-nil.
8027         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
8028         shr-indentation too when testing if table is wider than frame width.
8029         (shr-insert-table): Use `string-width' instead of `length' to measure
8030         text width.
8031         (shr-insert-table-ruler): Make sure indentation is done at bol.
8032
8033 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8034
8035         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
8036         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
8037         undecoded network data.
8038
8039 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8040
8041         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
8042         name in the mode line spec so that the mode line menu works
8043         (bug #2431).
8044
8045         * message.el (message-get-reply-headers): If we're fed `to-address',
8046         then always use that.
8047
8048         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
8049         aren't so wide as to need to switch off the edit menu.
8050
8051         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
8052         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
8053
8054         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
8055         `M-g'.
8056         (nnimap-update-info): Update flags/read marks even if \* isn't part of
8057         the permanent marks.
8058
8059 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
8060
8061         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8062         Splitting according to references/in-reply-to obeys the ignore-groups
8063         variable, while splitting by sender and subject do not.
8064
8065 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8066
8067         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
8068         alist, so that we can look for non-Unicode chars.
8069         (article-translate-strings): Allow both character and string maps.
8070
8071 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8072
8073         * shr.el (shr-insert): Don't insert space behind a wide character
8074         categorized as kinsoku-bol, or between characters both categorized as
8075         nospace.
8076
8077 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
8078
8079         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
8080         headers to gnus-newsgroup-headers.
8081
8082 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8083
8084         * shr.el (shr-tag-img): Don't align images -- since we're not
8085         rescaling, this often leads to ugly displays.
8086
8087 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
8088
8089         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
8090         duplicates.
8091
8092 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
8093
8094         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
8095         call.
8096
8097 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8098
8099         * gnus.el: Autoload gnus-html-show-images.
8100
8101         * nnimap.el: Use nnheader-message throughout.
8102
8103         * shr.el (shr-tag-img): Ignore images with no data.
8104
8105 2010-10-15  Julien Danjou  <julien@danjou.info>
8106
8107         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
8108         a possibility to disable format=flow encoding when using hard newlines.
8109
8110 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8111
8112         * shr.el (shr-insert): Remove space inserted before or after a
8113         breakable character or at the beginning or the end of a line.
8114         (shr-find-fill-point): Do kinsoku; find the second best point or give
8115         it up if there's no breakable point.
8116
8117 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8118
8119         * nnimap.el (nnimap-open-connection): Message when opening connection
8120         for debugging purposes.
8121
8122         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
8123         on every setup buffer call to allow this to change from article to
8124         article.
8125
8126         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
8127         buffers where we have a wide table.
8128
8129 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
8130
8131         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
8132         uses *-request-thread.
8133
8134 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8135
8136         * nnimap.el (nnimap-open-connection): Remove %s from openssl
8137         incantation, which is no longer valid.
8138
8139 2010-10-14  Julien Danjou  <julien@danjou.info>
8140
8141         * shr.el: Fix defcustom type (char -> character).
8142
8143 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8144
8145         * nnimap.el (nnimap-open-connection): tls-program should be a list of
8146         programs.
8147
8148 2010-10-14  Julien Danjou  <julien@danjou.info>
8149
8150         * shr.el (shr-tag-a): Use url-link as widget type.
8151
8152         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
8153         `gnus-group-get-icon'.
8154
8155 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8156
8157         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
8158         This should make server editing work better.
8159
8160         * shr.el (shr-find-fill-point): Don't inloop on indented text.
8161
8162         * tls.el (tls-program): Remove spurious %s from openssl.
8163
8164         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
8165         (nnimap-parse-flags): Fix regexp.
8166
8167         * shr.el (shr-find-fill-point): Use a filling algorithm that should
8168         probably work for CJVK text, too.
8169
8170         * nnimap.el (nnimap-extend-tls-programs): Remove.
8171         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
8172
8173         * tls.el (tls-starttls-switches): Remove starttls hack.
8174         (open-tls-stream): Ditto.
8175         (tls-find-starttls-argument): Ditto.
8176
8177 2010-10-13  Julien Danjou  <julien@danjou.info>
8178
8179         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
8180         responses.
8181
8182 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8183
8184         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
8185
8186         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
8187         anything in Emacs.
8188
8189         * shr.el (shr-current-column): Remove buggy and unnecessary function.
8190
8191 2010-10-13  Julien Danjou  <julien@danjou.info>
8192
8193         * shr.el (shr-width): Make shr-width a defcustom with default to
8194         fill-column.
8195         (shr-tag-img): Use shr-width rather than fill-column.
8196
8197 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8198
8199         * dgnushack.el (byte-optimize-apply):
8200         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
8201
8202         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
8203         position when (X-)Faces exist.
8204         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
8205         avatars when called interactively.
8206
8207 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8208
8209         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
8210         gnus-article-x-face-too-ugly is bound.
8211
8212 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8213
8214         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
8215
8216         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
8217         mailbox that doesn't exist.
8218
8219 2010-10-12  Julien Danjou  <julien@danjou.info>
8220
8221         * shr.el (shr-tag-img): Encode URL properly when retrieving.
8222         (shr-get-image-data): Encode URL properly when fetching from cache.
8223         (shr-tag-img): Use aligned-to spaces to align correctly images.
8224
8225         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
8226         before inserting the Gravatar.
8227
8228         * shr.el (shr-tag-img): Add align attribute support for <img>.
8229
8230 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8231
8232         * gnus-gravatar.el (gnus-art): Require.
8233
8234         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
8235         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
8236         Remove long obsoleted functions.
8237
8238 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8239
8240         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
8241
8242         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
8243
8244         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
8245         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
8246         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
8247         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
8248         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
8249         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
8250         * sieve-manage.el, smime.el, spam.el:
8251         Fix comment for declare-function.
8252
8253 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8254
8255         * nnimap.el (nnimap-request-rename-group): Select group read-only
8256         before renaming it.
8257
8258         * shr.el (shr-insert): Fix up the white space only regexp.
8259
8260         * nnimap.el (nnimap-transform-split-mail): Not all articles have
8261         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
8262
8263         * shr.el (shr-current-column): New function.
8264         (shr-find-fill-point): New function.
8265
8266 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8267
8268         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
8269         numbers.
8270
8271 2010-10-11  Julien Danjou  <julien@danjou.info>
8272
8273         * shr.el (shr-hr-line): Add.
8274         (shr-tag-hr): Use shr-hr-line to specify which character to use to
8275         display hr lines.
8276         (shr-max-columns): Do not change state to nil if we just inserting
8277         spaces.
8278
8279 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8280
8281         * gnus-topic.el (gnus-topic-read-group): If after the last group,
8282         select the last group.
8283
8284 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
8285
8286         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
8287
8288 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
8289
8290         * dig.el (dig-mode-map): Declare and define in one step.
8291
8292 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8293
8294         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
8295         for Gnus.
8296         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
8297         (nnimap-update-qresync-info): Mark \Seen articles as read.
8298
8299         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
8300         non-variable, too.
8301
8302         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
8303         available.
8304         (nnimap-update-info): Rely more on the current active than the param
8305         active to avoid marking articles as read too much.
8306
8307         * auth-source.el (auth-source-create): Use (user-login-name) for the
8308         user name default.
8309
8310         * nnimap.el (nnimap-update-info): If the server doesn't return any
8311         useful info, just use the previous info.
8312         (nnimap-update-info): Prefer old info over start-article.
8313         (nnimap-update-qresync-info): Finish implementing QRESYNC.
8314
8315 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
8316
8317         * nnir.el (autoload): Clean up autoloads.
8318         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
8319         Use key rather than value.
8320         (nnir-imap-search-other): New variable.
8321         (nnir-read-parm): Use it.
8322         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
8323         (gnus-summary-nnir-goto-thread): Modify to work with imap.
8324
8325 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8326
8327         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
8328         the process, too.
8329
8330 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8331
8332         * spam.el (gnus-summary-mode-map): Bind to "$".
8333         Suggested by Russ Allbery.
8334
8335         * shr.el: Rework the way things are indented by <li> slightly.
8336
8337         * gnus.el (gnus-group-set-parameter): Fix typo.
8338
8339         * nnimap.el: Start implementing QRESYNC support.
8340
8341 2010-10-09  Julien Danjou  <julien@danjou.info>
8342
8343         * nnir.el (nnir-engines): Fix too many arguments.
8344
8345 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8346
8347         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
8348         group is the "last", so that the backends like nnfolder actually save
8349         their folders.
8350
8351         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
8352         try to use that for the tls stream.
8353         (nnimap-retrieve-group-data-early): Rework the marks code to heed
8354         UIDVALIDITY and find out which groups are read-only and not.
8355         (nnimap-get-flags): Use the same marks parsing code as the rest of
8356         nnimap.
8357
8358 2010-10-09  Julien Danjou  <julien@danjou.info>
8359
8360         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
8361
8362         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
8363         retrieving gravatars.
8364
8365         * shr.el (shr-table-corner): Add.
8366         (shr-table-line): Add.
8367         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
8368
8369 2010-10-08  Julien Danjou  <julien@danjou.info>
8370
8371         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
8372
8373 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
8374
8375         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
8376
8377         * gnus-sum.el (gnus-mark-article-as-unread)
8378         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
8379         (gnus-summary-set-bookmark): Use it.
8380
8381         * gnus-msg.el (gnus-setup-message): Use it.
8382
8383         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8384
8385         * gnus.el (gnus-group-remove-parameter): Use it.
8386
8387         * gnus-group.el (gnus-group-make-web-group): Use it.
8388
8389         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8390
8391         * nnregistry.el: Update docs to mention manual.
8392
8393         * gnus-registry.el: Update docs to mention nnregistry.el.
8394         (gnus-registry-initialize): Don't install nnregistry refer method
8395         automatically.
8396         (gnus-registry-install-nnregistry): Remove it.
8397
8398 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8399
8400         * shr.el (shr-insert): Don't insert double spaces.
8401
8402 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8403
8404         * gnus-gravatar.el (gnus-treat-from-gravatar)
8405         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
8406         called interactively.
8407
8408         * gnus-art.el (gnus-mime-view-part-externally)
8409         (gnus-mime-view-part-internally): Make predicate function passed to
8410         gnus-mime-view-part-as-type assume argument is a mime type, not a list
8411         of a mime type.
8412
8413         * shr.el (shr-table-widths): Don't use cl function `reduce'.
8414
8415 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8416
8417         * shr.el (require): Require cl when compiling.
8418         (shr-tag-hr): New function.
8419
8420         * nnimap.el (nnimap-update-info): Remove double setting of high.
8421         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
8422         This makes nnimap work properly on Courier again.
8423
8424         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
8425         the variable for backwards compatibility.
8426
8427         * mm-decode.el (mm-save-part): If given a non-directory result, expand
8428         the file name before using to avoid setting mm-default-directory to
8429         nil.
8430
8431         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
8432         bidning gnus-agent variables.
8433
8434         * shr.el (shr-render-td): Use a cache for the table rendering function
8435         to avoid getting an exponential rendering behavior in nested tables.
8436         (shr-insert): Rework the line-breaking algorithm.
8437         (shr-insert): Don't leave trailing spaces.
8438         (shr-insert-table): Also insert empty TDs.
8439         (shr-tag-blockquote): Ensure paragraphs after </ul>.
8440
8441 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8442
8443         * gnus-sum.el (gnus-number): Rename from `number'.
8444         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
8445         (gnus-summary-limit-children): Update uses correspondingly.
8446
8447 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8448
8449         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
8450         (gnus-gravatar-transform-address): Don't show avatars of people of
8451         which mail addresses match gnus-gravatar-too-ugly.
8452
8453 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8454
8455         * shr.el (shr-table-widths): Expand TD elements to fill available
8456         space.
8457
8458 2010-10-07  Julien Danjou  <julien@danjou.info>
8459
8460         * nnimap.el (nnimap-request-rename-group): Add this method.
8461
8462 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8463
8464         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
8465         name from XEmacs' function-arglist.
8466
8467         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
8468         gravatar under XEmacs.
8469
8470 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
8471
8472         * auth-source.el: Update docs with TODO items.
8473
8474         * gnus-sync.el: Update docs to explain state and plans.
8475
8476         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
8477         Hooks for mark updates.
8478         (gnus-request-set-mark, gnus-request-update-mark): Use them.
8479
8480         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
8481         hooks with arguments, which is needed for mark update hooks.
8482
8483 2010-10-06  Julien Danjou  <julien@danjou.info>
8484
8485         * gnus.el (gnus-expand-group-parameter): Only return and act on what
8486         was matched.
8487
8488         * sieve-manage.el: Update example in `Commentary'.
8489
8490         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
8491
8492         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
8493         not 2000.
8494         (sieve-manage-authenticate): Re-add function.
8495
8496 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8497
8498         * shr.el (shr-insert): Get 'space transition right.
8499         (shr-render-td): Only delete space at the end of the TD.
8500
8501         * nnimap.el (nnimap-open-connection): Prepare to support
8502         open-gnutls-stream.
8503
8504         * shr.el: Rearrange function order to be more logical.
8505
8506 2010-10-06  Julien Danjou  <julien@danjou.info>
8507
8508         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
8509         (nnrss-discover-feed): Remove 404 URL in docstring.
8510
8511         * nnir.el: Fix Swish-E URL.
8512         Fix Namazu URL.
8513
8514         * message.el (message-change-subject): Remove 404 URL in a comment.
8515
8516 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8517
8518         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
8519         called interactively.
8520
8521         * gnus-util.el (gnus-remove-if): Allow hash table.
8522         (gnus-remove-if-not): New function.
8523
8524         * gnus-art.el (gnus-mime-view-part-as-type):
8525         * gnus-score.el (gnus-summary-score-effect):
8526         * gnus-sum.el (gnus-read-move-group-name):
8527         Replace remove-if-not with gnus-remove-if-not.
8528
8529         * gnus-group.el (gnus-group-completing-read):
8530         Regard collection as a hash table if it is not a list.
8531
8532 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8533
8534         * shr.el (shr-render-td): Allow blank/missing <TD>s.
8535
8536         * shr.el: Document the table-rendering algorithm.
8537
8538 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8539
8540         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
8541         for Emacsen having no `libxml-parse-html-region' support.
8542
8543 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8544
8545         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
8546         invalid URLs.
8547
8548         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
8549         line-broken.
8550         (shr-tag-img): Ignore image fetching errors.
8551         (shr-overlays-in-region): Compute overlay positions correctly.
8552
8553         * mm-decode.el (mm-shr): Require shr.
8554
8555         * gnus-art.el (gnus-blocked-images): Move variable here.
8556
8557         * shr.el (shr-insert-table): Bind free variable.
8558
8559         * mm-decode.el (mm-shr): Bind shr-content-function.
8560
8561         * shr.el (shr-content-function): New variable.
8562
8563         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
8564         added for symmetry.
8565
8566         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
8567
8568         * gnus-group.el (gnus-group-make-group): Doc fix.
8569
8570         * nnimap.el (nnimap-request-newgroups): Return success.
8571
8572         * shr.el (shr-find-elements): New function.
8573         (shr-tag-table): Put all the images after the table.
8574         (shr-tag-table): Really inhibit images inside the table.
8575         (shr-collect-overlays): Copy over overlays from the TD elements to the
8576         main document.
8577
8578         * mm-decode.el (mm-shr): Bind shr-blocked-images to
8579         gnus-blocked-images.
8580
8581 2010-10-05  Julien Danjou  <julien@danjou.info>
8582
8583         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
8584
8585         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
8586         (gnus-html-maximum-image-size): Add this function.
8587         (gnus-html-put-image): Use gnus-html-maximum-image-size.
8588
8589         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
8590         server-value of the capability is nil.
8591
8592 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8593
8594         * shr.el (shr-tag-em): Add <EM> tag.
8595
8596 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
8597
8598         * sieve-manage.el (sieve-manage-default-stream): Make default stream
8599         customizable.
8600
8601         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
8602         handing broken links to browse-url.
8603
8604 2010-10-05  Julien Danjou  <julien@danjou.info>
8605
8606         * gnus-util.el (gnus-emacs-completing-read)
8607         (gnus-iswitchb-completing-read): Use autoload rather than require.
8608
8609 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8610
8611         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
8612         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
8613         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
8614         iswitchb-temp-buflist for XEmacs.
8615
8616         * gnus-util.el (gnus-completing-read-function): Exclude
8617         gnus-icompleting-read and gnus-ido-completing-read from candidates for
8618         XEmacs since iswitchb.el is very old and ido.el is unavailable in
8619         XEmacs.
8620
8621         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
8622         not to use `delete-dups' that is unavailable in XEmacs 21.4.
8623
8624         * gnus-html.el: Don't require help-fns under XEmacs.
8625         (gnus-html-schedule-image-fetching): Work for XEmacs.
8626
8627         * mm-decode.el (mm-shr): Decode contents by charset.
8628
8629 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8630
8631         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
8632         unknown.
8633
8634         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
8635         (shr-get-image-data): Ensure against the cache file missing.
8636
8637         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
8638         for data.
8639
8640         * spam-report.el (spam-report-url-ping-plain): Don't query about
8641         killing the process.
8642
8643         * shr.el (shr-render-td): Protect against too-wide text.
8644
8645 2010-10-04  Julien Danjou  <julien@danjou.info>
8646
8647         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
8648         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
8649
8650         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
8651         retrieved.
8652
8653 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8654
8655         * shr.el (browse-url): Require.
8656         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
8657         lines.
8658         (shr-show-alt-text, shr-browse-image): New commands.
8659         (shr-browse-url, shr-copy-url): New commands.
8660
8661         * gnus-sum.el (gnus-widen-article-window): New variable.
8662         (gnus-summary-select-article-buffer): Use it.
8663
8664         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
8665         without @ signs.
8666
8667 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8668
8669         * nnir.el (nnir-run-imap): Remove spurious space in search string.
8670
8671 2010-10-04  Julien Danjou  <julien@danjou.info>
8672
8673         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
8674         for XEmacs.
8675
8676 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8677
8678         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
8679
8680         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
8681         (nnimap-close-server): Implement.
8682
8683         * dgnushack.el (iswitchb): Require to shut up the compiler.
8684
8685         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
8686         (shr-insert): Tweak line breaking.
8687         (shr-insert): Handle <pre> better.
8688         (shr-tag-li): Get <li> indentation right.
8689         (shr-tag-li): Get <li> indentation even righter.
8690         (shr-tag-blockquote): Ensure paragraph start.
8691         (shr-make-table): Tweak table generation.
8692         (shr-make-table): Fix typo.
8693
8694         * shr.el: Implement table rendering.
8695
8696 2010-10-04  Julien Danjou  <julien@danjou.info>
8697
8698         * gnus-html.el (gnus-html-put-image): Fix resize image code.
8699
8700 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8701
8702         * shr.el (shr-insert): Use string anchors instead of line anchors.
8703
8704 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8705
8706         * shr.el: Add headings.
8707         (shr-ensure-paragraph): Actually work.
8708         (shr-tag-li): Make <ul> prettier.
8709         (shr-insert): Get white space at the beginning/end of elements right.
8710         (shr-tag-p): Collapse subsequent <p>s.
8711         (shr-ensure-paragraph): Don't insert double line feeds after blank
8712         lines.
8713         (shr-insert): \t is also space.
8714         (shr-tag-s): Fix "s" tag name function.
8715         (shr-tag-s): Fix face prop name.
8716
8717 2010-10-03  Julien Danjou  <julien@danjou.info>
8718
8719         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
8720
8721         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
8722         gnus-window-inside-pixel-edges.
8723
8724         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
8725         gnus-ems.
8726
8727         * mm-view.el (mm-inline-image-emacs): Support image resizing.
8728
8729         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
8730         function.
8731
8732         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
8733         resize choice.
8734
8735 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8736
8737         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
8738         beginning of the buffer.
8739
8740         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
8741         article buffer again.
8742
8743         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
8744
8745         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
8746         when it's at the start of the buffer.
8747
8748         * shr.el (shr-tag-blockquote): Convert name.
8749         (shr-rescale-image): Use the right image-size variant.
8750
8751         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
8752         buffer isn't shown, then select the current article first instead of
8753         bugging out.
8754         (gnus-summary-select-article-buffer): Show both the article and summary
8755         buffers again.
8756
8757         * shr.el (shr-fontize-cont): Protect against regions with no text.
8758         Rename tag functions to shr-tag-* for enhanced security.
8759         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
8760
8761 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
8762
8763         * shr.el (shr-insert):
8764         * pop3.el (pop3-movemail):
8765         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
8766         loaded.
8767
8768 2010-10-03  Glenn Morris  <rgm@gnu.org>
8769
8770         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
8771
8772         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
8773
8774         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
8775
8776         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
8777
8778         * gnus-util.el (gnus-make-local-hook): Simplify.
8779
8780 2010-10-02  Julien Danjou  <julien@danjou.info>
8781
8782         * gnus-util.el (gnus-iswitchb-completing-read): New function.
8783         (gnus-ido-completing-read): New function.
8784         (gnus-emacs-completing-read): New function.
8785         (gnus-completing-read): Use gnus-completing-read-function.
8786         Add gnus-completing-read-function.
8787
8788 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8789
8790         * shr.el (shr-insert-document): Autoload.
8791         (shr-img): Be silent.
8792         (shr-insert): Add a newline after every picture before text.
8793         (shr-add-font): Use overlays for combining faces.
8794         (shr-insert): Pass upwards the text start point.
8795
8796         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
8797         possible.
8798         (mm-shr): New function.
8799
8800 2010-10-02  Julien Danjou  <julien@danjou.info>
8801
8802         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
8803         should go backward.
8804
8805 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
8806
8807         * shr.el (shr): Fix typo in provide call.
8808
8809 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8810
8811         * shr.el: New file.
8812
8813         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
8814
8815         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
8816         completing read.
8817
8818 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8819
8820         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
8821         we're being queried about.  Suggested by Dan Jacobson.
8822
8823         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
8824         Suggested by Jason Eisner.
8825
8826         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
8827         table, too.  Suggested by Stefan Wiens.
8828         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
8829         the table unnecessary.  Suggested by Stefan Wiens.
8830
8831         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
8832         longer needed, and probably doesn't work either, as pointed out by
8833         Stefan Wiens.
8834         (gnus-summary-exit): Remove call to the clearing function.
8835         (gnus-summary-exit-no-update): Ditto.
8836
8837         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
8838         instead of gnus-eval-in-buffer-window to avoid popping up frames.
8839         Reported by Stefan Monnier.
8840         (gnus-summary-save-in-rmail): Ditto.
8841
8842         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
8843         article buffer, instead of both the article buffer and the summary
8844         buffer.  Sort of suggested by Dan Jacobson.
8845
8846         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
8847
8848         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
8849         Suggested by Dan Jacobson.
8850
8851         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
8852         documentation clearer.
8853
8854         * message.el (message-shorten-references): Comment on the number "21".
8855         Suggested by Stefan Monnier.
8856
8857         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
8858         Suggested by Dan Jacobson.
8859
8860         * gnus.el (gnus-large-newsgroup):
8861         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
8862
8863         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
8864         externalize attachments.  Bug reported by Steve Wen.
8865
8866         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
8867         really message anything to the user.
8868
8869         * nnmail.el (nnmail-article-group): Allow using the fancy split method
8870         directly.
8871
8872         * nnimap.el (nnimap-request-group): Low higher than high to signal no
8873         messages in empty groups.
8874
8875 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
8876
8877         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
8878         non-UIDNEXT group.
8879
8880 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8881
8882         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
8883         not the value from the collection.
8884
8885         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
8886         values.  This sometimes happens on some groups that have no info.
8887         (nnimap-request-newgroups): New function.
8888
8889 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
8890
8891         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
8892         check into `gnus-registry-initialize'.
8893         (gnus-registry-initialize): Ditto.
8894         Fix and extend header docs.
8895
8896 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8897
8898         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
8899         regexp backtrace overflows.
8900
8901         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
8902         for starttls that tls.el implements; i.e. openssl.
8903
8904         * tls.el (tls-starttls-switches): Give up on using starttls with
8905         gnutls-cli.
8906         (tls-program): Add --insecure to be consistent with the defaults from
8907         openssl s_client.  Now all three commands are insecure.
8908
8909 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8910
8911         * lpath.el: Bind completion-styles-alist for XEmacs.
8912
8913         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
8914         (gravatar-create-image): New function that's an alias to
8915         gnus-xmas-create-image, gnus-create-image, or create-image.
8916         (gravatar-data->image): Use it.
8917
8918 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
8919
8920         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
8921         install the nnregistry refer method.
8922         (gnus-registry-install-hooks): Use it.
8923         (gnus-registry-unfollowed-groups): Add nnmairix to the default
8924         unfollowed groups.
8925
8926 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
8927
8928         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
8929         expanding threads.
8930
8931 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8932
8933         * nnir.el: Use the server names without suffixes (bug #7009).
8934
8935         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
8936         unencrypted to STARTTLS, if possible.
8937
8938 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
8939
8940         * message.el (message-ignored-supersedes-headers): Strip Injection-*
8941         headers before superseding.
8942
8943 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8944
8945         * nnrss.el (nnrss-use-local): Add documentation.
8946
8947         * nnimap.el (nnimap-extend-tls-programs): New function.
8948         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
8949         (nnimap-wait-for-connection): Accept the greeting from the stupid
8950         output from openssl s_client -starttls, too.
8951
8952         * tls.el (tls-starttls-switches): New variable.
8953         (tls-find-starttls-argument): Use it.
8954         (open-tls-stream): Ditto.
8955
8956         * netrc.el (netrc-credentials): Return the value of the "default" entry.
8957         (netrc-machine): Ditto.
8958
8959         * nnimap.el (nnimap-find-article-by-message-id): Really return the
8960         article number.
8961         (nnimap-split-fancy): New variable.
8962         (nnimap-split-incoming-mail): Use it.
8963
8964         * nntp.el (nntp-server-list-active-group): Document.
8965
8966         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
8967         SELECT to get the message-id.
8968
8969         * mail-source.el (mail-sources): Remove webmail support.
8970         (defvar): Ditto.
8971         (mail-source-fetcher-alist): Ditto.
8972         (mail-source-fetch-webmail): Remove.
8973
8974         * webmail.el: Remove -- doesn't seem relevant any more.
8975
8976         * gnus.el: Fix up make-obsolete-variable declarations throughout.
8977
8978         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
8979         the \r.
8980
8981 2010-09-30  Julien Danjou  <julien@danjou.info>
8982
8983         * gnus-agent.el (gnus-agent-add-group): Fix call to
8984         gnus-completing-read.
8985
8986 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8987
8988         * nndoc.el (nndoc-retrieve-groups): New function.
8989
8990         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
8991         `default', use nnmail-split-methods.
8992         (nnimap-request-article): Downcase the NILs so that they are nil.
8993
8994         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
8995         symbol.
8996
8997         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
8998         code, since if the user has requested network, that's what they ought
8999         to get.
9000         (nnimap-request-set-mark): Erase the buffer before issuing commands.
9001         (nnimap-split-rule): Mark as obsolete.
9002
9003         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
9004         New variable.
9005
9006         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
9007         correct slot, too.
9008
9009 2010-09-29  Julien Danjou  <julien@danjou.info>
9010
9011         * gnus.el (gnus-local-domain): Declare variable obsolete.
9012
9013         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
9014         Fix history computing.
9015         (gnus-ido-completing-read): Require ido.
9016
9017 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9018
9019         * gnus-registry.el: Don't prompt on load, which makes it impossible to
9020         build Gnus.
9021
9022         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
9023         when interpreting the structures.
9024         (nnimap-request-accept-article): Add \r\n to the lines to make this
9025         work with Cyrus.
9026
9027         * nndraft.el (nndraft-request-expire-articles): Use the group name
9028         instead if "nndraft".  Fix found by Nils Ackermann.
9029
9030 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
9031
9032         * nnregistry.el: Add.
9033
9034 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9035
9036         * nnmail.el (group, group-art-list, group-art):
9037         Remove unneeded directives.
9038
9039 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9040
9041         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
9042         (mm-mime-charset):
9043         * rfc2047.el (rfc2047-syntax-table):
9044         * utf7.el (utf7-utf-16-coding-system): Comment fix.
9045
9046         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
9047         rather than `insert-file-contents' and `eval-region'.
9048
9049         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
9050         construction.
9051
9052         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
9053
9054         * time-date.el: No need to require cl for Emacs 21.
9055
9056 2010-09-29  Julien Danjou  <julien@danjou.info>
9057
9058         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
9059         replacement of `gnus-gravatar-relief' to mimic
9060         `gnus-faces-properties-alist'.
9061         Add :version property.
9062
9063 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9064
9065         * mail-source.el (mail-source-report-new-mail):
9066         * message.el (message-default-mail-headers):
9067         * mm-decode.el (mm-valid-image-format-p): Comment fix.
9068
9069         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
9070
9071 2010-09-28  Julien Danjou  <julien@danjou.info>
9072
9073         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
9074         mail-address contains the same string as real-name.
9075
9076         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
9077         non-blank in header, otherwise it'll get stripped.
9078
9079         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
9080         real-name, and then for mail address rather than doing : or , search.
9081
9082 2010-09-27  Julien Danjou  <julien@danjou.info>
9083
9084         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
9085         right completing-read function.
9086         (gnus-use-ido): New variable
9087         (gnus-completing-read-with-default): Remove.
9088         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
9089         (gnus-agent-add-group):
9090         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
9091         * mm-view.el (mm-view-pkcs7-decrypt):
9092         * mm-util.el (mm-codepage-setup):
9093         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9094         * mml-smime.el (mml-smime-openssl-sign-query):
9095         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
9096         (mml-insert-multipart):
9097         * gnus-msg.el (gnus-summary-yank-message):
9098         * gnus-int.el (gnus-start-news-server):
9099         * mm-decode.el (mm-interactively-view-part):
9100         * gnus-dired.el (gnus-dired-attach):
9101         * gnus.el (gnus-read-method):
9102         * gnus-bookmark.el (gnus-bookmark-jump):
9103         * gnus-art.el (gnus-mime-view-part-as-type)
9104         (gnus-mime-action-on-part, gnus-article-encrypt-body):
9105         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
9106         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
9107         * nnmairix.el (nnmairix-create-server-and-default-group)
9108         (nnmairix-update-groups, nnmairix-get-server)
9109         (nnmairix-backend-to-server, nnmairix-goto-original-article)
9110         (nnmairix-get-group-from-file-path):
9111         * nnrss.el (nnrss-find-rss-via-syndic8):
9112         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
9113         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
9114         (gnus-group-browse-foreign-server):
9115         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
9116         (gnus-summary-execute-command, gnus-summary-respool-article)
9117         (gnus-read-move-group-name):
9118         * gnus-score.el (gnus-summary-increase-score)
9119         (gnus-summary-score-effect):
9120         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
9121
9122 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9123
9124         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
9125         x-focus-frame.
9126
9127         * nnimap.el (auth-source-forget-user-or-password)
9128         (auth-source-user-or-password): Autoload.
9129
9130         * message.el (message-from-style, message-interactive)
9131         (message-cite-prefix-regexp, message-sendmail-envelope-from)
9132         (message-yank-prefix, message-indentation-spaces, message-signature)
9133         (message-signature-file): Add comment.
9134
9135 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9136
9137         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
9138         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
9139         new articles.
9140
9141         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
9142         parts.
9143         (nnimap-request-article): Work with the t setting, too.
9144
9145         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
9146         that you don't get flashes of other buffers.
9147         (gnus-summary-show-complete-article): Intern before setting.
9148
9149 2010-09-27  David Engster  <dengste@eml.cc>
9150
9151         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
9152         well as HEADERS.
9153         (nnmairix-retrieve-headers): Provide new argument for the above.
9154
9155 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9156
9157         * gnus-sum.el (gnus-summary-move-article): Don't alter
9158         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
9159         group.
9160
9161         * nnimap.el (nnimap-update-info): Don't destructively alter active.
9162
9163         * message.el (message-cite-prefix-regexp): Revert my last edit.
9164
9165         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
9166         variable instead of the Gnus variable.
9167
9168         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
9169
9170         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
9171
9172         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
9173         since some servers don't like it.
9174         (nnimap-open-connection): Forget credentials if the server says the
9175         password was wrong.
9176         (nnimap-parse-line): Protect against invalid data.
9177
9178         * gnus-sum.el (gnus-summary-move-article): Add comment.
9179         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
9180         nothing alters it while scanning for new messages.
9181
9182         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
9183         which may or may not help.
9184         (nnimap-open-connection): If we're doing a stream connection, and then
9185         discover we're on a STARTTLS-capable server, then open a STARTTLS
9186         connection instead.
9187
9188 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9189
9190         * nnimap.el (utf7): Require.
9191
9192         * message.el (message-cite-prefix-regexp): Remove "}" from citation
9193         prefix.
9194
9195 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
9196
9197         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
9198
9199 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9200
9201         * nnimap.el (nnimap-request-accept-article): Message the error on
9202         error.
9203
9204 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9205
9206         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
9207
9208 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9209
9210         * nndoc.el (nndoc-request-list): Return success always.
9211
9212         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
9213         `fetch-old' -- we only want to fetch the articles we've requested.
9214         The rest are in the agent, probably.
9215         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
9216         disappeared server" to something low.  It's not important.
9217
9218         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
9219         arrived before the FETCH data.
9220
9221         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
9222         target here, because we don't know the Gnus name of the group.
9223
9224         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
9225         for the correct group.
9226
9227         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
9228
9229         * gnus.el (gnus): Give a final warning after startup.
9230
9231         * gnus-util.el (gnus-action-message-log): New variable.
9232         (gnus-message): Use it.
9233         (gnus-final-warning): New function.
9234
9235         * nnimap.el (nnimap-open-connection): Record the greeting.
9236         (nnimap): Add greeting.
9237
9238 2010-09-26  Julien Danjou  <julien@danjou.info>
9239
9240         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
9241         arguments.
9242         (gnus-html-wash-images): Fix spec computing to include start/end.
9243
9244         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
9245
9246 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9247
9248         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
9249         deletion.
9250         (nnimap-retrieve-headers): Don't select the group, because that's
9251         already done by nnimap-possibly-change-group.
9252
9253         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
9254         (gnus-picon-transform-address): Use it.
9255
9256         * mail-source.el (mail-source-value): Revert previous patch.
9257
9258         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
9259         on failure.
9260         (nnimap-open-connection): Look up both virtual and physical server name
9261         credentials.
9262
9263         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
9264
9265 2009-02-07  Dave Love  <fx@gnu.org>
9266
9267         * tls.el (open-tls-stream): Don't query killing process.
9268
9269 2009-02-08  Dave Love  <fx@gnu.org>
9270
9271         * gnus-win.el (gnus-window-to-buffer-helper)
9272         (gnus-all-windows-visible-p): Function needn't be a symbol.
9273
9274         * mail-source.el (mail-source-value): Function needn't be a symbol.
9275
9276 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9277
9278         * message.el (message-cite-prefix-regexp): Remove } from the cite
9279         prefix.
9280
9281         * gnus-art.el (gnus-treatment-function-alist): Do picons before
9282         highlight again, so that the highlight is correct.
9283
9284         * gnus-picon.el (gnus-picon): Remove again.
9285         (gnus-picon-create-glyph): Set the background XPM color explicitly.
9286
9287         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
9288         doing the header highlightling, so that the background color of the
9289         picon is correct.
9290
9291         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
9292         (gnus-picon): Ditto.
9293         (gnus-picon): Reinstate.  The background color for picons is white.
9294         (gnus-picon-insert-glyph): Make the background white.
9295
9296         * nnml.el (nnml-open-nov): Don't return dead buffers.
9297
9298         * auth-source.el (auth-source-create): Query the user for whether to
9299         store the credentials.
9300
9301         * netrc.el (netrc-store-data): New function.
9302
9303         * auth-source.el (auth-source-user-or-password): Use the existing auth
9304         sources, if any, for creation.
9305
9306         * gnus.el (gnus-group-fast-parameter): Return the last matching
9307         parameter instead of the first matching parameter.
9308
9309 2010-09-26  Julien Danjou  <julien@danjou.info>
9310
9311         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
9312
9313 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9314
9315         * mml2015.el (mml2015-use): Remove gpg support.
9316
9317         * mml1991.el (mml1991-function-alist): Remove gpg function.
9318         (mml1991-gpg-sign): Remove.
9319
9320 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
9321
9322         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
9323         (gnus-browse-unsubscribe-current-group): Document it.
9324         (gnus-browse-unsubscribe-group): Use it.
9325
9326 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9327
9328         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
9329         address to the To list for easier response.
9330
9331         * gnus.el (gnus-play-startup-jingle): Remove.
9332         (gnus-splash): Don't play jingle.
9333         (gnus): Silence gnus-load message.
9334
9335         * gnus-art.el (gnus-treat-play-sounds): Remove.
9336
9337         * gnus.el (gnus-play-jingle): Remove audio support.
9338
9339         * gnus-cus.el (gnus-score-customize): Remove audio reference.
9340
9341         * earcon.el: Remove -- no users.
9342
9343         * gnus-audio.el: Remove -- no users of this package.
9344
9345         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
9346
9347         * gnus-start.el (gnus-setup-news): Remove nocem support.
9348
9349         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
9350
9351         * gnus.el (gnus-use-nocem): Remove.
9352
9353         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
9354         Remove.
9355
9356         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
9357         uses NoCeM any more.
9358
9359         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
9360         (gnus-button-ctan-handler): Ditto.
9361         (gnus-button-handle-ctan-bogus-regexp): Ditto.
9362         (gnus-button-ctan-directory-regexp): Ditto.
9363         (gnus-button-handle-ctan): Ditto.
9364         (gnus-button-tex-level): Ditto.
9365         (gnus-button-alist): Remove CTAN stuff.
9366
9367 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9368
9369         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
9370         nnimap-streaming test.
9371
9372         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
9373         servers twice.
9374
9375         * nnimap.el (nnimap-open-connection): Add more error reporting when
9376         nnimap fails early.
9377
9378         * nnheader.el (nnheader-get-report-string): New function.
9379         (nnheader-get-report): Use it.
9380
9381         * gnus-int.el (gnus-check-server): Say what the error was when opening
9382         failed.
9383
9384         * nnimap.el (nnimap-wait-for-response): Search further when we're not
9385         using streaming.
9386
9387 2010-09-25  Julien Danjou  <julien@danjou.info>
9388
9389         * gnus-html.el (gnus-html-rescale-image): Use our defalias
9390         gnus-window-inside-pixel-edges.
9391
9392 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9393
9394         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
9395
9396         * mm-decode.el (mm-save-part): Allow saving to other directories the
9397         normal Emacs way.
9398
9399         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
9400         Suggested by Jay Berkenbilt.
9401
9402         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
9403         there isn't a single byte.
9404
9405         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
9406         just do it.  It doesn't really seem to matter what the user responds
9407         here, I think, so it's just a confusing question.
9408
9409         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
9410         non-streaming case.
9411
9412         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
9413         (gnus-article-encrypt-body): Use it.
9414
9415         * gnus-sum.el (gnus-summary-show-complete-article): New command and
9416         keystroke.
9417
9418         * nnimap.el (nnimap-find-wanted-parts-1):
9419         Use gnus-fetch-partial-articles.
9420
9421         * gnus-art.el (gnus-fetch-partial-articles): New variable.
9422
9423         * nnimap.el (nnimap-insert-partial-structure): New function.
9424         (nnimap-get-partial-article): New function.
9425         (nnimap-request-article): Use it.
9426         (nnimap-wait-for-response): Return whether the wait was successful.
9427         (nnimap-finish-retrieve-group-infos): Don't do anything if the
9428         retrieval wasn't successful.
9429         (nnimap-retrieve-group-data-early): Allow throttling servers.
9430         (nnimap-streaming): New variable.
9431         (nnimap-fetch-partial-articles): Remove.
9432
9433         * mm-decode.el (mm-with-part): Protect against killed buffers.
9434
9435         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
9436         for prettier summary display.
9437
9438 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
9439
9440         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
9441
9442 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9443
9444         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
9445         apparently third-party libraries depend on it.
9446
9447         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
9448         before starting negotiation.
9449
9450         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
9451         privacy reasons.
9452         (gnus-treat-mail-gravatar): Ditto.
9453
9454         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
9455         buffer when inserting images.  Inserting text into the headers, for
9456         instance, can make them invalid.
9457
9458 2010-09-25  Julien Danjou  <julien@danjou.info>
9459
9460         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
9461         variables.
9462
9463         * nnheader.el: Remove useless variables news-reply-yank-from and
9464         news-reply-yank-message-id.
9465
9466         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
9467         variables.
9468
9469         * mml1991.el: Remove useless mml1991-verbose.
9470
9471         * gnus.el: Remove useless variable gnus-use-generic-from.
9472         Remove obsolete variable gnus-topic-indentation.
9473
9474         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
9475
9476         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
9477
9478         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
9479
9480         * gnus-group.el: Remove useless gnus-group-icon-cache.
9481         Remove useless gnus-ephemeral-group-server.
9482
9483         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
9484
9485         * mml2015.el: Remove useless mml2015-verbose.
9486
9487         * mml-smime.el: Remove useless mml-smime-verbose.
9488
9489         * gnus.el: Remove useless gnus-local-domain.
9490
9491         * gnus-gravatar.el (gnus-gravatar-transform-address):
9492         Use gnus-gravatar-size.
9493
9494         * gnus-art.el: Remove useless gnus-treat-translate.
9495
9496 2010-09-24  Julien Danjou  <julien@danjou.info>
9497
9498         * gnus-sum.el: Add support for Gravatars.
9499
9500         * gnus-art.el: Add support for Gravatars.
9501
9502         * gnus-gravatar.el: Add this file.
9503
9504         * gravatar.el: Add this file.
9505
9506 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9507
9508         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
9509
9510         * gnus-group.el (gnus-group-fetch-faq): Remove.
9511
9512         * gnus.el (gnus-group-faq-directory): Remove.
9513
9514         * gnus-group.el (gnus-group-fetch-charter): Remove.
9515
9516         * gnus.el (gnus-group-charter-alist): Remove.
9517
9518         * gnus-group.el (gnus-group-archive-directory): Remove.
9519         (gnus-group-recent-archive-directory): Ditto.
9520         (gnus-group-make-archive-group): Remove.
9521
9522         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
9523
9524         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
9525         use the same article number for all the cached articles.
9526
9527         * nnimap.el (nnimap-command): Register the last command time so
9528         that we can use it for idling NOOPs.
9529         (nnimap-open-connection): Start the keeplive timer.
9530         (nnimap-make-process-buffer): Store all the process buffers.
9531         (nnimap-keepalive): New function.
9532
9533         * starttls.el (starttls-open-stream): Add autoload cookie.
9534
9535 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9536
9537         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
9538         handling.
9539
9540 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9541
9542         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
9543         its data structures.
9544
9545         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
9546         instead of the cl.el copy-list.
9547         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
9548         equalp.
9549
9550 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9551
9552         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
9553         and tool-bar-local-item-from-menu.
9554
9555         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
9556         mode-line-highlight face for Emacs.
9557
9558         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
9559         loading gnus-sum.elc; fix comment for canlock-verify.
9560         (gnus-article-jump-to-part): Use read-number.
9561         (gnus-insert-mime-button, gnus-insert-mime-security-button):
9562         Remove Emacs pre-21 compatible code for help-echo.
9563         (gnus-article-next-page-1): No need to adjust the number of lines.
9564         (gnus-article-describe-bindings): Always use help-buffer.
9565
9566         * gnus-audio.el (gnus-audio-inline-sound):
9567         * gnus-cus.el (gnus-custom-mode):
9568         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
9569
9570         * gnus-sum.el (gnus-remove-overlays): Doc fix.
9571
9572         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
9573         compatible code.
9574
9575 2010-09-24  Glenn Morris  <rgm@gnu.org>
9576
9577         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
9578         visiting the fcc file in rmail-mode.
9579
9580         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
9581
9582 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9583
9584         * nnir.el: Silence the byte compiler.
9585
9586         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
9587         alias to browse-url-url-encode-chars if any.
9588         (gnus-html-encode-url): Use it.
9589
9590 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9591
9592         * gnus-start.el (gnus-use-backend-marks): New variable.
9593         (gnus-get-unread-articles-in-group): Use it.
9594
9595         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
9596         makeover.
9597
9598 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9599
9600         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
9601
9602 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9603
9604         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
9605         Remove.
9606         (gnus-setup-news-hook):
9607         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
9608
9609         * gnus-int.el (gnus-request-update-info): Protect against backends not
9610         having the function.
9611
9612         * nnimap.el (nnimap-stream): Mention starttls.
9613         (nnimap-open-connection): Add starttls support.
9614
9615 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9616
9617         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
9618
9619 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9620
9621         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
9622         BODYSTRUCTUREs.
9623         (nnimap-transform-headers): Unfold quoted {42} headers.
9624
9625         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
9626         the info.
9627         (gnus-get-unread-articles): Only call updatep on backends that support
9628         it.
9629
9630         * nnweb.el (nnweb-request-update-info): NOOP.
9631
9632         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
9633
9634         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
9635         since it only deals with marks.
9636
9637         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
9638         gnus-request-marks, and make a new gnus-request-update-info.
9639
9640         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
9641         the active instead of the high number, which is usually too low.
9642
9643 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
9644
9645         * netrc.el (netrc-parse): Remove encrypt.el mentions.
9646         * encrypt.el: Remove.
9647
9648 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9649
9650         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
9651         server in symbolic form.
9652
9653         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
9654
9655 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9656
9657         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
9658         (nnimap-update-info): Fix up code slightly.
9659
9660         * gnus-int.el (gnus-open-server): Add tracing for performance
9661         debugging.
9662
9663         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
9664         (gnus-group-insert-group-line): Pass the real group name so that it
9665         gets the right data.
9666
9667         * gnus-start.el (gnus-get-unread-articles): Don't have
9668         `gnus-get-unread-articles-in-group' update info, since that can be
9669         really slow and doesn't seem to be needed?
9670
9671 2010-09-22  Dan Christensen  <jdc@uwo.ca>
9672
9673         * time-date.el (date-to-time): Try using parse-time-string first before
9674         using the slower timezone-make-date-arpa-standard.
9675
9676 2010-09-22  Julien Danjou  <julien@danjou.info>
9677
9678         * gnus-group.el (gnus-group-insert-group-line):
9679         Call gnus-group-highlight-line.
9680         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
9681         default hook list.
9682         (gnus-group-update-eval-form): Add new function.
9683         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
9684         (gnus-group-get-icon): Use gnus-group-update-eval-form.
9685
9686 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9687
9688         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
9689         immediate, then expire all articles.
9690         (nnimap-update-info): Fix off-by-one errors.
9691         (nnimap-flags-to-marks): Would return no marks lists for group with no
9692         flags.  Instead return the other data.
9693
9694 2010-09-22  Julien Danjou  <julien@danjou.info>
9695
9696         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
9697         Only return an icon.
9698         (gnus-group-insert-group-line): Compute icon to return.
9699
9700         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
9701         (gnus-html-image-fetched): Only cache if
9702         gnus-html-image-automatic-caching is set.
9703         (gnus-html-image-fetched): Check for errors.
9704
9705 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9706
9707         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
9708         once per method on `g'.  This ensures that backends like nnfolder don't
9709         open all their folders.
9710
9711         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
9712         (nnimap-request-list): Nix out group in the correct buffer.
9713         (nnimap-parse-flags): Implement by using `read' instead of
9714         hand-parsing.
9715         (nnimap-flags-to-marks): Pass on permanent-flags.
9716         (nnimap-make-process-buffer): Record the server name.
9717         (nnimap-parse-flags): Fix typo.
9718         (nnimap-request-scan): Run split on the server in general, not just a
9719         single group.
9720
9721         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
9722         parameter, and propagate this downwards.
9723
9724         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
9725         since EXAMINE changes it on the server.
9726
9727         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
9728         this command might take a while.
9729
9730 2010-09-22  Julien Danjou  <julien@danjou.info>
9731
9732         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
9733         harmful if you have 2 images side-by-side, they can't be properly
9734         update on text deletion.  Using text-property is safer here.
9735         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
9736         data.
9737
9738 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9739
9740         * nnimap.el (nnimap-expunge-inbox): Remove.
9741         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
9742         (nnimap-expunge): Flip default to t.
9743
9744         * gnus.el (gnus-method-to-server): Don't push things to the cache
9745         unless it's unique.
9746         (gnus-server-to-method): Ditto.
9747
9748 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
9749
9750         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
9751
9752 2010-09-22  Julien Danjou  <julien@danjou.info>
9753
9754         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
9755         get the start of data.
9756         (gnus-html-encode-url): Add this function to encode special chars in
9757         URL.
9758         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
9759         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
9760
9761         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
9762         default.
9763         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
9764
9765         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
9766         images alt-text.
9767         (gnus-html-put-image): Put alt-text as help-echo.
9768
9769 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9770
9771         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
9772         * mm-util.el (mm-decompress-buffer):
9773         * nnir.el (nnir-run-find-grep):
9774         * pop3.el (pop3-list): Use 3rd arg of split-string.
9775
9776         * time-date.el (format-seconds): Comment fix.
9777
9778         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
9779         and byte-optimize-form-code-walker.
9780         (dgnushack-make-auto-load): Don't advise make-autoload.
9781
9782         * lpath.el: Remove Emacs 21 stuff.
9783
9784 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9785
9786         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
9787         outside the active range.  Suggested by Dan Christensen.
9788
9789         * gnus-start.el (gnus-get-unread-articles): Get the extended method
9790         slightly later to avoid double-getting it.
9791
9792         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
9793         previous patch.
9794
9795         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
9796
9797 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
9798
9799         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
9800
9801 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9802
9803         * gnus-int.el (gnus-open-server): Give a better error message in the
9804         "go offline" case.
9805
9806         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
9807         marks for nnimap, which is seldom the right thing to do.
9808
9809         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
9810         (gnus-same-method-different-name): New function.
9811
9812         * nnimap.el (parse-time): Require.
9813
9814         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
9815         method in the presence of many similar methods.
9816
9817         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
9818
9819         * nnimap.el (nnimap-find-expired-articles): Don't refer to
9820         nnml-inhibit-expiry.
9821
9822         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
9823         find out whether methods are equal.
9824
9825         * nnimap.el (nnimap-find-expired-articles): New function.
9826         (nnimap-process-expiry-targets): New function.
9827         (nnimap-request-move-article): Request the article before looking at
9828         what the Message-ID is.  Fix found by Andrew Cohen.
9829         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
9830
9831         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
9832         for oldness in addition to being a predicate.
9833
9834         * nnimap.el (nnimap-request-group): When we have zero articles, return
9835         the right data to Gnus.
9836         (nnimap-request-expire-articles): Only delete articles immediately if
9837         the target is 'delete.
9838
9839         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
9840         method, this would bug out.
9841
9842         * gnus-group.el (gnus-group-expunge-group): Rename from
9843         gnus-group-nnimap-expunge, and implemented as a normal interface
9844         function.
9845
9846         * gnus-int.el (gnus-request-expunge-group): New function.
9847
9848         * nnimap.el (nnimap-request-create-group): Implement.
9849         (nnimap-request-expunge-group): New function.
9850
9851 2010-09-21  Julien Danjou  <julien@danjou.info>
9852
9853         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
9854         (gnus-html-cache-expired): Add new function.
9855         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
9856         wethever we should display image for fetch it.
9857         Compute alt-text earlier to pass it to the fetching function too.
9858         (gnus-html-schedule-image-fetching): Change function argument to only
9859         get one image at a time, not a list.
9860         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
9861         cache.
9862         (gnus-html-get-image-data): New function to retrieve image data from
9863         cache.
9864         (gnus-html-put-image): Change buffer argument to use image data rather
9865         than file, and place image above region rather than inserting a new
9866         one.  Do not take alt-text as argument, since it's useless now: we place
9867         the image above alt-text.
9868         (gnus-html-prune-cache): Remove.
9869         (gnus-html-show-images): Start to fetch image when we find one, do not
9870         push into a temporary list.
9871         (gnus-html-prefetch-images): Only fetch image if they have expired.
9872         (gnus-html-browse-image): Fix, use 'gnus-image-url.
9873         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
9874
9875 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9876
9877         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
9878
9879 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9880
9881         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
9882         spec inser "*" if the group isn't active instead of 0.
9883
9884         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
9885         opening the server.
9886         (nnimap-request-delete-group): Implement group deletion.
9887         (nnimap-transform-headers): Return the size of the entire message in
9888         the Bytes header, not just the size of the first part.
9889         (nnimap-request-move-article): When moving an article from nnimap,
9890         request the article first so the accepting form has an article to
9891         accept.  Reported by Dan Christensen.
9892         (nnimap-command): Make sure that the error message doesn't error out.
9893
9894 2010-09-20  David Edmondson  <dme@dme.org>
9895
9896         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
9897         we haven't requested anything.
9898
9899 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9900
9901         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
9902         "".  Fix found by Andrew Cohen.
9903
9904         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
9905         instead of -encode-string.
9906
9907 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9908
9909         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
9910
9911         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
9912         by mm-subst-char-in-string.
9913
9914 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9915
9916         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
9917         waiting for the connection string.
9918
9919         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
9920         arriving.
9921
9922         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
9923         bogus characters.  This allows selecting certain Gmail groups.
9924
9925         * nnimap.el (nnimap-find-wanted-parts-1): New function.
9926         (nnimap-fetch-partial-articles): New variable.
9927         (nnimap-open-connection): When looking for credentials, also use the
9928         nnimap-server-port.
9929         (nnimap-request-article): Return the group/article number, so that Gnus
9930         `^' works as expected.
9931         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
9932
9933         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
9934         comments.
9935         (gnus-methods-sloppily-equal): New function.
9936         (gnus): When using the development version of Gnus, load the gnus-load
9937         file.
9938
9939         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
9940         `gnus-open-server' on each method before trying to scan them etc.
9941         This ensures that all the backend parameters are set correctly.
9942
9943         * nnimap.el (nnimap-authenticator): New variable.
9944         (nnimap-open-connection): Allow anonymous login.
9945         (nnimap-transform-headers): The chars header is called Chars not Bytes.
9946         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
9947
9948         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
9949         patch, found by Knut Anders Hatlen.
9950
9951 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
9952
9953         * gnus-agent.el (gnus-agent-batch-confirmation)
9954         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
9955         to gnus-message.
9956         * gnus-art.el (gnus-article-describe-briefly): Likewise.
9957         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
9958         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
9959         * gnus-int.el (gnus-open-server): Likewise.
9960         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
9961         (gnus-score-check-syntax): Likewise.
9962         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
9963         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
9964         Likewise.
9965         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
9966
9967 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9968
9969         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
9970         calling conventions so that prefetch doesn't bug out.
9971
9972 2010-09-19  Julien Danjou  <julien@danjou.info>
9973
9974         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
9975         rather than `subst-char-in-region' in order to be able to replace ASCII
9976         char by UTF-8 ones.
9977
9978         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
9979         than curl.
9980         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
9981         the right URL and ALT text on images.
9982         (gnus-html-wash-tags): Fix tag case.
9983         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
9984         (gnus-article-html): Add -o display_ins_del=2 option.
9985         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
9986
9987 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9988
9989         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
9990         the extra mail headers, which sometimes seem to happen for unknown
9991         reasons.
9992
9993         * mail-parse.el (mail-header-encode-parameter): Define as
9994         rfc2045-encode-string instead of as rfc2231-encode-string, since some
9995         (or most, perhaps?) mail readers don't understand the latter, but do
9996         understand the former.
9997
9998         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
9999         to nil, so that no methods are automatically agentized.  I think this
10000         is probably what most users want.
10001
10002         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
10003         from url-retrieve, for instance about invalid URLs.
10004
10005         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
10006         groups that have no articles.
10007         (nnimap-request-article): Check that we really got an article when we
10008         requested one.
10009
10010         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
10011         doesn't exist.
10012
10013         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
10014         nntp buffer so the agent can save it.
10015         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
10016         that CRLF doesn't get translated to \n.
10017         (nnimap-open-connection): Don't make 'shell commands only send \n.
10018
10019 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10020
10021         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
10022         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
10023         Update var name.
10024         (nnml-generate-nov-file): Use dolist.
10025         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
10026         Use with-current-buffer.
10027
10028 2010-09-18  Julien Danjou  <julien@danjou.info>
10029
10030         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
10031         parallel.
10032
10033 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10034
10035         * nnimap.el (nnimap-update-info): When doing partial marks update, get
10036         the range update right.
10037         (nnimap-request-group): Don't make `M-g' bug out on group with no
10038         marks.
10039         (nnoo): Require, so that other packages can require nnimap.
10040         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
10041         command we're looking for.  This helps when the server sends more
10042         responses after we've gotten everything we expected.
10043         (nnimap): Add a `newlinep' field to keep track of end-of-line
10044         conventions.
10045         Don't send CRLF to things that don't want it.
10046         (nnimap-request-accept-article): Ditto.
10047
10048 2010-09-18  Julien Danjou  <julien@danjou.info>
10049
10050         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
10051         than curl to retrieve images.
10052
10053 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10054
10055         * nnimap.el (nnimap-update-info): Extend the info so that we can set
10056         the marks.
10057         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
10058         (nnimap-wait-for-connection): New function.
10059         (nnimap-open-connection): If we have PREAUTH, don't query for login
10060         credentials.
10061         (nnimap-update-info): Fix off-by-one error when concatenating ranges
10062         when doing a partial update.
10063
10064 2010-09-18  Julien Danjou  <julien@danjou.info>
10065
10066         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
10067         tags.
10068
10069 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10070
10071         * nnimap.el (nnimap-credentials): New function.
10072         (nnimap-open-connection): Use the new function to look for credentials
10073         also on the numeric equivalents of "imap" and "imaps".
10074
10075         * gnus-start.el (gnus-activate-group): Send the info to
10076         gnus-request-group.
10077
10078         * nnimap.el (nnimap-request-group): Have the "check" version of the
10079         function parse flags and update the info, so that a `M-g' get a total
10080         resync of all flags from the group.
10081
10082         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
10083         to allow backends to alter the info on group selection.  Also alter all
10084         the backend -request-group functions to take the parameter.
10085
10086         * nnimap.el (nnimap-store-info): New function.
10087         (nnimap-update-info): Store the info for later usage.
10088         (nnimap-request-group): Use the stored info for the dont-check case, so
10089         that we don't retrieve all marks when we enter a group.
10090
10091         * nnimap.el: Use deffoo instead of defun for interface functions.
10092
10093         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
10094         update the group info.  This makes the nndraft groups, for instance, go
10095         back to their old behavior.
10096
10097         * gnus-sum.el (gnus-select-newsgroup): Indent.
10098
10099         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
10100         in.
10101         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
10102         nothing.
10103
10104         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
10105         from methods that are denied.
10106
10107         * gnus-int.el (gnus-method-denied-p): New function.
10108
10109         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
10110         store the password instead of netrc.
10111         (nnimap-open-connection): Don't error out when we can't make a
10112         connections.
10113
10114         * auth-source.el (auth-source-create): In the password prompt, say what
10115         we're querying for.  Also prompt for user name if that hasn't been
10116         given.
10117
10118         * nnimap.el (nnimap-with-process-buffer): Remove.
10119
10120 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10121
10122         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
10123         method when we're reading from the agent.
10124
10125         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
10126
10127         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
10128         that's probably most useful for users.
10129
10130         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
10131         "failed" all the time.
10132
10133         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
10134         ...)) with (with-current-buffer ... ).
10135
10136         * nntp.el (nntp-open-server): Return whether the open was successful or
10137         not.
10138
10139         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
10140         select an unread unseen article first.
10141
10142         * nnimap.el (nnimap-open-connection): If the user doesn't have a
10143         /etc/services, supply some sensible port defaults.
10144
10145         * dgnushack.el: Define netrc-credentials.
10146
10147 2010-09-17  Julien Danjou  <julien@danjou.info>
10148
10149         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
10150
10151 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
10152
10153         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
10154         doesn't have any parameters.
10155
10156 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10157
10158         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
10159         only upcased checks.
10160
10161         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
10162
10163         * nnimap.el (nnimap-open-shell-stream): New function.
10164         (nnimap-open-connection): Use it.
10165         (nnimap-transform-headers): Get the number of lines in each message.
10166         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
10167         number of lines.
10168         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
10169         problem.
10170
10171         * utf7.el (utf7-encode): Autoload.
10172
10173         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
10174         to allow the mail splitting to not return a default group.  This is
10175         useful for nnimap, which will leave unmatched mail in the inbox.
10176
10177         * nnimap.el: Rewritten.
10178
10179         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
10180         nnimap usage.
10181
10182         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
10183         if the move is internal, so that nnimap can do fast internal moves.
10184
10185         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
10186         data.
10187         (gnus-read-active-for-groups): Support finishing the early retrieval of
10188         data.
10189
10190         * gnus-range.el (gnus-range-nconcat): New function.
10191
10192         * gnus-int.el (gnus-finish-retrieve-group-infos)
10193         (gnus-retrieve-group-data-early): New functions.
10194
10195 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10196
10197         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
10198         (nnrss-retrieve-groups):
10199         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
10200         (pop3-quit): Use with-current-buffer.
10201
10202 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10203
10204         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
10205         instead of nnheader-accept-process-output.
10206
10207         * dgnushack.el (dgnushack-compile): Add comment.
10208
10209         * lpath.el: No need to fbind propertize for XEmacs 21.4.
10210
10211         * gnus-html.el (gnus-html-schedule-image-fetching)
10212         (gnus-html-prefetch-images): Replace process-kill-without-query by
10213         gnus-set-process-query-on-exit-flag.
10214
10215 2010-09-16  Romain Francoise  <romain@orebokech.com>
10216
10217         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
10218
10219 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10220
10221         * gnus-registry.el (gnus-registry-install-shortcuts): The second
10222         parameter to unintern is mandatory-ish in Emacs 24.
10223
10224         * gnus-html.el (gnus-html-schedule-image-fetching)
10225         (gnus-html-prefetch-images): Check for curl before using it.
10226
10227         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
10228         depend on curl, which isn't essential.
10229
10230         * imap.el: Revert back to version
10231         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
10232         seem problematic.
10233
10234 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10235
10236         * gnus-registry.el (gnus-registry-install-shortcuts):
10237         Explicitly pass `obarray' to `unintern' to avoid a warning.
10238
10239 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10240
10241         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
10242         change.
10243
10244         * nnrss.el (nnrss-request-list): Remove this function and related
10245         functions, including the moreover stuff.
10246
10247 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10248
10249         * nnrss.el (nnrss-retrieve-groups): New function.
10250
10251 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10252
10253         * .dir-locals.el: Add no-byte-compile cookie.
10254
10255 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10256
10257         * time-date.el (format-seconds): Comment fix.
10258
10259         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
10260         for back end that doesn't support request-scan.
10261
10262 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10263
10264         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
10265         then do request scans from the backends.
10266
10267         * netrc.el (netrc-credentials): New conveniency function.
10268
10269         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
10270         avoid running a hook per line, since this takes a lot of time,
10271         profiling shows.
10272         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
10273         directly if gnus-visual-p is true.
10274
10275 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10276
10277         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
10278         groups; replace mapcar with dolist which is a bit faster; pass groups
10279         info to gnus-read-active-file-1.
10280         (gnus-read-active-file-1): Scan only specified groups if the new
10281         optional arg `infos' is given.
10282
10283 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10284
10285         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
10286
10287         * pop3.el (pop3-movemail): Remove.
10288         (pop3-streaming-movemail): Rename to pop3-movemail.
10289
10290         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
10291         don't restrict end-tag searches to the end of the line.
10292
10293 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10294
10295         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
10296         articles of every unchecked group to t, which means unknown since the
10297         server has never been opened.
10298
10299 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10300
10301         * gnus-html.el (gnus-html-show-alt-text): New command.
10302         (gnus-html-browse-image): Ditto.
10303         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
10304         to browse the image directly.
10305         (gnus-html-wash-tags): Search for images first, so that <a><img> works
10306         better.
10307
10308         * gnus-async.el (gnus-async-article-callback):
10309         Call `gnus-html-prefetch-images' unconditionally.
10310
10311         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
10312         before feeding URLs to curl.
10313
10314 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10315
10316         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
10317         internal images as deletable by `W D D'.
10318
10319         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
10320         (gnus-async-article-callback): Fix typo.
10321
10322 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10323
10324         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
10325         current line to work around bugs in the output from w3m.
10326
10327         * gnus-async.el (gnus-async-article-callback): Always prefetch images
10328         for groups that want that.
10329
10330         * nntp.el (nntp-wait-for-string): Supply a timeout for
10331         accept-process-output to ensure progress.
10332
10333         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
10334         level to get unread articles from, then use that for foreign groups,
10335         too.
10336
10337         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
10338         confuses the rest of the function.
10339
10340         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
10341         for the methods that support -retrieve-groups, too.
10342
10343         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
10344
10345 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10346
10347         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
10348         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
10349
10350         * pop3.el: Require cl when compiling.
10351         (pop3-number-of-responses): Search for "+OK", not "+OK ".
10352
10353 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10354
10355         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
10356         that aren't going to be activated.
10357         (gnus-get-unread-articles): Fix up the last commit.
10358
10359         * gnus-html.el (gnus-article-html): Allow calling without specifying
10360         the handle.  In that case, dissect the buffer first.
10361
10362         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
10363
10364         * nnimap.el (nnimap-open-connection): Revert the change that would look
10365         into authinfo for imaps instead of imap.
10366
10367         * gnus-start.el (gnus-activate-group): Take an optional parameter to
10368         say that you don't want to call gnus-request-group with don-check, but
10369         do check the reponse.  This is for virtual groups only.
10370         (gnus-get-unread-articles): Count the archive groups as secondary, so
10371         that they're activated the same way as before.
10372
10373         * imap.el (imap-message-map): Removed optional buffer parameter, since
10374         no callers use it.
10375         (imap-message-get): Ditto.
10376         (imap-message-put): Ditto.
10377         (imap-mailbox-map): Ditto.
10378         (imap-mailbox-put): Ditto.
10379         (imap-mailbox-get): Ditto.
10380         (imap-mailbox-get): Revert last change for this function.
10381
10382         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
10383         case-insensitively.
10384         (nnimap-debug): Remove.
10385
10386         * net/imap.el (imap-fetch-safe): Remove function, and alter all
10387         callers to use `imap-fetch' instead.  According to the comments, this
10388         should be safe, since all other IMAP clients use the 1:* syntax.
10389         (imap-enable-exchange-bug-workaround): Remove.
10390         (imap-debug): Remove -- doesn't seem very useful.
10391
10392         * mail-source.el (mail-source-fetch): Don't message if we're fetching
10393         mail from a file, and the file doesn't exist.
10394
10395         * imap.el (imap-log): New convenience function used throughout instead
10396         of repeating the same code all over the place.
10397
10398         * pop3.el (pop3-streaming-movemail): Return t for success.
10399
10400         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
10401         .authinfo if we're using ssl connection.
10402
10403         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
10404         already have if we're in a main Gnus `g' run.
10405
10406         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
10407
10408 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10409
10410         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
10411
10412         * nnmh.el (nnmh-request-list-1): Bind `file'.
10413
10414         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
10415         alias to set-process-query-on-exit-flag or process-kill-without-query.
10416         (pop3-open-server): Use it.
10417
10418 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10419
10420         * mail-source.el (mail-source-delete-crash-box): Always move the crash
10421         box to the Incoming file.  Fixes mistake in previous checkin.
10422
10423         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
10424         request loop (for debugging purposes) removed.
10425
10426         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
10427         culprit is more visible.
10428         (nnml-save-incremental-nov, nnml-open-incremental-nov)
10429         (nnml-add-incremental-nov): New functions to do "incremental" nov
10430         updates, where we just append to the end of the existing nov files
10431         without reading/writing them in full.
10432
10433         * mail-source.el (mail-source-delete-crash-box): Really only check the
10434         incoming files once in a while.
10435
10436         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
10437
10438         * mail-source.el (mail-source-delete-crash-box): Only check the
10439         incoming files for deletion once per day to save a lot of file
10440         accesses.
10441
10442         * pop3.el (pop3-logon): Fix up unbound variable typo.
10443
10444         * mail-source.el (pop3-streaming-movemail): Autoload.
10445
10446         * pop3.el (pop3-streaming-movemail):
10447         Respect pop3-leave-mail-on-server.
10448
10449         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
10450         retrieval.
10451
10452         * pop3.el (pop3-process-filter): Remove unused function.
10453         (pop3-streaming-movemail, pop3-send-streaming-command)
10454         (pop3-wait-for-messages, pop3-write-to-file)
10455         (pop3-number-of-responses): New functions for streaming pop3
10456         retrieval.
10457
10458         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
10459         come from no known methods.
10460         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
10461         list.
10462
10463         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
10464         message sizes.
10465         (pop3-movemail): Use erase-buffer instead of looping and deleting
10466         regions, which seems rather odd.
10467
10468         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
10469         file once per `g' run.
10470
10471         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
10472         directories.  This makes the draft queue directory work.
10473
10474         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
10475         data from the backends, so that we only request the list of groups from
10476         each method once.  This should speed things up considerably.
10477
10478         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
10479         detect that it's not implemented.
10480
10481         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
10482         we actually do recurse down into the tree, but don't stat all leaf
10483         nodes.
10484
10485         * gnus-html.el (gnus-html-show-images): If there are no images to show,
10486         then say so instead of bugging out.
10487
10488         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
10489         files exist before trying to read them.
10490
10491         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
10492         around <pre_int>.
10493
10494         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
10495
10496         * nnmh.el (nnmh-request-list-1): Optimize for speed.
10497
10498 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10499
10500         * mm-util.el (mm-image-load-path): Just return the image directories,
10501         not all directories in the path in addition to the image directories.
10502         (mm-image-load-path): Maintain a cache of the image directories so that
10503         the `g' command in Gnus doesn't have to stat dozens of directories each
10504         time.
10505
10506         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
10507         (gnus-html-wash-tags): Add a new `i' command to insert images.
10508         (gnus-html-insert-image): New command and keystroke.
10509         (gnus-html-redisplay-with-images): New command and keystroke.
10510         (gnus-html-show-images): Rename command.
10511         (gnus-html-wash-tags): Remove more white space before <pre_int> image
10512         spacers.
10513         (gnus-html-wash-tags): Decode entities at the end, so that entities
10514         inside the tags don't mess up the rest of the "parsing".
10515
10516         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
10517         so that nnimap methods aren't agentized by default.  There's apparently
10518         many problems related to agent/imap behavior.
10519
10520         * gnus-art.el (gnus-article-copy-string): New command and key binding.
10521
10522         * gnus-html.el: Doc fix.
10523
10524 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10525
10526         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
10527         specifier-spec-list for Emacs 21.
10528
10529         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
10530         glyph-width and glyph-height instead of display-graphic-p and
10531         image-size; make avoidance of displaying small images work for XEmacs.
10532
10533         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
10534         for XEmacs.
10535
10536         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
10537         of symbol that holds plist data.
10538         (gnus-process-plist): Remove plist of process after getting it.
10539
10540 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10541
10542         * message.el (message-generate-hashcash): Change default to
10543         'opportunistic if hashcash is installed.
10544
10545         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
10546         (gnus-html-put-image): Only call image-size once, since it's somewhat
10547         time-consuming on remote X servers.
10548
10549 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10550
10551         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
10552         type on data, not a file name.
10553
10554         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
10555         window-pixel-edges for Emacs 21.
10556
10557         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
10558         decoded contents.
10559         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
10560
10561 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10562
10563         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
10564         group line format, since it isn't very interesting.
10565
10566         * gnus-agent.el (gnus-agent-short-article),
10567         (gnus-agent-long-article): Increase values for these two variables,
10568         since most people are likely to have more network connection and
10569         storage than before.
10570
10571         * gnus.el (gnus-refer-article-method): Change default to 'current.
10572         When referring an article, the common behavior is to refer it from the
10573         current select method, not the native select method.  The chances of
10574         the native select method having the message in question is rather slim
10575         these days.
10576
10577         * gnus-sum.el (gnus-auto-select-subject): Change default to
10578         `unseen-or-unread'.  I think it's likely that most people want to
10579         select an unseen article over a previously seen, but unread one.
10580
10581         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
10582         means that in the article buffer none of the minor mode elements will
10583         be shown, usually, and this is not desirable in most cases.
10584
10585         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
10586         that commands like `d' (and the like) go to the next line in the
10587         buffer, instead of the next unread article.  I think this is the
10588         behavior that is most natural for most users.
10589         (gnus-single-article-buffer): Change default to nil, so that people can
10590         have as many article buffers open as they have summary buffer.  I think
10591         this is the most natural way for the groups to behave.
10592
10593         * message.el (message-generate-new-buffers): Change default to
10594         `unsent', so that all new message buffers start their names with the
10595         string "*unsent", and it's easier to find the buffers if you move from
10596         them.
10597
10598 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10599
10600         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
10601         small.  They're probably tracking images.
10602         (gnus-html-wash-tags): Remove all <pre_int> place holders.
10603         (gnus-html-rescale-image): Yet another try at getting the image sizing
10604         right.
10605
10606         * nntp.el (nntp-request-set-mark): Refuse to do marks if
10607         nntp-marks-file-name is nil.
10608
10609 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10610
10611         * gnus-html.el (gnus-html-wash-tags)
10612         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
10613         Better logging.
10614
10615 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10616
10617         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
10618
10619         * gnus-html.el (gnus-html-wash-tags): Check the value of
10620         gnus-blocked-images in the summary buffer.
10621
10622 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10623
10624         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
10625
10626 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10627
10628         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
10629         like "a", it seems like.
10630         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
10631         since it needs to be picked from the correct buffer.
10632
10633         * nnwfm.el: Remove.
10634
10635         * nnlistserv.el: Remove.
10636
10637 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10638
10639         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
10640         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
10641
10642 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10643
10644         * nnkiboze.el: Remove.
10645
10646         * nndb.el: Remove.
10647
10648         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
10649         alt text.
10650         (gnus-html-rescale-image): Try to get the rescaling logic right for
10651         images that are just wide and not tall.
10652
10653         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
10654         overshadow variable bindings.
10655
10656 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10657
10658         * gnus-html.el (gnus-html-wash-tags)
10659         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
10660         Add extra logging.
10661
10662 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10663
10664         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
10665         (gnus-max-image-proportion): New variable.
10666         (gnus-html-rescale-image): New function.
10667         (gnus-html-put-image): Rescale images.
10668
10669 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10670
10671         Fix up some byte-compiler warnings.
10672         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
10673         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
10674         (gnus-article-fill-cited-article, gnus-article-hide-citation)
10675         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
10676         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
10677         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
10678         (gnus-group-update-group): Use save-excursion and with-current-buffer.
10679
10680 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10681
10682         * gnus-html.el (gnus-article-html): Decode contents by charset.
10683
10684 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10685
10686         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
10687         (gnus-html-frame-width, gnus-blocked-images):
10688         * message.el (message-prune-recipient-rules): Add custom version.
10689         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
10690
10691         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
10692         functions.
10693
10694         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
10695         gnus-process-get.
10696
10697 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
10698
10699         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
10700         instead of lsub directly.
10701
10702 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10703
10704         * nnwarchive.el: Remove.
10705
10706         * gnus-soup.el: Remove.
10707
10708         * nnsoup.el: Remove.
10709
10710         * nnultimate.el: Remove.
10711
10712         * gnus-html.el (gnus-blocked-images): New variable.
10713
10714         * message.el (message-prune-recipients): New function.
10715         (message-prune-recipient-rules): New variable.
10716
10717         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
10718         guess whether a long line is natural text or not.
10719
10720         * gnus-html.el (gnus-html-schedule-image-fetching):
10721         Use gnus-process-plist and friends for compatibility.
10722
10723 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10724
10725         * gnus-html.el: Require packages that define macros used in this file.
10726         (gnus-article-mouse-face): Declare to silence byte-compiler.
10727         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
10728         process-get.
10729         (gnus-html-put-image): Use plist-get to avoid getf.
10730         (gnus-html-prefetch-images): Use with-current-buffer.
10731
10732 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10733
10734         * gnus-ems.el: Provide compatibility functions for
10735         gnus-set-process-plist.
10736
10737         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
10738         header-line-format for XEmacs 21.4.
10739
10740         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
10741         * gnus.el (gnus-valid-select-methods):
10742         * message.el (message-send-mail-partially-limit):
10743         * mm-decode.el (mm-text-html-renderer):
10744         * mml.el (mml-insert-mime-headers-always):
10745         * smiley.el (smiley-regexp-alist): Bump custom version.
10746
10747 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10748
10749         * gnus-html.el: require mm-url.
10750         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
10751         with the url to `url'.
10752         (gnus-html-wash-tags): Support cid: URLs/images.
10753
10754 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10755
10756         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
10757         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
10758         bindings, as they aren't useful at all.  `w' is moved to `W w'.
10759
10760         * gnus-move.el: Remove file, since it doesn't really work.
10761
10762         * gnus-html.el (gnus-article-html): Tell w3m that the input is
10763         UTF-8.  This seems to fix problems with some German web feeds.
10764
10765         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
10766         at the top so that the proper colors are applied.
10767
10768         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
10769         don't have dots in their names.
10770
10771         * gnus-art.el (gnus-article-view-part): Doc fix.
10772
10773         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
10774         XEmacs-compatible.
10775         (gnus-html-put-image): Don't do images on non-graphic displays.
10776
10777         * nnslashdot.el: Remove this unused backend.
10778
10779         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
10780         actions.
10781         (gnus-undo-register-1): Revert last change.
10782
10783         * gnus-group.el (gnus-group-completing-read): Protect against not
10784         having completion-styles bound.
10785
10786         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
10787         make broken recipients happier.
10788
10789         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
10790
10791         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
10792         point parameter.
10793
10794         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
10795
10796         * gnus-group.el (gnus-group-completing-read): Add 'substring to
10797         completion-styles for group selection.
10798
10799 2009-02-04  Andreas Schwab  <schwab@suse.de>
10800
10801         * gnus-score.el (gnus-score-string): Fix regex for matching extra
10802         headers and regexp-quote the match if necessary.
10803
10804 2009-03-24  Miles Bader  <miles@gnu.org>
10805
10806         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
10807         the blinking smiley.
10808
10809 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10810
10811         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
10812         blink smiley.
10813
10814 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10815
10816         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
10817         where the dribbel file lives exists.
10818
10819         * message.el (message-send-mail-partially-limit): Change the default to
10820         nil, since most people don't want this.
10821
10822         * mm-url.el (mm-url-decode-entities): Also decode entities like
10823         &#x3212.
10824
10825 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
10826
10827         * gnus-sum.el (gnus-summary-idna-message):
10828         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
10829         Hyperlink urls in docstrings with URL `...'.
10830
10831 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
10832
10833         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
10834         functions.
10835
10836 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10837
10838         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
10839         say what the mouseover text should be.
10840
10841         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
10842         version of the mm-w3m-safe-url-regexp variable to only download images
10843         in the groups where we want that to happen.
10844
10845         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
10846
10847         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
10848         easier debugging.
10849         (gnus-article-beginning-of-window): Add kludge to allow spacing past
10850         big pictures in the article buffer.
10851
10852         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
10853         gnus-article-html.
10854         (mm-text-html-renderer): gnus-article-html needs curl in addition to
10855         w3m.
10856
10857         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
10858
10859 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10860
10861         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
10862         which doesn't exist.
10863
10864         * message.el (message-inhibit-ecomplete): New variable to allow some
10865         function to inhibit ecomplete address storage.
10866         (message-resend): Disable ecomplete message storage when resending
10867         messages.
10868
10869         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
10870
10871 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10872
10873         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
10874         Save excursion while copying, moving, and deleting articles in order to
10875         prevent the cursor from jumping to unforeseen place.
10876
10877 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10878
10879         * lpath.el: No need to bind bookmark-current-buffer,
10880         bookmark-yank-point and bookmark-make-record-function.
10881
10882 2010-08-17  Glenn Morris  <rgm@gnu.org>
10883
10884         * gnus-sync.el: Require gnus components whose functions are used.
10885
10886         * gnus-art.el (bookmark-make-record-function):
10887         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
10888         Declare for compiler.
10889
10890         * mm-url.el (mml-compute-boundary): Autoload.
10891
10892 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10893
10894         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
10895
10896 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
10897
10898         Typo fix "hoo4a" -> "hook".
10899
10900         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
10901
10902 2010-08-14  Glenn Morris  <rgm@gnu.org>
10903
10904         * gnus-sync.el (gnus-sync): Fix defgroup version.
10905
10906 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
10907
10908         Doc fixes and keep unknown groups (ammended for nunion bug fix).
10909
10910         * gnus-sync.el: Fix docs.
10911         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
10912         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
10913
10914 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10915
10916         Optimizations for gnus-sync.el.
10917
10918         * gnus-sync.el: Add docs about gnus-sync-backend
10919         possibilities.
10920         (gnus-sync-save): Remove unnecessary message.
10921         (gnus-sync-read): Optimize and show what groups were skipped.
10922
10923 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10924
10925         Minor bug fixes for gnus-sync.el.
10926
10927         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
10928         Don't read the sync on get-new-news.
10929
10930         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
10931         quiet.
10932
10933         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
10934         (fix typo).
10935
10936 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
10937
10938         Make saving and restoring of hidden threads work with overlays.
10939         Patch applied by Ted Zlatanov.
10940
10941         * gnus-sum.el (gnus-hidden-threads-configuration)
10942         (gnus-restore-hidden-threads-configuration): Update to deal with text
10943         properties, rather than searching for a magic character.
10944
10945 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10946
10947         New gnus-sync.el library for synchronization of marks.
10948
10949         * gnus-sync.el: New library for synchronization of marks.
10950
10951         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
10952         renamed from `gnus-registry-grep-in-list'.
10953
10954         * gnus-registry.el (gnus-registry-follow-group-p):
10955         Use `gnus-grep-in-list'.
10956
10957         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
10958
10959 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10960
10961         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
10962         determining charset of text fails.
10963
10964 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10965
10966         * nnmail.el (nnmail-get-new-mail-1): Revert.
10967
10968         * nnml.el (nnml-active-number): Make sure names of newly created groups
10969         in nnml-group-alist are encoded.
10970
10971 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10972
10973         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
10974         containing non-ASCII characters in active file for nnml back end.
10975
10976 2010-07-24  David Engster  <dengste@eml.cc>
10977
10978         * mml-smime.el (mml-smime-epg-verify): Also accept the older
10979         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
10980
10981 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
10982
10983         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
10984         tag (Bug#6654).
10985
10986 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10987
10988         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
10989         the article buffer, not the summary buffer.
10990
10991 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10992
10993         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
10994         Emacs 23 as well.
10995
10996 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10997
10998         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
10999         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
11000
11001 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11002
11003         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
11004         Patch applied by Karl Fogel.
11005
11006         * gnus-sum.el (gnus-summary-bookmark-make-record):
11007         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
11008
11009 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11010
11011         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
11012         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
11013         C-w still not working correctly from Article buffers; Thierry's
11014         patch to fix that will be applied after this.
11015
11016         * gnus-art.el (bookmark-make-record-function): New local variable.
11017
11018         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
11019         article buffer.
11020         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
11021
11022 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
11023
11024         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
11025         on changes in bookmark.el.
11026
11027 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11028
11029         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
11030         `no-log' instead of message not to log prompt string.
11031
11032 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
11033
11034         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
11035         the *other* type of HTML form submission.
11036
11037 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
11038
11039         * auth-source.el (auth-source-pick): If choice does not contain a
11040         questioned keyword, set the check to t.
11041
11042 2010-06-12  Romain Francoise  <romain@orebokech.com>
11043
11044         * gnus-util.el (gnus-date-get-time): Move up before first use.
11045
11046 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11047
11048         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
11049         (gnus-article-edit-part): Bind it to make last part that is substituted
11050         or deleted visible.
11051         (gnus-mime-display-single): Buttonize part of which id equals to
11052         gnus-mime-buttonized-part-id.
11053
11054 2010-06-10  Dan Christensen  <jdc@uwo.ca>
11055
11056         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
11057         (gnus-dd-mmm): Use gnus-date-get-time.
11058         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
11059         simplify logic.
11060         (gnus-summary-limit-to-age): Use gnus-date-get-time.
11061         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
11062
11063 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
11064
11065         * auth-source.el (top): Autoload `secrets-list-collections',
11066         `secrets-create-item', `secrets-delete-item'.
11067         (auth-sources): Fix tag string.
11068         (auth-get-source, auth-source-retrieve, auth-source-create)
11069         (auth-source-delete): New defuns.
11070         (auth-source-pick): Rewrite in order to avoid 2 passes.
11071         (auth-source-forget-user-or-password): New parameter USERNAME.
11072         (auth-source-user-or-password): New parameters CREATE-MISSING and
11073         DELETE-EXISTING.  Retrieve password interactively, if needed.
11074
11075 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
11076
11077         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
11078         deleting unused directories when gnus-expert-user is t.
11079
11080 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11081
11082         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
11083         for each temp file when gnus-article-browse-delete-temp is ask.
11084
11085 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11086
11087         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
11088         Replace Lisp calls to delete-backward-char by calls to delete-char.
11089
11090 2010-05-20  Kevin Ryde  <user42@zip.com.au>
11091
11092         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
11093
11094 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
11095
11096         * password-cache.el (password-cache-remove): Fix docstring.
11097
11098 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11099
11100         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
11101         article unless decoding article to be saved.
11102
11103 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11104
11105         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
11106         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
11107         generated within the mm-with-unibyte-current-buffer macro.
11108
11109 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11110
11111         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
11112         to nil when we're in a mml-preview buffer and no group is selected.
11113
11114 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
11115
11116         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
11117         when catching the `C-g'.  Reported by "Leo".
11118
11119 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11120
11121         * message.el (message-forward-make-body-plain)
11122         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
11123         multibyte-string-p.
11124
11125         * lpath.el: Revert.
11126
11127 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11128
11129         * message.el (message-forward-make-body-mml): Assume original message
11130         is multibyte string; error on unibyte.
11131         (message-forward-make-body-plain): Ditto; don't add excessive newline
11132         in body end.
11133
11134         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
11135
11136 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
11137
11138         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
11139         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
11140
11141 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11142
11143         * mm-extern.el (mm-extern-url): Don't use
11144         mm-with-unibyte-current-buffer.
11145         (mm-extern-cache-contents): Use with-current-buffer instead of
11146         save-excursion + set-buffer.
11147
11148 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11149
11150         * mm-util.el (mm-emacs-mule): Remove.
11151
11152 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
11153
11154         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
11155         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
11156         change.
11157
11158 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11159
11160         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
11161         bind the default value of enable-multibyte-characters to nil.
11162
11163 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11164
11165         * message.el (message-forward-make-body-plain)
11166         (message-forward-make-body-mml):
11167         Don't use mm-with-unibyte-current-buffer.
11168
11169 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11170
11171         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
11172
11173 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
11174
11175         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
11176         (Bug#5592).
11177
11178 2010-05-07  Julien Danjou  <julien@danjou.info>
11179
11180         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
11181         it to mm-pipe-part.
11182
11183         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
11184         it is given.
11185
11186 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11187
11188         * binhex.el (binhex-decode-region-internal):
11189         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
11190         (dns-query):
11191         * nnweb.el (nnweb-gmane-search):
11192         * pgg-parse.el (pgg-parse-armor):
11193         * pgg.el (pgg-verify-region):
11194         * sha1.el (sha1-string-external):
11195         * uudecode.el (uudecode-decode-region-internal):
11196         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
11197         XEmacs.
11198
11199         * gnus-art.el (gnus-article-browse-html-parts):
11200         * gnus-group.el (gnus-read-ephemeral-gmane-group):
11201         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
11202         make-temp-file.
11203
11204         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
11205         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
11206         compiling.
11207
11208         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
11209         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
11210         XEmacs when compiling.
11211
11212         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
11213         gnus-pick-mode-off-hook for XEmacs when compiling.
11214         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
11215         gnus-binary-mode-off-hook for XEmacs when compiling.
11216
11217         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
11218         Return nil if char-charset is not available.
11219
11220         * imap.el (imap-disable-multibyte)
11221         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
11222         macros.
11223
11224         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
11225         instead of encode-coding-string.
11226
11227         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
11228         'xemacs) instead of mm-emacs-mule to switch function definitions.
11229         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
11230
11231         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
11232         bind temporary-file-directory for XEmacs;
11233         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
11234         timer-set-function for XEmacs 21.4 and SXEmacs;
11235         bind timer-list for XEmacs 21.4 and SXEmacs;
11236         fbind char-charset and find-charset-region for non-Mule XEmacs;
11237         fbind decode-coding-region, decode-coding-string, detect-coding-region,
11238         encode-coding-region and encode-coding-string for XEmacs having no
11239         file-coding feature.
11240
11241 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
11242
11243         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
11244
11245 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11246
11247         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
11248         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
11249
11250 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
11251
11252         * mm-util.el (mm-decompress-buffer): Use `delete-file';
11253         alias `jka-compr-delete-temp-file' no longer exists.
11254
11255 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11256
11257         Use define-minor-mode in Gnus where applicable.
11258         * mml.el (mml-mode): Use define-minor-mode.
11259         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
11260         (gnus-undo-mode): Use define-minor-mode.
11261         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
11262         (gnus-dead-summary-mode): Use define-minor-mode.
11263         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
11264         Initialize in declaration.
11265         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
11266         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
11267         (gnus-mailing-list-mode): Use define-minor-mode.
11268         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
11269         (gnus-draft-mode): Use define-minor-mode.
11270         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
11271         (gnus-dired-mode): Use define-minor-mode.
11272
11273 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
11274
11275         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
11276         handles on recursive mml-to-mime translation and check them for
11277         boundary delimiter collisions.  Reported by Greg Troxel.
11278
11279 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11280
11281         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
11282
11283 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11284
11285         * mm-util.el (mm-find-buffer-file-coding-system):
11286         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
11287
11288 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
11289
11290         * message.el (message-generate-headers): Record insertion of optional
11291         headers as well.  Otherwise the check to prevent repeated insertion of
11292         optional headers is a no-op.
11293
11294 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
11295
11296         * smime.el: Don't mention CVS.
11297
11298         * nnrss.el (nnrss-fetch): Don't mention CVS.
11299
11300         * nnir.el: Don't mention CVS.
11301
11302 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11303
11304         * gnus-sum.el (gnus-summary-bookmark-make-record):
11305         Add `location' field.
11306
11307 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11308
11309         * lpath.el: Fbind bookmark-default-handler,
11310         bookmark-get-bookmark-record, bookmark-make-record-default,
11311         bookmark-prop-get for Emacs <23 and XEmacs.
11312
11313 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11314
11315         * gnus-sum.el: Add bookmark declarations to silence the compiler.
11316         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
11317         Use with-current-buffer to silence the byte-compiler.
11318         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
11319         bother to require `gnus'.
11320         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
11321
11322 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11323
11324         * gnus-sum.el (gnus-summary-bookmark-make-record)
11325         (gnus-summary-bookmark-jump): New functions.
11326         (gnus-summary-mode): Setup bookmark support.
11327
11328 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
11329
11330         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
11331         if set.
11332
11333 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11334
11335         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
11336         gnus-article-browse-html-save-cid-image; make it work recursively for
11337         forwarded messages as well.
11338         (gnus-article-browse-html-parts): Work when prefix arg is given.
11339         (gnus-article-browse-html-article): Doc fix.
11340
11341 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
11342
11343         * message.el (message-default-mail-headers):
11344         (message-default-headers): Carry the value mail-default-headers over
11345         into message-default-mail-headers, rather than message-default-headers.
11346
11347 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
11348
11349         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
11350         charset.
11351
11352         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
11353         charset into the <meta> tag when the article is encoded to utf-8.
11354
11355 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11356
11357         * gnus-art.el (gnus-article-browse-delete-temp-files):
11358         Delete directories as well.
11359         (gnus-article-browse-html-parts): Work for images that do not specify
11360         file names; delete temp directory when quitting; insert header at the
11361         right place; use file: scheme for image files.
11362
11363 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
11364
11365         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
11366         (gnus-article-browse-html-parts): Use it to make temporary cid image
11367         files in addition to html file so that browser may display them.
11368
11369 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11370
11371         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
11372
11373 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
11374
11375         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
11376
11377 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
11378
11379         * auth-source.el (auth-sources): Change default to be simpler.
11380         Explain about Secret Service API sources.  Improve Customize options.
11381         (auth-source-pick): Change to accept any number of search parameters.
11382         Implement fallbacks iteratively, not recursively.  Add scoring on the
11383         second pass and sort by score.  Call Secret Service API when needed.
11384         (auth-source-user-or-password): Use it.  Call Secret Service API
11385         directly when needed to get the user name and the password.
11386
11387 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
11388
11389         * message.el (message-interactive): Doc fix.
11390         (message-qmail-inject-args): Reflow.
11391         (message-kill-to-signature): Fix typo in docstring.
11392
11393         * smiley.el (smiley-buffer): Fix typo in docstring.
11394
11395 2010-03-24  Glenn Morris  <rgm@gnu.org>
11396
11397         * mail-source.el (gnus-message): Declare.
11398         (mail-source-delete-old-incoming): Require gnus-util.
11399
11400 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11401
11402         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
11403
11404         * message.el (ecomplete-setup): Autoload it for Emacs <23.
11405
11406         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
11407         password-cache's default if it is not bound.
11408         (mml-secure-passphrase-cache-expiry): Default to 16 that is
11409         password-cache-expiry's default if it is not bound.
11410
11411         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
11412         available in Emacs 21.
11413
11414         * lpath.el: Suppress compiler warnings for:
11415         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
11416         XEmacs;
11417         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
11418         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
11419         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
11420
11421 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
11422
11423         * auth-source.el (auth-sources): Fix up definition so extra parameters
11424         are always inline.
11425
11426 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
11427
11428         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
11429         wasn't updated after mismatch.  Clear cached mailbox info correctly
11430         when uidvalidity changes.
11431         (nnimap-group-prefixed-name): New function to avoid some code
11432         duplication.
11433         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
11434         (nnimap-request-group): Use it.
11435         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
11436         (nnimap-update-unseen): Significantly improved speed of Gnus startup
11437         with many imap folders.  This is done by caching the group status from
11438         the imap server persistently in a group parameter `imap-status'.  (This
11439         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
11440         but not persistently, so every Gnus startup was still very slow.)
11441
11442 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
11443
11444         * assistant.el (assistant-render-text): Run `widget-setup' and don't
11445         delete the extra newline.  Otherwise editing of :string and :number
11446         types don't work.
11447
11448 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11449
11450         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
11451         secrets.el dependency.
11452         (auth-sources): Add optional user name.  Add secrets.el configuration
11453         choice (unused right now).
11454
11455 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11456
11457         * gnus-sum.el (gnus-summary-make-menu-bar):
11458         Let `gnus-registry-install-shortcuts' fill in the functions.
11459
11460         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
11461         warnings.
11462         (gnus-registry-misc-menus): Variable to hold registry mark menus.
11463         (gnus-registry-install-shortcuts): Populate and use it in a
11464         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
11465
11466 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
11467
11468         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
11469         In-place substitutions for the group name encoding/decoding.
11470         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
11471         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
11472         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
11473         (nnimap-update-unseen, nnimap-request-list)
11474         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
11475         (nnimap-request-set-mark, nnimap-split-to-groups)
11476         (nnimap-split-articles, nnimap-request-newgroups)
11477         (nnimap-request-create-group, nnimap-request-accept-article)
11478         (nnimap-request-delete-group, nnimap-request-rename-group)
11479         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
11480         `encoded-mbx' for consistency.
11481         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
11482         variable `imap-current-mailbox'.
11483
11484         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
11485         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
11486
11487 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
11488
11489         * pop3.el (pop3-display-message-size-flag): Display message size byte
11490         counts during POP3 download.
11491         (pop3-movemail): Use it.
11492         (pop3-list): Implement listing of available messages.
11493
11494 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
11495
11496         * nnir.el (nnir-get-article-nov-override-function): New function to
11497         override the normal NOV retrieval.
11498         (nnir-retrieve-headers): Use it.
11499
11500 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
11501
11502         * auth-source.el (netrc-machine-user-or-password): Autoload.
11503
11504 2010-03-19  Glenn Morris  <rgm@gnu.org>
11505
11506         Stop message.el from loading about 40 libraries it doesn't always need.
11507         The general approach is to autoload rather than require, and to
11508         require in the specific functions rather than the file.  (Bug#5642)
11509
11510         * gmm-utils.el: Don't require wid-edit.
11511         (widget-create-child-value, widget-convert, widget-default-get):
11512         Autoload.
11513
11514         * gnus-util.el: Don't require time-date, netrc.
11515         (message-fetch-field, gnus-group-name-decode): Declare rather than
11516         autoloading.
11517         (gnus-fetch-field): Require message.
11518         (gnus-decode-newsgroups): Require gnus-group.
11519
11520         * ietf-drums.el: Don't require time-date.
11521
11522         * message.el: Don't require hashcash, canlock, ecomplete.
11523         Do require mail-utils.  Require nnheader only when compiling.
11524         (smtpmail-default-smtp-server): Remove declaration.
11525         (message-send-mail-function): Check smtpmail-default-smtp-server
11526         is bound rather than requiring smtpmail.
11527         (message-auto-save-directory, message-insert-signature):
11528         Use expand-file-name rather than nnheader-concat.
11529         (nnheader-insert-file-contents): Autoload.
11530         (hashcash-wait-async): Declare.
11531         (message-send-mail): Only call gnus-setup-posting-charset if
11532         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
11533         (message-send-mail-with-sendmail): Require sendmail.
11534         (canlock-password, canlock-password-for-verify): Declare.
11535         (message-canlock-password): Require canlock.
11536         (nnheader-get-report): Autoload.
11537         (gnus-setup-posting-charset): Declare.
11538         (message-send-news): Require gnus-msg.
11539         (message-make-references, message-make-in-reply-to): Use mail-header-id
11540         rather than the alias mail-header-message-id.
11541         (ecomplete-add-item, ecomplete-save): Declare.
11542         (message-put-addresses-in-ecomplete): Require ecomplete.
11543         (ecomplete-display-matches): Autoload.
11544
11545         * mm-decode.el: Don't require mailcap, gnus-util.
11546         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
11547         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
11548         Autoload.
11549         (mailcap-mime-extensions): Declare.
11550
11551         * mm-encode.el: Don't require mailcap.
11552         (mailcap-extension-to-mime): Autoload.
11553
11554         * mml-sec.el: Don't require password-cache.
11555
11556         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
11557         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
11558         (mml-minibuffer-read-type): Require mailcap.
11559         (mml-preview): Require gnus-msg.
11560
11561         * mml1991.el: Require password-cache.
11562         (password-cache-expiry): Remove declaration.
11563
11564         * mml2015.el: Require password-cache.
11565         (password-cache-expiry): Remove declaration.
11566
11567         * nneething.el (mailcap): Require mailcap.
11568
11569         * nnheader.el (declare-function): Add compatibility stub.
11570         (message-remove-header): Declare rather than autoload.
11571         (nnheader-replace-header): Require message.
11572
11573         * nnimap.el (declare-function): Add compatibility stub.
11574         (netrc-parse, netrc-machine-user-or-password): Declare.
11575         (nnimap-open-connection): Require netrc.
11576
11577         * nntp.el (declare-function): Add compatibility stub.
11578         (netrc-parse, netrc-machine, netrc-get): Declare.
11579         (nntp-send-authinfo): Require netrc.
11580
11581         * rfc2047.el: Don't require qp.
11582         (quoted-printable-encode-region, quoted-printable-decode-string):
11583         Autoload.
11584
11585         * sieve-mode.el: Don't require easymenu.
11586         (easy-menu-add-item): Autoload it.
11587
11588         * spam-stat.el (time-to-number-of-days): Autoload it.
11589
11590 2010-03-19  Glenn Morris  <rgm@gnu.org>
11591
11592         * password-cache.el (password-cache, password-cache-expiry): Autoload.
11593
11594 2010-03-18  Glenn Morris  <rgm@gnu.org>
11595
11596         * hashcash.el (declare-function): Remove duplicate definition.
11597
11598 2010-03-17  Kevin Ryde  <user42@zip.com.au>
11599
11600         * mml.el (mml-read-tag): Unquote values with `read' to reverse
11601         prin1 in mml-insert-tag (just stripping the quotes gave wrong
11602         value if any backslash escapes).
11603
11604 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11605
11606         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
11607         if it is available.  (bug#5647)
11608
11609         * lpath.el: Suppress compiler warning for coding-system-from-name for
11610         Emacs 21 and XEmacs.
11611
11612 2010-03-14  Juri Linkov  <juri@jurta.org>
11613
11614         * hmac-def.el:
11615         * hmac-md5.el:
11616         * netrc.el: Fix keywords.
11617
11618 2010-02-26  Glenn Morris  <rgm@gnu.org>
11619
11620         * message.el (message-send-mail-function): Change the default, so that
11621         it inherits from a customized send-mail-function.  (Bug#5643)
11622
11623 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11624
11625         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
11626         shell-command-to-string signals an error (bug#5299).
11627
11628 2010-02-24  Glenn Morris  <rgm@gnu.org>
11629
11630         * message.el (message-smtpmail-send-it)
11631         (message-send-mail-with-mailclient): Doc fixes.
11632
11633 2010-02-16  Glenn Morris  <rgm@gnu.org>
11634
11635         * message.el (message-default-mail-headers): Change the default value
11636         to ease the transition from mail-mode to message-mode.  (Bug#5555)
11637
11638 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11639
11640         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
11641         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
11642
11643 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
11644
11645         * time-date.el (date-to-time): Doc fix (Bug#5408).
11646
11647 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
11648
11649         * message.el (message-mail): Just pass yank-action on to message-setup.
11650         (message-setup): Handle (FUN . ARGS) form of yank-action.
11651         (message-with-reply-buffer, message-widen-reply)
11652         (message-yank-original): Handle non-buffer values of
11653         message-reply-buffer (Bug#4080).
11654         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
11655
11656 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
11657
11658         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
11659         Fix typo in docstring.
11660
11661 2010-01-08  Jason Rumney  <jasonr@gnu.org>
11662
11663         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
11664         response.
11665
11666 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11667
11668         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
11669
11670         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
11671
11672         * message.el (message-check-news-header-syntax): Protect against a
11673         string that `rfc822-addresses' returns when parsing fails.
11674
11675 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11676
11677         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
11678         (gnus-previous-char-property-change): New functions.
11679
11680         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
11681
11682 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
11683
11684         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
11685         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
11686
11687 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
11688
11689         * message.el (message-exchange-point-and-mark): Rework last change to
11690         avoid using optional arg of exchange-point-and-mark, for backward
11691         compatibility.
11692
11693 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
11694
11695         * message.el (message-exchange-point-and-mark):
11696         Call exchange-point-and-mark with an argument rather than setting
11697         mark-active by hand (Bug#5175).
11698
11699 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11700
11701         * nntp.el (nntp-service-to-port): Work for service expressed with
11702         numeric string; replace [:digit:] with [0-9] for XEmacs.
11703
11704 2009-12-17  Glenn Morris  <rgm@gnu.org>
11705
11706         * gnus-group.el (gnus-bug-group-download-format-alist):
11707         Change emacs entry to debbugs.gnu.org.  Bump :version.
11708
11709 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
11710
11711         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
11712
11713 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
11714
11715         * message.el (message-info): Explain why we use `Info-goto-node'.
11716
11717 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11718
11719         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
11720
11721 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11722
11723         * message.el (message-completion-in-region): New compatibility function.
11724         (message-expand-group): Use it.
11725
11726 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11727
11728         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
11729         with no unread article should be listed if the 2nd arg `predicate' is
11730         given.
11731
11732 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11733
11734         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
11735
11736 2009-11-29  Juri Linkov  <juri@jurta.org>
11737
11738         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
11739         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
11740         on `gnus-recenter'.  (Bug#4698, Bug#4981)
11741
11742 2009-11-26  Kevin Ryde  <user42@zip.com.au>
11743
11744         * sha1.el (sha1-string-external): default-directory "/" in case
11745         otherwise non-existent.  process-connection-type pipe for touch of
11746         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
11747
11748 2009-11-25  Kevin Ryde  <user42@zip.com.au>
11749
11750         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
11751         it's comms related and sgml-mode.el has "comm" on that basis too.
11752
11753 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11754
11755         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
11756         containing tspecial characters if they have been already quoted.
11757
11758 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11759
11760         * dns-mode.el (auto-mode-alist): Purecopy string.
11761
11762 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11763
11764         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
11765
11766 2009-10-24  Glenn Morris  <rgm@gnu.org>
11767
11768         * gnus-art.el (help-xref-stack-item): Define for compiler.
11769
11770 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11771
11772         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
11773
11774 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11775
11776         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
11777
11778 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11779
11780         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
11781         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
11782
11783 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11784
11785         * gnus.el (gnus-overlay-get): New alias to overlay-get.
11786         (gnus-overlays-in): New alias to overlays-in.
11787
11788         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
11789         gnus-overlay-get, and gnus-delete-overlay.
11790         (gnus-summary-show-thread): Make it work as well for systems in which
11791         next-single-char-property-change is not available.
11792         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
11793
11794         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
11795         (gnus-overlay-get): New alias to extent-property.
11796         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
11797
11798         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
11799         SXEmacs.
11800
11801         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
11802         SXEmacs.
11803
11804 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
11805
11806         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
11807
11808 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
11809
11810         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
11811         and XEmacs that don't have `remove-overlays'.
11812
11813 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11814
11815         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
11816         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
11817         selective display.  Use overlays instead.
11818
11819 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11820
11821         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
11822
11823 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11824
11825         * spam-stat.el (spam-stat-load): Fix typo in message.
11826
11827 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
11828
11829         * dig.el (dig-invoke): Fix typo in docstring.
11830         (query-dig): Reflow docstring.
11831
11832 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
11833
11834         * gnus-art.el (gnus-article-encrypt-body):
11835         * message.el (message-check-recipients):
11836         * mm-util.el (mm-codepage-setup):
11837         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
11838         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
11839
11840 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
11841
11842         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
11843         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
11844         keys from the menu if mm-{sign,encrypt}-option is 'guided.
11845         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
11846         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
11847
11848 2009-09-21  Kevin Ryde  <user42@zip.com.au>
11849
11850         * dig.el: Add "Keywords: comm", as per net-utils.el.
11851
11852 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11853
11854         * dig.el (dig-mode): Use define-derived-mode.
11855
11856 2009-09-19  Glenn Morris  <rgm@gnu.org>
11857
11858         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
11859
11860 2009-09-18  Glenn Morris  <rgm@gnu.org>
11861
11862         * gnus-diary.el (gnus-diary-check-message):
11863         * message.el (message-insert-formatted-citation-line):
11864         * nnbabyl.el (top-level):
11865         * nndiary.el (nndiary-schedule):
11866         Fix typos in condition-case handlers.
11867
11868 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11869
11870         * gnus-art.el (gnus-article-edit-part): Work for the buffer
11871         configuration that provides the sole article window in a frame;
11872         position point correctly after deleting a part.
11873
11874 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
11875
11876         * spam.el (spam-unregister-on-reregister): Add boolean variable.
11877         (spam-resolve-registrations-routine): Use it to unregister articles
11878         that change status.
11879
11880 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11881
11882         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
11883         with XEmacs.
11884         (parse-time-string-chars): Use it.
11885
11886 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
11887
11888         * imap.el (imap-interactive-login): Better messages.
11889         (imap-open): Fix bug with renamed buffer on reconnect.
11890         (imap-authenticate): Add buffer-local imap-last-authenticator variable
11891         for easier debugging and cleaner code.  On successful (guessed based on
11892         server capabilities) secondary authentication, set imap-state
11893         correctly.
11894         (imap-last-authenticator): Define imap-last-authenticator as a variable
11895         to avoid warnings.
11896
11897 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11898
11899         * nnrss.el (nnrss-request-article): Remove binding of
11900         default-enable-multibyte-characters that has gotten needless by
11901         the 2007-07-13 change in rfc2047-encode-message-header.
11902
11903         * mml.el (mml-insert-multipart): Error on the message header.
11904         (mml-insert-part): Error on the message header; position point at
11905         the end of a MIME tag.
11906
11907 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11908
11909         * time-date.el (autoload): Expand define-obsolete-function-alias into
11910         defalias and make-obsolete for old Emacsen that Gnus supports.
11911         (with-no-warnings): Define it for old Emacsen.
11912         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
11913         is available.
11914         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
11915         float-time is available; suppress compile warning for time-to-seconds.
11916
11917         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
11918         (gnus-float-time): Alias to float-time if it exists.
11919
11920         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
11921         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
11922         float-time is available; suppress compile warning for time-to-seconds.
11923
11924         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
11925         XEmacs.
11926
11927 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
11928
11929         * imap.el (imap-message-map): Docstring fix.
11930
11931 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11932
11933         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
11934         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
11935         Add the optional argument `encoding' that overrides the default.
11936
11937         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
11938         mm-encode-buffer.
11939
11940 2009-09-04  Glenn Morris  <rgm@gnu.org>
11941
11942         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
11943         mm-disable-multibyte, rather than default-enable-multibyte-characters.
11944         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
11945         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
11946         * mm-util.el (mm-with-unibyte-current-buffer)
11947         (mm-find-buffer-file-coding-system):
11948         * yenc.el (yenc-decode-region): Use default-value rather than
11949         default-enable-multibyte-characters.
11950
11951 2009-09-03  Glenn Morris  <rgm@gnu.org>
11952
11953         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
11954         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
11955         than default-enable-multibyte-characters.
11956
11957 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
11958
11959         * gnus-art.el (gnus-article-read-summary-keys):
11960         Fix gnus-buffer-configuration's value temporarily used.
11961
11962 2009-09-02  Glenn Morris  <rgm@gnu.org>
11963
11964         * gnus-util.el (gnus-float-time): New function.
11965         * gnus-delay.el (gnus-delay-article):
11966         * gnus-sum.el (gnus-thread-latest-date):
11967         * gnus-util.el (gnus-user-date): Use gnus-float-time.
11968         * nnspool.el (nnspool-request-newgroups):
11969         Use gnus-float-time rather than time-to-seconds.
11970         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
11971
11972         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
11973         (gnus-header-subject-face, gnus-header-newsgroups-face)
11974         (gnus-header-name-face, gnus-header-content-face):
11975         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
11976         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
11977         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
11978         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
11979         (gnus-cite-face-11):
11980         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
11981         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
11982         (gnus-server-closed-face, gnus-server-denied-face)
11983         (gnus-server-offline-face):
11984         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
11985         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
11986         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
11987         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
11988         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
11989         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
11990         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
11991         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
11992         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
11993         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
11994         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
11995         (gnus-summary-selected-face, gnus-summary-cancelled-face)
11996         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
11997         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
11998         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
11999         (gnus-summary-high-undownloaded-face)
12000         (gnus-summary-low-undownloaded-face)
12001         (gnus-summary-normal-undownloaded-face)
12002         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
12003         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
12004         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
12005         (gnus-splash-face):
12006         * message.el (message-header-to-face, message-header-cc-face)
12007         (message-header-subject-face, message-header-newsgroups-face)
12008         (message-header-other-face, message-header-name-face)
12009         (message-header-xheader-face, message-separator-face)
12010         (message-cited-text-face, message-mml-face):
12011         * sieve-mode.el (sieve-control-commands-face)
12012         (sieve-action-commands-face, sieve-test-commands-face)
12013         (sieve-tagged-arguments-face):
12014         * spam.el (spam-face):
12015         Mark face aliases with "-face" in the name as obsolete.
12016
12017 2009-09-01  Glenn Morris  <rgm@gnu.org>
12018
12019         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
12020         than goto-line.
12021
12022 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12023
12024         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12025         Don't move point if the command is invoked inside the message header.
12026
12027 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12028
12029         * imap.el (imap-send-command): Simplify.
12030         (imap-wait-for-tag): point-max -> buffer-size.
12031
12032 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12033
12034         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
12035         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
12036         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
12037         * nnir.el (nnir-swish-e-index-file):
12038         * gnus-sum.el (gnus-summary-delete-marked-as-read)
12039         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
12040         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
12041         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
12042         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
12043         (gnus-treat-display-xface): Add Emacs version of obsolescence.
12044
12045 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12046
12047         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12048         Don't save excursion.
12049
12050 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12051
12052         * nnheader.el (nnheader-find-file-noselect):
12053         * mm-util.el (mm-insert-file-contents):
12054         Use (default-value 'major-mode) instead of default-major-mode.
12055
12056 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12057
12058         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
12059
12060 2009-08-26  Glenn Morris  <rgm@gnu.org>
12061
12062         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
12063         than placing in files.el.
12064
12065 2009-08-25  Glenn Morris  <rgm@gnu.org>
12066
12067         * nnir.el (top-level): Don't require cl at run-time.
12068         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
12069         Replace cl-function substitute with gnus-replace-in-string.
12070         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
12071         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
12072         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
12073         simplified expansions.
12074
12075 2009-08-25  Kevin Ryde  <user42@zip.com.au>
12076
12077         * dig.el (dig): Add autoload cookie.
12078
12079 2009-08-22  Glenn Morris  <rgm@gnu.org>
12080
12081         * gnus-art.el (gnus-button-patch): Use forward-line rather than
12082         goto-line.
12083
12084 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
12085
12086         * parse-time.el (parse-time-string-chars): Save match data.
12087
12088 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
12089
12090         * parse-time.el (parse-time-string-chars): Compute using character
12091         classes, to handle non-ascii characters (Bug#3190).
12092
12093 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12094
12095         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
12096
12097         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
12098         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
12099         (gnus-mm-display-part, gnus-mime-display-single)
12100         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
12101         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
12102
12103         * gnus-sum.el
12104         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
12105         (gnus-summary-move-article): Add expirable mark to articles copied or
12106         moved to group that has auto-expire turned on if the option is non-nil.
12107
12108 2009-07-24  Glenn Morris  <rgm@gnu.org>
12109
12110         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
12111         Fix typo.  (Bug#3903)
12112
12113 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12114
12115         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
12116         gnus-article-read-summary-keys rather than gnus-summary-edit-article
12117         that should not be used for draft articles.
12118         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
12119         that has no concern in minor mode keys.
12120         (gnus-article-summary-command, gnus-article-summary-command-nosave):
12121         Abolish.
12122
12123 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12124
12125         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
12126         article without making inquiry to a user for unknown encoding.
12127
12128         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
12129         (nnmaildir--scan): Assume i-node and device number that file-attributes
12130         returns might be cons-cell.
12131
12132         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
12133
12134         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
12135
12136 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
12137
12138         * auth-source.el: Remove docs now in auth.texi.  Don't use
12139         `gnus-message' for logging.  Add new variables `auth-source-debug' and
12140         `auth-source-hide-passwords' and use them.
12141
12142 2009-07-15  Glenn Morris  <rgm@gnu.org>
12143
12144         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
12145
12146 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12147
12148         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
12149         excessive whitespace from the default values of title and description.
12150
12151 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12152
12153         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
12154         mail-fetch-field to fetch Content-Description header in order to
12155         exclude newlines.
12156
12157 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
12158
12159         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
12160         format used by GnuPG 2.0.11.
12161
12162 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12163
12164         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
12165         to deleted part.
12166
12167 2009-05-30  David Engster  <dengste@eml.cc>
12168
12169         * nnmairix.el: Remove old documentation in the commentary block.
12170         (nnmairix-request-group): Do not update active file for nnml back ends.
12171         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
12172         end so that overview files are ignored.
12173         (nnmairix-update-groups): Make updating the groups more robust by using
12174         marks.
12175         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
12176         with dollar characters in message-id.
12177
12178 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
12179
12180         * spam.el: Use dns-query instead of query-dns.  Was renamed on
12181         2008-12-25 in dns.el.
12182
12183 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12184
12185         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
12186         could happen if the text is only composed of spaces and/or tabs.
12187
12188 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
12189
12190         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
12191         when sending a queued message to avoid extra mml tags.
12192
12193 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12194
12195         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
12196
12197 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12198
12199         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
12200         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
12201         rmail-toggle-header for XEmacs;
12202         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
12203
12204 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12205
12206         * gnus-dired.el: Remove autoload for gnus-setup-message.
12207         (gnus-dired-attach): Fake this-command value to prevent Gnus from
12208         displaying Gnus logo; always use compose-mail.
12209
12210 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12211
12212         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
12213
12214 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12215
12216         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
12217         (gnus-nocem-issuers): List currently active issuers; fix custom type.
12218         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
12219         available.
12220         (gnus-nocem-epg-verify): New function.
12221
12222 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
12223
12224         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
12225
12226 2009-02-15  Glenn Morris  <rgm@gnu.org>
12227
12228         * gnus-util.el (rmail-insert-rmail-file-header)
12229         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
12230         autoloads.
12231         (rmail-default-rmail-file): Remove unnecessary declaration.
12232         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
12233
12234 2009-02-14  Glenn Morris  <rgm@gnu.org>
12235
12236         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
12237         variable (only used in gnus-util, which declares it anyway).
12238         (rmail-output-to-rmail-file): Remove autoload of deleted function,
12239         which was only needed by gnus-art (changed to not use it any more).
12240         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
12241         only used in gnus-util, which autoloads it itself.
12242         (rmail-update-summary): Fix autoload.
12243
12244         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
12245         rather than rmail-output-to-rmail-file.
12246
12247 2009-02-07  Glenn Morris  <rgm@gnu.org>
12248
12249         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
12250         autoload of function that no longer exists.
12251         (rmail-toggle-header): Declare.
12252         (message-forward-rmail-make-body): Handle mbox Rmail.
12253
12254 2009-01-31  Glenn Morris  <rgm@gnu.org>
12255
12256         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
12257         2009-01-09 change.
12258
12259 2009-01-31  Dave Love  <fx@gnu.org>
12260
12261         * imap.el (imap-fetch-safe): Bind debug-on-error.
12262         (imap-debug): Add imap-fetch-safe.
12263
12264 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
12265
12266         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
12267         (auth-source-forget-all-cached): New convenience function.
12268         (auth-source-user-or-password): Accept list of modes or a single mode.
12269
12270         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
12271         auth-source modes.
12272
12273         * netrc.el (netrc-machine-user-or-password): Use list of
12274         auth-source modes.
12275
12276         * nnimap.el (nnimap-open-connection): Use list of
12277         auth-source modes.
12278
12279         * nntp.el (nntp-send-authinfo): Use list of
12280         auth-source modes.
12281
12282 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
12283
12284         * auth-source.el: Update docs to reflect epa-file-enable is to be used
12285         now.
12286
12287 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12288
12289         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
12290         coding system in XEmacs; add a workaround for XEmacs.
12291
12292         * lpath.el: Fbind coding-system-aliasee.
12293
12294 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12295
12296         * mm-util.el (mm-coding-system-priorities): Protect against nil value
12297         of current-language-environment.
12298
12299 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12300
12301         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
12302         available at runtime.
12303
12304 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12305
12306         * gnus-art.el (article-date-ut): Fix end point of narrowing.
12307
12308 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
12309
12310         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
12311         the greatest positive fixnum value doesn't work under an XEmacs with
12312         bignum support; use the most-positive-fixnum constant instead,
12313         available since Emacs 21.1 with cl and XEmacs 21.1.
12314
12315 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12316
12317         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
12318         XEmacs gets not to work.
12319
12320 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12321
12322         * mm-util.el (mm-coding-system-priorities): Allow the value like
12323         "Japanese (UTF-8)" of current-language-environment.
12324
12325 2009-01-09  Glenn Morris  <rgm@gnu.org>
12326
12327         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
12328         with last-command-event.
12329
12330 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12331
12332         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
12333         in the doc string.
12334
12335         * message.el (message-fix-before-sending): Amend comment.
12336
12337 2009-01-08  Dave Love  <fx@gnu.org>
12338
12339         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
12340
12341 2009-01-07  David Engster  <dengste@eml.cc>
12342
12343         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
12344         simplified server definitions by converting it via
12345         gnus-server-to-method.
12346
12347 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12348
12349         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
12350         parameter's operands.
12351
12352 2009-01-06  David Engster  <dengste@eml.cc>
12353
12354         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
12355         primary select method (for gnus-group-mark-article-as-read).
12356
12357 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
12358
12359         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
12360         `(gnus)Face', not `(gnus)X-Face'.
12361
12362 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12363
12364         * mm-util.el (mm-ucs-to-char): New function.
12365
12366         * mm-url.el (mm-url-decode-entities): Use it.
12367
12368         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
12369         unicode-to-char.
12370
12371 2009-01-05  Dave Love  <fx@gnu.org>
12372
12373         * time-date.el: Require cl for `declare'.
12374
12375 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12376
12377         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
12378         Dave Love.
12379
12380 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12381
12382         * message.el (message-fix-before-sending): Add `eight-bit' to
12383         illegible-text check.
12384
12385 2009-01-03  Michael Olson  <mwolson@gnu.org>
12386
12387         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
12388         `headers' is nil.  This can occur if the IMAP server does not have
12389         permissions to read messages from a folder, but can write new messages
12390         to the folder.
12391         (nnimap-request-article-part): Do not insert `data' if it is nil.
12392
12393         * imap.el (imap-parse-fetch): Courier can insert spurious blank
12394         characters which will confuse `read', so skip past them.
12395
12396 2009-01-01  Dave Love  <fx@gnu.org>
12397
12398         * imap.el (imap-string-to-integer): Fix typo.
12399         (imap-fetch-safe): New function.
12400         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
12401
12402         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
12403
12404         * imap.el (imap-process-connection-type, imap-debug, imap-open):
12405         (imap-parse-greeting): Fix doc strings.
12406         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
12407         (imap-parse-flag-list): Make messages unique.
12408         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
12409
12410         * nnimap.el: Fix author email.
12411         (nnimap-split-rule): Add FIXME comment.
12412         (nnimap-debug): Fix doc string.
12413
12414 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
12415
12416         * dns.el (dns-set-servers): Check "Address".  Fix typo.
12417
12418 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
12419
12420         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
12421         nslookup if resolv.conf isn't available.
12422         (dns-query): Rename from query-dns.
12423         (dns-query-cached): Rename from query-dns-cached.
12424
12425 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12426
12427         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
12428         overlay-arrow-position and overlay-arrow-string buffer-local; no need
12429         to check if those variables exist (first appeared in Emacs 18.50).
12430
12431 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12432
12433         * mm-util.el (mm-line-number-at-pos): New function.
12434
12435         * spam-report.el (spam-report-process-queue): Use it.
12436
12437 2008-12-24  David Engster  <dengste@eml.cc>
12438
12439         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
12440         parameters that haven't existed as variables as buffer-local variables.
12441
12442 2008-12-23  Dave Love  <fx@gnu.org>
12443
12444         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
12445         cadar.
12446
12447         * sieve-manage.el (sieve-manage-starttls-p): Rename from
12448         imap-starttls-p.
12449         (sieve-manage-starttls-open): Rename from imap-starttls-open.
12450
12451 2008-12-22  Dave Love  <fx@gnu.org>
12452
12453         * imap.el: Fix author email.  Doc fixes.
12454         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
12455         reply.
12456
12457 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
12458
12459         * spam-report.el (spam-report-gmane-max-requests): New constant.
12460         (spam-report-gmane-wait): New variable.
12461         (spam-report-gmane-ham, spam-report-gmane-spam)
12462         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
12463         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
12464         the server.
12465
12466         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
12467         Add explanations.
12468
12469         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
12470         nnheader-accept-process-output and nnheader-read-timeout if available.
12471         (pop3-movemail): Use it.
12472
12473         * message.el (message-check-news-body-syntax): Fix signature check if
12474         there's an attachment.
12475
12476 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12477
12478         * mm-util.el: Add comments to the mm- emulating functions.
12479
12480 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
12481
12482         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
12483         Reported by Stephen Berman <stephen.berman@gmx.net>.
12484
12485 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12486
12487         * mm-util.el (mm-substring-no-properties): New function.
12488         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
12489         (mm-special-display-p): Enable those lambda forms to be byte compiled.
12490         (mm-string-to-multibyte): Doc fix.
12491
12492         * mml.el (mml-attach-file): Use mm-substring-no-properties.
12493
12494 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12495
12496         * mml.el (mml-attach-file): Strip text properties from file name.
12497         (Bug#1574)
12498
12499 2008-12-16  Glenn Morris  <rgm@gnu.org>
12500
12501         * mm-util.el (mm-charset-override-alist): Declare for compiler.
12502
12503 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12504
12505         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
12506         knows since the charset specified might be a bogus alias that
12507         mm-charset-synonym-alist provides.
12508
12509 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12510
12511         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
12512         "ISO_8859-1".
12513
12514         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
12515
12516 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12517
12518         * mm-util.el (mm-charset-eval-alist):
12519         Define it before mm-charset-to-coding-system.
12520         (mm-charset-to-coding-system): Add optional argument `silent';
12521         define it before mm-charset-override-alist.
12522         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
12523         default value if it can be used in Emacs currently running;
12524         silence mm-charset-to-coding-system.
12525
12526 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12527
12528         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
12529         `allow-override' which says whether to use `mm-charset-override-alist'.
12530         (rfc2047-decode-encoded-words): Use it.
12531
12532         * mm-util.el (mm-charset-override-alist): Fix custom type;
12533         add `(gb2312 . gbk)' to choices.
12534
12535 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12536
12537         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
12538         fast.
12539
12540         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12541
12542         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
12543
12544 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
12545
12546         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
12547         on links.
12548
12549         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12550
12551 2008-12-03  Lute Kamstra  <lute@gnu.org>
12552
12553         * sha1.el: Remove leading * from docstrings of defcustoms,
12554         deffaces, defconsts and defuns.
12555
12556 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12557
12558         * message.el (message-idna-to-ascii-rhs-1): Protect against local
12559         users' addresses that don't have domain parts.
12560         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
12561         rather than message-narrow-to-head since there will be the message
12562         header separator.
12563
12564 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12565
12566         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
12567         since the result is inserted in a unibyte buffer anyway.
12568         (nnimap-demule-use-string-to-multibyte): Remove.
12569         (nnimap-demule): Alias it to mm-string-to-multibyte.
12570
12571 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12572
12573         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
12574         variable for debugging bug#464 and bug#1174.
12575         (nnimap-demule): Use it.
12576
12577 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
12578
12579         * gnus-score.el (gnus-score-find-trace): Handle default score in total
12580         score calculation correctly.
12581
12582 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12583
12584         * message.el (message-send-mail): Just set the buffer to unibyte
12585         rather than use mm-with-unibyte-current-buffer which does a lot more.
12586         (message-send-mail-partially): Don't bother with
12587         mm-with-unibyte-current-buffer since it's already been made unibyte by
12588         message-send-mail.
12589
12590 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
12591
12592         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
12593
12594 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
12595
12596         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
12597
12598 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12599
12600         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
12601         require itself and to remove `with-no-warnings'.
12602
12603 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
12604
12605         * starttls.el (starttls-any-program-available): Get the name of the
12606         available TLS layer program.
12607         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
12608         well as the host name in the "opening" message.
12609
12610         * auth-source.el (auth-source-cache, auth-source-do-cache)
12611         (auth-source-user-or-password): Cache passwords and logins by default,
12612         allow override with `auth-source-do-cache'.
12613         (auth-source-forget-user-or-password): Allow users to remove cache
12614         entries if needed.
12615
12616 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
12617
12618         * md4.el (md4-buffer): Fix typo in docstring.
12619         (md4, md4-64): Doc fixes.
12620         (md4-pack-int32): Reflow docstring.
12621
12622 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12623
12624         * ietf-drums.el (ietf-drums-remove-comments): Localize second
12625         condition-case to only the forward-sexp call.
12626
12627 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12628
12629         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
12630         quotes contained.  Make it more robust regardless by an extra
12631         condition-case wrapper.
12632
12633 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12634
12635         * lpath.el: No need to fbind codepage-setup for Emacs 23.
12636
12637 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12638
12639         * nnml.el (nnml-request-expire-articles): Check if the function set to
12640         `nnmail-expiry-target' returns the symbol `delete'.
12641
12642         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
12643
12644         * nnmail.el (nnmail-expiry-target): Fix custom type.
12645
12646 2008-10-02  Glenn Morris  <rgm@gnu.org>
12647
12648         * mm-util.el (mm-codepage-setup): Tweak codepage error.
12649         Silence compiler warning.
12650
12651 2008-10-01  Magnus Henoch  <mange@freemail.hu>
12652
12653         * tls.el (open-tls-stream): Show the actual command being
12654         executed, instead of the format string.
12655
12656 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12657
12658         * lpath.el: Fbind codepage-setup for Emacs 23.
12659
12660 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
12661
12662         * mml.el (mml-menu): Don't assume mml2015 is bound.
12663
12664 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12665
12666         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
12667         exists.
12668
12669 2008-09-27  Glenn Morris  <rgm@gnu.org>
12670
12671         * gnus-util.el (mail-header-remove-comments): Autoload it.
12672
12673 2008-09-27  Andreas Schwab  <schwab@suse.de>
12674
12675         * gnus-util.el (gnus-split-references): Strip comments.
12676         (gnus-parent-id): Likewise.
12677
12678 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
12679
12680         * message.el (message-confirm-send): Fix version.
12681
12682 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12683
12684         * message.el (message-idna-to-ascii-rhs-1): Use
12685         mail-extract-address-components rather than mail-header-parse-addresses
12686         that is an alias by default to ietf-drums-parse-addresses that does not
12687         support non-ASCII names in headers' contents.
12688
12689 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
12690
12691         * message.el (message-confirm-send): Fix variable documentation to
12692         avoid the "y/n" wording.
12693
12694 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
12695
12696         * message.el (message-set-auto-save-file-name): Save to a different
12697         filename so multiple messages (especially drafts) can be recovered.
12698
12699 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
12700
12701         * message.el (message-confirm-send): Add appropriate version.
12702
12703 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
12704
12705         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
12706         defvar.
12707
12708 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
12709
12710         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
12711         (mm-pkcs7-enveloped-magic): Ditto.
12712
12713 2008-09-17  Simon Josefsson  <simon@josefsson.org>
12714
12715         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
12716         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
12717
12718 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
12719
12720         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
12721         default, it's better.
12722
12723 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
12724
12725         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
12726         summary line gnus-number property and ignore them (with a warning
12727         message).
12728
12729 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12730
12731         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
12732         macro caddr in the interactive form since it won't be expanded.
12733
12734 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12735
12736         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
12737         `charset'; fix name of function called recursively.
12738         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
12739
12740 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12741
12742         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
12743         (gnus-mime-set-charset-parameters): New function.
12744         (gnus-mime-view-part-as-charset): Use it to correctly display part
12745         specifying wrong charset.
12746
12747 2008-09-08  David Engster  <dengste@eml.cc>
12748
12749         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
12750         in completing-read for back end server.
12751
12752 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
12753
12754         * message.el (message-confirm-send): New variable to confirm sending a
12755         message.
12756         (message-send): Use it.
12757
12758 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
12759
12760         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
12761
12762 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12763
12764         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
12765
12766 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
12767
12768         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
12769         prevent tracking too many groups.
12770         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
12771         Use it.
12772
12773 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
12774
12775         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
12776         moving point to the bottom of the window in order to avoid recentering.
12777
12778 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12779
12780         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
12781
12782         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
12783         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
12784         (gnus-article-beginning-of-window): Fix calculation.
12785
12786 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12787
12788         * gnus-msg.el (gnus-summary-supersede-article)
12789         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
12790         value of gnus-newsgroup-charset to decode non-MIME encoded text in
12791         message header.
12792
12793 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
12794
12795         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
12796         pending output coming after the status change.
12797
12798 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
12799
12800         * message.el:
12801         * gnus-start.el:
12802         * gnus-registry.el: Remove VMS support.
12803
12804 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12805
12806         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
12807         macro.
12808         (rfc2104-hash): Use it.
12809
12810 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
12811
12812         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
12813         (gnus-summary-sort-by-most-recent-date): New commands.
12814         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
12815         and menu entries.
12816
12817 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12818
12819         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
12820         don't redisplay article for raw contents; remove plural articles stuff.
12821
12822         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
12823         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
12824         on gnus-summary-save-article; display results properly.
12825
12826 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12827
12828         * lpath.el: No need to fbind ns-focus-frame.
12829
12830 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12831
12832         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
12833
12834 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12835
12836         * gnus-art.el (gnus-summary-save-in-pipe):
12837         Consider gnus-save-all-headers.
12838
12839 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
12840
12841         * gnus-util.el (ns-focus-frame): Remove declaration.
12842         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
12843         like x.
12844
12845 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
12846
12847         * rfc2104.el (rfc2104-zero): Delete defconst.
12848         (rfc2104-hex-alist): Likewise.
12849         (rfc2104-hex-to-int): Delete func.
12850         (rfc2104-hexstring-to-bitstring): Likewise.
12851         (rfc2104-nybbles): New defconst.
12852         (rfc2104-hash): Rewrite for speed.
12853
12854 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12855
12856         * tls.el (open-tls-stream): Make it work with the 2nd argument
12857         BUFFER that is a string but does not exist as a buffer object, as
12858         mentioned in the doc-string.
12859
12860 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12861
12862         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
12863         SXEmacs.
12864
12865 2008-07-16  Glenn Morris  <rgm@gnu.org>
12866
12867         * gnus-util.el (ns-focus-frame): Declare for compiler.
12868
12869 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12870
12871         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
12872         set as a group parameter.
12873         (gnus-summary-save-in-pipe): Work when it is called independently.
12874         (gnus-summary-pipe-to-muttprint): Don't modify
12875         gnus-summary-pipe-output-default-command.
12876
12877 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12878
12879         * message.el (message-send-mail-with-sendmail):
12880         Display the error message.
12881
12882 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12883
12884         * gnus-art.el (gnus-default-article-saver):
12885         Add gnus-summary-save-in-pipe to choices.
12886         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
12887         gnus-summary-pipe-output-default-command as the default command.
12888         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
12889         instead of gnus-last-shell-command.
12890
12891         * gnus-sum.el (gnus-summary-pipe-output-default-command):
12892         New user option.
12893         (gnus-summary-muttprint-program): Mention the value will be changed.
12894         (gnus-summary-save-article): Force showing of all headers.
12895         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
12896
12897 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
12898
12899         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
12900
12901 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
12902
12903         * nnimap.el (nnimap-id):
12904         * sieve-manage.el (sieve-manage-open): Doc fixes.
12905
12906 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
12907
12908         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
12909         if available.
12910
12911 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12912
12913         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
12914
12915         * nnkiboze.el (nnkiboze-generate-group):
12916         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
12917
12918         * nnmairix.el: Require CL.
12919
12920 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12921
12922         * dgnushack.el: Autoload get-display-table and put-display-table for
12923         XEmacs 21.5.
12924
12925         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
12926         21.4 and SXEmacs.
12927
12928 2008-06-15  David Engster  <dengste@eml.cc>
12929
12930         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
12931
12932 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
12933
12934         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
12935         New macros that expand to an `aset'/`aref' call under Emacs, and to a
12936         runtime choice under XEmacs.
12937
12938         * gnus-sum.el (gnus-summary-set-display-table):
12939         Use `gnus-put-display-table', `gnus-get-display-table',
12940         `gnus-set-display-table' for the display table, instead of `aset'.
12941
12942         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
12943         Use `gnus-put-display-table', `gnus-get-display-table',
12944         `gnus-set-display-table' for the display table.
12945
12946 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12947
12948         * nnmairix.el: Add autoloads.
12949
12950 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12951
12952         * nnmairix.el (nnmairix-delete-recreate-group)
12953         (nnmairix-update-and-clear-marks): Fix error messages.
12954
12955 2008-06-14  David Engster  <dengste@eml.cc>
12956
12957         * nnmairix.el: Upgrade to version 0.6.
12958         (nnmairix-group-toggle-propmarks-this-group)
12959         (nnmairix-group-toggle-readmarks-this-group)
12960         (nnmairix-group-delete-recreate-this-group)
12961         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
12962         (nnmairix-remove-tick-mark-original-article): New commands.
12963         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
12964         (nnmairix-propagate-marks-to-nnmairix-groups)
12965         (nnmairix-only-use-registry, nnmairix-allowfast-default)
12966         (nnmairix-marks-cache, nnmairix-version-output): New variables.
12967         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
12968         functions needed for marks propagation and manipulation of read marks.
12969         (nnmairix-update-groups): New function.
12970         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
12971         (nnmairix-determine-original-group-from-registry)
12972         (nnmairix-determine-original-group-from-path)
12973         (nnmairix-get-group-from-file-path, nnmairix-map-range)
12974         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
12975         New helper functions.
12976         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
12977         keystrokes for new commands.
12978         (nnmairix-delete-and-create-on-change): Doc string cleanup.
12979         (nnmairix-request-group): Check allow-fast group parameter.
12980         (nnmairix-request-create-group): Set allow-fast group parameter if
12981         nnmairix-allowfast-default is set.
12982         (nnmairix-close-group): Propagate marks upon closing if needed.
12983         (nnmairix-group-toggle-threads-this-group): Use new.
12984         nnmairix-group-toggle-parameter helper function.
12985         (nnmairix-search): Better check for empty search result.
12986         (nnmairix-goto-original-article): Use new helper functions for
12987         determining original article.
12988         (nnmairix-show-original-article): Make sure message-id is in brackets.
12989         (nnmairix-call-mairix-binary): Change variable name.
12990         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
12991         helper function.
12992         (nnmairix-widget-toggle-activate): Fix doc string.
12993
12994 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12995
12996         * nnir.el: Require edmacro when compiling with XEmacs.
12997         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
12998         available in Emacs 21.
12999
13000 2008-06-11  Glenn Morris  <rgm@gnu.org>
13001
13002         * gnus-util.el (x-focus-frame):
13003         * gnus.el (image-size):
13004         * mm-decode.el (image-size): Declare.
13005
13006         * gnus-picon.el (declare-function): Add compat definition.
13007         (image-size): Declare.
13008
13009         * gnus-group.el (tool-bar-map):
13010         * gnus-sum.el (tool-bar-map): Define for compiler.
13011
13012         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
13013
13014         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
13015
13016         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
13017         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
13018         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
13019         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
13020         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
13021         * sieve-manage.el, spam-report.el, spam.el:
13022         Remove unnecessary eval-and-compile of autoloads.
13023
13024 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
13025
13026         * auth-source.el: Precise Tramp doc.
13027
13028 2008-06-07  Glenn Morris  <rgm@gnu.org>
13029
13030         * nnmairix.el: Remove unnecessary eval-when-compile.
13031
13032 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13033
13034         * lpath.el: Fbind propertize for XEmacs 21.4.
13035
13036 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
13037
13038         * nnir.el: Move here from ../contrib.
13039
13040 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13041
13042         * gnus-util.el (gnus-read-shell-command): New function.
13043         * mm-decode.el (mm-pipe-part):
13044         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
13045
13046 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13047
13048         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
13049
13050 2008-06-03  Glenn Morris  <rgm@gnu.org>
13051
13052         * pop3.el (nnheader-accept-process-output): Autoload it.
13053
13054 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13055
13056         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
13057         are not 2-digit hexadecimal characters that follow `%'s.
13058
13059 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
13060
13061         * message.el (message-bogus-recipient-p): Fix type in doc string.
13062         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
13063         (message-bogus-addresses): Rename from message-bogus-address-regexp.
13064         Improve custom options.
13065         (message-bogus-recipient-p): Adjust accordingly.
13066
13067 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
13068
13069         * parse-time.el (parse-time-months, parse-time-weekdays): Add
13070         long-form month and day names.
13071
13072 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13073
13074         * dgnushack.el: Autoload debug, eudc-expand-inline and
13075         pgg-snarf-keys-region for XEmacs.
13076
13077         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
13078
13079         * nnmairix.el: Require edmacro when compiling with XEmacs.
13080
13081 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
13082
13083         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
13084         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
13085
13086 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
13087
13088         * auth-source.el: Add more docs.
13089
13090         * netrc.el (netrc-machine): Always match if the port is not given.
13091
13092 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13093
13094         * nnheader.el (nnheader-read-timeout): Change the default timeout from
13095         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
13096         retrieval faster in some cases, but might make CPU usage larger.
13097         If this has any bad side effects, we might revert this change.
13098
13099         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
13100         seems to make mail retrieval much, much faster.
13101         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
13102         unconditionally.
13103
13104         * gnus-draft.el (gnus-group-send-queue):
13105         Bind message-send-mail-partially-limit to nil to avoid being prompted.
13106
13107 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
13108
13109         * mml.el (mml-attach-buffer): Prompt for `disposition'.
13110
13111         * message.el (message-bogus-address-regexp): Fix and improve custom
13112         type.
13113         (message-setup-hook): Add message-check-recipients as custom option.
13114
13115 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
13116
13117         * message.el (message-cite-function): Remove bogus autoload which crept
13118         in during merge from v5-10.
13119
13120 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13121
13122         * nnimap.el (nnimap-open-connection): Fix login/password bug.
13123
13124         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
13125
13126         * auth-source.el: Preliminary Tramp docs.
13127         (auth-sources): Change the default auth-sources to use
13128         EPA .gpg files.
13129
13130 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
13131
13132         * nntp.el: Autoload `auth-source-user-or-password'.
13133         (nntp-send-authinfo): Use it.
13134
13135         * nnimap.el: Autoload `auth-source-user-or-password'.
13136         (nnimap-open-connection): Use it.
13137
13138         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
13139         for the gnus-message function.
13140         (auth-source-user-or-password): Use it.
13141
13142 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13143
13144         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
13145         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
13146         (rfc2104-hash): Use it.
13147
13148 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
13149
13150         * gnus-art.el (gnus-article-toggle-truncate-lines):
13151         Don't use `iff' in docstring.
13152
13153 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
13154
13155         * gnus-registry.el: Adjusted copyright dates and added a keyword.
13156
13157         * gnus-util.el (gnus-extract-address-component-name)
13158         (gnus-extract-address-component-email): Convenience functions around
13159         `gnus-extract-address-components'.
13160
13161         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13162         Use `gnus-extract-address-component-email' to fix bug of comparing full
13163         sender name to `user-mail-address'.
13164
13165 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
13166
13167         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
13168         catch/throw to optimize.
13169         (gnus-registry-find-keywords): Just use member to find a keyword.
13170
13171 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13172
13173         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
13174         is current before calling gnus-server-prepare.
13175         (gnus-server-setup-buffer, gnus-server-update-server)
13176         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
13177
13178 2008-05-04  Juri Linkov  <juri@jurta.org>
13179
13180         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
13181         (mailcap-file-default-commands): Use mailcap-replace-in-string
13182         instead of replace-regexp-in-string, and mailcap-delete-duplicates
13183         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
13184
13185 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
13186
13187         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
13188
13189 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13190
13191         * gnus.el: Bump version to 0.11.
13192
13193 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13194
13195         * gnus.el: No Gnus v0.10 is released.
13196
13197 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13198
13199         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
13200         hooks.
13201         (gnus-update-read-articles): Speed up non-marks-using users.
13202         (gnus-use-marks): Define gnus-use-marks.
13203         (gnus-propagate-marks): Rename variable to something more sensible.
13204
13205 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
13206
13207         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
13208         (gmm-image-load-path-for-library): Fix typos in docstrings.
13209         (gmm-message): Reflow docstring.
13210
13211 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
13212
13213         * mail-source.el (mail-source-set-1, mail-source-bind):
13214         Move auth-source code out of the macro to clean it up and fix bugs.
13215
13216 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
13217
13218         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
13219         by sender if it's equal to user-mail-address, it's likely to be
13220         useless.
13221
13222         * mail-source.el (mail-source-bind): Don't use user or password if they
13223         are not bound.  Unintern them if they are nil.  Don't use server unless
13224         it's bound, and default it to empty string otherwise.
13225
13226 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
13227
13228         * mail-source.el: Load auth-source.el.
13229         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
13230         get user name or password, if auth-sources is set up.
13231
13232         * gnus-registry.el (gnus-registry-split-strategy): New variable for
13233         strategy of splitting with parent.
13234         (gnus-registry-split-fancy-with-parent)
13235         (gnus-registry-post-process-groups): Use it and fix prior
13236         bug (returning a list as the split result).
13237
13238         * auth-source.el (auth-sources): Remove server parameter.
13239         (auth-source-pick, auth-source-user-or-password)
13240         (auth-source-user-or-password-imap)
13241         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13242         (auth-source-user-or-password-sftp)
13243         (auth-source-user-or-password-smtp): Remove server parameter.
13244
13245 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
13246
13247         * smime.el (smime-sign-region, smime-encrypt-region)
13248         (smime-decrypt-region):
13249         Remove redundant calls to `generate-new-buffer-name'.
13250
13251 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
13252
13253         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
13254         Don't use QP for message/rfc822.
13255         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
13256
13257 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13258
13259         * sieve-manage.el (sieve-string-bytes): Remove.
13260         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
13261         correct byte-length only if the process's coding-system is the same as
13262         the one used internally by Emacs to represent strings.
13263
13264 2008-04-22  Juri Linkov  <juri@jurta.org>
13265
13266         * mailcap.el (mailcap-file-default-commands): New function.
13267
13268 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13269
13270         * message.el (message-signature-separator, message-cite-function):
13271         Change custom version.
13272
13273 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
13274
13275         * tls.el (tls-program): Add -ign_eof argument to call the openssl
13276         commands.
13277         (tls-checktrust): Ditto.
13278
13279 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13280
13281         * mm-decode.el (mm-display-external): Make temp file read-only.
13282
13283 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
13284
13285         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
13286         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
13287         `C-c C-f d'.
13288
13289 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
13290
13291         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
13292
13293 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13294
13295         * gnus.el: Bump version to 0.9.
13296
13297 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
13298
13299         * gnus.el: No Gnus v0.8 is released.
13300
13301 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13302
13303         * mail-source.el (mail-source-value):
13304         Prefer fboundp to functionp so it works with macros as well.
13305
13306 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13307
13308         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13309         Fix last change in case the element is not even a symbol.
13310
13311 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13312
13313         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13314         Prefer fboundp to functionp so it works with macros as well.
13315
13316 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
13317
13318         * auth-source.el: Add docs.
13319         (auth-sources): Modify format to support server.
13320         (auth-source-pick, auth-source-user-or-password)
13321         (auth-source-user-or-password-imap)
13322         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13323         (auth-source-user-or-password-sftp)
13324         (auth-source-user-or-password-smtp): Add server parameter.
13325
13326 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
13327
13328         * gnus-registry.el: Initialize the registry when gnus-registry-install
13329         is t.
13330
13331 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13332
13333         * compface.el (uncompface): Make buffer unibyte.
13334
13335 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13336
13337         * mail-source.el (mail-source-value):
13338         Prefer fboundp to functionp so it works with macros as well.
13339
13340 2008-04-05  Glenn Morris  <rgm@gnu.org>
13341
13342         * gnus-ems.el (mm-disable-multibyte): Autoload it.
13343
13344 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13345
13346         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
13347         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
13348
13349         * nnheader.el (nnheader-init-server-buffer): Change buffer's
13350         multibyteness after rather than before erasing it.
13351
13352         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
13353         mm-with-multibyte.
13354         (gnus-request-article-this-buffer): Make sure the proper decoding is
13355         used if gnus-original-article-buffer happens to be unibyte.
13356
13357         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
13358         default-enable-multibyte-characters.
13359
13360         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
13361         default-enable-multibyte-characters.
13362
13363         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
13364
13365         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
13366
13367 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13368
13369         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13370         Fix last change in case the element is not even a symbol.
13371
13372 2008-04-02  Simon Josefsson  <simon@josefsson.org>
13373
13374         * imap.el (imap-enable-exchange-bug-workaround): New variable.
13375         (imap-message-copyuid-1): Use it.
13376         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
13377         J. Williams in
13378         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
13379
13380         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
13381         imap-enable-exchange-bug-workaround.
13382         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
13383
13384 2008-04-01  Simon Josefsson  <simon@josefsson.org>
13385
13386         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
13387         a 100 byte status-checks into a 2-3MB transfer for each group.
13388         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
13389         to enable bug workaround or not.
13390         (nnimap-find-minmax-uid): Only enable workaround conditionally.
13391
13392 2008-03-31  Glenn Morris  <rgm@gnu.org>
13393
13394         * message.el (mml2015-use): Declare for compiler.
13395         (message-info): Require mml2015 when appropriate.
13396
13397 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13398
13399         * Makefile.in (EMACS_COMP): Quote directory name that might contain
13400         whitespace.
13401
13402 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13403
13404         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
13405         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
13406         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
13407         (nntp-service-to-port): New function.
13408         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
13409         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
13410         (nntp-open-netcat-stream): New function.
13411         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
13412
13413 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
13414
13415         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
13416
13417 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13418
13419         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
13420
13421 2008-03-28  Magnus Henoch  <mange@freemail.hu>
13422
13423         * dns.el (dns-write): Use set-buffer-multibyte.
13424
13425 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
13426
13427         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
13428
13429 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
13430
13431         * message.el (message-signature-separator): Change default.
13432         Improve custom type.
13433         (message-cite-function): Change default to
13434         message-cite-original-without-signature.
13435
13436         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
13437         toggle.
13438
13439         * message.el (message-check-news-body-syntax): Fix signature check.
13440         (message-setup-1): Mark buffer as unmodified _after_ running
13441         message-setup-hook and handling message-alternative-emails.
13442         (message-shorten-references): Be more strict when building list of
13443         valid references to comply with GNKSA.
13444
13445         * gnus-group.el (gnus-read-ephemeral-bug-group)
13446         (gnus-read-ephemeral-debian-bug-group)
13447         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
13448
13449         * message.el (message-info): Don't use booleanp which isn't supported
13450         in Emacs 21 and XEmacs.
13451
13452 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
13453
13454         * gnus-group.el (gnus-gmane-group-download-format): Rename from
13455         gnus-group-gmane-group-download-format.
13456         (gnus-group-read-ephemeral-gmane-group): Rename from
13457         gnus-group-read-ephemeral-gmane-group.
13458         (gnus-read-ephemeral-gmane-group-url): Rename from
13459         gnus-group-read-ephemeral-gmane-group-url.
13460         (gnus-bug-group-download-format-alist): New variable.
13461         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
13462         (gnus-read-ephemeral-emacs-bug-group): New commands.
13463
13464 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
13465
13466         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
13467         (gnus-visible-headers): Improve custom type.
13468
13469 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
13470
13471         * mml.el (mml-menu): Add workarounds for XEmacs.
13472
13473         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
13474         X-Boundary header.
13475
13476         * message.el (message-simplify-recipients): Fix previous commit.
13477
13478 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13479
13480         * mm-util.el (mm-set-buffer-multibyte): New function.
13481         * mm-decode.el (mm-copy-to-buffer): Use it.
13482
13483         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13484         Prefer fboundp to functionp so it works with macros as well.
13485
13486 2008-03-19  Glenn Morris  <rgm@gnu.org>
13487
13488         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
13489         Accidentally removed in the sync process with Emacs.
13490
13491 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
13492
13493         * message.el (message-alter-recipients-discard-bogus-full-name):
13494         New function.
13495         (message-alter-recipients-function): New variable.
13496         (message-get-reply-headers): Use it.
13497         (message-replace-header): New helper function.
13498         (message-recipients-without-full-name): New variable.
13499         (message-simplify-recipients): New command.
13500
13501         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
13502
13503         * message.el (message-info): Handle EasyPG manual.
13504
13505         * mml.el (mml-menu): Add entry for EasyPG.
13506
13507 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
13508
13509         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
13510         parameter.
13511
13512         * message.el (message-disassociate-draft): Specify drafts group name
13513         fully.
13514
13515 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
13516
13517         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13518         Eliminate unnecessary duplicates from the match list.
13519
13520 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13521
13522         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
13523
13524         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
13525
13526         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
13527         args of `how-many' of which the XEmacs version doesn't take; declare
13528         Info-index-next as function.
13529
13530 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
13531
13532         * gnus-score.el (gnus-score-headers): Fix handling of
13533         gnus-inhibit-slow-scoring.
13534
13535         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
13536         string.
13537         (gnus-button-url-regexp): Improve handling of parenthesis.
13538         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
13539         (gnus-button-handle-info-keystrokes): Handle index entries.
13540
13541 2008-03-15  Glenn Morris  <rgm@gnu.org>
13542
13543         * parse-time.el (parse-time-string): Simplify.
13544
13545 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13546
13547         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
13548         Incoming* files.
13549
13550 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
13551
13552         * auth-source.el (auth-sources): Rename from auth-source-choices.
13553         (auth-source-pick): Use it.
13554
13555 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13556
13557         * binhex.el (binhex-decode-region-internal):
13558         * uudecode.el (uudecode-decode-region-internal):
13559         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
13560         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
13561         setting default-enable-multibyte-characters.
13562
13563 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
13564
13565         * auth-source.el (auth-source-protocols)
13566         (auth-source-protocols-customize, auth-source-choices): Add and
13567         modified variable customizations and defaults.
13568         (auth-source-pick, auth-source-user-or-password)
13569         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
13570         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13571         (auth-source-user-or-password-sftp)
13572         (auth-source-user-or-password-smtp): Use new variables and provide an
13573         interface to netrc.el.
13574
13575 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13576
13577         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
13578         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
13579         Make sure the nntp port to specify is a string.
13580
13581 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13582
13583         * nntp.el: Use with-current-buffer.
13584         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
13585         dubious mm-with-unibyte-current-buffer.
13586         (nntp-with-open-group-function): New function extracted from
13587         nntp-with-open-group macro.
13588         (nntp-with-open-group): Use the function, so it's easier to debug.
13589         Add indentation and debugging info.
13590         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
13591         Recommend the use of the netcat alternatives.
13592
13593         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
13594         Avoid mm-string-as-multibyte as well.
13595
13596         * nnweb.el (nnweb-insert-html):
13597         Remove use of nnheader-string-as-multibyte.
13598
13599         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
13600         (nnheader-string-as-multibyte): Remove.
13601
13602         * mm-view.el: Use inhibit-read-only.
13603         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
13604         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
13605         or unibyte-string.
13606
13607         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
13608         (mm-uu-yenc-extract): Use with-current-buffer.
13609
13610         * gnus-soup.el (gnus-soup-send-packet): Don't use
13611         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
13612
13613         * nnmh.el: Use with-current-buffer.
13614         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
13615         mm-string-as-multibyte on the output of mm-encode-coding-string.
13616
13617         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
13618         (nnimap-request-move-article): Use with-current-buffer.
13619
13620         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
13621         inserting the handle-buffer's text, so the implicit multibyte->unibyte
13622         conversion uses string-make-unibyte rather than string-as-unibyte.
13623
13624         * gnus-msg.el: Use with-current-buffer.
13625
13626         * message.el (message-ignored-resent-headers): Add "Delivered-To".
13627
13628 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
13629
13630         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
13631         string for caching if it is 'PIN.
13632
13633 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13634
13635         * lpath.el: Consider the case without Emacs/W3.
13636
13637 2008-03-08  Glenn Morris  <rgm@gnu.org>
13638
13639         * time-date.el (date-to-time, time-subtract, time-add)
13640         (safe-date-to-time): Doc fixes.
13641
13642 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
13643
13644         * mail-source.el (mail-source-delete-old-incoming-confirm):
13645         Change default to nil.
13646         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
13647
13648 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13649
13650         * lpath.el: Rearrange.
13651
13652         * gnus-art.el (gnus-narrow-to-page): Position point properly.
13653         (gnus-article-goto-prev-page): Work for articles having ^L's.
13654
13655         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
13656
13657         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
13658
13659 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
13660
13661         * gnus-bookmark.el: Adjust for renames in bookmark.el.
13662         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
13663         (gnus-bookmark-jump): Adjust some variable names.
13664
13665 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
13666
13667         * auth-source.el: New package.
13668         (auth-source-choices): Add customization entry point variable.
13669
13670         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
13671         bug.
13672
13673 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
13674
13675         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
13676         (gnus-registry-initialize, gnus-registry-install-p): Use it.
13677         (gnus-registry-install-shortcuts): Rename from
13678         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
13679         the `gnus-registry-mark-map' keymap dynamically from
13680         `gnus-registry-marks'.  The generated functions update the summary line
13681         when a registry mark is added or deleted, and will call
13682         `gnus-registry-install-p' (see the comments in the code).
13683         (gnus-registry-user-format-function-M): Use concat intelligently.
13684
13685         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
13686         the registry mark functions.
13687
13688 2008-03-05  Glenn Morris  <rgm@gnu.org>
13689
13690         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
13691         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
13692         gnus-art.
13693         (top-level): No need to load own source when compiling.
13694
13695 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13696
13697         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
13698         Suggested by <chris.anderton@zetnet.co.uk>.
13699
13700 2008-03-04  Glenn Morris  <rgm@gnu.org>
13701
13702         * gnus-sum.el (top-level): No need to require gnus when compiling,
13703         since unconditionally required near start of file.
13704         (gnus-summary-display-while-building): Move definition before use.
13705
13706 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
13707
13708         * gnus-registry.el (gnus-registry-user-format-function-M):
13709         Add formatting function.
13710
13711 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
13712
13713         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
13714         with plists.
13715         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
13716         Use new format.
13717
13718 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13719
13720         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
13721         `where-is-internal' that returns a range of key sequences.
13722
13723 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13724
13725         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
13726
13727         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
13728         (gnus-summary-jump-to-group): Consider windows on other displayed
13729         frames as well.  Similar changes might be needed elsewhere, but that's
13730         the one I've bumped into during my use.
13731
13732         * nndoc.el (nndoc-oe-dbx-type-p):
13733         * gnus-msg.el (gnus-debug):
13734         * gnus-group.el (gnus-update-group-mark-positions):
13735         Use mm-string-to-multibyte.
13736
13737 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13738
13739         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
13740         doesn't handle NotDashEscaped.
13741
13742         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
13743         (mml-dnd-attach-options): Fix typo in custom choice.
13744
13745         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
13746         Change nndoc-article-type to mbox.
13747         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
13748
13749         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
13750         to nil, instead of html2text.
13751
13752         * imap.el (imap-debug): Add `imap-ping-server'.
13753
13754         * gnus-bookmark.el: Add FIXMEs.
13755
13756         * message.el (message-form-letter-separator)
13757         (message-send-form-letter-delay): New variables.
13758         (message-send-form-letter): Use them.  New command to send form
13759         letters.  Requested by Uwe Siart.
13760         (message-send-mail-function): Doc fix.  Add "Other" custom option.
13761
13762 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13763
13764         * Update copyright years.
13765
13766 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13767
13768         Sync from EMACS_22_BASE.
13769
13770         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
13771
13772 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
13773
13774         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
13775         empty author.
13776
13777 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
13778
13779         * gnus-registry.el (gnus-registry-marks): Add variable for
13780         customization of marks and their appearance.
13781         (gnus-registry-read-mark): Use it.
13782         (gnus-registry-do-marks): Add utility function to loop through
13783         `gnus-registry-marks'.
13784         (gnus-registry-install-shortcuts-and-menus): Add function to install
13785         shortcuts and menus.
13786         (gnus-registry-initialize): Use it.
13787         (gnus-registry-default-mark): Clarify documentation.
13788
13789 2008-02-29  Glenn Morris  <rgm@gnu.org>
13790
13791         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
13792         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
13793         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
13794         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
13795         Change defcustom :version from 23.0 to 23.1.
13796
13797 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
13798
13799         * gnus-registry.el (gnus-registry-follow-group-p)
13800         (gnus-registry-post-process-groups): Add functions to aid registry
13801         splitting and improve logging.  Clarify behavior in function
13802         documentation.
13803         (gnus-registry-split-fancy-with-parent): Use them.
13804
13805 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13806
13807         * gnus-art.el: Use with-current-buffer.
13808
13809 2008-02-27  David Engster  <dengste@eml.cc>
13810
13811         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
13812         Express real group name in the response.
13813
13814 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13815
13816         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
13817         (nnmairix-last-server, nnmairix-current-server): Defvar them.
13818         (nnmairix-goto-original-article): Defvar gnus-registry-install and
13819         autoload gnus-registry-fetch-group when compiling.
13820         (nnmairix-request-group-with-article-number-correction):
13821         Remove unreferenced argument passed to nnmairix-call-backend.
13822
13823 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13824
13825         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
13826         (mm-uu-extract): Improve face for low color ttys.
13827         Reported by Sascha Wilde.
13828
13829 2008-02-27  Glenn Morris  <rgm@gnu.org>
13830
13831         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
13832         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
13833         variables to defconsts.  Convert comments to doc-strings.
13834         (nnmairix-last-server, nnmairix-current-server): Convert from free
13835         variables to defvars.  Convert comments to doc-strings.
13836         (gnus-registry-fetch-group): Autoload.
13837         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
13838         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
13839         (nnmairix-widget-build-editable-fields): Use car cddr rather than
13840         caddr.
13841         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
13842         nnmairix-request-group-with-article-number-correction call.
13843         (nnmairix-fast, nnmairix-group): New, less general names, for free
13844         variables passed from nnmairix-request-group to
13845         nnmairix-request-group-with-article-number-correction.  Declare.
13846         (nnmairix-request-group-with-article-number-correction):
13847         Use nnmairix-fast, nnmairix-group rather than fast, group.
13848
13849 2008-02-26  David Engster  <dengste@eml.cc>
13850
13851         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
13852         version 0.5.
13853
13854 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
13855
13856         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
13857         instead of making an extra function call.  Don't add the current group
13858         to articles only when they have the group.  Use
13859         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
13860         Reported by David <de_bb@arcor.de>.
13861
13862 2008-02-24  Miles Bader  <miles@gnu.org>
13863
13864         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
13865         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
13866         (mm-find-mime-charset-region):
13867         * mm-bodies.el (mm-encode-body):
13868         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
13869
13870 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13871
13872         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
13873         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
13874
13875 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
13876
13877         * mail-source.el (mail-source-delete-incoming): Change default.
13878         Supplement doc string.
13879
13880         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
13881
13882 2008-02-14  Glenn Morris  <rgm@gnu.org>
13883
13884         * time-date.el (format-seconds): New function.
13885
13886 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13887
13888         * nnmail.el (nnmail-message-id-cache-file): Derive from
13889         `gnus-home-directory'.
13890
13891 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
13892
13893         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
13894         Document negative prefix.
13895
13896         * gnus-group.el (gnus-group-read-group): Document negative prefix.
13897
13898 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13899
13900         * message.el (message-unsent-separator): Add the Exim bounce
13901         separator.
13902
13903 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
13904
13905         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
13906         list.
13907         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
13908         recipient/signer list.
13909
13910 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13911
13912         * Makefile.in (datarootdir): Define.
13913         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
13914         name that might contain whitespace.
13915
13916 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
13917
13918         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
13919         fbound (Emacs 23 unicode), signal an error.
13920
13921 2008-02-08  Glenn Morris  <rgm@gnu.org>
13922
13923         * gnus-art.el (pgg-display-output-buffer): Declare as function.
13924
13925 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
13926
13927         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
13928         ports to the calls to `netrc-machine-user-or-password' in addition to
13929         "imap" and "imaps".
13930
13931 2008-02-01  Zhang Wei  <id.brep@gmail.com>
13932
13933         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
13934
13935         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
13936
13937 2008-02-01  Kenichi Handa  <handa@m17n.org>
13938
13939         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
13940         rfc2104-hexstring-to-bitstring and changed to return a byte list.
13941         (rfc2104-hash): Convert the result of concat to unibyte string.
13942
13943 2008-02-01  Dave Love  <fx@gnu.org>
13944
13945         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
13946         coding-system-for-read.
13947         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
13948
13949 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
13950
13951         * gnus.el (gnus-group-startup-message): Add `find-image' call before
13952         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
13953         <hanche@math.ntnu.no>.
13954
13955 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13956
13957         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
13958
13959         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13960
13961 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
13962
13963         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
13964         * message.el (message-beginning-of-line): Use featurep instead of bound
13965         tests in order to resolve conditionals at compile time.
13966
13967 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
13968
13969         * mail-source.el (mail-sources): Add `group' choice.
13970
13971         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
13972         parameter `in-group' to control into which group the articles go.
13973         Add treatment of `group' mail-source.
13974
13975 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13976
13977         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
13978
13979         * mm-decode.el (mm-dissect-buffer): Decode description.
13980
13981         * mml.el (mml-to-mime): Encode message header first.
13982
13983 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13984
13985         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
13986         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
13987
13988         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
13989         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
13990
13991 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
13992
13993         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
13994
13995 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13996
13997         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
13998         prefix keys.
13999         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
14000         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
14001         gnus-xmas.el.
14002
14003         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
14004         (gnus-xmas-article-describe-bindings): New function.
14005         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
14006         gnus-xmas-article-describe-bindings.
14007
14008         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
14009
14010 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
14011
14012         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
14013         Add new variables for article mark management.
14014         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
14015         list of extra data entries which, when present, will indicate that the
14016         article ID should not be trimmed from the registry.
14017         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
14018         functions.
14019         (gnus-registry-read-mark): New function to read a mark name from the
14020         user.
14021         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
14022         (gnus-registry-set-article-mark-internal): New functions to add and
14023         remove marks.
14024         (gnus-registry-get-article-marks): New function to show the marks for
14025         an article, or retrieve them for further use.
14026
14027 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14028
14029         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
14030         keys when no argument is given.
14031
14032 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
14033
14034         * imap.el (imap-ping-server): New variable.
14035         (imap-opened): On add extra ping if imap-ping-server is non-nil.
14036         (imap-ping-server): Minor doc string fixes.
14037
14038 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
14039
14040         * imap.el (imap-ping-server): New function.
14041         (imap-opened): Call imap-ping-server.
14042
14043 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
14044
14045         * gnus-sum.el (gnus-article-sort-by-random)
14046         (gnus-thread-sort-by-random): Fix doc strings.
14047         Reported by jidanni@jidanni.org.
14048
14049 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14050
14051         * gnus-art.el (gnus-article-describe-bindings): New function.
14052         (gnus-article-read-summary-keys): Use it.
14053         (gnus-article-mode-map): Bind `C-h b' to it.
14054
14055 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14056
14057         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
14058         XEmacs.
14059         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14060         Protect against non-character events.
14061
14062         * lpath.el: Fbind map-keymap for Emacs 21.
14063
14064 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
14065
14066         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
14067         New command.
14068         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
14069         instead of END.  Change name of the temp file.
14070         (gnus-group-gmane-group-download-format): Add doc string.  Make it
14071         customizable.
14072
14073 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14074
14075         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
14076         bind `S W' to gnus-article-wide-reply-with-original; set default
14077         binding to gnus-article-read-summary-send-keys.
14078         (gnus-article-read-summary-keys): Fix the order of keys; display
14079         continuation keys correctly in the echo area; describe bindings
14080         correctly when keys end with `C-h'.
14081         (gnus-article-read-summary-send-keys): New function.
14082         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14083         Work for gnus-article-read-summary-send-keys; display continuation keys
14084         correctly in the echo area.
14085         (gnus-article-reply-with-original): Ignore prefix argument.
14086         (gnus-article-wide-reply-with-original): New function.
14087
14088         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
14089         Emacs 21.
14090
14091 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14092
14093         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
14094         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
14095
14096 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
14097
14098         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
14099         (gnus-group-read-ephemeral-gmane-group): New command.
14100
14101 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
14102
14103         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
14104
14105 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
14106
14107         * message.el (message-send-mail-function): Increase custom version.
14108
14109         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
14110         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
14111
14112 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
14113
14114         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
14115         for the cases where imap-authenticate is called with a nil buffer
14116         parameter.
14117
14118 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14119
14120         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
14121         html parts correctly; support forwarded messages.
14122         (gnus-article-browse-html-article): Remove work buffers.
14123
14124         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
14125         compiling.
14126         (netrc-bound-and-true-p): New macro.
14127         (netrc-parse): Use it instead of bound-and-true-p that is not available
14128         in XEmacs 21.4.
14129
14130 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
14131
14132         * gnus-registry.el (gnus-registry-mark-article)
14133         (gnus-registry-article-marks): Add functionality to mark articles
14134         through the Gnus registry.
14135
14136         * encrypt.el: Clarify documentation for the new pgg method.
14137         (encrypt-file-alist): Add PGG option.
14138         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
14139         functionality.  Abstract password key and messaging to external
14140         functions.
14141         (encrypt-password-key, encrypt-get-passphrase-if-needed)
14142         (encrypt-message-method-and-cipher): Add new convenience external
14143         functions.
14144         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
14145         (encrypt-pgg-process-buffer): Add PGG functionality glue.
14146
14147         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
14148         (netrc-parse): Use encrypt-file-alist to determine if
14149         encrypt-find-model or encrypt-insert-file-contents should be used.
14150
14151         * encrypt.el: Clarify documentation.  Load password-cache or
14152         password, whichever one is found first, instead of autoloading.
14153
14154 2007-12-19  Glenn Morris  <rgm@gnu.org>
14155
14156         * mml.el (message-options-set, message-narrow-to-head)
14157         (message-in-body-p, message-mail-p, message-encode-message-body):
14158         Autoload.
14159         (message-remove-header, message-narrow-to-headers-or-head)
14160         (message-subscribed-p, message-make-mail-followup-to)
14161         (message-position-on-field, message-news-p)
14162         (message-options-set-recipient, message-generate-headers)
14163         (message-sort-headers): Declare as functions.
14164
14165 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14166
14167         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
14168         convention in doc string.
14169
14170 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14171
14172         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
14173         title to html parts.
14174         (gnus-article-browse-html-article): Pass message header to it.
14175
14176         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
14177
14178 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
14179
14180         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
14181         or password compatible with XEmacs.
14182
14183 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14184
14185         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
14186         format document.
14187         (gnus-mime-delete-part): Don't write description line if empty.
14188         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
14189
14190 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
14191
14192         * gnus-sum.el (gnus-summary-mark-unread-as-read)
14193         (gnus-summary-mark-read-and-unread-as-read)
14194         (gnus-summary-mark-current-read-and-unread-as-read)
14195         (gnus-summary-mark-unread-as-ticked): Doc fix.
14196         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
14197
14198 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14199
14200         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
14201         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14202
14203 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14204
14205         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
14206         yes-or-no-p.
14207
14208 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14209
14210         * mm-decode.el (mm-add-meta-html-tag): New function.
14211         (mm-save-part-to-file, mm-pipe-part): Use it.
14212
14213         * gnus-art.el (gnus-article-browse-delete-temp-files):
14214         Use gnus-y-or-n-p instead of y-or-n-p.
14215         (gnus-article-browse-html-parts): Work with message/external-body; use
14216         mm-add-meta-html-tag.
14217
14218 2007-12-11  Glenn Morris  <rgm@gnu.org>
14219
14220         * gnus-cache.el: Require gnus-sum not just when compiling.
14221
14222         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
14223
14224         * gnus-int.el (gnus-server-opened, gnus-status-message):
14225         Move definitions before use.
14226
14227         * mm-decode.el: Require gnus-util.
14228         (mm-remove-part): Only call delete-annotation on XEmacs.
14229
14230         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
14231
14232         * nnmail.el: Require gnus-int.
14233
14234         * spam.el: Move `require's before `eval-when-compile's.
14235
14236         * gnus-ems.el (gnus-alive-p):
14237         * gnus-fun.el (message-goto-eoh):
14238         * gnus-util.el (gnus-group-name-decode):
14239         * mail-source.el (gnus-compress-sequence):
14240         * message.el (Info-goto-node, format-spec):
14241         * mm-bodies.el (message-options-get):
14242         * mm-decode.el (mm-view-pkcs7):
14243         * mm-util.el (gmm-write-region):
14244         * mml-smime.el (mml-compute-boundary)
14245         (gnus-completing-read-with-default):
14246         * mml.el (widget-button-press, gnus-make-hashtable):
14247         * mml1991.el (mm-decode-content-transfer-encoding)
14248         (mm-encode-content-transfer-encoding)
14249         (message-options-get, message-options-set):
14250         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
14251         * nnfolder.el (gnus-request-group):
14252         * nnheader.el (ietf-drums-unfold-fws):
14253         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
14254         * smime.el (gnus-run-mode-hooks):
14255         * spam-stat.el (gnus-message): Autoload.
14256
14257         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
14258         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
14259         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
14260         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
14261         Add declare-function compatibility definition.
14262
14263         * gnus-cache.el (nnvirtual-find-group-art):
14264         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
14265         (gnus-add-image, gnus-add-wash-type):
14266         * gnus-group.el (nnkiboze-score-file):
14267         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
14268         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
14269         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
14270         (message-tokenize-header, gnus-get-buffer-create)
14271         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
14272         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
14273         * gnus.el (gnus-group-decoded-name):
14274         * mail-source.el (imap-capability):
14275         * mm-bodies.el (message-options-set):
14276         * mm-decode.el (gnus-configure-windows):
14277         * mm-extern.el (message-goto-body):
14278         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
14279         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
14280         (epg-sub-key-validity, message-options-set):
14281         * mml.el (widget-event-point, gnus-configure-windows):
14282         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
14283         * mml2015.el (epg-check-configuration, epg-configuration)
14284         (message-options-set):
14285         * nndb.el (nndb-request-article):
14286         * nnfolder.el (gnus-request-create-group):
14287         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
14288         * nnmaildir.el (gnus-group-mark-article-read):
14289         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
14290         * rfc1843.el (message-fetch-field):
14291         * spam.el (gnus-extract-address-components):
14292         Declare as functions.
14293
14294 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14295
14296         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
14297
14298         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
14299
14300         * lpath.el: Fbind run-mode-hooks for Emacs 21;
14301         bind show-trailing-whitespace for XEmacs.
14302
14303 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14304
14305         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
14306         new no-op macro for backward compatibility.
14307
14308         * imap.el (imap-string-to-integer): New function.
14309
14310 2007-12-09  Glenn Morris  <rgm@gnu.org>
14311
14312         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
14313
14314         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
14315         * message.el, mm-view.el, sieve-manage.el, smime.el:
14316         Add declare-function compatibility definition.
14317
14318         * gnus-art.el (w3-region, w3m-region, Info-menu):
14319         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
14320         * gnus-sum.el (gnus-get-predicate):
14321         * gnus-util.el (mm-append-to-file, w32-focus-frame):
14322         * message.el (mail-abbrev-in-expansion-header-p):
14323         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
14324         (w3m-detect-meta-charset, w3m-region):
14325         * sieve-manage.el (password-read, password-cache-add)
14326         (password-cache-remove):
14327         * smime.el (password-read-and-add): Declare as functions.
14328
14329 2007-12-08  David Kastrup  <dak@gnu.org>
14330
14331         * gnus-sum.el (gnus-summary-simplify-subject-query):
14332         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
14333         `message'.
14334
14335 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14336
14337         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
14338         it to bind idna-program, installation-directory, defined-colors, and
14339         face-attribute for XEmacs of the version that compiles defcustom forms.
14340
14341 2007-12-07  Glenn Morris  <rgm@gnu.org>
14342
14343         * gnus-art.el (article-make-date-line): Revert previous change.
14344
14345 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14346
14347         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
14348
14349 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
14350
14351         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
14352         Call gnus-add-to-range ranges only once with a prepared article-list.
14353
14354 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
14355
14356         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
14357         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
14358         group names with backslashes.
14359         Reported by Tassilo Horn <tassilo@member.fsf.org>.
14360
14361 2007-12-06  Deepak Goel  <deego3@gmail.com>
14362
14363         * gnus-art.el (article-make-date-line):
14364         * gnus-start.el (gnus-load):
14365         * pop3.el (pop3-read-response): Fix buggy call to `error'.
14366
14367 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14368
14369         * gnus-art.el (gnus-use-idna):
14370         * gnus-start.el (gnus-site-init-file):
14371         * message.el (message-use-idna):
14372         * mm-uu.el (mm-uu-hide-markers):
14373         * smiley.el (smiley-style): Revert changes that suppress warnings.
14374
14375 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14376
14377         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
14378         specify charset to html source.
14379         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14380
14381 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14382
14383         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
14384         idna-program in order to suppress byte compile warning issued by XEmacs
14385         that came to byte compile the default value section of defcustom forms
14386         recently.
14387
14388         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
14389         value of installation-directory.
14390
14391         * message.el (message-use-idna): Don't directly refer to the value of
14392         idna-program.
14393
14394         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
14395
14396         * smiley.el (smiley-style): Don't directly call face-attribute.
14397
14398 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
14399
14400         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
14401
14402         * gnus-dired.el: Reduce Gnus dependencies.
14403         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
14404         Don't require.  Use autoloads instead.
14405         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
14406         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
14407         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
14408         (gnus-dired-mode): Adjust doc string.
14409         (gnus-dired-mail-mode): New variable.
14410         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
14411         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
14412         (gnus-dired-mail-buffers): New function.  Return mail or message
14413         composition buffers.
14414         (gnus-dired-attach): Use it.
14415         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
14416         NO-DECODE.
14417         (gnus-dired-print): Use `gnus-print-buffer' depending on
14418         `gnus-dired-mail-mode'.
14419
14420 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14421
14422         * rfc2047.el (rfc2047-encoded-word-regexp)
14423         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
14424         explaining what regexp patterns are for.
14425
14426 2007-12-04  Glenn Morris  <rgm@gnu.org>
14427
14428         * password.el: Move to password-cache.el.
14429
14430         * mml1991.el (password-read, password-cache-add, password-cache-remove):
14431         * mml2015.el (password-read, password-cache-add, password-cache-remove):
14432         * mml-smime.el (password-read, password-cache-add)
14433         (password-cache-remove):
14434         No need to autoload, since mml-sec requires password.
14435
14436         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
14437         * message.el (gnus-extract-address-components):
14438         * mml-smime.el (gnus-extract-address-components): Define for compiler.
14439
14440         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
14441         password.
14442
14443 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
14444
14445         * mailcap.el: Reduce dependencies.
14446         (mail-header-parse-content-type): Autoload.
14447         (mailcap-delete-duplicates): New alias.
14448         (mailcap-mime-info): Add optional argument NO-DECODE.
14449         (mailcap-mime-types): Use mailcap-delete-duplicates.
14450
14451         * message.el (message-ignored-supersedes-headers): Add "X-ID".
14452
14453 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
14454
14455         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
14456         (imap-parse-status): Upcase status-att for servers that sends them
14457         lower-case (e.g., MS Exchange 2007).
14458
14459 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14460
14461         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
14462         function.
14463
14464         * gnus-uu.el (gnus-uu-decode-yenc): New command.
14465         (gnus-uu-yenc-article): New function.
14466
14467         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
14468
14469         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
14470
14471 2007-12-02  Glenn Morris  <rgm@gnu.org>
14472
14473         * binhex.el (binhex): New custom group.
14474         (binhex-decoder-program, binhex-decoder-switches)
14475         (binhex-use-external): Move to the binhex custom group.
14476
14477         * uudecode.el (uudecode): New custom group.
14478         (uudecode-decoder-program, uudecode-decoder-switches)
14479         (uudecode-use-external): Move to the uudecode custom group.
14480
14481         * netrc.el (top-level): Don't load `encrypt' features.
14482         (netrc-parse): Don't use encrypt.
14483         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
14484
14485         * encrypt.el: Remove file.
14486
14487 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
14488
14489         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
14490         matches on patches.
14491
14492         * gnus-art.el (gnus-article-browse-html-article):
14493         Mention `mm-text-html-renderer' in the doc string.
14494
14495         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
14496         string.  Add comments.
14497
14498         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
14499         if rhs is ASCII.
14500
14501 2007-12-01  Glenn Morris  <rgm@gnu.org>
14502
14503         * mail-source.el (top-level): Require format-spec before
14504         eval-when-compile.
14505
14506 2007-11-30  Glenn Morris  <rgm@gnu.org>
14507
14508         * encrypt.el: Require password, rather than autoloading password-read.
14509
14510 2007-11-29  Glenn Morris  <rgm@gnu.org>
14511
14512         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
14513         (sasl-make-client, sasl-next-step, sasl-step-data)
14514         (sasl-step-set-data): Declare as functions.
14515
14516 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
14517
14518         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
14519
14520 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
14521
14522         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
14523         certs should be verified and what is to be done in the event of a
14524         verification failure.
14525
14526         * gnus.el (gnus-method-to-server): Add an optional parameter so the
14527         caller can indicate whether the cache should be disregarded for this
14528         call.  This way the result of the call is reproducible at all times and
14529         can be considered a canonical server name for the supplied method.
14530         (gnus-agent-method-p): Canonicalize server names by pushing their
14531         method through `gnus-method-to-server' using the no-cache argument.
14532
14533         * gnus-srvr.el (gnus-server-insert-server-line):
14534         Call `gnus-method-to-server' with `no-cache' argument.
14535
14536         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
14537         gnus-agent-possibly-synchronize-flags as this should be called when the
14538         server is actually being opened.
14539         (gnus-agent-possibly-synchronize-flags)
14540         (gnus-agent-possibly-synchronize-flags-server): Move check for the
14541         flags file of an agentized server to the latter function.
14542
14543         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
14544         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
14545         after a connection has been established successfully.
14546
14547 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14548
14549         * gnus-art.el (article-display-face): Force to display face if called
14550         interactively; check if gnus-article-x-face-too-ugly matches author.
14551         (article-display-x-face): Display face even if From header is missing
14552         as article-display-face does.
14553
14554 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14555
14556         * hashcash.el (message-narrow-to-headers-or-head)
14557         (message-fetch-field, message-goto-eoh)
14558         (message-narrow-to-headers): Declare as functions.
14559
14560 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
14561
14562         * mail-source.el (mail-sources): Default to fetch from file for
14563         compatibility with default of nnmail-spool-file.
14564
14565 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14566
14567         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
14568         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
14569         to look for encoded word that should be encoded again.
14570         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
14571         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
14572         encoding pattern.
14573         (rfc2047-decode-region): Switch strict regexp and loose one according
14574         to rfc2047-allow-irregular-q-encoded-words.
14575
14576 2007-11-25  Romain Francoise  <romain@orebokech.com>
14577
14578         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
14579
14580 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14581
14582         * tls.el (tls-program): Provide more custom choices from
14583         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
14584         (tls-process-connection-type, tls-success): Remove "*" in doc string.
14585
14586 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14587
14588         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
14589         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
14590
14591         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
14592         `nnmail-spool-file'.
14593
14594         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
14595         `nnmail-spool-file'.
14596
14597         * gnus-move.el (gnus-change-server): Ditto.
14598
14599         * gnus-kill.el (gnus-batch-score): Ditto.
14600
14601         * gnus-cache.el (gnus-jog-cache): Ditto.
14602
14603         * gnus-msg.el (gnus-summary-reply):
14604         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
14605
14606 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14607
14608         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
14609         version.  Minor improvement to doc strings.
14610         (tls-program): Add comment.
14611
14612 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
14613
14614         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
14615         (tls-checktrust): New variable.  Check if GNU TLS complained about a
14616         mismatch between the hostname provided in the certificate and the name
14617         of the host connnecting to.
14618         (open-tls-stream): Use them.  Check certificates against trusted root
14619         certificates.
14620
14621 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14622
14623         * gnus-cache.el (gnus-cache-generate-nov-databases):
14624         Use nnml-generate-nov-databases-directory instead of
14625         nnml-generate-nov-databases-1.
14626
14627 2007-11-24  Glenn Morris  <rgm@gnu.org>
14628
14629         * message.el (message-tool-bar-retro): Update for rename
14630         mail_send.xpm->mail-send.xpm.
14631
14632 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14633
14634         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
14635         `smime-ldap-search' for Emacs 22 and up.
14636
14637 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14638
14639         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
14640
14641         * message.el (message-send-mail-function): Fix error convention.
14642         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
14643         (message-widen-reply, message-send-mail, message-talkative-question)
14644         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
14645         (message-clone-locals, message-send-news): Use with-current-buffer.
14646         (message-insert-or-toggle-importance): Remove unused var `valid'.
14647         (message-make-references): Remove unused var `new-references'.
14648         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
14649
14650 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14651
14652         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
14653         (spam-split-symbolic-return-positive): Reflow docstring.
14654         (spam-backends, spam-summary-exit-behavior)
14655         (spam-mark-ham-unread-before-move-from-spam-group)
14656         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
14657         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
14658         (spam-clear-cache, spam-backend-check, spam-install-backend)
14659         (spam-install-statistical-backend, spam-list-of-processors)
14660         (spam-group-processor-p, spam-split, spam-bogofilter-score)
14661         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
14662         (spam-check-crm114, spam-initialize, spam-unload-hook):
14663         Fix typos in docstrings.
14664
14665 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14666
14667         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
14668         been checked if they have never been read and those group levels are
14669         higher than the one that a user specified.
14670
14671 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14672
14673         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
14674         foreign groups unless a group level is specified by a user.
14675         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
14676
14677 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
14678
14679         * message.el (message-send-mail-function): Require sendmail.
14680
14681 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
14682
14683         * message.el (message-send-mail-function): Check for smtpmail too.
14684
14685         * utf7.el (utf7-encode, utf7-decode): Use coding system
14686         `utf-7'/`utf-7-imap' from utf-7.el' if available.
14687
14688         * message.el (message-send-mail-function): New function.
14689         (message-send-mail-function): Set default using
14690         message-send-mail-function.  Adjust doc string.
14691         (message-send-mail-with-mailclient): New function.
14692
14693 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
14694
14695         * smime.el (from):
14696         * rfc2047.el (message-posting-charset):
14697         * qp.el (mm-use-ultra-safe-encoding):
14698         * pop3.el (parse-time-months):
14699         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
14700         * nnml.el (files):
14701         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
14702         (jka-compr-compression-info-list, ange-ftp-path-format)
14703         (efs-path-regexp):
14704         * nndiary.el (files):
14705         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
14706         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
14707         (epg-digest-algorithm-alist, inhibit-redisplay)
14708         (password-cache-expiry):
14709         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
14710         (pgg-output-buffer, password-cache-expiry):
14711         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
14712         (efs-path-regexp):
14713         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
14714         (inhibit-redisplay):
14715         * mm-uu.el (file-name, start-point, end-point, entry)
14716         (gnus-newsgroup-name, gnus-newsgroup-charset):
14717         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
14718         (latin-unity-ucs-list):
14719         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
14720         (mm-uu-binhex-decode-function):
14721         * message.el (gnus-message-group-art, gnus-list-identifiers)
14722         (rmail-enable-mime-composing, gnus-local-organization)
14723         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
14724         (gnus-read-active-file, facemenu-add-face-function)
14725         (facemenu-remove-face-function, gnus-article-decoded-p)
14726         (tool-bar-mode):
14727         * mail-source.el (display-time-mail-function):
14728         * gnus-util.el (nnmail-pathname-coding-system)
14729         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
14730         (gnus-original-article-buffer, gnus-user-agent)
14731         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
14732         (xemacs-codename, sxemacs-codename, emacs-program-version):
14733         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
14734         * gnus-start.el (gnus-agent-covered-methods)
14735         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
14736         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
14737         (gnus-newsgroup-headers, gnus-group-list-mode)
14738         (gnus-group-mark-positions, gnus-newsgroup-data)
14739         (gnus-newsgroup-unreads, nnoo-state-alist)
14740         (gnus-current-select-method, mail-sources)
14741         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
14742         (nnmail-spool-file, gnus-cache-active-hashtb):
14743         * gnus-mh.el (mh-lib-progs):
14744         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
14745         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
14746         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
14747         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
14748         (gnus-group-buffer):
14749         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
14750         (font-lock-set-defaults):
14751         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
14752         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
14753         (gnus-summary-post-menu, total-parts, type, condition, length):
14754         * gnus-agent.el (gnus-agent-read-agentview):
14755         * flow-fill.el (show-trailing-whitespace):
14756         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
14757         eval-and-compile wrappers for byte compiler pacifiers.
14758
14759         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
14760         (mm-display-inline-fontify): Check for featurep 'xemacs not
14761         extent-list.
14762
14763         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
14764         itimer-list.
14765         (mm-create-image-xemacs): Only do something for XEmacs.
14766         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
14767
14768         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
14769
14770         * gnus-registry.el (gnus-adaptive-word-syntax-table):
14771         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
14772
14773 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
14774
14775         * nnimap.el (nnimap-split-download-body):
14776         * gnus-demon.el (gnus-demon):
14777         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
14778
14779 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14780
14781         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
14782         New macros.
14783         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
14784         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
14785         copy data from unibyte buffer to multibyte current buffer.
14786         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
14787         to copy data from unibyte current buffer to multibyte buffer.
14788         (nntp-make-process-buffer): Make process buffer unibyte.
14789
14790         * pop3.el (pop3-open-server): Fix typo in Lisp code.
14791
14792 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
14793
14794         * pop3.el (pop3-open-server): Accept and process data more robustly at
14795         connection start to avoid spurious "POP SSL connection failed" errors.
14796
14797 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14798
14799         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
14800         read group names.
14801
14802 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
14803
14804         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
14805
14806 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14807
14808         * nnmail.el (nnmail-parse-active): Make group names unibyte.
14809         (nnmail-save-active): Use a unibyte buffer when saving active file,
14810         which may contain non-ASCII group names.
14811
14812         * nnml.el (nnml-request-group): Decode group names in messages.
14813
14814 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
14815
14816         * message.el (message-citation-line-function)
14817         (message-insert-formatted-citation-line): Fix spelling of
14818         `message-insert-formated-citation-line'.
14819
14820 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
14821
14822         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
14823
14824 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14825
14826         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
14827         nnmail-pathname-coding-system.
14828
14829         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
14830         that a user enters; decode group names in messages.
14831
14832         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
14833
14834 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
14835
14836         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
14837
14838         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
14839
14840         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
14841         risky local variable.
14842
14843         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
14844
14845 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
14846
14847         * encrypt.el: Improve documentation to fix function name typo.
14848         Reported by Daiki Ueno <ueno@unixuser.org>.
14849
14850 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14851
14852         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
14853         even if the point is not in the last page of an article.
14854         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
14855         back to the previous page.
14856
14857 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
14858
14859         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
14860
14861 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14862
14863         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
14864
14865 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14866
14867         * message.el (message-check-news-body-syntax):
14868         Avoid mm-string-as-multibyte.
14869         (message-hide-headers): Don't assume (point-min)==1.
14870
14871 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14872
14873         * message.el (message-remove-blank-cited-lines): Fix if remove is
14874         given.
14875         (message-bogus-address-regexp): New variable.
14876         (message-bogus-recipient-p): New function.
14877         (message-check-recipients): New command.
14878         (message-syntax-checks): Add `bogus-recipient'.
14879         (message-fix-before-sending): Add `bogus-recipient'.
14880
14881         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
14882         (gnus-treat-body-boundary): Don't test window-system.
14883
14884 2007-10-28  Leo Liu  <sdl.web@gmail.com>
14885
14886         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
14887
14888 2007-10-28  Miles Bader  <miles@gnu.org>
14889
14890         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
14891         at compile-time too.
14892
14893 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14894
14895         * gnus-msg.el (gnus-message-setup-hook):
14896         Add `message-remove-blank-cited-lines' to options.
14897
14898 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14899
14900         * message.el (message-remove-blank-cited-lines): New function.
14901         Suggested by Karl Plästerer.
14902
14903 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14904
14905         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
14906         mapc.
14907
14908         * imap.el (imap-open): Replace mapcar called for effect with mapc.
14909         (top-level): Use mapc to set functions to be traced for debugging.
14910
14911         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
14912         called for effect with while loop.
14913
14914         * message.el (message-talkative-question): Replace mapcar called for
14915         effect with mapc.
14916
14917         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
14918         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
14919         called for effect with dolist.
14920
14921         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
14922
14923         * nndiary.el: Use dolist instead of mapcar to add diary headers to
14924         gnus-extra-headers and nnmail-extra-headers.
14925
14926         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
14927         called for effect with dolist.
14928         (top-level): Use mapc to set functions to be traced for debugging.
14929
14930         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
14931         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
14932         dolist.
14933
14934         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
14935         Replace mapcar called for effect with mapc.
14936         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
14937         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
14938         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
14939         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
14940
14941         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
14942         remove-if that's a cl function.
14943
14944         * webmail.el (webmail-debug): Replace mapcar called for effect with
14945         dolist.
14946
14947         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
14948         with mapc.
14949
14950 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14951
14952         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
14953         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
14954         with while loop.
14955
14956         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
14957         functions from article-* functions.
14958         (gnus-multi-decode-header): Replace mapcar called for effect with
14959         dolist.
14960
14961         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
14962         (gnus-bookmark-show-details): Replace mapcar called for effect with
14963         while loop.
14964
14965         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
14966         called for effect with while loop.
14967
14968         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
14969         with dolist.
14970
14971         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14972         Replace mapcar called for effect with dolist.
14973
14974         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
14975
14976         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
14977         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
14978         Replace mapcar called for effect with dolist.
14979         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
14980         mapc.
14981
14982         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
14983         Replace mapcar called for effect with dolist.
14984         (gnus-topic-list): Replace mapcar called for effect with mapc.
14985
14986         * gnus.el: Use mapc instead of mapcar to add autoloads.
14987
14988 2007-10-23  Richard Stallman  <rms@gnu.org>
14989
14990         * gnus-group.el (gnus-group-highlight): Mark as risky.
14991
14992 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14993
14994         * gnus.el (gnus-server-to-method): Return method found first in
14995         gnus-newsrc-alist.
14996
14997         * gnus-art.el (gnus-article-highlight-signature)
14998         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
14999         button overlay without the front stickiness.
15000
15001 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
15002
15003         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
15004         overview buffer needed a catch to receive its throw.
15005         (gnus-agent-flush-cache): Declare as interactive to make this function
15006         easier to use.
15007
15008 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
15009
15010         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
15011         `next-line'.
15012
15013 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15014
15015         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
15016         exclude address matching message-dont-reply-to-names.
15017
15018 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15019
15020         * gnus-util.el (gnus-string<): New function.
15021
15022         * gnus-sum.el (gnus-article-sort-by-author)
15023         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
15024
15025 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15026
15027         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
15028         the frame-focus tag is set in gnus-buffer-configuration.
15029
15030 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15031
15032         * gnus-art.el (gnus-article-add-button): Make a button overlay without
15033         the front stickiness.
15034
15035 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15036
15037         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
15038         url pattern; remove duplicate one.
15039         (gnus-article-extend-url-button): New function.
15040         (gnus-article-add-buttons): Use it.
15041         (gnus-button-push): Use concatenated url that it makes.
15042
15043 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
15044
15045         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
15046
15047 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15048
15049         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
15050         Don't hardcode point-min==1.
15051
15052 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
15053
15054         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
15055         Fix comment about "iso8859-1".
15056
15057 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
15058
15059         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
15060         ones returned from the verify-function.
15061
15062         * mm-uu.el (mm-uu-pgp-signed-extract-1):
15063         Call mml2015-extract-cleartext-signature if extraction failed.
15064
15065 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
15066
15067         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
15068         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
15069         failed.
15070
15071 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
15072
15073         * Relicense "GPLv2 or later" files to "GPLv3 or later".
15074
15075 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
15076
15077         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
15078         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
15079         recommends to use EasyPG instead of PGG.
15080
15081         * pgg.el: Revert to revision 6.23.2.16.
15082
15083         * pgg-def.el: Revert to revision 6.6.2.14.
15084
15085         * pgg-gpg.el: Revert to revision 6.23.2.34.
15086
15087 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
15088
15089         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
15090         to mark a thread as expirable.  Add variable `hide' to handle hiding of
15091         thread for both the null and zero (kill/expire thread) universal prefix
15092         cases.
15093         (gnus-summary-expire-thread): Add new function to expire a thread,
15094         using gnus-summary-kill-thread.
15095         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
15096         shortcuts for gnus-summary-expire-thread.
15097         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
15098         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
15099
15100 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15101
15102         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
15103         extras value, so an extras entry can be deleted.
15104         (gnus-registry-delete-extra-entry): Use it.
15105         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
15106         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
15107         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
15108         storage through the gnus-registry, and provide an appropriate API for
15109         it.
15110
15111 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15112
15113         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
15114         Suggested by Leo <sdl.web@gmail.com>.
15115
15116         * gnus.el: Do.
15117
15118 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15119
15120         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
15121         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
15122
15123         * gnus-agent.el (gnus-agent-fetch-headers): Do.
15124
15125         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15126         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
15127
15128 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15129
15130         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
15131         newline.
15132         (nnmbox-request-accept-article): Don't change article in source buffer;
15133         narrow to header to use message-fetch-field rather than
15134         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
15135         (nnmbox-request-replace-article): Quote lines that'll be misidentified
15136         as delimiters; make sure article ends with newline.
15137         (nnmbox-delete-mail): Correct last position of article to be deleted;
15138         ignore X-Gnus-Newsgroup header in article body.
15139         (nnmbox-save-mail): Quote lines looking like delimiters at the right
15140         positions; make sure article ends with newline.
15141
15142         * message.el (message-display-abbrev): Don't infloop when a user
15143         inserts SPC in the beginning of header.
15144
15145         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
15146         coding-system-for-read and coding-system-for-write for XEmacs having no
15147         file-coding feature.
15148
15149         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
15150
15151 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
15152
15153         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
15154         list of groups not followed by default.  Fix type to be regexp.
15155         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
15156
15157 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
15158
15159         * hmac-def.el (define-hmac-function): Switch from old-style to
15160         new-style backquotes.
15161
15162         * md4.el (md4-make-step): Likewise.
15163
15164 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15165
15166         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
15167         raw-text coding system when saving .newsrc file, which may contain
15168         non-ASCII group names.
15169
15170 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15171
15172         * gnus-cus.el (gnus-score-extra): New widget.
15173         (gnus-score-extra-convert): New function.
15174         (gnus-score-customize): Use it for Extra.
15175
15176 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
15177
15178         * mml2015.el (mml2015-extract-cleartext-signature): New function.
15179         (mml2015-mailcrypt-clear-verify): Use it.
15180         (mml2015-gpg-clear-verify): Use it.
15181         (mml2015-pgg-clear-verify): Use it.
15182         (mml2015-epg-clear-verify): Replace the current part with the output
15183         from GnuPG; don't extract the plaintext by itself.
15184
15185         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
15186         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
15187         mml2015-clear-verify-function; don't touch the armor headers or
15188         dash-escaped text here.
15189
15190 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15191
15192         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
15193         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
15194         parts, or application/octet-stream as a last resort.
15195         (gnus-mime-view-part-as-type): Don't toggle display.
15196         (gnus-mime-view-part-as-charset): Don't turn off display before
15197         querying charset.
15198
15199         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
15200         stuff to undisplayer function in Emacs.
15201         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
15202
15203         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
15204         text/calendar parts.
15205
15206 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15207
15208         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
15209         decoding text/calendar parts.
15210
15211         * message.el (message-forward-make-body-mime): Always mark body as
15212         having no illegible text; remove signed-or-encrypted argument.
15213         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
15214
15215         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
15216         (mml-generate-mime-1): Don't encode body if it is specified to be in
15217         raw form; don't make buffer be unibyte when inserting multibyte string.
15218
15219 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15220
15221         * sha1.el: Fix up comment style.
15222         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
15223         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
15224
15225         * hex-util.el: Fix up comment style.
15226         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
15227
15228         * gnus-salt.el: Use with-current-buffer.
15229         (gnus-pick-setup-message): Fix long-standing typo.
15230
15231 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15232
15233         * imap.el (imap-logout-timeout): New variable.
15234         (imap-logout, imap-logout-wait): New functions.
15235         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
15236
15237         * nnimap.el (nnimap-logout-timeout): New server variable.
15238         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
15239         nnimap-logout-timeout.
15240
15241         * gnus-art.el (gnus-article-summary-command-nosave)
15242         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
15243
15244 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15245
15246         * gnus.el (gnus-maximum-newsgroup): New variable.
15247
15248         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
15249         according to gnus-maximum-newsgroup.
15250
15251         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15252         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
15253         Limit the range of articles according to gnus-maximum-newsgroup.
15254
15255 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
15256
15257         * gnus-art.el (gnus-sticky-article): Fix problems described in
15258         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
15259         Don't perform gnus-configure-windows here; reuse existing sticky
15260         article buffer.
15261
15262         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
15263         it doesn't exist in gnus-article-mode.
15264
15265 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15266
15267         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
15268         (gnus-agent-decoded-group-name): New function.
15269         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
15270         (gnus-agent-expire-group-1): Use it; decode group name in messages.
15271
15272 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
15273
15274         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
15275         Add binding for gnus-sticky-article.
15276         (gnus-summary-exit): Don't kill sticky article buffers.
15277
15278         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
15279         article buffer.
15280         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
15281         (gnus-kill-sticky-article-buffers): New commands.
15282
15283 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15284
15285         * nntp.el (nntp-xref-number-is-evil): New server variable.
15286         (nntp-find-group-and-number): If it is non-nil, don't trust article
15287         numbers in the Xref header.
15288
15289 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15290
15291         * gnus-agent.el (gnus-agent-read-group): New function.
15292         (gnus-agent-flush-group, gnus-agent-expire-group)
15293         (gnus-agent-regenerate-group): Use it.
15294         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
15295         nnmail-pathname-coding-system.
15296
15297 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15298
15299         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
15300
15301         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
15302         that are unread as unread, and also as selected so that information of
15303         marks having been changed by a user may be updated when exiting group.
15304
15305 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
15306
15307         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
15308
15309 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15310
15311         * gnus-art.el (gnus-mime-display-single): Pass part number that is
15312         calculated ignoring signature parts to gnus-treat-article.
15313
15314 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15315
15316         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
15317         a point here in order to keep the window start.
15318         (gnus-insert-mime-security-button): Make a button overlay without the
15319         front stickiness.
15320         (gnus-mime-display-security): Goto the end of a button.
15321
15322         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
15323
15324 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15325
15326         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
15327         group-name-at-point.
15328         (gnus-group-completing-read): New function that offers decoded
15329         non-ASCII group names for completion.
15330         (gnus-fetch-group, gnus-group-read-ephemeral-group)
15331         (gnus-group-jump-to-group, gnus-group-make-group-simple)
15332         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
15333         (gnus-group-fetch-control): Use it.
15334         (gnus-fetch-group): Use group-name-at-point for the initial value
15335         rather than the default value; use gnus-alive-p.
15336
15337         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
15338         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
15339         (gnus-summary-post-news): Use gnus-group-completing-read.
15340
15341         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
15342         (gnus-read-move-group-name): Decode group name for completion.
15343
15344 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
15345
15346         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
15347         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
15348         Yamaoka slightly modified the code).
15349
15350 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15351
15352         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
15353         (nnmail-split-incoming): Bind it.
15354
15355         * nnml.el (nnml-group-name-charset): New function.
15356         (nnml-decoded-group-name): Use it; don't decode group name if
15357         nnmail-group-names-not-encoded-p is non-nil.
15358         (nnml-encoded-group-name): New function.
15359         (nnml-group-pathname): Inline nnml-decoded-group-name.
15360         (nnml-request-expire-articles): Decode group name in message.
15361         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
15362         nnmail-pathname-coding-system.
15363         (nnml-save-mail, nnml-active-number): Work with decoded group names and
15364         not decoded ones according to nnmail-group-names-not-encoded-p.
15365         (nnml-generate-active-info): Use nnml-encoded-group-name.
15366
15367 2007-08-08  Glenn Morris  <rgm@gnu.org>
15368
15369         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
15370         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
15371         doc-strings and comments.
15372
15373 2007-07-25  Glenn Morris  <rgm@gnu.org>
15374
15375         * Relicense all FSF files to GPLv3 or later.
15376
15377 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15378
15379         * gnus-sum.el (gnus-summary-move-article):
15380         Make gnus-summary-respool-article work.
15381
15382 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
15383
15384         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
15385         string.
15386
15387 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
15388
15389         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
15390         that should be ignored when comparing distant RSS articles with local
15391         ones.
15392         (nnrss-make-hash-index): New function.  Create a hash index according
15393         to the ignored fields.
15394         (nnrss-check-group): Use it.
15395
15396 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15397
15398         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
15399
15400         * gnus-art.el (article-decode-group-name): Decode Xref header too.
15401
15402         * gnus-group.el (gnus-group-make-group): Encode group name here unless
15403         the new optional argument ENCODED is non-nil.
15404         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
15405         coding system for encoding group name.
15406         (gnus-group-make-rss-group): Pass un-encoded group name to
15407         gnus-group-make-group.
15408         (gnus-group-set-info): Tell gnus-group-make-group that group name is
15409         encoded.
15410
15411         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
15412         Encode group name to which articles are moved or copied.
15413         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
15414         coding system for encoding Newsgroup, Followup-To and Xref headers.
15415
15416         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
15417         marks; use nnheader-file-coding-system to write a file.
15418         (nnagent-retrieve-headers): Bind file-name-coding-system to
15419         nnmail-pathname-coding-system.
15420
15421         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
15422
15423         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
15424         (nnml-request-article, nnml-request-create-group)
15425         (nnml-request-rename-group, nnml-find-id)
15426         (nnml-possibly-change-directory, nnml-possibly-create-directory)
15427         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
15428         (nnml-save-marks): Use nnml-group-pathname instead of
15429         nnmail-group-pathname.
15430
15431         (nnml-request-create-group, nnml-request-expire-articles)
15432         (nnml-request-move-article, nnml-request-delete-group)
15433         (nnml-deletable-article-p, nnml-possibly-create-directory)
15434         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
15435         (nnml-open-marks): Bind file-name-coding-system to
15436         nnmail-pathname-coding-system.
15437
15438         (nnml-request-article): Pass server argument to nnml-find-group-number.
15439         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
15440         Pass server argument to nnml-possibly-create-directory.
15441         (nnml-request-accept-article): Pass server argument to
15442         nnml-active-number and nnml-save-mail.
15443         (nnml-find-group-number): Pass server argument to nnml-find-id.
15444         (nnml-request-update-info): Pass server argument to
15445         nnml-marks-changed-p.
15446
15447         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
15448         (nnml-save-mail, nnml-active-number): Add server argument.
15449
15450         (nnml-request-delete-group): Warn if group is missing.
15451         (nnml-get-nov-buffer): Decode group name.
15452         (nnml-generate-active-info): Encode group name.
15453         (nnml-open-marks): Decode group name in messages.
15454
15455 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15456
15457         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
15458         if it is not specified.
15459         (gnus-article-pipe-part, gnus-article-save-part)
15460         (gnus-article-interactively-view-part, gnus-article-copy-part)
15461         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
15462         (gnus-article-inline-part, gnus-article-save-part-and-strip)
15463         (gnus-article-replace-part, gnus-article-delete-part)
15464         (gnus-article-view-part-as-type): Pass raw prefix argument to
15465         gnus-article-part-wrapper.
15466
15467 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15468
15469         * gnus-agent.el (gnus-agent-save-active):
15470         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
15471
15472         * gnus-cache.el (gnus-cache-save-buffers)
15473         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
15474         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
15475         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
15476         (gnus-cache-braid-nov, gnus-cache-braid-heads)
15477         (gnus-cache-generate-active, gnus-cache-rename-group)
15478         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
15479         (gnus-cache-update-overview-total-fetched-for):
15480         Bind file-name-coding-system to nnmail-pathname-coding-system.
15481         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
15482         New variables.
15483         (gnus-cache-decoded-group-name): New function.
15484         (gnus-cache-file-name): Use it.
15485         (gnus-cache-generate-active): Use non-decoded group name for active.
15486
15487         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
15488         right place.
15489         (gnus-write-active-file): Don't break non-ASCII group names.
15490
15491         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
15492         nnmail-pathname-coding-system.
15493
15494         * lpath.el: Bind default-file-name-coding-system,
15495         file-name-coding-system and language-info-alist for XEmacs.
15496
15497         * gnus-uu.el (gnus-uu-decode-save): Typo.
15498
15499 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15500
15501         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
15502
15503 2007-07-14  David Kastrup  <dak@gnu.org>
15504
15505         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
15506         finishing actions if we did not edit the article.
15507
15508 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15509
15510         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
15511         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
15512         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
15513         (gnus-agent-flush-group, gnus-agent-flush-cache)
15514         (gnus-agent-fetch-headers, gnus-agent-load-alist)
15515         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
15516         (gnus-agent-retrieve-headers, gnus-agent-request-article)
15517         (gnus-agent-regenerate-group)
15518         (gnus-agent-update-files-total-fetched-for)
15519         (gnus-agent-update-view-total-fetched-for):
15520         Bind file-name-coding-system to nnmail-pathname-coding-system.
15521         (gnus-agent-group-pathname): Don't encode file names by
15522         nnmail-pathname-coding-system.
15523         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
15524         coding-system-for-write instead of buffer-file-coding-system to
15525         gnus-agent-file-coding-system.
15526
15527         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
15528         Decode group name.
15529
15530         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
15531
15532         * gnus-start.el (gnus-update-active-hashtb-from-killed)
15533         (gnus-read-newsrc-el-file): Make group names unibyte.
15534
15535         * nnmail.el (nnmail-group-pathname): Don't encode file names by
15536         nnmail-pathname-coding-system.
15537
15538         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
15539         (nnrss-request-delete-group): Bind file-name-coding-system to
15540         nnmail-pathname-coding-system.
15541         (nnrss-read-server-data, nnrss-read-group-data):
15542         Bind file-name-coding-system correctly.
15543         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
15544
15545         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
15546         (nntp-server-to-method-cache): New variable.
15547         (nntp-group-pathname): New function that decodes non-ASCII group names.
15548         (nntp-possibly-create-directory, nntp-marks-changed-p)
15549         (nntp-save-marks, nntp-open-marks): Use it.
15550         (nntp-possibly-create-directory, nntp-open-marks):
15551         Bind file-name-coding-system to nnmail-pathname-coding-system.
15552         (nntp-open-marks): Decode group names when bootstrapping marks.
15553
15554         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
15555         Newsgroups and Followup-To headers.
15556
15557 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15558
15559         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15560         (gnus-server-closed-face, gnus-server-denied-face)
15561         (gnus-server-offline-face): Remove variable.
15562         (gnus-server-font-lock-keywords): Use faces that are not aliases.
15563
15564         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
15565         of modifying message-stack directly for XEmacs.
15566
15567         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
15568         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
15569         if the coding-system argument is nil for XEmacs.
15570
15571         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
15572         mm-charset-override-alist.
15573
15574         * rfc2047.el: Don't require base64; require rfc2045 for the function
15575         rfc2045-encode-string.
15576         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
15577         to quote the parameter value.
15578
15579 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15580
15581         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
15582         form in gnus-group-name-charset-method-alist.
15583
15584         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
15585         overrides the default layout edit-form.
15586
15587         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
15588
15589         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
15590
15591 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15592
15593         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
15594         as unfetched articles.
15595
15596 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
15597
15598         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
15599
15600 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15601
15602         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
15603         original back end that keeps marks in the local system.
15604
15605 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15606
15607         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
15608         arg of pop-to-buffer for XEmacs.
15609         (gnus-article-read-summary-keys): Ditto; don't restore window
15610         configuration if summary command ends up with neither article buffer
15611         nor summary buffer; describe bindings if summary keys end with C-h.
15612
15613 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15614
15615         * message.el (message-fix-before-sending): Skip raw message part to be
15616         forwarded while checking illegible text.
15617         (message-forward-make-body-mime, message-forward-make-body):
15618         Mark signed or encrypted raw message as having no illegible text.
15619
15620 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15621
15622         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
15623         (gnus-message-with-timestamp-1): New macro.
15624         (gnus-message-with-timestamp): New function.
15625         (gnus-message): Use them.
15626
15627         * nnheader.el (nnheader-message): Use them.
15628
15629 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
15630
15631         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
15632         .newsrc.eld file.
15633
15634 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15635
15636         * gnus-agent.el (gnus-agent-fetch-headers)
15637         (gnus-agent-retrieve-headers):
15638         Bind gnus-decode-encoded-address-function to identity.
15639
15640         * nntp.el (nntp-send-xover-command): Recognize an xover command is
15641         available also when the server returns simply a dot.
15642
15643         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
15644
15645 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15646
15647         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
15648
15649 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15650
15651         * gnus-ems.el (gnus-x-splash): Make it work.
15652
15653         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
15654         from being used.
15655
15656         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
15657
15658 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15659
15660         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
15661         4th and the 5th arguments.
15662
15663         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
15664         the front stickiness.
15665         (gnus-article-summary-command-nosave): Correct the order of the
15666         arguments passed to pop-to-buffer.
15667         (gnus-article-read-summary-keys): Ditto; make it work properly when the
15668         summary command ends up with the article buffer.
15669
15670         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
15671         the same faces.
15672
15673 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
15674
15675         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
15676
15677 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
15678
15679         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
15680         * gnus-sum.el (gnus-summary-highlight):
15681         * pgg.el (pgg-sign-region, pgg-sign):
15682         * mail-source.el (mail-source-delete-old-incoming-confirm):
15683         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
15684
15685 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15686
15687         * gnus-art.el (gnus-mime-view-part-externally)
15688         (gnus-mime-view-part-internally): Fix predicate function passed to
15689         completing-read.
15690
15691         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
15692
15693         * gnus.el (gnus-update-message-archive-method): Add :version.
15694
15695 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15696
15697         * gnus.el (gnus-update-message-archive-method): New variable.
15698
15699         * gnus-start.el (gnus-setup-news): Update saved "archive" method
15700         according to gnus-message-archive-method if
15701         gnus-update-message-archive-method is non-nil.
15702
15703 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15704
15705         * gnus-sum.el (gnus-summary-limit-to-address): New function.
15706         Suggested by Loic Dachary <loic@dachary.org>.
15707         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15708
15709 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15710
15711         * message.el (message-pop-to-buffer): Add switch-function argument.
15712         (message-mail): Pass switch-function argument to it.
15713
15714 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
15715
15716         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
15717         Improve doc string.
15718
15719 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15720
15721         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
15722         (gnus-header-content):
15723         * gnus-cite.el (gnus-cite-10):
15724         * gnus-srvr.el (gnus-server-closed):
15725         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
15726         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
15727         (gnus-group-mail-3-empty, gnus-group-mail-low)
15728         (gnus-group-mail-low-empty, gnus-splash):
15729         * message.el (message-header-to, message-header-cc)
15730         (message-header-subject, message-header-other, message-header-name)
15731         (message-header-xheader, message-separator, message-cited-text)
15732         (message-mml): Lighten colors of faces used for dark background.
15733
15734 2007-05-24  Simon Josefsson  <simon@josefsson.org>
15735
15736         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
15737         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
15738
15739 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15740
15741         * message.el (message-narrow-to-headers-or-head):
15742         Ignore mail-header-separator in the body.
15743
15744 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15745
15746         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
15747         same as window size.
15748
15749 2007-05-22  Kevin Ryde  <user42@zip.com.au>
15750
15751         * message.el (message-font-lock-keywords): Use message-header-xheader
15752         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
15753         ahead of the anything pattern, to get it recognized.
15754
15755 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15756
15757         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
15758         spam.el loads uses it in the compiled defadvice form.
15759
15760 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
15761
15762         * gnus-sum.el (gnus-articles-to-read)
15763         (gnus-summary-insert-old-articles): Don't truncate group name for
15764         `read-string'.
15765
15766         * gnus-util.el (gnus-limit-string): Delete this function.
15767
15768         * gnus-sum.el (gnus-simplify-subject-fully):
15769         Use `truncate-string-to-width' instead.
15770
15771 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
15772
15773         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
15774         Tell if, on summary exit, the next group has to be selected.
15775         (gnus-summary-exit): Use it.
15776
15777 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
15778
15779         * gnus-art.el (gnus-article-mode): Fix comment about displaying
15780         non-break space.
15781
15782 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15783
15784         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
15785         Check if group is not a directory.
15786         (nnfolder-request-expire-articles): Don't delete articles if the target
15787         group is not available.
15788
15789         * nnml.el (nnml-request-create-group): Properly check if group is not a
15790         file.
15791         (nnml-request-expire-articles): Don't delete articles if the target
15792         group is not available.
15793
15794         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
15795         Don't quote characters that are within parentheses.
15796
15797 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15798
15799         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
15800         (gnus-handle-ephemeral-exit): Select article according to it.
15801
15802 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
15803
15804         * message.el (message-insert-formated-citation-line): Remove newline.
15805         (message-citation-line-format): Add final \n here so that the user can
15806         avoid a blank line.
15807
15808 2007-05-03  Dan Christensen  <jdc@uwo.ca>
15809
15810         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
15811         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
15812         Update lanl/arXiv support.
15813
15814 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
15815
15816         * gnus.el: Bump version number.
15817
15818 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15819
15820         * gnus.el (gnus-version-number): Bump version.
15821
15822 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15823
15824         * gnus.el: No Gnus v0.6 is released.
15825
15826 2007-04-27  Didier Verna  <didier@xemacs.org>
15827
15828         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
15829         * gmm-utils.el (gmm-regexp-concat): ... here.
15830         * message.el: Don't require 'gnus-util.
15831         (message-dont-reply-to-names): Handle name change above.
15832         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
15833
15834 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15835
15836         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
15837         since the initial value varies according to the system.
15838
15839 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15840
15841         * mm-util.el (mm-charset-synonym-alist): Defcustom.
15842
15843 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
15844
15845         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
15846
15847 2007-04-24  Didier Verna  <didier@xemacs.org>
15848
15849         Improve the type of gnus-ignored-from-addresses.
15850         * gnus-util.el (gnus-orify-regexp): New function.
15851         * message.el (gnus-util): Require it.
15852         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
15853         * gnus-sum.el (gnus-ignored-from-addresses): New function.
15854         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
15855
15856 2007-04-24  Didier Verna  <didier@xemacs.org>
15857
15858         * gnus-sum.el:
15859         * gnus-utils.el: Fix some trailing whitespaces.
15860
15861 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15862
15863         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
15864         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
15865         article's Message-ID; refer parent article in summary buffer.
15866
15867         * message.el (message-bounce): Call mime-to-mml.
15868
15869         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
15870         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
15871         optimize and/or forms properly.
15872
15873 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
15874
15875         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
15876         URL.
15877
15878 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15879
15880         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
15881
15882 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15883
15884         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
15885         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
15886         displayed of multipart/alternative part if it is invoked from summary
15887         buffer.
15888
15889         * mm-view.el (mm-inline-text-html-render-with-w3m)
15890         (mm-inline-text-html-render-with-w3m-standalone)
15891         (mm-inline-render-with-function): Use mail-parse-charset by default.
15892
15893 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
15894
15895         * parse-time.el (parse-time-string-chars): Check if CHAR
15896         is less than the length of parse-time-syntax.
15897
15898 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15899
15900         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
15901         from gnus-newsgroup-processable.
15902
15903 2007-04-16  Didier Verna  <didier@xemacs.org>
15904
15905         * gnus-msg.el (gnus-configure-posting-styles):
15906         Handle message-signature-directory properly with :file syntax.
15907         Reported by "Leo".
15908
15909 2007-04-11  Didier Verna  <didier@xemacs.org>
15910
15911         New user option: message-signature-directory.
15912         * gnus-msg.el (gnus-configure-posting-styles): Support it.
15913         * message.el (message-insert-signature): Ditto.
15914         * message.el (message-signature-file): Doc update.
15915         * message.el (message-signature-directory): New.
15916
15917 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15918
15919         * gnus-msg.el (gnus-inews-yank-articles):
15920         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
15921
15922 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15923
15924         * message.el (message-yank-original): Make sure cited text ends with
15925         newline; don't exchange point and mark.
15926
15927 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
15928
15929         * tls.el (open-tls-stream): Properly handle case where there
15930         is no associated buffer.
15931
15932 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
15933
15934         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
15935         message-yank-original, make sure (< mark TEXT point).
15936
15937 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15938
15939         * message.el (message-fill-column): New variable.
15940         (message-mode): Use it.  Add comment on a possible new hook.
15941
15942         * nnmail.el (nnmail-spool-file): Mark as obsolete.
15943         (nnmail-get-new-mail): Reformat.
15944
15945         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
15946
15947         * gmm-utils.el: Fix Commentary.
15948         (gmm-tool-bar-from-list): Fix typo in doc string.
15949
15950 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
15951
15952         * message.el (message-yank-original): Don't switch point and mark
15953         unnecessarily to put point and mark as documented.
15954
15955 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15956
15957         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
15958         from the message heads.
15959
15960 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
15961
15962         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
15963         article buffer does not have a window.  This may not be the best
15964         solution but is certainly better than setting the start of the null,
15965         that is the current, window.
15966
15967 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
15968
15969         * gnus-draft.el (gnus-draft-setup-hook): New hook.
15970         (gnus-draft-setup): Run it.
15971
15972         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
15973         gnus-score-fast-scoring.  Allow regexp.
15974         (gnus-score-headers): Use it.
15975
15976         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
15977         XEmacs.
15978
15979         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
15980         string.
15981         (gnus-button-alist): Also catch `<f1> k ...'.
15982         (gnus-treat-display-x-face): Fix doc string.
15983
15984 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15985
15986         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
15987         evaluation of gnus-extended-version to ensure correct generation of the
15988         User-Agent header when message-generate-headers-first is used.
15989
15990 2007-03-24  Simon Josefsson  <simon@josefsson.org>
15991
15992         * hashcash.el (hashcash-generate-payment-async): Don't crash if
15993         hashcash-path is nil.  Don't call callback with incorrect number of
15994         parameters if val is 0.
15995
15996 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15997
15998         * message.el (message-required-news-headers):
15999         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
16000
16001 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
16002
16003         * tls.el (open-tls-stream): In handshake-waiting loop,
16004         don't wait more if there is output available to process.
16005
16006 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
16007
16008         * tls.el (tls-program): Doc fix.
16009
16010 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16011
16012         * message.el (message-generate-new-buffers): Change the meaning of the
16013         nil value; add `standard' to the choices; treat t as `unique'; improve
16014         doc string.
16015         (gnus-select-frame-set-input-focus): Autoload.
16016         (message-buffer-name): Search for the existing message buffer if
16017         message-generate-new-buffers is nil or `standard'; treat the value t of
16018         message-generate-new-buffers as `unique'.
16019         (message-pop-to-buffer): Raise the frame already displaying the message
16020         buffer; clear the echo area after querying.
16021         (message-setup): Pass the `continue' argument to compose-mail.
16022         (message-mail): Prefer `switch-function' if it is given; search for the
16023         existing message buffer if the `continue' argument is non-nil; pass
16024         continue and switch-function arguments to compose-mail by way of
16025         message-setup.
16026         (message-mail-other-window): Adjust argument of message-setup.
16027         (message-mail-other-frame): Ditto.
16028
16029 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16030
16031         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
16032         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
16033         to turn font-lock on when turning gnus-message-citation-mode on.
16034
16035 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
16036
16037         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
16038         (mml-smime-function-alist): New variable; add epg as the backend.
16039         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
16040         mml-smime- functions instead.
16041         * mm-view.el: Require smime.
16042
16043 2007-03-05  Didier Verna  <didier@xemacs.org>
16044
16045         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
16046         instead of just inheritance for posting styles.
16047         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
16048
16049 2007-02-24  Chris Moore  <dooglus@gmail.com>
16050
16051         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
16052         * pgg-pgp.el (pgg-pgp-encrypt-region):
16053         * pgg-gpg.el (pgg-gpg-encrypt-region):
16054         Check pgg-encrypt-for-me if no other recipients.
16055
16056 2007-02-24  John Paul Wallington  <jpw@pobox.com>
16057
16058         * tls.el (tls-certtool-program): Fix custom type.
16059
16060 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16061
16062         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
16063         and point-at-eol instead of line-(beginning|end)-position.
16064
16065         * assistant.el (assistant-parse-buffer): Ditto.
16066
16067         * netrc.el (netrc-parse-services): Ditto.
16068
16069 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
16070
16071         * mml2015.el (mml2015-epg-find-usable-key): New function.
16072         (mml2015-epg-sign): Use it.
16073         (mml2015-epg-encrypt): Use it.
16074
16075 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16076
16077         * message.el (message-make-in-reply-to): Quote name containing
16078         non-ASCII characters.  It will make the RFC2047 encoder cause an error
16079         if there are special characters.  Reported by NAKAJI Hiroyuki
16080         <nakaji@jp.freebsd.org>.
16081
16082 2007-02-27  Didier Verna  <didier@xemacs.org>
16083
16084         Include the group parameters as well as the topic ones in the
16085         inheritance filter process.
16086         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
16087         argument GROUP-PARAMS-LIST.
16088         * gnus-topic.el (gnus-group-topic-parameters): Use it.
16089
16090 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16091
16092         * nntp.el (nntp-never-echoes-commands)
16093         (nntp-open-connection-functions-never-echo-commands): New variables.
16094         (nntp-send-command): Use them.
16095
16096 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
16097
16098         * mml2015.el (mml2015-epg-verify): Simplify.
16099
16100 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16101
16102         * mml.el (mml-content-disposition-alist): New user option.
16103         (mml-content-disposition): New function.
16104         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
16105         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
16106
16107 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
16108
16109         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
16110         verification.
16111
16112 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16113
16114         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
16115         articles posted in the last 24 hours.
16116
16117 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
16118
16119         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
16120
16121 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
16122
16123         * nntp.el (nntp-send-command): Don't wait for echoes when
16124         nntp-open-ssl-stream is used.
16125
16126 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16127
16128         * gnus-cite.el (gnus-test-font-lock-add-keywords)
16129         (gnus-message-add-citation-keywords)
16130         (gnus-message-remove-citation-keywords): Remove.
16131         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
16132         directly, make the variables in font-lock-defaults buffer-local, add
16133         gnus-message-citation-keywords to them and then update the value of
16134         font-lock-keywords.
16135
16136 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16137
16138         * message.el (message-cite-original-1): Don't call
16139         gnus-article-highlight-citation.
16140
16141         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
16142         citations; fix line count.
16143
16144 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16145
16146         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
16147         (gnus-message-add-citation-keywords)
16148         (gnus-message-remove-citation-keywords): Use it; fix the emulating
16149         versions of font-lock-add-keywords and font-lock-remove-keywords to
16150         work with XEmacs correctly.
16151
16152 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16153
16154         * gnus-cite.el (gnus-cite-face-list): Set the values of
16155         gnus-message-max-citation-depth and gnus-message-citation-keywords.
16156         (gnus-message-max-citation-depth): Use defvar rather than defconst.
16157         (gnus-message-cite-prefix-regexp): New variable.
16158         (gnus-message-search-citation-line): Use it; protect against long
16159         citation prefix; fill match data with nil rather than 0 for XEmacs; set
16160         the 0th match data for Emacs.
16161         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
16162         (gnus-message-add-citation-keywords): Append keywords rather than
16163         prepending; emulate font-lock-add-keywords if it is not available.
16164         (gnus-message-remove-citation-keywords):
16165         Emulate font-lock-remove-keywords if it is not available.
16166
16167         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
16168
16169         * message.el (message-cite-prefix-regexp): Set the value of
16170         gnus-message-cite-prefix-regexp.
16171
16172 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16173
16174         * nnweb.el (nnweb-google-parse-1): Update parser.
16175
16176 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
16177
16178         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
16179
16180 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16181
16182         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16183         regexp.
16184
16185 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16186
16187         * uudecode.el (uudecode-string-to-multibyte): New function emulating
16188         string-to-multibyte.
16189         (uudecode-decode-region-internal): Use it.
16190
16191         * lpath.el: Fbind string-as-multibyte for XEmacs.
16192
16193 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
16194
16195         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
16196         Fix custom choice.
16197
16198         * gnus-art.el (gnus-signature-limit): Fix custom choice.
16199
16200 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
16201
16202         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
16203
16204         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
16205         `write-region' to respect `mm-inhibit-file-name-handlers'.
16206
16207 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
16208
16209         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
16210         Use gnus-home-directory instead of "~/" or "$HOME".
16211
16212 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
16213
16214         * encrypt.el (encrypt-insert-file-contents): Add better prompt
16215         to mention filename.
16216         Add comments at beginning regarding usage.
16217         (encrypt-write-file-contents): Change interactive so a string is
16218         acceptable.  If the file has no associated model, show an error instead
16219         of a nonsense prompt.
16220
16221 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16222
16223         * spam.el (spam-bsfilter-ham-switch): Fix typo.
16224         Thanks to Yoshihiko Yamada for kind notification of this typo.
16225
16226 2007-01-12  Kenichi Handa  <handa@m17n.org>
16227
16228         * uudecode.el (uudecode-decode-region-internal): Make it work in a
16229         multibyte buffer.
16230
16231 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16232
16233         * gnus-score.el (gnus-score-fast-scoring): New variable.
16234         (gnus-score-headers): Use it.
16235
16236         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
16237
16238         * message.el (message-cite-original-1):
16239         Call gnus-article-highlight-citation if requested.
16240         (message-make-from): Allow name and address as optional arguments.
16241
16242         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
16243
16244         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
16245         bugs to doc string.
16246         (gnus-button-alist): Add mid\\|message-id.
16247         (gnus-button-fetch-group): Extend for use in
16248         `browse-url-browser-function'.
16249         (gnus-button-url-regexp): Try to catch paired parentheses like in
16250         Wikipedia URLs.
16251
16252         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
16253         Suggested by Simon Krahnke <overlord@gmx.li>.
16254
16255 2007-01-13  Romain Francoise  <romain@orebokech.com>
16256
16257         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
16258         Update copyright.
16259
16260 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
16261
16262         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
16263
16264 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16265
16266         * gnus-registry.el (gnus-registry-unfollowed-groups)
16267         (gnus-registry-split-fancy-with-parent): Fix documentation.
16268
16269 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16270
16271         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
16272         from nnweb groups.
16273
16274 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16275
16276         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
16277         Xref urls.  Erase buffer before requesting head.
16278
16279         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16280
16281 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16282
16283         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
16284         customizable.
16285
16286 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
16287
16288         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
16289         no signing key is found.
16290         (mml2015-epg-encrypt): Ask user whether to skip or abort if
16291         no encrypting and/or signing key is found.
16292
16293 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16294
16295         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
16296
16297 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16298
16299         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
16300         headers read from disk with the ones newly found in the current search.
16301         This should no longer cause problems, because the article numbers in
16302         Gmane's `nov.php' output are ignored since the previous change.
16303
16304 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16305
16306         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
16307
16308 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16309
16310         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
16311         replace-regexp-in-string; bind url-version; fbind display-images-p and
16312         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
16313         find-face and set-itimer-function for Emacs; bind itimer-list for
16314         Emacs.
16315
16316         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16317
16318 2007-01-01  Romain Francoise  <romain@orebokech.com>
16319
16320         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
16321
16322 2006-12-31  Steve Youngs  <steve@sxemacs.org>
16323
16324         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
16325         `define-minor-mode' macro definition expanded properly.
16326         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
16327         exclude it there.
16328
16329         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
16330         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
16331         `fboundp' test.
16332         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
16333         This is OK to autoload in (S)XEmacs now.
16334
16335 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16336
16337         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
16338         keystroke.
16339         (gnus-summary-limit-to-singletons): Fix typo.
16340
16341         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
16342         else fails.
16343
16344 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16345
16346         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
16347         docstring.
16348
16349         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
16350         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
16351         (gnus-summary-insert-dormant-articles): Fix typo in message.
16352
16353 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
16354
16355         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
16356         nil for XEmacs.
16357         (gnus-message-citation-mode): Don't autoload in XEmacs.
16358
16359         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
16360
16361 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
16362
16363         * nnimap.el (nnimap-expunge-search-string):
16364         Mention nnimap-search-uids-not-since-is-evil in docstring.
16365
16366 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16367
16368         * spam.el: Revert to make-obsolete-variable because
16369         define-obsolete-variable-alias is not supported in Emacs 21.
16370
16371         * spam.el (spam-ifile-path, spam-ifile-database-path)
16372         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
16373         make-obsolete-variable.
16374         (spam-bsfilter-path, spam-bsfilter-program)
16375         (spam-spamassassin-path, spam-spamassassin-program)
16376         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
16377         Don't use "path" inappropriately.
16378         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
16379         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
16380         variable names.
16381
16382 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
16383
16384         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
16385         summary buffer.
16386
16387         * password.el (password-cache-remove): Use clear-string to burn
16388         password, if available.
16389
16390 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16391
16392         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
16393
16394         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
16395
16396         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
16397         (gnus-message-highlight-citation): Move defcustom here from
16398         gnus-cite.el.
16399         (gnus-message-citation-mode): Autoload.
16400
16401         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
16402         checks to make it compile with XEmacs.
16403         (gnus-message-citation-mode): New minor mode.
16404         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
16405         (gnus-message-highlight-citation): New variables.
16406         (gnus-message-search-citation-line)
16407         (gnus-message-add-citation-keywords)
16408         (gnus-message-remove-citation-keywords)
16409         (turn-on-gnus-message-citation-mode)
16410         (turn-off-gnus-message-citation-mode): New functions.
16411
16412 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
16413
16414         * gnus-cite.el: Enable highlighting of different citation levels in
16415         message-mode.
16416
16417 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16418
16419         * message.el (message-make-fqdn): Fix comment.
16420         (message-bogus-system-names): Add ".local".
16421
16422         * spam.el (spam-ifile-path, spam-ifile-program)
16423         (spam-ifile-database-path, spam-ifile-database)
16424         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
16425         Don't use "path" inappropriately.
16426         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
16427         strings.
16428         (spam-check-ifile, spam-ifile-register-with-ifile)
16429         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
16430         Use new variable names.
16431
16432         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
16433         (gnus-treat-display-smileys): Simplify using
16434         gnus-image-type-available-p.
16435
16436         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
16437         available.
16438
16439         * gnus-xmas.el (gnus-xmas-image-type-available-p):
16440         Use `display-images-p' if available.
16441
16442 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16443
16444         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
16445         one after turning on the buffer's multibyteness instead of decoding
16446         them directly in the unibyte buffer that causes unexpected conversion
16447         in Emacs 23 (unicode).
16448
16449 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16450
16451         * message.el (message-generate-hashcash): Fix custom type.
16452
16453 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16454
16455         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
16456
16457 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16458
16459         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
16460         disconnect icons.  Add help text.
16461
16462 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
16463
16464         * spam.el (spam-extra-header-to-number): CRM114 spam score is
16465         negated to be consistent with the others we handle.
16466
16467 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16468
16469         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
16470         version of gnus-summary-buffer to something, so that we can use two
16471         article buffers at the same time.
16472
16473 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
16474
16475         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
16476         trigger all the extra headers.
16477         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
16478         sorting.
16479
16480 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16481
16482         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
16483         solid groups.
16484
16485 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
16486
16487         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
16488
16489 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
16490
16491         * legacy-gnus-agent.el: Add Copyright notice.
16492
16493 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
16494
16495         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
16496
16497 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16498
16499         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
16500
16501         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
16502         to make it work reliably in CVS Emacs.
16503         (gnus-summary-limit-strange-charsets-predicate)
16504         (gnus-summary-limit-to-predicate): New functions.
16505
16506 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
16507
16508         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
16509         specifying array size.
16510         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
16511         array if it is too small.
16512         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
16513         (gnus-sort-threads-loop): New function.
16514
16515 2006-12-06  Chris Moore  <dooglus@gmail.com>
16516
16517         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
16518         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
16519
16520 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
16521
16522         * mm-url.el (mm-url-predefined-programs): Call curl with correct
16523         options.
16524
16525 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16526
16527         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
16528         DOS-ing the recipient.
16529
16530         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
16531         the headers when creating the mapping to avoid mismappings.
16532         (nnweb-gmane-create-mapping): Always nix out old mapping.
16533
16534 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16535
16536         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
16537         and mm-verify-option to never.
16538
16539 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16540
16541         * message.el (message-signed-or-encrypted-p): New function.
16542         (message-forward-make-body): Use it.
16543
16544         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
16545         Replace encode-coding-string with mm-encode-coding-string.
16546
16547 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16548
16549         * nneething.el (nneething-decode-file-name):
16550         Replace decode-coding-string with mm-decode-coding-string.
16551
16552         * gnus-int.el (gnus-open-server): Say failed server's name.
16553
16554 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16555
16556         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
16557         strings to a single string.  Quote `errors-file-name'.
16558         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
16559         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
16560         Adjust calls.  Use `shell-quote-argument'.
16561
16562 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
16563
16564         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
16565         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
16566
16567         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
16568         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
16569         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
16570         (gnus-group-make-directory-group, gnus-group-transpose-groups):
16571         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
16572         (gnus-subscribe-newsgroup, gnus-1):
16573         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
16574         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
16575         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
16576         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
16577
16578 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16579
16580         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
16581         keystroke.
16582         (gnus-summary-limit-to-bodies): Implement headersp.
16583
16584 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16585
16586         * dns.el (query-dns): Protect against "Process dns deleted" strings.
16587
16588 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16589
16590         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
16591
16592 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16593
16594         * message.el (message-generate-hashcash): Expand range of values to
16595         include `opportunistic'.
16596         (message-send-mail): Use it.
16597
16598 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16599
16600         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
16601         and comment it.
16602
16603         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
16604
16605 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
16606
16607         * gnus-util.el (gnus-extract-address-components): Improve comment.
16608
16609 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16610
16611         * gnus-util.el (gnus-extract-address-components): Work with address in
16612         which the name portion contains @.
16613
16614         * lpath.el: Fbind custom-autoload.
16615
16616 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16617
16618         * gnus.el (gnus-start): Move custom group up.
16619         (gnus-select-method): Don't autoload, but make it available for
16620         `customize-variable'.
16621         (gnus-getenv-nntpserver): Don't autoload.
16622
16623 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
16624
16625         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
16626
16627 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16628
16629         * message.el (message-sendmail-extra-arguments): New variable.
16630         (message-send-mail-with-sendmail): Use it.
16631
16632 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16633
16634         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
16635         mm-with-unibyte-current-buffer to make string unibyte.
16636
16637         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
16638         mm-string-as-multibyte.
16639
16640 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
16641
16642         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
16643         Reported by Werner Koch <wk@gnupg.org>.
16644
16645 2006-11-14  Daiki Ueno  <ueno@p360>
16646
16647         * mml2015.el: Autoload epa-select-keys when compiling.
16648
16649 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16650
16651         * mml2015.el (mml2015-epg-sign): Save the signing keys in
16652         message-options.
16653         (mml2015-epg-encrypt): Save the recipient keys in message-options.
16654
16655 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16656
16657         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
16658         EasyPG (< 0.0.6).
16659         (mml2015-always-trust): New user option.
16660         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
16661         prompt.
16662
16663 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16664
16665         * nntp.el (nntp-authinfo-force): New variable.
16666         (nntp-send-authinfo): Use it.
16667
16668 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
16669
16670         * message.el (message-strip-subject-encoded-words): Allow _not_ to
16671         decode encoded words.  Improve prompt.  Add comment about forwarding.
16672         (message-replacement-char): Move up.
16673
16674 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
16675
16676         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
16677         instead of gnus-intersection because arguments of gnus-sorted-nunion
16678         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
16679
16680 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
16681
16682         * message.el (message-strip-subject-encoded-words): Reformat prompt.
16683         (message-simplify-subject-functions):
16684         Enable message-strip-subject-encoded-words by default.
16685
16686 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
16687
16688         * message.el (message-strip-subject-encoded-words): New function.
16689         (message-simplify-subject-functions): New variable.
16690         (message-simplify-subject): Use it.  Fix typo in doc string.
16691         Support message-strip-subject-encoded-words.
16692
16693 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
16694
16695         * gnus-diary.el (gnus-diary-delay-format-function):
16696         * nndiary.el (nndiary-reminders):
16697         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
16698
16699 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16700
16701         * gnus-art.el (article-hide-boring-headers): Fetch date from
16702         gnus-original-article-buffer to avoid problems with localized date
16703         strings.
16704
16705 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16706
16707         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
16708
16709 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
16710
16711         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16712         New variables.
16713         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16714         (mm-charset-synonym-alist): Move some entries to
16715         mm-codepage-iso-8859-list.
16716         (mm-charset-synonym-alist, mm-charset-override-alist):
16717         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16718
16719 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16720
16721         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
16722
16723 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16724
16725         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
16726         with Emacs 21 and XEmacs.
16727
16728 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
16729
16730         * spam.el (spam-parse-address): New function for better parsing,
16731         catching errors, etc.
16732         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
16733
16734 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16735
16736         * mm-view.el: Add interactive arg to html2text autoload.
16737
16738 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16739
16740         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
16741
16742 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
16743
16744         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16745         New variables.
16746         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16747         (mm-charset-synonym-alist): Move some entries to
16748         mm-codepage-iso-8859-list.
16749
16750         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
16751
16752 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
16753
16754         * message.el (message-citation-line-format)
16755         (message-insert-formated-citation-line): Fix implementation of %E, %N
16756         and %n according to the doc string.
16757
16758 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
16759
16760         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16761         Use car-safe to avoid bad parses.
16762
16763 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16764
16765         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
16766         names.
16767
16768         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
16769
16770 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16771
16772         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
16773         header.
16774
16775         * message.el (message-draft-headers): Add Date.
16776         (message-headers-to-generate): Fix typo in docstring.
16777
16778         * nndraft.el (nndraft-required-headers): New variable.
16779         (nndraft-generate-headers): Use it.
16780
16781         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
16782
16783 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16784
16785         * gnus-registry.el (gnus-registry-wash-for-keywords)
16786         (gnus-registry-find-keywords): New functions to allow easy searching of
16787         articles that are in the registry.
16788
16789 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16790
16791         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16792         Use ietf-drums-parse-address instead of gnus-extract-address-components.
16793         Reported by Damien Elmes <damien@repose.cx>.
16794
16795 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
16796
16797         * gnus.el (gnus-mime): Remove unused custom group.
16798
16799 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16800
16801         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
16802         "blank line" when searching for end of armor headers.
16803
16804 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16805
16806         * gmm-utils.el (gmm-write-region): Fix variable name.
16807
16808 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
16809
16810         * gmm-utils.el (gmm-write-region): New function based on compatibility
16811         code from `mm-make-temp-file'.
16812
16813         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
16814
16815         * nnmaildir.el (nnmaildir--update-nov)
16816         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
16817         Use `gmm-write-region'.
16818
16819 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16820
16821         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
16822         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16823
16824         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
16825
16826         * message.el (message-replacement-char): New variable.
16827         (message-fix-before-sending): Use it.
16828         (message-simplify-subject): New function to remove duplicate code.
16829         (message-reply, message-followup): Use it.
16830
16831         * gnus-sum.el (gnus-summary-make-menu-bar):
16832         Clarify gnus-summary-limit-to-articles.
16833
16834 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16835
16836         * gnus-util.el (gnus-with-local-quit): New macro.
16837
16838         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
16839
16840 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
16841
16842         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
16843         ignore non-string data.
16844
16845 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
16846
16847         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
16848         non-string data (needs to be done in the registry too).
16849
16850 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16851
16852         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
16853         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
16854         (gnus-registry-split-fancy-with-parent)
16855         (gnus-registry-fetch-simplified-message-subject-fast)
16856         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
16857         Remove text properties on ingress into the registry and when it's saved.
16858         (gnus-registry-clean-empty-function): Fix bug with cleaning the
16859         registry from entries with no groups.
16860
16861 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16862
16863         * gnus-util.el (gnus-string-remove-all-properties): Add utility
16864         function to remove string properties.
16865
16866 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
16867
16868         * gmm-utils.el (gmm): Adjust custom version.
16869
16870         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
16871         Adjust custom version.
16872
16873         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
16874
16875 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
16876
16877         * gnus-art.el (gnus-insert-prev-page-button)
16878         (gnus-insert-next-page-button): Simplify.  Reformat.
16879
16880 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16881
16882         * gnus-art.el (gnus-insert-prev-page-button)
16883         (gnus-insert-next-page-button): Apply gnus-article-button-face.
16884
16885 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
16886
16887         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
16888
16889 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16890
16891         * gnus-art.el (gnus-insert-mime-button)
16892         (gnus-insert-mime-security-button):
16893         Apply gnus-article-button-face to MIME and security buttons.
16894
16895 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
16896
16897         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
16898         readable.
16899
16900 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16901
16902         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
16903
16904 2006-09-20  Steve Youngs  <steve@sxemacs.org>
16905
16906         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
16907         `browse-url-of-file' instead of `browse-url'.
16908
16909 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16910
16911         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16912         regexp.  Articles containing quotation were cut prematurely.
16913
16914 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16915
16916         * message.el (message-cite-original-1): Use nobody by default for the
16917         value of From header.
16918         (message-reply): Ditto.
16919
16920 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
16921
16922         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
16923         to the gnus-info.  This fixes a bug of inline-PGP message verification.
16924         Reported by Michael Piotrowski <mxp@dynalabs.de>.
16925
16926 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
16927
16928         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
16929         mails in the doc string.  Add some URLs in comment.
16930         (pop3-movemail): Warn about pop3-leave-mail-on-server.
16931
16932 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16933
16934         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
16935         backslashes handling and the way to find boundaries of quoted strings.
16936
16937 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
16938
16939         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
16940         mml1991-encrypt-to-self is set and mml1991-signers is not set.
16941         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
16942         mml2015-encrypt-to-self is set and mml2015-signers is not set.
16943
16944 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
16945
16946         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
16947         doc string.
16948         (gnus-button-regexp, gnus-button-last): Remove unused variables.
16949
16950 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16951
16952         * lpath.el: Fbind epg-check-configuration.
16953
16954 2006-09-06  Simon Josefsson  <jas@extundo.com>
16955
16956         * mml2015.el (mml2015-use): Doc fix, mention epg.
16957
16958 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16959
16960         * mml2015.el (mml2015-use): Default to epg, if available.
16961
16962 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16963
16964         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
16965         message-sender.
16966         (mml1991-epg-encrypt): Ditto.
16967         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
16968         message-sender.
16969         (mml2015-epg-encrypt): Ditto.
16970
16971 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
16972
16973         * message.el (message-send-mail-with-sendmail): Look for sendmail in
16974         several common directories.
16975
16976 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
16977
16978         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
16979         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
16980
16981 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16982
16983         * gnus-art.el (article-decode-encoded-words): Make it fast.
16984
16985 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16986
16987         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
16988
16989         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
16990         in quoted string into `\'.
16991
16992 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16993
16994         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
16995         Use standard-syntax-table.
16996
16997 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16998
16999         * gnus-art.el (gnus-decode-address-function): New variable.
17000         (article-decode-encoded-words): Use it to decode headers which are
17001         assumed to contain addresses.
17002         (gnus-mime-delete-part): Remove useless `or'.
17003
17004         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
17005         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
17006         (gnus-nov-parse-line): Use it to decode From header.
17007         (gnus-get-newsgroup-headers): Ditto.
17008         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
17009
17010         * mail-parse.el (mail-decode-encoded-address-region): New alias.
17011         (mail-decode-encoded-address-string): New alias.
17012
17013         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17014         New function.
17015         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
17016         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
17017         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
17018         (rfc2047-decode-string): Ditto.
17019         (rfc2047-decode-address-region): New function.
17020         (rfc2047-decode-address-string): New function.
17021
17022 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
17023
17024         * message.el (message-caesar-buffer-body): Allow rotating headers.
17025
17026         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
17027
17028         * message.el (message-insert-formated-citation-line): Fix %f.
17029         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
17030
17031 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17032
17033         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
17034         (gnus-bookmark-mouse-available-p): New macro.
17035         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
17036         (gnus-bookmark-bmenu-show-infos): Use it.
17037         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
17038         (gnus-bookmark-bmenu-hide-infos): Ditto.
17039         (gnus-bookmark-remove-properties): New function.
17040         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
17041         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
17042         (gnus-bookmark-write-file): Bind coding-system-for-write.
17043         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
17044         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
17045         group before selecting it.
17046         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
17047         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
17048         quit-window if it is not available; use gnus-mouse-2 and bind it to
17049         gnus-bookmark-bmenu-select-by-mouse.
17050         (gnus-bookmark-show-details): Remove unused variable `details-list'.
17051         (gnus-bookmark-bmenu-select-by-mouse): New function.
17052
17053 2006-08-13  Romain Francoise  <romain@orebokech.com>
17054
17055         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
17056         space.
17057
17058 2006-08-10  Romain Francoise  <romain@orebokech.com>
17059
17060         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
17061         (dns-mode-soa-auto-increment-serial): New user option.
17062         (dns-mode-soa-maybe-increment-serial): New function.
17063         (dns-mode): Add the latter to `write-contents-functions'.
17064
17065 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17066
17067         * compface.el (uncompface): Use binary rather than raw-text-unix.
17068
17069 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17070
17071         * compface.el (uncompface): Make sure the eol conversion doesn't take
17072         place when communicating with the external programs.
17073         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
17074
17075 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
17076
17077         * nnheader.el (nnheader-insert-head): Fix typo in comment.
17078
17079 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17080
17081         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17082         Make it more robust by parsing author and date independently.
17083
17084 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17085
17086         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
17087
17088 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
17089
17090         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
17091         first matching secret key.
17092         (mml2015-epg-encrypt): Ditto.
17093
17094         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
17095         first matching secret key.
17096         (mml1991-epg-encrypt): Ditto.
17097
17098         * mml2015.el (mml2015-encrypt-to-self): New user option.
17099         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
17100         mml2015-epg-encrypt-to-self is set.
17101
17102         * mml1991.el (mml1991-encrypt-to-self): New variable.
17103         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
17104         mml1991-epg-encrypt-to-self is set.
17105
17106         * mml2015.el (mml2015-signers): New user option.
17107         (mml2015-epg-sign): Reflect the value of mml2015-signers.
17108         (mml2015-epg-encrypt): Allow to select signing keys.
17109
17110         * mml1991.el (mml1991-signers): New variable.
17111         (mml1991-epg-sign): Reflect the value of mml1991-signers.
17112         (mml1991-epg-encrypt): Allow to select signing keys.
17113
17114 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17115
17116         * nnheader.el (nnheader-insert-head): Make it work even if the file
17117         uses CRLF for the line-break code.
17118
17119 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
17120
17121         * mml2015.el: Require mml-sec instead of password.
17122         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
17123         (mml2015-cache-passphrase): Inherit the default value from
17124         mml-secure-cache-passphrase.
17125         (mml2015-passphrase-cache-expiry): Inherit the default value from
17126         mml-secure-passphrase-cache-expiry.
17127
17128         * mml1991.el: Require mml-sec instead of password.
17129         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
17130         (mml1991-cache-passphrase): Inherit the default value from
17131         mml-secure-cache-passphrase.
17132         (mml1991-passphrase-cache-expiry): Inherit the default value from
17133         mml-secure-passphrase-cache-expiry.
17134
17135         * mml-sec.el: Require password.
17136         (mml-secure-verbose): New user option.
17137         (mml-secure-cache-passphrase): New user option.
17138         (mml-secure-passphrase-cache-expiry): New user option.
17139
17140 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
17141             Andreas Vögele  <andreas@altroot.de>   (tiny change)
17142
17143         * pgg-def.el (pgg-truncate-key-identifier):
17144         Truncate the key ID to 8 letters from the end.
17145
17146 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17147
17148         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
17149         workaround for the url package included with Emacs.
17150
17151         * nnweb.el (nnweb-google-create-mapping): Update regexp.
17152
17153 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17154
17155         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
17156         correctly.  This fixes a bug caused by the 2006-05-12 change.
17157
17158 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
17159
17160         * nnmail.el (nnmail-article-group): If splitting raises an error, give
17161         some information about the error when saying that the `bogus' mail
17162         group will be used.
17163
17164 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
17165
17166         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
17167         string.
17168
17169 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
17170
17171         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
17172
17173 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17174
17175         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
17176
17177 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17178
17179         * mml1991.el (mml1991-function-alist): Add epg.
17180         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
17181         (mml1991-epg-encrypt): New functions.
17182
17183 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17184
17185         * mml2015.el (mml2015-verbose): New variable.
17186         (mml2015-cache-passphrase): Ditto.
17187         (mml2015-passphrase-cache-expiry): Ditto.
17188         (mml2015-function-alist): Add epg.
17189         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
17190         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
17191         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
17192         New functions.
17193
17194 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17195
17196         * message.el (message-cite-original-1): Preserve region when removing
17197         quoted text due to X-No-Archive in order to avoid bogus attribution
17198         when citing multiple messages.
17199
17200 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17201
17202         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
17203         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
17204
17205 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
17206
17207         * gnus-diary.el (gnus-user-format-function-d)
17208         (gnus-user-format-function-D): Autoload.
17209
17210         * imap.el (Commentary): Fix typo.
17211
17212         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
17213         2006-04-22 contribution.
17214
17215 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17216
17217         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
17218         It didn't really fix the bogosity I'm seeing with solid web groups.
17219
17220 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17221
17222         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
17223         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
17224         created using server names.  If we use the feature without declaring
17225         it, Gnus does not properly manage server and group state.
17226
17227         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
17228         bound.
17229
17230 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17231
17232         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
17233         looking up the method using GROUP's prefix before inventing a new one.
17234         It is used on killed/unknown groups in various places where returning
17235         an all-new method isn't expected by the caller.
17236
17237         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
17238         and match semantics of gnus-group-real-prefix.
17239
17240 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
17241
17242         * nnmail.el (nnmail-broken-references-mailers): New variable.
17243         (nnmail-ignore-broken-references): New function generalizing
17244         nnmail-fix-eudora-headers.
17245         (nnmail-fix-eudora-headers): Now obsolete.
17246
17247         * gnus-art.el (gnus-button-handle-custom):
17248         Support `customize-apropos*'.
17249
17250 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17251
17252         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
17253
17254         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
17255         articles.
17256
17257 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
17258
17259         * message.el (message-cite-reply-above): New variable.
17260         (message-yank-original): Use it.
17261
17262 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17263
17264         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
17265
17266 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
17267
17268         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
17269         as read.
17270
17271         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
17272
17273 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
17274
17275         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
17276         (gnus-bookmark-default-file): Use gnus-directory.
17277         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
17278         Remove "*" in doc string.
17279         (gnus-bookmark-write-file): Simplify.
17280         (gnus-bookmark-maybe-sort-alist): Use `when'.
17281         (gnus-bookmark-get-bookmark): Fix typo in doc string.
17282         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
17283         Add FIXME about Emacs 21 and XEmacs compatibility.
17284         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
17285         compatibility.
17286         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
17287         compatibility.
17288         (gnus-bookmark-menu-heading): Fix version.
17289
17290 2006-06-19  Bastien Guerry  <bzg@altern.org>
17291
17292         * gnus-bookmark.el: New file.
17293
17294 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17295
17296         * message.el (message-syntax-checks): Doc fix.
17297
17298 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17299
17300         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
17301         unsubscribed groups as if they were killed ones.  It causes duplicate
17302         entries in gnus-newsrc-alist.
17303
17304 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17305
17306         * message.el (message-syntax-checks): Doc fix.
17307         (message-send-mail): Add check for continuation headers.
17308         (message-check-news-header-syntax): Fix regexp used to check for
17309         continuation headers.
17310
17311 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17312
17313         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
17314
17315 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
17316
17317         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
17318
17319 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17320
17321         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
17322         default-truncate-lines.
17323
17324 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17325
17326         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
17327         to fill the utf-8 entry.
17328
17329         * lpath.el: Fbind unicode-precedence-list.
17330
17331 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17332
17333         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17334
17335 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
17336
17337         * gnus-agent.el (directory-files-and-attributes): Move all the way
17338         forward (the third and final move).
17339         (gnus-agent-read-agentview): Trap reconstruction errors due to
17340         nonexistent directory.  Handle by returning nil.
17341
17342 2006-05-30  Didier Verna  <didier@xemacs.org>
17343
17344         * message.el (message-dont-reply-to-names): Update the custom type.
17345         * message.el (message-dont-reply-to-names): New defsubst: potentially
17346         convert a list of regexps into a single one.
17347         * message.el (message-get-reply-headers): Use it.
17348         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
17349
17350 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17351
17352         * gnus-agent.el (directory-files-and-attributes): Move forward.
17353
17354 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17355
17356         * gnus-ml.el (gnus-mailing-list-subscribe)
17357         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
17358         (gnus-mailing-list-message): Fix doc strings.
17359
17360 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17361
17362         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
17363         of doing it manually.
17364
17365 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17366
17367         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
17368         comment.
17369
17370 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
17371
17372         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
17373         (gnus-agent-read-agentview): Fix handling of end-of-file error.
17374         (gnus-agent-read-local): All symbols allocated in my-obarray.
17375         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
17376         (gnus-agent-regenerate-group): Check numeric names to see if they are
17377         messages or groups.
17378         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
17379         better way of do this...)
17380
17381         * gnus-cache.el (gnus-agent-total-fetched-for):
17382         Ignore 'dummy.group' (there should be a better way of do this...)
17383
17384 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17385
17386         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
17387         (gnus-saved-headers): Ditto.
17388         (gnus-default-article-saver): Mention functions may have properties.
17389         (gnus-article-save): Override gnus-save-all-headers and
17390         gnus-saved-headers by :headers property which saver function may have.
17391         (gnus-summary-save-in-file): Add :headers property.
17392         (gnus-summary-write-to-file): Ditto.
17393
17394         * gnus-sum.el (gnus-summary-save-article): Bind
17395         gnus-prompt-before-saving to t when saving many articles in a file;
17396         always show all headers.
17397
17398         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
17399
17400 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
17401
17402         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
17403         marks.
17404
17405         * message.el (message-indent-citation): Add optional arguments to allow
17406         using it outside of message buffers.
17407
17408         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
17409         (gnus-article-treat-unfold-headers): Use it.
17410         (gnus-article-truncate-lines): New variable.
17411         (gnus-article-mode): Use it.
17412         (gnus-article-toggle-truncate-lines): New function.
17413
17414         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
17415         Add gnus-article-toggle-truncate-lines.
17416
17417         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
17418         coding system in XEmacs, use binary.
17419
17420 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17421
17422         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
17423         after-load-alist.
17424
17425         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
17426         this function should save decoded articles.
17427         (gnus-summary-write-to-file): Use property to specify this function
17428         should save decoded articles and specify gnus-summary-save-in-file
17429         should be used to save articles other than the first one when saving
17430         many articles.
17431         (gnus-summary-save-body-in-file): Use property to specify this
17432         function should save decoded articles.
17433         (gnus-summary-write-body-to-file): Use property to specify this
17434         function should save decoded articles and specify
17435         gnus-summary-save-body-in-file should be used to save articles other
17436         than the first one when saving many articles.
17437
17438         * gnus-sum.el (gnus-summary-save-article): Simplify.
17439
17440 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17441
17442         * gnus-art.el (gnus-default-article-saver):
17443         Add gnus-summary-write-body-to-file.
17444         (gnus-article-save-coding-system): Don't use coding system object
17445         in XEmacs.
17446         (gnus-read-save-file-name): Add optional `dir-var' argument which
17447         specifies directory in which files are saved; work even if optional
17448         `variable' argument is not specified.
17449         (gnus-summary-write-to-file): Read file name.
17450         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
17451         (gnus-summary-write-body-to-file): New function.
17452
17453         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
17454         (gnus-summary-local-variables): Add it.
17455         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
17456         (gnus-summary-save-article): Remove optional `decode' argument;
17457         determine whether to decode articles by the value of
17458         gnus-default-article-saver; when saving many files using
17459         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
17460         it first and use gnus-summary-save-in-file or
17461         gnus-summary-save-body-in-file thereafter unless
17462         gnus-prompt-before-saving is always; move point to article which
17463         will be saved.
17464         (gnus-summary-save-article-file): Revert.
17465         (gnus-summary-write-article-file): Revert.
17466         (gnus-summary-save-article-body-file): Revert.
17467         (gnus-summary-write-article-body-file): New function.
17468
17469 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17470
17471         * gnus-art.el (gnus-default-article-saver): Doc fix.
17472         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
17473         from gnus-summary-save-article-coding-system, and default to a
17474         certain coding system.
17475         (gnus-output-to-file): Add coding cookie and encode text according
17476         to gnus-article-save-coding-system; don't use mm-append-to-file.
17477
17478         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
17479         gnus-art.el and rename to gnus-article-save-coding-system.
17480         (gnus-summary-save-article): Require gnus-art; don't show all
17481         headers if it decodes articles; don't add coding cookie here;
17482         don't bind mm-text-coding-system-for-write.
17483         (gnus-summary-save-article-file): Save decoded articles.
17484         (gnus-summary-write-article-file): When saving many files, use
17485         gnus-summary-write-to-file first and gnus-summary-save-in-file
17486         thereafter unless gnus-prompt-before-saving is always.
17487         (gnus-summary-save-article-body-file): Save decoded articles.
17488
17489         * lpath.el: Fbind select-safe-coding-system for XEmacs.
17490
17491 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17492
17493         * nnrss.el (nnrss-check-group): Bind hash-index.
17494
17495 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
17496
17497         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
17498         its hash index.  Store this hash in `nnrss-group-data'.
17499         (nnrss-read-group-data): Update accordingly.
17500
17501 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17502
17503         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
17504         entry.
17505
17506         * gnus-sum.el (gnus-summary-make-menu-bar):
17507         Add gnus-article-browse-html-article.
17508
17509 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
17510
17511         * gnus-sum.el (gnus-summary-mime-map):
17512         Add gnus-article-browse-html-article.
17513
17514         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
17515
17516 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17517
17518         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
17519         suitable coding systems in customize.
17520
17521 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
17522
17523         * mail-source.el (mail-sources): Fix custom type.
17524
17525 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17526
17527         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
17528         (gnus-summary-expire-articles-now): Shorten prompt.
17529
17530         * gmm-utils.el (wid-edit): Require.
17531         (defun-gmm): Rename from `gmm-defun-compat'.
17532         (gmm-image-search-load-path): Use it.
17533         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
17534
17535 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17536
17537         * gnus-sum.el (gnus-summary-save-article-coding-system):
17538         New variable.
17539         (gnus-summary-save-article): Add optional `decode' argument.
17540         If it is set and gnus-summary-save-article-coding-system is non-nil,
17541         save decoded article.
17542         (gnus-summary-write-article-file): Save decoded article if
17543         gnus-summary-save-article-coding-system is non-nil.
17544
17545         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
17546         type.
17547
17548 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17549
17550         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
17551
17552 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17553
17554         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
17555         first to test gnus-single-article-buffer which may be buffer-local.
17556
17557         * gnus-sum.el (gnus-summary-setup-buffer):
17558         Make gnus-single-article-buffer buffer-local and nil in ephemeral
17559         group; make gnus-article-buffer, gnus-article-current, and
17560         gnus-original-article-buffer always buffer-local.
17561         (gnus-summary-exit): Kill article buffer belonging to ephemeral
17562         group.
17563         (gnus-handle-ephemeral-exit): Don't move to next summary line.
17564
17565 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17566
17567         * nnml.el (nnml-request-compact-group): Compressed files might not
17568         have .gz extension.
17569
17570 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17571
17572         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
17573         (mm-copy-to-buffer): Use with-current-buffer.
17574         (mm-display-part): Simplify.
17575         (mm-inlinable-p): Add optional arg `type'.
17576
17577 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17578
17579         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
17580         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
17581         Try harder to show the attachment internally or externally using
17582         gnus-mime-view-part-as-type.
17583
17584 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17585
17586         * message.el (message-from-style, message-signature-separator)
17587         (message-user-organization-file, message-send-mail-function)
17588         (message-citation-line-function, message-yank-prefix)
17589         (message-indent-citation-function, message-signature)
17590         (message-signature-file, message-signature-insert-empty-line):
17591         Remove autoloads.
17592
17593         * gnus-art.el (gnus-buttonized-mime-types):
17594         Remove "multipart/signed".  Revert 2006-04-26 change.
17595
17596 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17597
17598         * gnus.el (gnus-version-number): Bump version.
17599
17600 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17601
17602         * gnus.el: No Gnus v0.5 is released.
17603
17604 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17605
17606         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
17607         fetching articles by message-id.
17608
17609 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17610
17611         * message.el (hashcash): Require hashcash as normal.
17612
17613         * ecomplete.el (ecomplete-highlight-match-line):
17614         Use point-at-eol.
17615         (ecomplete-highlight-match-line): Use `highlight', because that
17616         face exists in both Emacs and XEmacs.
17617
17618         * message.el (message-display-abbrev): Use point-at-bol.
17619
17620         * mail-source.el: Don't require timer/timer-funcs.
17621
17622         * gnus-async.el: Ditto.
17623
17624         * password.el: Ditto.
17625
17626         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
17627
17628         * mm-url.el: Ditto.
17629
17630         * gnus-xmas.el: Don't require timer-funcs.
17631
17632         * mm-util.el: Require timer/timer-funcs.
17633
17634 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17635
17636         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
17637         Close.
17638
17639 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17640
17641         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
17642         unibyte after clear-decrypt function runs.
17643
17644         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
17645         returns as a unibyte string.
17646
17647 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17648
17649         * lpath.el: Revert.
17650
17651         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
17652         (pgg-gpg-process-sentinel): Revert.
17653
17654         * pgg-pgp.el (pgg-pgp-process-region): Revert.
17655         (pgg-pgp-lookup-key): Revert.
17656
17657         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
17658         (pgg-pgp5-lookup-key): Revert.
17659
17660         * pgg.el (pgg-fetch-key): Revert.
17661
17662 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17663
17664         * lpath.el: Fbind string-as-multibyte for XEmacs.
17665
17666         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
17667         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
17668         (mml1991-pgg-encrypt): Ditto.
17669
17670         * pgg-gpg.el (pgg-string-to-multibyte): New function.
17671         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
17672         a multibyte buffer.
17673
17674         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
17675         (pgg-pgp-lookup-key): Ditto.
17676
17677         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
17678         (pgg-pgp5-lookup-key): Ditto.
17679
17680         * pgg.el (pgg-fetch-key): Ditto.
17681
17682 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
17683
17684         * message.el (message-user-organization-file): Check several
17685         locations of the organization file.
17686
17687         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
17688         Add gnus-article-view-part-as-type.
17689
17690         * gnus-art.el (gnus-article-view-part-as-type): New function.
17691
17692         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
17693         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
17694
17695         * mml.el: Simplify autoload.
17696         (mml-mode): defvar dnd-protocol-alist instead of using
17697         symbol-value.
17698         (mml-default-directory): New variable.
17699         (mml-minibuffer-read-file): Use it.
17700         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
17701
17702         * message.el (message-citation-line-format): New variable.
17703         (message-insert-formated-citation-line): New function.
17704         (message-citation-line-function):
17705         Add `message-insert-formated-citation-line' to custom type.
17706
17707         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
17708         to doc string.
17709
17710         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
17711         depending on mm-verify-option.
17712
17713 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17714
17715         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
17716         binding pgg-* variables; reimplement the section which prevents
17717         MIME header from being signed.
17718         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
17719         pgg-text-mode; remove a blank line at the top of body.
17720
17721         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
17722         lines at the top of body; use gnus-newsgroup-charset if there's no
17723         Charset header.
17724
17725 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17726
17727         * message.el (message-self-insert-commands): Doc fix.
17728
17729         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
17730         (mm-uu-pgp-encrypted-test): Ditto.
17731         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
17732         between header and body; return application/pgp-encrypted handle
17733         if decryption failed; decode decrypted body by charset.
17734
17735         * mm-decode.el (mm-automatic-display): Don't make application/pgp
17736         element match to application/pgp-*.
17737
17738 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17739
17740         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
17741         HTML.
17742
17743 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17744
17745         * mail-source.el (mail-source-call-script): Message the error
17746         string.
17747
17748 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17749
17750         * gnus-util.el (gnus-byte-compile): Use it.
17751
17752 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
17753
17754         * gnus-util.el (kill-empty-logs): New function.
17755
17756 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17757
17758         * message.el (message-mail-alias-type): Doc fix.
17759         (message-mail-alias-type-p): New function.
17760         (message-send): Use it.
17761         (message-mode): Ditto.
17762         (message-strip-forbidden-properties): Ditto.
17763
17764         * ecomplete.el (ecomplete-database-file-coding-system):
17765         New variable.
17766         (ecomplete-save): Use it.
17767         (ecomplete-setup): Use it.
17768
17769 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17770
17771         * message.el (message-self-insert-commands): New variable.
17772         (message-strip-forbidden-properties): Use it.
17773
17774 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17775
17776         * message.el (message-put-addresses-in-ecomplete): Use a regexp
17777         that doesn't make XEmacs choke.
17778
17779 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
17780
17781         * gnus-util.el (gnus-replace-in-string):
17782         Prefer replace-regexp-in-string over of replace-in-string.
17783
17784 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17785
17786         * gnus-util.el (gnus-select-frame-set-input-focus):
17787         Use select-frame-set-input-focus if it is available in XEmacs; use
17788         definition defined in Emacs 22 for old Emacsen.
17789
17790         * dgnushack.el: Autoload unmorse-region for XEmacs.
17791
17792         * lpath.el: Bind cursor-in-non-selected-windows and
17793         select-frame-set-input-focus for XEmacs.
17794
17795 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17796
17797         * mm-view.el (mm-inline-text): Use equal instead of equalp.
17798
17799 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
17800
17801         * gnus-registry.el (gnus-registry-cache-save): Remove text
17802         properties when saving via the temp buffer.
17803
17804 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17805
17806         * message.el (message-generate-hashcash): Honor custom type.
17807
17808 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17809
17810         * message.el (message-generate-hashcash): Default to non-nil when
17811         hashcash is found.
17812
17813         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
17814         (gnus-refer-thread-limit): Increase default to 500.
17815
17816         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
17817
17818         * flow-fill.el (fill-flowed): Allow delete-space.
17819
17820 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17821
17822         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17823         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
17824         Remove autoloads.
17825
17826 2006-04-18  Simon Josefsson  <jas@extundo.com>
17827
17828         * message.el (message-generate-hashcash): Default to.
17829
17830 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17831
17832         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
17833         concatenating segments rather than before concatenating them.
17834
17835 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17836
17837         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
17838
17839 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17840
17841         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
17842
17843         * message.el (message-forward-make-body-plain):
17844         Allow message-forward-ignored-headers to be a list.
17845         (message-remove-ignored-headers): Factor out into function.
17846         (message-forward-make-body-mml): Use it.
17847
17848         * imap.el (imap-quote-specials): New function.
17849         (imap-login-auth): Quote specials.
17850
17851         * rfc2231.el (rfc2231-parse-string): Remove dead code.
17852         (rfc2231-parse-string): Allow concatanation of parameters that
17853         aren't contiguous.  The test case is
17854           (mail-header-parse-content-type "message/external-body;
17855             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
17856             access-type=LOCAL-FILE;
17857             name*1*=plugh%2fhello-sailor%2fbing.pdf")
17858
17859 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17860
17861         * nntp.el (nntp-accept-process-output): Return the value of
17862         `nnheader-accept-process-output'.
17863
17864 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17865
17866         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
17867         (gnus-button-alist): Recognize more diff formats.
17868         (gnus-button-patch): Strip directory.
17869
17870 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17871
17872         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
17873         Emacs 22 when setting focus.
17874
17875 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17876
17877         * gnus-art.el (gnus-article-treat-types): Do treatment of
17878         text/x-verbatim parts.
17879         (gnus-button-patch): New command.
17880
17881         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
17882         addresses that contain invalid characters.
17883
17884 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17885
17886         * message.el (message-put-addresses-in-ecomplete):
17887         Use gnus-replace-in-string.
17888         (message-is-yours-p): Use the more correct
17889         mail-header-parse-address instead of
17890         mail-extract-address-components.
17891         (message-put-addresses-in-ecomplete): Fix typo.
17892
17893         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
17894         keystroke.
17895
17896         * gnus-art.el (gnus-treatment-function-alist): Change order of
17897         newsgroups/generic header folding to avoid double-folding.
17898
17899         * message.el (message-hidden-headers): Add X-Draft-From.
17900
17901         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
17902         New command.
17903         (gnus-summary-repeat-search-article-backward): New command.
17904
17905         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
17906         groups in the parent topic.
17907
17908 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
17909
17910         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
17911         (spam-extra-header-to-number): Return the CRM114 number as a
17912         number instead of a string.
17913
17914 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17915
17916         * gnus-art.el (gnus-face-properties-alist): Move here from
17917         gnus-fun.
17918
17919         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
17920
17921 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17922
17923         * message.el (message-strip-forbidden-properties): Only display on
17924         self-insert-command.
17925
17926         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
17927         reindent.
17928         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
17929
17930 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
17931
17932         * smiley.el (smiley-style): Fix typo.
17933
17934 2006-03-23  Kenichi Handa  <handa@m17n.org>
17935
17936         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
17937         instead of set-buffer-multibyte.
17938
17939 2006-03-23  Kenichi Handa  <handa@m17n.org>
17940
17941         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
17942         buffer and then decode the buffer text if necessary.
17943         (rfc2231-encode-string): Be sure to work on multibyte buffer at
17944         first, and after mm-encode-body, change the buffer to unibyte.
17945
17946 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17947
17948         * hashcash.el (hashcash-insert-payment-async-2):
17949         Use message-goto-eoh instead of doing it manually.
17950         (mail-add-payment): Use message-narrow-to-header instead of trying
17951         to do the same itself.
17952
17953         * message.el (message-hidden-headers): Add Face.
17954
17955         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
17956         reparenting code.
17957         (gnus-summary-reparent-children): Refactored out code.
17958         (gnus-summary-thread-map): New keystroke.
17959         (gnus-summary-reparent-children): Make into command.
17960
17961         * smiley.el (smiley-style): Default to `medium' if using a large
17962         font.
17963
17964         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
17965         does it itself.
17966
17967         * message.el (message-point-in-header-p): Simplify definition.
17968
17969 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17970
17971         * nnagent.el (nnagent-request-set-mark): Silence log file
17972         writing.
17973         (nnagent-request-set-mark): Use write-region instead of
17974         append-to-file.
17975
17976         * gnus-sum.el (gnus-read-header): Fudge article number if using a
17977         strange select method.
17978
17979         * ecomplete.el (ecomplete-display-matches): Get highlightling
17980         right.
17981         (ecomplete-display-matches): Use literals.
17982         (ecomplete-display-matches): Disable message logging.
17983
17984         * message.el (message-display-abbrev): Small optimization.
17985
17986         * ecomplete.el (ecomplete-display-matches): Allow automatic
17987         display.
17988
17989         * message.el (message-strip-forbidden-properties):
17990         Display abbrevs.
17991         (message-display-abbrev): Get automatic display right.
17992
17993         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
17994         keystrokes.
17995
17996 2006-04-13  Romain Francoise  <romain@orebokech.com>
17997
17998         TODO: Backport to v5-10!
17999
18000         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
18001         Move here (and rename) from gnus-registry.el.
18002
18003         * gnus-registry.el: Require gnus-util.
18004         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
18005
18006 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18007
18008         * gnus-group.el (gnus-group-catchup-current):
18009         Change if-then-else-if-then-else into cond.
18010         (gnus-group-catchup): Indent.
18011         (group-name-at-point): New function.
18012         (gnus-fetch-group): Provide default from thing at point.
18013
18014 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18015
18016         * message.el (message-display-abbrev): Fix regexp.
18017
18018         * ecomplete.el (ecomplete-highlight-match-line):
18019         Reimplement choosing.
18020         (ecomplete-highlight-match-line): Fix up code rewrite, remove
18021         dead variables.
18022
18023         * message.el (message-newline-and-indent): Remove debugging.
18024         (message-display-abbrev): Use new implementation.
18025
18026 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
18027
18028         * gnus-art.el (gnus-article-mode):
18029         Set cursor-in-non-selected-windows to nil.
18030
18031         * smiley.el: Revert previous change.
18032         (smiley-data-directory): defvar it before using it in the
18033         defcustom of `smiley-style'.
18034
18035 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18036
18037         * message.el (message-newline-and-indent): New function.
18038
18039         * ecomplete.el: Implement more bits.
18040
18041         * message.el (message-put-addresses-in-ecomplete): Clean up the
18042         string.
18043
18044         * ecomplete.el (ecomplete-add-item): Chop off decimals.
18045
18046         * gnus-sum.el (gnus-summary-save-parts):
18047         Bind gnus-summary-save-parts-counter and use it to make unique file
18048         names.
18049
18050         * gnus-art.el (gnus-ignored-headers): Add some more headers.
18051
18052         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
18053         parameter to say whether to actually parse the individual
18054         addresses.
18055
18056         * message.el (message-put-addresses-in-ecomplete): New function.
18057         (ecomplete): Require.
18058         (message-mail-alias-type): Add ecomplete as an option.
18059
18060 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
18061
18062         * flow-fill.el (fill-flowed): Remove trailing space from blank
18063         quoted lines.
18064
18065 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18066
18067         * smiley.el (smiley-style): Move definition later to avoid a
18068         compilation warning.
18069
18070 2006-04-12  Kenichi Handa  <handa@m17n.org>
18071
18072         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
18073         buffer and then decode the buffer text if necessary.
18074         (rfc2231-encode-string): Be sure to work on multibyte buffer at
18075         first, and after mm-encode-body, change the buffer to unibyte.
18076         Use mm-disable-multibyte instead of set-buffer-multibyte.
18077
18078 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18079
18080         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
18081         Content-Type header instead of Content-Disposition header.
18082         (gnus-mime-inline-part): Ditto.
18083         (gnus-mime-view-part-as-charset): Ignore charset that the part
18084         specifies.
18085
18086         * mm-decode.el (mm-display-part): Work with external parts and
18087         usual parts similarly.
18088
18089         * mm-extern.el (mm-inline-external-body): Use mm-display-part
18090         instead of gnus-display-mime.
18091
18092         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
18093         instead of with-temp-buffer.
18094
18095         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
18096         tag to summarized topics part in order to encode non-ASCII text.
18097
18098 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18099
18100         * smiley.el (smiley-style): New variable.
18101         (smiley-directory): New function.
18102         (smiley-data-directory): Derive from `smiley-style' using
18103         `smiley-directory'.
18104         (smiley-regexp-alist): Add new entries.
18105
18106         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
18107         (gnus-article-browse-delete-temp): Add :version.
18108
18109 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
18110
18111         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
18112         the sieve region.
18113
18114 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18115
18116         * gnus.el (gnus-version-number): Bump version.
18117
18118 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18119
18120         * gnus.el: No Gnus v0.4 is released.
18121
18122 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18123
18124         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
18125         layout.
18126
18127         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
18128         unknown charset.
18129
18130         * message.el (message-header-synonyms): Add Original-To to the
18131         default.
18132
18133         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
18134         optional parameter.
18135
18136 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
18137
18138         * gnus-fun.el (gnus): Require it for gnus-directory.
18139
18140 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18141
18142         * gnus-fun.el (gnus-face-properties-alist): Add :version.
18143
18144 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18145
18146         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
18147
18148 2006-04-05  Simon Josefsson  <jas@extundo.com>
18149
18150         * password.el (password-reset): New function.
18151
18152 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18153
18154         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
18155         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
18156
18157 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18158
18159         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18160         Some whitespace was matched into the url, which broke browsing hits
18161         > 100 when mm-url-use-external was nil.
18162
18163 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
18164
18165         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18166         Check gnus-extra-headers for 'Newsgroups.
18167
18168         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
18169         bound.
18170
18171 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
18172
18173         * pgg-gpg.el: Clean up process buffers every time gpg processes
18174         complete.
18175
18176 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
18177
18178         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
18179         doc string.
18180
18181 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
18182
18183         * pgg-gpg.el (pgg-gpg-process-filter)
18184         (pgg-gpg-wait-for-completion): Check if buffer is alive.
18185
18186         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
18187         lines, temporary fix.
18188
18189 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18190
18191         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
18192
18193 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
18194
18195         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
18196         default-enable-multibyte-characters.  This reverts the change from
18197         revision 6.17 which is no longer necessary because the passphrase
18198         is sent separately now.  GnuPG messages are unreadable under
18199         multibyte locales with default-enable-multibyte-characters set to
18200         nil.
18201
18202 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
18203
18204         * message.el (message-tool-bar-gnome): Move "spell".
18205
18206 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
18207
18208         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
18209         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
18210         instead.
18211
18212 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
18213
18214         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18215         Improve newsgroups handling for NNTP overviews which don't include
18216         Newsgroups.
18217
18218 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18219
18220         * message.el (message-resend): Bind message-generate-hashcash to nil.
18221
18222 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18223
18224         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
18225         when searching for already-paid recipients.
18226
18227 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
18228
18229         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
18230         passphrases when it is not needed.
18231         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
18232         passphrase stuff from gpg, should only be necessary when you use
18233         gpg with a smartcard.
18234
18235 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18236
18237         * mml.el (mml-insert-mime): Ignore cached contents of
18238         message/external-body part.
18239
18240         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
18241         (mm-insert-part): Ditto.
18242
18243 2006-03-23  Simon Josefsson  <jas@extundo.com>
18244
18245         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
18246         Reiner.
18247         (pgg-gpg-use-agent-p): Use it again.
18248
18249 2006-03-23  Simon Josefsson  <jas@extundo.com>
18250
18251         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
18252         older emacsen.
18253         (pgg-gpg-use-agent-p): Don't use it.
18254
18255 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
18256
18257         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
18258         if we can.
18259
18260 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
18261
18262         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
18263         (pgg-gpg-update-agent): New function.
18264         (pgg-gpg-use-agent-p): New function.
18265         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
18266         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
18267         (pgg-gpg-sign-region): Use it.
18268
18269 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18270
18271         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
18272         Reported by Ralf Wachinger <rwachinger@gmx.de>.
18273
18274 2006-03-21  Simon Josefsson  <jas@extundo.com>
18275
18276         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
18277         <wilde@sha-bang.de>.
18278         (pgg-gpg-use-agent): New variable.
18279         (pgg-gpg-process-region): Use it.
18280         (pgg-gpg-encrypt-region): Likewise.
18281         (pgg-gpg-encrypt-symmetric-region): Likewise.
18282         (pgg-gpg-decrypt-region): Likewise.
18283         (pgg-gpg-sign-region): Likewise.
18284         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
18285
18286 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
18287
18288         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
18289
18290         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18291         Add comment on version.
18292
18293 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
18294
18295         * smiley.el: Add missing test smiley.
18296
18297 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18298
18299         * mm-decode.el (mm-with-part): New macro.
18300         (mm-get-part): Use it; work with message/external-body as well.
18301         (mm-save-part): Treat name and filename equally.
18302
18303         * mm-extern.el (mm-extern-cache-contents): New function.
18304         (mm-inline-external-body): Use it; force the part to be displayed;
18305         move undisplayer added to the cached handle to the parent.
18306
18307         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
18308         (gnus-mime-view-part-as-type): Work with message/external-body.
18309
18310         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
18311
18312 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
18313
18314         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
18315         images in image-load-path.  [Sync with image.el, revision 1.60, in
18316         Emacs.]
18317
18318 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
18319
18320         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
18321         path rather than symbol.  Always return list of directories.
18322         Guarantee that image directory comes first.  [Sync with image.el,
18323         revision 1.59, in Emacs.]
18324
18325         * message.el (message-make-tool-bar): Adjust to new API of
18326         `gmm-image-load-path-for-library'.
18327
18328         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18329
18330         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18331
18332 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18333
18334         * gnus-art.el (gnus-article-only-boring-p):
18335         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
18336         intangible text.
18337         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
18338
18339 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
18340
18341         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
18342         Use `defun' instead of `gmm-defun-compat'.
18343
18344 2006-03-14  Simon Josefsson  <jas@extundo.com>
18345
18346         * message.el (message-unique-id): Don't use message-number-base36
18347         if (user-uid) is a float.
18348         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
18349
18350 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18351
18352         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
18353
18354         * gnus-art.el (gnus-mime-display-single): Make sure there is an
18355         empty line between a part and a message part.
18356
18357 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
18358
18359         * smiley.el: Add more test smileys.
18360         (smiley-data-directory, smiley-regexp-alist)
18361         (gnus-smiley-file-types): Fix doc strings.
18362         (smiley-update-cache): Clear smiley-cached-regexp-alist before
18363         adding new elements.
18364         (smiley-mouse-map): Unused code.  Make it a comment.
18365
18366 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18367
18368         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
18369         scan latest NoCeM messages instead of old ones.
18370         (gnus-nocem-check-article): Fix regexps so as to match to PGP
18371         delimiters that are recently used.
18372         (gnus-nocem-load-cache): Add autoload cookie.
18373
18374         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
18375
18376         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
18377         level which is larger than gnus-use-nocem is specified.
18378
18379         * gnus-group.el (gnus-group-get-new-news): Ditto.
18380
18381 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
18382
18383         * gnus-util.el (gnus-tool-bar-update): New function.
18384
18385         * gnus-group.el (gnus-group-update-tool-bar): New variable.
18386         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
18387
18388         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
18389
18390         * gnus-group.el (gnus-group-redraw-when-idle)
18391         (gnus-group-redraw-check): Remove.
18392         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
18393
18394 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18395
18396         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
18397         if optional last element is specified in splits (FIELD VALUE...).
18398
18399 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
18400
18401         * message.el (message-make-tool-bar): Rename gmm-image-load-path
18402         to gmm-image-load-path-for-library.  Call with no-error argument.
18403         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
18404
18405         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18406
18407         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18408
18409         * gmm-utils.el (gmm-image-load-path): Remove alias.
18410
18411 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
18412
18413         * gmm-utils.el (gmm-image-load-path): Add alias.
18414
18415         * nnml.el (nnml-generate-nov-databases-directory): Rename from
18416         nnml-generate-nov-databases-1.
18417         (nnml-generate-nov-databases): Use it.
18418         (nnml-generate-nov-databases-directory): Document no-active
18419         argument.
18420
18421         * gmm-utils.el (gmm-image-load-path-for-library): Return single
18422         directory if path is t.  Add no-error.
18423
18424         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
18425         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18426
18427         * gnus-art.el (gnus-article-browse-delete-temp-files):
18428         Simplify resetting gnus-article-browse-html-temp-list.
18429
18430         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
18431         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
18432         Add example to docstring.  Rename local variables.  Move error
18433         checks to default case in cond and simplify.
18434
18435 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18436
18437         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
18438         handle is multipart when calling it recursively.
18439         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
18440
18441 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
18442
18443         * nnimap.el (nnimap-request-update-info-internal): Optimize.
18444         Don't `gnus-uncompress-range' to avoid excessive memory usage.
18445
18446 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18447
18448         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
18449         is loaded.
18450
18451         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
18452         loaded.
18453
18454 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
18455
18456         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
18457         to "Emacs 23 (unicode)" in doc string.
18458
18459         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
18460         "Emacs 23 (unicode)" in comment.
18461
18462 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18463
18464         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
18465
18466         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
18467         characters 160 through 255 in Emacs 23.
18468
18469 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18470
18471         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
18472         gnus-article-browse-html-temp.
18473         (gnus-article-browse-delete-temp): Make it customizable.
18474         Add `file'.  Adjust doc string.
18475         (gnus-article-browse-delete-temp-files): Add argument.
18476         Allow query for each file.  Adjust doc string.
18477         (gnus-article-browse-html-parts):
18478         Add `gnus-article-browse-delete-temp-files' to
18479         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
18480
18481 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
18482
18483         * gnus-art.el (gnus-article-browse-html-temp)
18484         (gnus-article-browse-delete-temp): New variables.
18485         (gnus-article-browse-delete-temp-files): New function.
18486         (gnus-article-browse-html-parts): Use it.
18487
18488 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18489
18490         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
18491
18492         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
18493         string.
18494
18495         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
18496         gnus-summary-insert-new-articles when unplugged.
18497         Remove gnus-summary-search-article-forward.
18498
18499         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
18500         display-visual-class instead of display-color-cells.
18501
18502 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18503
18504         * dgnushack.el: Autoload customize-group for XEmacs.
18505
18506         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
18507         message/* containing non-ASCII text properly.
18508
18509 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
18510
18511         * message.el: Require gmm-utils, remove autoloads.
18512         (message-tool-bar): Set default based on
18513         gmm-tool-bar-style.
18514         (message-tool-bar-gnome): Add gmm-customize-mode.
18515
18516         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
18517         gmm-tool-bar-style.
18518         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
18519
18520         * gnus-group.el (gnus-group-tool-bar): Set default based on
18521         gmm-tool-bar-style.
18522         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
18523
18524         * gmm-utils.el (gmm-image-directory): Rename variable from
18525         gmm-image-load-path.
18526         (gmm-image-load-path): Use gmm-image-directory.
18527         (gmm-customize-mode): New function.
18528         (gmm-tool-bar-style): New variable.
18529
18530         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
18531         gnus-group-redraw-line-number.
18532         (gnus-group-redraw-check): Simplify.
18533         (gnus-group-tool-bar-update): Remove redraw check.
18534         (gnus-group-make-tool-bar): Add redraw check.
18535
18536 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
18537
18538         * gnus-art.el (gnus-button): Add missing parentheses.
18539
18540 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18541
18542         * lpath.el: Fbind line-number-at-pos.
18543
18544 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18545
18546         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
18547
18548 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18549
18550         * gnus-art.el (gnus-button): New face.
18551         (gnus-article-button-face): Use it.
18552
18553         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18554         Add gnus-summary-next-page.  Re-order.
18555
18556         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
18557         next-node are now included.
18558         (gnus-group-redraw-line-number): New internal variable.
18559         (gnus-group-redraw-check): Helper function for updating the tool
18560         bar.
18561         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
18562
18563         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
18564
18565         * spam.el (spam-spamassassin-score-regexp): New internal variable.
18566         (spam-extra-header-to-number, spam-check-spamassassin-headers):
18567         Use it to match format of Spamassassin 3.0 and later.
18568         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
18569         (spam-check-bogofilter)
18570         (spam-bogofilter-register-with-bogofilter): Fix args of
18571         `gnus-error' calls.
18572
18573 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18574
18575         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
18576         unnecessary interaction when sending queued mails.
18577         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
18578
18579 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
18580
18581         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
18582         first or last are nil.
18583
18584 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18585
18586         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
18587
18588 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18589
18590         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
18591
18592 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18593
18594         * dns.el (query-dns): Protect more against buggy tcp output.
18595
18596 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18597
18598         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
18599         nov.php.
18600
18601 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18602
18603         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
18604         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
18605         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
18606         output on the server side.
18607         (nnweb-google-create-mapping): Update regexps and add some
18608         progress indication.
18609
18610 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
18611
18612         * gnus-group.el (gnus-group-tool-bar-gnome):
18613         Fix gnus-agent-toggle-plugged.  Re-order icons.
18614         (gnus-group-tool-bar-gnome):
18615         Add gnus-group-{prev,next}-unread-group.
18616         (gnus-group-tool-bar-gnome): Re-order icons.
18617
18618         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18619         Move gnus-summary-insert-new-articles.
18620
18621         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
18622         Fix comments.
18623
18624         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
18625         also available in Emacs 21.3.
18626
18627         * message.el (message-fix-before-sending): Change "Emacs 22" to
18628         "Emacs 23 (unicode)" in comment.
18629
18630         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
18631         "Emacs 23 (unicode)" in comment.
18632
18633         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
18634         comment.
18635         (mm-coding-system-p): Add comment about no-MULE XEmacs.
18636
18637         * mm-view.el (mm-fill-flowed): Add :version.
18638
18639 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18640
18641         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
18642         and load-path.
18643
18644 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
18645
18646         * message.el: Autoload gmm-image-load-path.
18647         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
18648         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
18649         consitency.
18650
18651         * gmm-utils.el (gmm-image-load-path): Also search in
18652         "../etc/images".  Don't set gmm-image-load-path if we don't find
18653         the image.
18654
18655 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18656
18657         * gmm-utils.el (gmm-image-load-path): Don't make
18658         `gmm-image-load-path' include subdirectories which the second arg
18659         `image' might specify.
18660
18661         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
18662         subdirectory to icon file names.
18663
18664         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
18665
18666 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
18667
18668         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
18669         gmm-image-load-path calls.
18670
18671         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18672
18673         * message.el (message-make-tool-bar): Ditto.
18674
18675         * mml.el (mml-preview): Add comment concerning tool bar icons.
18676
18677         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
18678         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
18679
18680         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
18681         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
18682
18683         * message.el (message-tool-bar-gnome): Use new icon names.
18684         (message-make-tool-bar): Use `gmm-image-load-path'.
18685
18686         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
18687         New functions from MH-E.
18688         (gmm-image-load-path): New variable from MH-E.
18689         (gmm-image-load-path): New function from MH-E.  Add arguments
18690         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
18691         *-image-load-path-called-flag.
18692
18693 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
18694
18695         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
18696
18697 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
18698
18699         * nnimap.el (nnimap-request-move-article): Change folder back to
18700         source group before deleting.
18701
18702 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
18703
18704         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
18705
18706         * gnus-art.el (mm-url-insert-file-contents-external):
18707         Autoload mm-url.
18708
18709         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
18710
18711 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18712
18713         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
18714         coding system which mm-charset-to-coding-system returns for a
18715         given charset is valid.
18716
18717 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
18718
18719         * html2text.el (html2text-remove-tag-list):
18720         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
18721
18722 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
18723
18724         * gnus-cus.el: Revert 2005-10-17 change.
18725
18726 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18727
18728         * gnus-art.el (article-strip-banner):
18729         Call article-really-strip-banner only when the regexp match is made.
18730
18731 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18732
18733         * gnus-art.el (article-strip-banner):
18734         Use gnus-extract-address-components instead of
18735         mail-header-parse-addresses to make it work with non-ASCII text;
18736         remove mail-encode-encoded-word-string.
18737
18738         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
18739         values which are surrounded with \"...\"; make it never cause a
18740         Lisp error; give up parsing of parameters if it failed in
18741         extracting type.
18742
18743 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
18744
18745         * smime.el (smime-cert-by-ldap-1): Fix bug where
18746         `smime-ldap-search' returns results without userCertificates.
18747
18748 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18749
18750         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
18751
18752 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
18753
18754         * spam.el (spam-check-spamassassin-headers): Adapt format for
18755         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
18756         <ari@mbf.ocn.ne.jp>.
18757         (spam-list-of-processors): Add spam-use-gmane.
18758
18759 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18760
18761         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
18762         make-temp-file; make it work with XEmacs as well.
18763
18764         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
18765         mm-make-temp-file.
18766
18767         * mm-decode.el (mm-display-external): Use the 3rd arg of
18768         mm-make-temp-file.
18769         (mm-create-image-xemacs): Ditto.
18770
18771 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18772
18773         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
18774         with message-narrow-to-headers.
18775         (gnus-draft-setup): Narrow to header to run message-fetch-field.
18776         (gnus-draft-check-draft-articles): New function.
18777         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
18778
18779 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
18780
18781         * gnus-art.el (gnus-article-browse-html-parts):
18782         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
18783         Don't use suffix argument for mm-make-temp-file for Emacs 21
18784         compatibility.  Remove useless `format'.
18785
18786 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18787
18788         * nnweb.el (nnweb-google-wash-article): Update regexps.
18789         (nnweb-group-alist): Use defvoo instead of defvar.
18790
18791 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18792
18793         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
18794         re-loading nn* modules.
18795
18796 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
18797
18798         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
18799         for `tool-bar-mode' and don't check it's default-value.
18800
18801         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18802
18803         * message.el (message-make-tool-bar): Ditto.
18804
18805         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
18806         `substring'.  Shorten tmp-file name.
18807
18808         * gnus.el: Remove bogus comment.
18809
18810 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
18811
18812         * gnus-art.el (gnus-article-browse-html-parts): New function.
18813         (gnus-article-browse-html-article): New function for viewing html
18814         articles with a browser.
18815
18816 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
18817
18818         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
18819         in elisp.
18820         (pgg-gpg-encrypt-symmetric-region): Ditto.
18821         (pgg-gpg-sign-region): Ditto.
18822
18823         * pgg-def.el (pgg-text-mode): New variable.
18824
18825         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
18826         (mml2015-pgg-encrypt): Ditto.
18827
18828         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
18829         (mml1991-pgg-encrypt): Ditto.
18830
18831 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18832
18833         * nnfolder.el (nnfolder-insert-newsgroup-line):
18834         Use message-make-date instead of current-time-string.
18835
18836         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
18837         to gnus-decoded which mm-uu might set.
18838
18839 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18840
18841         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
18842         don't decode quoted parameters; remove misimported Emacs code.
18843         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18844         (rfc2231-decode-encoded-string): Don't use split-string which
18845         behaves differently according to Emacs version; use
18846         mm-decode-coding-region to convert charset to coding-system.
18847         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18848         (rfc2231-encode-string): Remove misimported Emacs code.
18849
18850 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18851
18852         * gnus-art.el (article-decode-charset): Don't use ignore-errors
18853         when calling mail-header-parse-content-type.
18854         (article-de-quoted-unreadable): Ditto.
18855         (article-de-base64-unreadable): Ditto.
18856         (article-wash-html): Ditto.
18857
18858         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
18859         calling mail-header-parse-content-type and
18860         mail-header-parse-content-disposition.
18861         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
18862         mail-header-parse-content-type.
18863
18864         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
18865         insert charset and format parameters; encode description after
18866         inserting it to buffer.
18867         (mml-insert-parameter): Fold lines properly even if a parameter is
18868         segmented into two or more lines; change the max column to 76.
18869
18870         * rfc1843.el (rfc1843-decode-article-body): Don't use
18871         ignore-errors when calling mail-header-parse-content-type.
18872
18873         * rfc2231.el (rfc2231-parse-string): Return at least type if
18874         possible; don't cause an error even if it fails in parsing of
18875         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18876         (rfc2231-encode-string): Don't break lines at the beginning, leave
18877         it to mml-insert-parameter.
18878
18879         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
18880         calling mail-header-parse-content-type.
18881
18882 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
18883
18884         * spam-report.el (spam-report-gmane-use-article-number):
18885         Improve doc string.
18886         (spam-report-gmane-internal): Check if a suitable header was found
18887         in the article.
18888
18889 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18890
18891         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
18892         (rfc2231-encode-string): Make param*=value always begin with LWSP.
18893
18894 2006-02-05  Romain Francoise  <romain@orebokech.com>
18895
18896         Update copyright notices of all files in the gnus directory.
18897
18898 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18899
18900         * nnweb.el (nnweb-request-group): Avoid growing overview files.
18901
18902 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18903
18904         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
18905         segmented lines of parameter value to cope with Thunderbird 1.5
18906         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
18907         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18908         (rfc2231-encode-string): Don't make lines exceeding 76 column.
18909
18910 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
18911
18912         * mml.el (mml-generate-mime-1): Correct the order of inline signed
18913         parts.
18914
18915 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18916
18917         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
18918         there's only one active file for all servers.
18919         (nnweb-request-scan): Make sure nnweb-articles is initialized on
18920         solid groups.  Gnus might have used a FAST request to select the group.
18921         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
18922         and nnweb-search redundantly in the active file.
18923         (nnweb-request-list): Don't list bogus groups.  There can only be one.
18924         (nnweb-request-create-group): Don't use ARGS.
18925         (nnweb-possibly-change-server, nnweb-request-group): Remove some
18926         initializations.  Let nnoo do the work.
18927
18928 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18929
18930         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
18931         Say the part has been decoded.
18932
18933         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
18934
18935 2006-01-31  Kevin Ryde  <user42@zip.com.au>
18936
18937         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
18938         mailcap-viewer-test-cache when there's no 'test clause, since that
18939         will invert the meaning of a "nil" test previously determined by
18940         mailcap-mailcap-entry-passes-test.
18941
18942 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18943
18944         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
18945         compiling.
18946
18947         * gnus-sum.el: Ditto.
18948
18949         * message.el: Don't bind tool-bar-map when compiling.
18950
18951 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
18952
18953         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
18954
18955 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18956
18957         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
18958         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
18959         current Google Groups.
18960
18961 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
18962
18963         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
18964         and tool-bar-mode.
18965
18966         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
18967         and tool-bar-mode.
18968
18969         * message.el (message-tool-bar-update): Simplify.
18970         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
18971
18972         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
18973         gnus-summary-buffer.
18974         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
18975         gnus-summary-reply.
18976
18977         * gmm-utils.el (gmm): Add :version.
18978
18979 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18980
18981         * Makefile.in (clean): New rule.
18982         (distclean): Use it.
18983
18984 2006-01-26  Steve Youngs  <steve@sxemacs.org>
18985
18986         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
18987         Don't autoload.
18988
18989 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18990
18991         * gmm-utils.el (gmm-verbose): Add :group.
18992
18993 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
18994
18995         * message.el: Change some comments WRT tool-bars.
18996
18997         * gnus-sum.el (gnus-summary-tool-bar)
18998         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
18999         (gnus-summary-tool-bar-zap-list): New variables.
19000         (gnus-summary-make-tool-bar): Complete rewrite using
19001         `gmm-tool-bar-from-list'.
19002
19003         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
19004         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
19005         New variables.
19006         (gnus-group-make-tool-bar): Complete rewrite using
19007         `gmm-tool-bar-from-list'.
19008         (gnus-group-tool-bar-update): New function.
19009
19010         * message.el (message-mode-field-menu): Add "Show hidden Headers".
19011
19012 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19013
19014         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
19015         is dissected into a single part of which the type is the same as
19016         the given one; decode charset.
19017
19018 2006-01-21  Kevin Ryde  <user42@zip.com.au>
19019
19020         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
19021         into alists as symbol not string, since that's what
19022         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
19023         look for.
19024
19025 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
19026
19027         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
19028         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
19029
19030         * message.el (message-tool-bar-gnome): Use gmm-ignore.
19031
19032 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19033
19034         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
19035         (gnus-xmas-mime-security-button-menu): New function.
19036
19037         * gnus-art.el (gnus-mime-security-button-commands): New variable.
19038         (gnus-mime-security-button-menu): New definition.
19039         (gnus-mime-security-button-map): Use them.
19040         (gnus-mime-security-button-menu): New function.
19041         (gnus-insert-mime-security-button): Addition to help echo.
19042         (gnus-mime-security-run-function, gnus-mime-security-save-part)
19043         (gnus-mime-security-pipe-part): New functions.
19044
19045         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
19046         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
19047
19048         * mm-decode.el (mm-handle-set-disposition): Remove.
19049         (mm-handle-set-description): Remove.
19050
19051 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19052
19053         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
19054         (mm-w3m-standalone-supports-m17n-p): New function.
19055         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
19056         w3m usage.
19057
19058         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
19059         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
19060
19061 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
19062
19063         * message.el (message-tool-bar-zap-list):
19064         Use gmm-tool-bar-zap-list as custom type.
19065         (message-tool-bar-update): New function.
19066         (message-tool-bar, message-tool-bar-gnome)
19067         (message-tool-bar-retro): Add message-tool-bar-update.
19068         (message-tool-bar-gnome): Add flyspell-buffer.
19069
19070         * gnus-util.el (gnus-error): Describe `args'.
19071
19072         * gmm-utils.el (gmm-error): Describe `args'.
19073         (gmm-tool-bar-zap-list): New widget.
19074         (gmm-tool-bar-from-list): Improve description of `zap-list'.
19075
19076 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19077
19078         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
19079         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
19080         the number of recursive calls.
19081
19082         * mm-decode.el (mm-handle-set-disposition): New macro.
19083         (mm-handle-set-description): New macro.
19084
19085 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19086
19087         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
19088         encoding.
19089
19090 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19091
19092         * message.el (message-tool-bar-zap-list, message-tool-bar)
19093         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
19094         (message-tool-bar-local-item-from-menu): Remove.
19095         (message-tool-bar-map): Replace by `message-make-tool-bar'.
19096         (message-make-tool-bar): New function.
19097         (message-mode): Use `message-make-tool-bar'.
19098
19099         * gmm-utils.el: New file.
19100         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
19101         (gmm-lazy): New widget copied from `nnmail.el'.
19102         (gmm-tool-bar-from-list): New function for creating customizable
19103         tool bars.
19104         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
19105         output.
19106         (gmm): Add :prefix to defgroup.
19107
19108 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
19109
19110         * gmm-utils.el (gmm-widget-p): New function.
19111
19112 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19113
19114         * mml.el (mml-attach-file): Describe `description' in doc string.
19115         (mml-menu): Add Emacs MIME manual and PGG manual.
19116
19117 2006-01-20  Richard M. Stallman  <rms@gnu.org>
19118
19119         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
19120
19121 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
19122
19123         * nntp.el (nntp-end-of-line): Doc fix.
19124
19125 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
19126
19127         * imap.el (imap-open): Handle case where buffer is a buffer
19128         object.
19129
19130 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19131
19132         * gnus-delay.el (gnus-delay): Don't autoload.
19133         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19134         to be re-loaded when customizing the `gnus-delay' group.
19135
19136 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
19137
19138         * message.el (message-insert-citation-line): Use newlines.
19139
19140 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19141
19142         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
19143         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
19144         these routines, so the passphrase can be managed externally and
19145         passed in to the system.
19146         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
19147         pgg-add-passphrase-to-cache function.
19148
19149         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
19150         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
19151         these routines, so the passphrase can be managed externally and
19152         passed in to the system.
19153         (pgg-pgp5-sign-region): Use new name of
19154         pgg-add-passphrase-to-cache function.
19155
19156 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19157
19158         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
19159         part of the decoded armor to find the key-identifier.
19160         (pgg-gpg-lookup-key-owner): New function to return the
19161         human-readable identifier of a key owner.
19162         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
19163         itself.
19164         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
19165         the key value) if we have a key and can match it against a secret
19166         key.  Also, added a note pointing out fact that the prompt only
19167         indicates the first matching key.
19168
19169         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
19170         pgg-decrypt-region.
19171         (pgg-add-passphrase-to-cache): Rename from
19172         `pgg-add-passphrase-cache' to reduce confusion (all callers
19173         changed).
19174         (pgg-remove-passphrase-from-cache): Rename from
19175         `pgg-remove-passphrase-cache' to reduce confusion (all callers
19176         changed).
19177         (pgg-read-passphrase, pgg-add-passphrase-cache)
19178         (pgg-remove-passphrase-cache): Add informative docstrings.
19179         (pgg-decrypt): Convey provided passphrase in subordinate call to
19180         pgg-decrypt-region.
19181
19182 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
19183
19184         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
19185         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
19186         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
19187         'passphrase' argument, so the passphrase can be managed externally
19188         and then passed in to the system.
19189
19190         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
19191         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
19192         so the passphrase cache can be used reliably with identifiers
19193         besides a pgp packet's key id.
19194
19195         * pgg-gpg.el (pgg-gpg-encrypt-region)
19196         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19197         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
19198         these routines, so the passphrase can be managed externally and
19199         passed in to the system.
19200
19201         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
19202         'notruncate' argument, so the passphrase cache can be used
19203         reliably with identifiers besides a pgp packet's key id.
19204
19205 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
19206
19207         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
19208         symmetric encryption.
19209         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
19210         encrypted session key.
19211         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
19212         message ask for the passphrase in a proper way.
19213
19214         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
19215         New user commands for symmetric encryption.
19216
19217 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19218
19219         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
19220
19221         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
19222
19223 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
19224
19225         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
19226
19227 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19228
19229         * mm-decode.el (mm-inlined-types): Add application/pgp.
19230         (mm-automatic-display): Ditto.
19231
19232         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
19233         part as text.
19234
19235 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19236
19237         * nnrss.el: Update copyright.
19238         (nnrss-opml-import): Query whether to subscribe to each entry.
19239
19240         * gnus-art.el:
19241         * gnus-sum.el:
19242         * gnus-xmas.el:
19243         * messagexmas.el:
19244         * mm-uu.el:
19245         * mm-view.el: Update copyright.
19246
19247 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
19248
19249         * message.el (message-info): New function.
19250         (message-mode-menu): Add it.
19251         Update copyright.
19252
19253         * ChangeLog: Fix and update copyright.
19254
19255 2006-01-13  Romain Francoise  <romain@orebokech.com>
19256
19257         * message.el (message-forward-subject-name-subject): Prefer the
19258         address to 'nowhere' if the sender has no name.
19259         Fix typo.  Update copyright year.
19260
19261 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19262
19263         * gnus-art.el (article-wash-html):
19264         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
19265         (gnus-article-wash-html-with-w3m-standalone): New function.
19266
19267         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
19268         mm-inline-text-html-render-with-w3m-standalone.
19269         (mm-text-html-washer-alist): Map w3m-standalone to
19270         gnus-article-wash-html-with-w3m-standalone.
19271         (mm-inline-text-html-render-with-w3m-standalone): New function.
19272
19273 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
19274
19275         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
19276         Improve LaTeX.
19277
19278 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19279
19280         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
19281         (nnrss-request-article): Render text/plain parts as HTML.
19282
19283         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
19284         the buffer.
19285
19286 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
19287
19288         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
19289         custom definition of `gnus-posting-styles'.
19290
19291         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
19292         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
19293
19294 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19295
19296         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
19297         Use nntp for bug archive.
19298
19299 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19300
19301         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
19302         parts.
19303         (nnrss-normalize-date): New function converts ISO 8601 date into
19304         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19305         (nnrss-check-group): Use it.
19306
19307 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19308
19309         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
19310
19311         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
19312         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19313         (nnrss-insert-w3): Ditto.
19314
19315 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19316
19317         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
19318         the articles to be forwarded including the case where neither a
19319         number of articles nor a region is specified.
19320
19321 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19322
19323         * nnrss.el (nnrss-request-article): Fix last change; fill
19324         text/plain parts.
19325
19326 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19327
19328         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
19329         in text/plain part.
19330         (nnrss-check-group): Don't add excessive newline to dc:subject.
19331
19332 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
19333
19334         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
19335         article.
19336
19337 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
19338
19339         * nnml.el: Don't require gnus-bcklg.  Autoload it.
19340         (nnml-use-compressed-files, nnml-save-mail): Support other
19341         comression programs such as bzip2.
19342
19343 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19344
19345         * dns.el (query-dns): Make sure we check the buffer size before
19346         removing tcp headers.
19347
19348 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19349
19350         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
19351         remove MIME buttons associated with multipart/alternative parts.
19352         (gnus-mime-display-alternative): Tag buttons using `article-type'
19353         text property.
19354
19355         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
19356         associated with multipart/alternative parts.
19357
19358         * gnus-art.el (gnus-signature-separator): Fix custom type.
19359
19360         * mm-decode.el (mm-inlined-types): Fix custom type.
19361         (mm-keep-viewer-alive-types): Ditto.
19362         (mm-automatic-display): Ditto.
19363         (mm-attachment-override-types): Ditto.
19364         (mm-inline-override-types): Ditto.
19365         (mm-automatic-external-display): Ditto.
19366
19367 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
19368
19369         * spam-report.el (spam-report-user-mail-address)
19370         (spam-report-user-agent): New variables.
19371         (spam-report-url-ping-plain): Use spam-report-user-agent.
19372
19373 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
19374
19375         * gnus-art.el (gnus-button-handle-custom): Do not just use
19376         `customize-apropos' for any "M-x customize-*" button but the
19377         function called for.  Accept both the function name and its
19378         argument in order to achieve this.
19379         (gnus-button-alist): Remove support for "custom:" URL's.
19380         Pass function name to `gnus-button-handle-custom' in case of "M-x
19381         customize-*" buttons.
19382
19383 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19384
19385         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
19386         multipart/alternative and add xref to mm-discouraged-alternatives
19387         in doc string.
19388
19389         * mm-decode.el (mm-discouraged-alternatives): Add xref to
19390         gnus-buttonized-mime-types in doc string.
19391
19392 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
19393
19394         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
19395         Suggest image/.* in the doc string.
19396
19397 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
19398
19399         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
19400         message-marks (Debian bug #342521).
19401
19402 2005-12-12  Simon Josefsson  <jas@extundo.com>
19403
19404         * password.el (password-read-from-cache): Add.
19405         (password-read): Use it.
19406
19407 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19408
19409         * rfc2047.el (rfc2047-charset-to-coding-system):
19410         Recognize us-ascii as a MIME charset.
19411
19412         * mm-bodies.el (mm-decode-content-transfer-encoding):
19413         Protect against the case where the 2nd arg TYPE is nil.
19414
19415 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19416
19417         * pop3.el (pop3-stream-type): Fix custom version.
19418
19419         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
19420
19421 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19422
19423         * mm-decode.el (mm-display-external): Add missing cdr.
19424
19425 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19426
19427         * mm-decode.el (mm-display-external): Use nametemplate (defined in
19428         RFC1524) if it is in mailcap or add a suffix according to
19429         mailcap-mime-extensions when generating a temp filename; postpone
19430         deleting a temp file for 2 seconds for some wrappers, shell
19431         scripts, and so on, which might exit right after having started a
19432         viewer command as a background job.
19433
19434 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19435
19436         * nntp.el (nntp-marks-directory): Fix custom group.
19437
19438         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
19439         steps when < 10.
19440
19441         * gnus-start.el (gnus-no-server-1):
19442         Mention `gnus-level-default-subscribed' in doc string.
19443
19444 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19445
19446         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
19447         parens.
19448
19449 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19450
19451         * gnus-xmas.el (gnus-use-toolbar): Revert.
19452         (gnus-xmas-setup-toolbar): Use global default-toolbar if
19453         gnus-use-toolbar is default.
19454
19455         * messagexmas.el (message-use-toolbar): Revert.
19456         (message-setup-toolbar): Use global default-toolbar if
19457         message-use-toolbar is default.
19458
19459 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19460
19461         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
19462         according to default-toolbar-visible-p.
19463
19464         * messagexmas.el (message-use-toolbar): Ditto.
19465
19466 2005-11-26  Dave Love  <fx@gnu.org>
19467
19468         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
19469         (tls-program, tls-success): Provide openssl alternative.
19470
19471         * starttls.el: Doc fixes.
19472         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
19473         SERVICE to PORT.
19474
19475         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
19476         port null or service name.
19477         (starttls-negotiate): Autoload.
19478
19479 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19480
19481         * message.el (message-kill-to-signature): Fix interactive spec.
19482
19483 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19484
19485         * pop3.el (pop3-open-server): Recognize a string as a service name.
19486
19487 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
19488
19489         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
19490
19491 2005-11-23  Dave Love  <fx@gnu.org>
19492
19493         Add pop3s, pop3/starttls.
19494
19495         * pop3.el (pop3-authentication-scheme): Clarify doc.
19496         (open-tls-stream, starttls-open-stream): Autoload.
19497         (pop3-stream-type): New.
19498         (pop3-open-server): Use it.
19499
19500         * mail-source.el (mail-sources): Fix some :types.  Add stream type
19501         for POP.
19502         (mail-source-keyword-map): Add :stream for POP.
19503         (mail-source-fetch-pop): Use pop3-stream-type.
19504
19505 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19506
19507         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
19508         of current-time-string.
19509
19510 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
19511
19512         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
19513         date header.
19514
19515 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19516
19517         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
19518         it can seriously impact performance as it bypasses the agent's
19519         local caches.
19520
19521 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19522
19523         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
19524         must be explicitly online rather than "not explicitly offline" for
19525         its flags to be synchronized.
19526
19527         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
19528         that gnus-uu-unmark-thread will function correctly.
19529
19530         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
19531         1024K is instead displayed as 1M.
19532
19533 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19534
19535         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
19536
19537 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
19538
19539         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
19540
19541 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
19542
19543         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
19544         error message to display actual error condition.
19545         (gnus-agent-save-local): Avoid saving symbols that are bound to
19546         nil as they simply result in a warning message in
19547         gnus-agent-read-local.
19548
19549 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19550
19551         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
19552         rather than make-variable-buffer-local for file-precious-flag.
19553
19554 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19555
19556         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
19557         for duplicates which are removed.  The invalid sort check then
19558         triggers a rescan after the sort as sorting may have moved
19559         duplicate entries such that they can be cheaply detected.
19560
19561 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19562
19563         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
19564
19565 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19566
19567         * gnus-agent.el (gnus-agent-article-alist-save-format):
19568         Change internal variable to a custom variable.  Change default value
19569         from compressed(2) to uncompressed(1).
19570         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
19571         support for uncompressed agentview files.  Taken together, reading
19572         the agentview file should now be 6-7 times faster.
19573
19574 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
19575
19576         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
19577         as a buffer-local variable.  This avoids creating truncated
19578         dribble files as a result of a hang up, eg.
19579
19580 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
19581
19582         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
19583         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
19584         XEmacs.
19585
19586 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19587
19588         * gnus-start.el (gnus-start-draft-setup):
19589         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
19590
19591         * gnus.el (gnus-splash): Change custom group.
19592         (gnus-group-get-parameter, gnus-group-parameter-value):
19593         Describe allow-list argument.
19594
19595         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
19596         string.
19597
19598 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19599
19600         * gnus-art.el (gnus-default-article-saver): Add user-defined
19601         `function' to custom type.
19602
19603 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19604
19605         * imap.el (imap-open): Handle case where buffer is a buffer
19606         object.
19607
19608 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
19609
19610         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
19611         long lines.
19612         (gnus-cache-delete-group): Wrap doc strings.
19613
19614         * gnus-agent.el (gnus-agent-rename-group)
19615         (gnus-agent-delete-group): Wrap doc strings.
19616
19617 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19618
19619         * messagexmas.el (message-use-toolbar): Change the valid values
19620         into default, top, bottom, left, and right.
19621         (message-toolbar-thickness): New variable.
19622         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
19623         well.
19624         (message-setup-toolbar): Make it work.
19625
19626         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
19627         (gnus-use-toolbar): Change the valid values into default, top,
19628         bottom, left, and right.
19629         (gnus-toolbar-thickness): New variable.
19630         (gnus-xmas-setup-toolbar): New function.
19631         (gnus-xmas-setup-group-toolbar): Use it.
19632         (gnus-xmas-setup-summary-toolbar): Use it.
19633
19634 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19635
19636         * gnus-start.el (gnus-1): Add "native" to
19637         gnus-predefined-server-alist.
19638
19639         * gnus.el (gnus-method-to-server): Don't add "native" to the
19640         lists here, because that leads to problems when
19641         gnus-select-method is bound.
19642
19643 2005-11-09  Simon Josefsson  <jas@extundo.com>
19644
19645         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
19646         use (not sort-by-date) instead.
19647
19648 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19649
19650         * gnus-delay.el (gnus-delay-group): Don't autoload.
19651         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19652         to be re-loaded when customizing the `gnus-delay' group.
19653
19654 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
19655
19656         * message.el: Revert last changes.
19657         (message-insert-citation-line): Use newlines.
19658
19659 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
19660
19661         * message.el (message-courtesy-message)
19662         (message-mark-insert-begin, message-mark-insert-end)
19663         (message-elide-ellipsis, message-cancel-message)
19664         (message-add-header, message-change-subject)
19665         (message-cross-post-followup-to-header)
19666         (message-cross-post-insert-note, message-reduce-to-to-cc)
19667         (message-widen-reply, message-delete-not-region)
19668         (message-kill-to-signature, message-insert-signature)
19669         (message-insert-importance-high, message-insert-importance-low)
19670         (message-insert-or-toggle-importance)
19671         (message-insert-disposition-notification-to)
19672         (message-indent-citation, message-yank-original)
19673         (message-cite-original-without-signature, message-cite-original)
19674         (message-insert-citation-line, message-position-on-field)
19675         (message-fix-before-sending, message-send-mail-partially)
19676         (message-send-mail, message-send-mail-with-sendmail)
19677         (message-send-mail-with-qmail, message-send-news)
19678         (message-check-news-header-syntax, message-generate-headers)
19679         (message-insert-courtesy-copy, message-fill-address)
19680         (message-fill-header, message-shorten-references)
19681         (message-setup-1, message-cancel-news)
19682         (message-forward-make-body-plain, message-forward-make-body-mime)
19683         (message-forward-make-body-mml, message-encode-message-body)
19684         (message-forward-make-body-digest-plain)
19685         (message-forward-make-body-digest-mime)
19686         (message-use-alternative-email-as-from): Insert `hard-newline'
19687         instead of ordinary newlines.
19688
19689 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19690
19691         * message.el (message-generate-headers): Downcase the argument
19692         given to message-check-element.
19693
19694 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
19695
19696         * nntp.el (nntp-authinfo-rejected): New error condition.
19697         (nntp-wait-for): Use new error condition to signal authentication
19698         error.
19699         (nntp-retrieve-data): Rethrow new error condition to break out of
19700         recursive call to nntp-send-authinfo.
19701
19702 2005-11-08  Romain Francoise  <romain@orebokech.com>
19703
19704         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
19705         (gnus-summary-exit-map): Bind to `Z p'.
19706         (gnus-summary-make-menu-bar): Add menu item.
19707
19708 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
19709
19710         * gnus-art.el (gnus-article-treat-custom): Add `first'.
19711         (gnus-treat-*): Add `first' in all doc strings.
19712
19713         * gnus-group.el (gnus-group-compact-group): Fix typo.
19714
19715 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19716
19717         * gnus.el (gnus-parameters-case-fold-search): New variable.
19718         (gnus-parameters-get-parameter): Use it.
19719
19720         * gnus-score.el (gnus-home-score-file): Doc fix.
19721
19722 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
19723
19724         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
19725
19726 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19727
19728         * mm-util.el (mm-special-display-p): New function.
19729
19730         * mml.el (mml-preview): Use it; doc fix.
19731
19732 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19733
19734         * imap.el (imap-open): Handle case where buffer is a buffer object.
19735
19736 2005-10-29  Romain Francoise  <romain@orebokech.com>
19737
19738         * message.el (message-fix-before-sending): Fix comment.
19739
19740 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19741
19742         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
19743
19744 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19745
19746         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
19747         Used in gnus-score.el.
19748
19749 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
19750
19751         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
19752
19753 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
19754
19755         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
19756         whitespace removed in revision 7.8.  Use concatenated string to
19757         protect trailing whitespace.
19758
19759 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
19760
19761         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
19762         (nnimap-request-expire-articles): Use it to avoid sending 'UID
19763         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
19764         Courier IMAP ("some version from 2004").  Mostly based on similar
19765         code in the same function.
19766
19767 2005-10-26  Didier Verna  <didier@xemacs.org>
19768
19769         * gnus-group.el (gnus-group-compact-group): Invalidate original
19770         article buffer.
19771         * gnus-srvr.el (gnus-server-compact-server): Ditto.
19772         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
19773         NOV database and in article itself.
19774         Invalidate article backlog.
19775
19776 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
19777
19778         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
19779
19780 2005-10-26  Simon Josefsson  <jas@extundo.com>
19781
19782         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
19783         part of 2004-07-25 change.
19784
19785 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19786
19787         * message.el (message-display-completion-list): New function.
19788         (message-expand-group): Use it; make sure the Completions buffer
19789         is modifiable.
19790 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19791
19792         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
19793         user-mail-name is an empty string.
19794
19795 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19796
19797         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
19798         depending on gnus-score-decay-constant.
19799
19800         * encrypt.el (encrypt-insert-file-contents)
19801         (encrypt-write-file-contents): Don't use `gnus-message'.
19802
19803         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
19804         arguments.
19805         (mm-uu-type-alist): Add message-marks and insert-marks.
19806         Pass arguments to mm-uu-verbatim-marks-extract.
19807         (mm-uu-hide-markers): New variable.
19808         (mm-uu-extract): Use face similar to `gnus-cite-3'.
19809
19810         * gnus-fun.el (gnus-convert-image-to-x-face-command)
19811         (gnus-convert-image-to-face-command): Use "convert" by default to
19812         allow other input image formats.
19813         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
19814         accordingly.
19815
19816 2005-10-23  Simon Josefsson  <jas@extundo.com>
19817
19818         * imap.el (imap-gssapi-program): Align command line parameters
19819         with latest GNU SASL.
19820         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
19821
19822 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19823
19824         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
19825         HTML.
19826         (nnslashdot-request-article): Ditto.
19827
19828         * lpath.el (featurep): Add nobreak-char-display.
19829
19830 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
19831
19832         * mail-source.el (mail-source-fetch-pop): Require pop3.
19833         (mail-source-check-pop): Ditto.
19834
19835 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19836
19837         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
19838         errors.
19839
19840 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
19841
19842         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
19843         (gnus-treat-strip-leading-blank-lines): Improve doc string.
19844
19845         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
19846
19847         * mm-bodies.el (mm-decode-string):
19848         Call `mm-charset-to-coding-system' with allow-override argument.
19849
19850 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19851
19852         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
19853         (rfc2047-charset-to-coding-system): New function.
19854         (rfc2047-decode-encoded-words): New function.
19855         (rfc2047-decode-region): Use them.
19856         (rfc2047-decode-cte): Remove.
19857         (rfc2047-parse-and-decode): Remove.
19858         (rfc2047-decode): Remove.
19859
19860 2005-10-15  Kenichi Handa  <handa@m17n.org>
19861
19862         * rfc2047.el (rfc2047-decode-cte): New function.
19863         (rfc2047-decode-region): Change the way to decode successive
19864         encoded-words: decode B- or Q-encoding in each encoded-word,
19865         concatenate them, and decode it as charset.
19866
19867 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19868
19869         * lpath.el: Fbind codepage-setup for XEmacs.
19870
19871 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19872
19873         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
19874         widget-move-and-invoke.
19875         (gnus-custom-mode): Use gnus-custom-map.
19876
19877 2005-10-15  Bill Wohler  <wohler@newt.com>
19878
19879         * message.el (message-tool-bar-map): Rename image file from
19880         mail_send to mail/send.
19881
19882 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19883
19884         * message.el (message-expand-group): Pass the common
19885         prefix substring of completion to `display-completion-list'.
19886
19887 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
19888
19889         * mml-sec.el (mml-secure-method): New internal variable.
19890         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
19891         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
19892         New functions using mml-secure-method.
19893
19894         * mml.el (mml-mode-map): Add key bindings for those functions.
19895         (mml-menu): Simplify security menu entries.  Suggested by Jesper
19896         Harder <harder@myrealbox.com>.
19897         (mml-attach-file, mml-attach-buffer, mml-attach-external):
19898         Goto end of message if point is the headers of the message.
19899
19900         * message.el (message-in-body-p): New function.
19901
19902         * assistant.el: Autoload gnus-util and netrc.
19903
19904         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
19905         Use `mm-charset-override-alist' only when decoding.
19906
19907         * mm-bodies.el (mm-decode-body):
19908         Call `mm-charset-to-coding-system' with allow-override argument.
19909
19910         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
19911         `filename' from Content-Disposition if Content-Type doesn't
19912         provide `name'.
19913         (gnus-mime-view-part-as-type): Set default instead of
19914         initial-input.
19915
19916 2005-10-09  Daniel Brockman  <daniel@brockman.se>
19917
19918         * format-spec.el (format-spec): Propagate text properties of % spec.
19919
19920 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
19921
19922         * gnus-art.el (gnus-treat-predicate): Add `first'.
19923
19924 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
19925
19926         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
19927         (mm-charset-override-alist): New variable.
19928         (mm-charset-to-coding-system): Use it.
19929         (mm-codepage-setup): New helper function.
19930         (mm-charset-eval-alist): New variable.
19931         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
19932         Warn about unknown charsets.
19933
19934         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
19935
19936 2005-10-04  David Hansen  <david.hansen@gmx.net>
19937
19938         * nnrss.el (nnrss-request-article): Add support for the comments tag.
19939         (nnrss-check-group): Ditto.
19940
19941 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
19942
19943         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
19944         Rename x-gnus-verbatim to x-verbatim.
19945         (mm-uu-type-alist): Fix regexp for verbatim-marks.
19946
19947         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
19948         x-verbatim.
19949
19950         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
19951
19952         * gnus-util.el (gnus-remove-duplicates): Remove.
19953
19954         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
19955         instead of gnus-remove-duplicates.
19956
19957         * message.el (message-remove-duplicates): Remove.
19958         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
19959         message-remove-duplicates.
19960
19961         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
19962         available, else use implementation from `delete-dups'.
19963
19964         * message.el (message-insert-expires): New function.
19965         (message-mode-map): Add key binding.
19966         (message-mode-field-menu): Add menu entry.
19967         (message-mode): Document it.
19968         (message-make-expires-date): Use `message-make-date'.
19969
19970 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
19971
19972         * message.el (message-make-expires-date): New function.
19973
19974 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19975
19976         * Makefile.in (list-installed-shadows): New entry.
19977         (install): Use it.
19978         (remove-installed-shadows): New entry.
19979
19980         * dgnushack.el (dgnushack-default-load-path): New variable.
19981         (dgnushack-find-lisp-shadows): New function.
19982         (dgnushack-remove-lisp-shadows): New function.
19983
19984 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
19985
19986         * Makefile.in (install-el-elc): New entry.
19987         (install): Use it so that .el files are necessarily installed.
19988
19989 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19990
19991         * time-date.el: Autoload parse-time-string, XEmacs needs it.
19992
19993 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19994
19995         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
19996         function rather than the diff-mode.el package.
19997         (mm-display-external): Use with-current-buffer.
19998         (mm-viewer-completion-map, mm-viewer-completion-map):
19999         Move initialization inside declaration.
20000
20001 2005-09-29  Simon Josefsson  <jas@extundo.com>
20002
20003         * spam.el: Load hashcash when compiling, to avoid warnings.
20004         Don't autoload mail-check-payment.
20005         (spam-check-hashcash): Define unconditionally, since hashcash.el
20006         is part of Gnus now.  Ignore errors from payment checking.
20007
20008 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
20009
20010         * message.el (message-bold-region, message-unbold-region):
20011         Rename from `bold-region' and `unbold-region'.
20012
20013         * message.el: Remove useless autoloads.
20014
20015 2005-09-28  Simon Josefsson  <jas@extundo.com>
20016
20017         * message.el (message-use-idna): Default to t.
20018         (message-use-idna): Test whether encoding works too.  Doc fix.
20019
20020 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20021
20022         * nntp.el (nntp-warn-about-losing-connection): Remove.
20023
20024 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
20025
20026         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
20027         customizable.  Change default value.
20028         (mm-uu-diff-groups-regexp): Change default value.
20029         (mm-uu-type-alist): Add doc string.
20030         (mm-uu-configure): Add doc string.  Make it interactive.
20031         (mm-uu-tex-groups-regexp): New variable.
20032         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
20033         (mm-uu-type-alist): Add LaTeX documents.
20034         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
20035         of "text/verbatim".
20036         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
20037
20038         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
20039         instead of "text/verbatim".
20040
20041         * message.el (message-mark-inserted-region)
20042         (message-mark-insert-file): Use slrn style marks when called with
20043         prefix argument.
20044
20045 2005-09-27  Simon Josefsson  <jas@extundo.com>
20046
20047         * message.el (message-idna-to-ascii-rhs-1): Reformat.
20048
20049 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
20050
20051         * message.el (message-remove-duplicates): New function.
20052         Implementation borrowed from `gnus-remove-duplicates'.
20053         (message-idna-to-ascii-rhs): Also encode idna addresses in
20054         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20055         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
20056         only ask about the same idna domain once per header and also tell
20057         in what header to replace the idna domain.
20058
20059         * gnus-art.el (article-decode-idna-rhs): Also decode idna
20060         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20061         (article-decode-idna-rhs): Fix regexp so that all idna-address in
20062         a header is decoded and not just the last one.
20063
20064 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20065
20066         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
20067         has been decoded.
20068
20069         * mm-decode.el (mm-automatic-display): Add text/verbatim.
20070         (mm-insert-part): Don't modify text if it has been decoded.
20071
20072         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
20073         decoded.
20074
20075         * mm-view.el (mm-inline-text): Don't strip text props unless
20076         decoding enriched or richtext parts.
20077
20078 2005-09-25  Romain Francoise  <romain@orebokech.com>
20079
20080         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
20081         * gnus-start.el (gnus-subscribe-interactively):
20082         * gnus-uu.el (gnus-uu-grab-articles):
20083         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
20084         space.
20085
20086 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
20087
20088         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
20089         * mm-view.el (mm-view-pkcs7-decrypt):
20090         * gnus-sum.el (gnus-summary-limit-to-extra)
20091         (gnus-summary-respool-article, gnus-read-move-group-name):
20092         * gnus-score.el (gnus-summary-increase-score):
20093         * gnus-util.el (gnus-completing-read-with-default):
20094         * gnus-art.el (gnus-read-save-file-name)
20095         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
20096         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
20097         * message.el (message-check-news-header-syntax):
20098         Follow convention for reading with the minibuffer.
20099
20100 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
20101
20102         * spam-report.el (spam-report-url-ping-plain):
20103         Use gnus-extended-version as User-Agent.
20104
20105         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
20106         default value is nil.
20107
20108         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
20109         (mm-uu-verbatim-marks-extract): New function.
20110         (mm-uu-extract): New face.
20111         (mm-uu-copy-to-buffer): Use it.
20112
20113         * spam-report.el (spam-report-gmane-ham): Rename from
20114         `spam-report-gmane-unspam'.
20115         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
20116         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
20117
20118         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
20119         Autoload.
20120         (spam-report-gmane-unregister-routine):
20121         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
20122
20123 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
20124
20125         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
20126         (spam-report-gmane-unregister-routine): Add support for gmane
20127         unregistration.
20128
20129         * spam-report.el (spam-report-gmane-unspam)
20130         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
20131         (spam-report-gmane): Change to take a single article and do unspam
20132         registration.
20133
20134 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20135
20136         * mm-url.el (mm-url-decode-entities): Fix regexp.
20137
20138 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20139
20140         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
20141         default to nil, to be able to use Gnus at all.  If the default
20142         switches to something else, then the function should be fixed not
20143         be exceedingly slow.
20144
20145 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
20146
20147         * gnus-start.el (gnus-activate-group): If the server is nil, don't
20148         fail hard.
20149
20150         * spam-report.el: Add better Keywords line.
20151
20152         * spam.el: Add Maintainer and better Keywords line.
20153
20154 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20155
20156         * gnus-art.el (gnus-article-replace-part)
20157         (gnus-mime-replace-part): New functions.
20158         (gnus-mime-action-alist, gnus-mime-button-commands)
20159         (gnus-mime-save-part-and-strip): Add file argument.
20160         (gnus-article-part-wrapper): Add interactive argument.
20161
20162         * gnus-sum.el (gnus-summary-mime-map):
20163         Add `gnus-article-replace-part'.
20164
20165 2005-09-19  Didier Verna  <didier@xemacs.org>
20166
20167         The nnml compaction feature:
20168         * nnml.el (nnml-request-compact-group): New function.
20169         * nnml.el (nnml-request-compact): New function.
20170         * gnus-int.el (gnus-request-compact-group): New function.
20171         * gnus-int.el (gnus-request-compact): New function.
20172         * gnus-group.el (gnus-group-compact-group): New function.
20173         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
20174         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
20175         * gnus-srvr.el (gnus-server-compact-server): New function.
20176         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
20177         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
20178
20179 2005-09-18  Deepak Goel  <deego@gnufans.org>
20180
20181         * sieve.el (sieve-help): Fix `message' call: first arg should be a
20182         format spec.
20183
20184 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20185
20186         * gnus.el (gnus-group-startup-message): Bind image-load-path.
20187
20188 2005-09-15  Romain Francoise  <romain@orebokech.com>
20189
20190         * message.el (message-fill-paragraph): Clarify docstring.
20191
20192 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20193
20194         * gnus-art.el (gnus-mime-display-part): Protect against broken
20195         MIME messages.
20196
20197 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20198
20199         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
20200         before parsing header.
20201
20202 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
20203
20204         * html2text.el (html2text-replace-list): Add new entities.
20205
20206 2005-09-11  Romain Francoise  <romain@orebokech.com>
20207
20208         * message.el (message-alternative-emails): Improve docstring.
20209         (message-setup-1): Call `message-use-alternative-email-as-from'
20210         after `message-setup-hook' to give it precedence over posting
20211         styles, etc.
20212         (message-use-alternative-email-as-from): Add docstring.
20213         Remove the original From header if present.
20214
20215         * nnml.el (nnml-compressed-files-size-threshold): New variable.
20216         (nnml-save-mail): Use it.
20217
20218         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
20219         articles.  Add new argument `silent'.
20220         (gnus-uu-mark-all): Report the total number of marked articles.
20221
20222 2005-09-10  Romain Francoise  <romain@orebokech.com>
20223
20224         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
20225         (gnus-uu-mark-series): Likewise.
20226
20227 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
20228
20229         * spam-report.el (spam-report-gmane): Fix generation of spam
20230         report URL.
20231
20232 2005-09-10  Simon Josefsson  <jas@extundo.com>
20233
20234         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
20235         t, based on discussion on the ding list with Robert Epprecht
20236         <epprecht@solnet.ch>.
20237
20238 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
20239
20240         * spam-report.el (spam-report-gmane): Make it work without
20241         X-Report-Spam header.  Gmane now only provides Archived-At.
20242         This is only used if `spam-report-gmane-use-article-number' is nil.
20243         (spam-report-gmane-spam-header): Remove.  Not used anymore.
20244
20245         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
20246         make `gnus-summary-sort-by-recipient' work with threading.
20247
20248         * nnweb.el (nnweb-google-wash-article): Print a message if article
20249         is not available.
20250
20251 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
20252
20253         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
20254         change.  Decode text/* parts content before displaying.
20255
20256 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
20257
20258         * mml-smime.el: Remove defvar of gnus-extract-address-components.
20259
20260 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20261
20262         * mm-view.el (mm-display-inline-fontify): Disable support modes.
20263
20264         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
20265         url-package-name, url-package-version,
20266         w3m-cid-retrieve-function-alist, w3m-current-buffer,
20267         w3m-display-inline-images, and w3m-minor-mode-map.
20268
20269 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
20270
20271         * message.el (message-tab-body-function): Fix mismatched custom type.
20272
20273         * gnus.el (gnus-group-change-level-function): Ditto.
20274
20275         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
20276
20277         * gnus-art.el (gnus-signature-limit)
20278         (gnus-article-mime-part-function): Ditto.
20279
20280 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20281
20282         * mml.el (mml-mode): Silence the byte compiler.
20283
20284         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
20285         using `(sit-for 0)' before moving the point to the specified part;
20286         skip unbuttonized parts.
20287         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
20288         return to the summary window if gnus-auto-select-part is non-nil.
20289
20290 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
20291
20292         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
20293         New variables.
20294         (mml-dnd-attach-file, mml-mode): Use them.
20295
20296         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
20297         Make fetching article by MID work again for Google Groups.
20298         Add FIXME concerning gnus-group-make-web-group.
20299
20300         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
20301         Don't depend on Gnus by using mail-extract-address-components if
20302         gnus-extract-address-components is not bound.
20303
20304 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20305
20306         * gnus-art.el (gnus-mime-display-security): Don't display the
20307         signature, but only the signed part.
20308
20309 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20310
20311         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
20312
20313         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
20314         list, not listp.
20315
20316 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
20317
20318         * mm-encode.el (mm-encode-content-transfer-encoding):
20319         Likewise when encoding.
20320
20321         * mm-bodies.el (mm-decode-content-transfer-encoding):
20322         De-canonicalize CRLF for all text content types, not just
20323         text/plain.
20324
20325 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20326
20327         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
20328         valid article; point arrow and cursor at the MIME button.
20329
20330 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20331
20332         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
20333         Suggested by Dan Christensen <jdc@uwo.ca>.
20334
20335         * mm-decode.el (mm-save-part): Enable change of prompt.
20336
20337 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
20338
20339         * gnus-msg.el (gnus-inews-add-send-actions):
20340         Make `message-post-method' lambda parameter ARG `&optional'.
20341
20342 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20343
20344         * gnus-sum.el (gnus-summary-mime-map):
20345         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
20346         gnus-article-jump-to-part.
20347
20348         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
20349         (gnus-article-edit-part): Use it.
20350         (gnus-article-part-wrapper): Add no-handle argument.
20351         (gnus-article-save-part-and-strip, gnus-article-delete-part):
20352         New functions.
20353
20354 2005-08-29  Romain Francoise  <romain@orebokech.com>
20355
20356         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20357         docstring.
20358         (gnus-face-from-file): Likewise.
20359
20360 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20361
20362         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
20363         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
20364         non-nil.
20365         (gnus-auto-select-part): New variable.
20366         (gnus-article-jump-to-part): New function.
20367         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
20368         (gnus-mime-delete-part): Allow selecting specified part after
20369         deleting or stripping parts.
20370         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
20371         part if argument is bogus.
20372
20373 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
20374
20375         * gnus-art.el (w3m-minor-mode-map):
20376         * gnus-spec.el (gnus-newsrc-file-version):
20377         * gnus-util.el (nnmail-active-file-coding-system)
20378         (gnus-original-article-buffer, gnus-user-agent):
20379         * gnus.el (gnus-ham-process-destinations)
20380         (gnus-parameter-ham-marks-alist)
20381         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
20382         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
20383         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
20384         * mm-decode.el (gnus-current-window-configuration):
20385         * mm-extern.el (gnus-article-mime-handles):
20386         * mm-url.el (url-current-object, url-package-name)
20387         (url-package-version):
20388         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
20389         (smime-keys, w3m-cid-retrieve-function-alist)
20390         (w3m-current-buffer, w3m-display-inline-images)
20391         (w3m-minor-mode-map):
20392         * mml-smime.el (gnus-extract-address-components):
20393         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
20394         (gnus-newsrc-hashtb, message-default-charset)
20395         (message-deletable-headers, message-options)
20396         (message-posting-charset, message-required-mail-headers)
20397         (message-required-news-headers):
20398         * mml1991.el (mc-pgp-always-sign):
20399         * mml2015.el (mc-pgp-always-sign):
20400         * nnheader.el (nnmail-extra-headers):
20401         * rfc1843.el (gnus-decode-encoded-word-function)
20402         (gnus-decode-header-function, gnus-newsgroup-name):
20403         * spam-stat.el (gnus-original-article-buffer): Add defvars.
20404
20405 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
20406
20407         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
20408         the end of the date treatments.
20409
20410 2005-08-15  Simon Josefsson  <jas@extundo.com>
20411
20412         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
20413         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
20414         Capello and Romain Francoise.
20415         (pgg-fetch-key-function): Remove, not used?
20416         (pgg-insert-url-with-w3): Require url, to get
20417         url-insert-file-contents regardless of where it is defined.
20418
20419 2005-08-13  Romain Francoise  <romain@orebokech.com>
20420
20421         * message.el (message-cite-original-1): New function.
20422         (message-cite-original): Use it.
20423         (message-cite-original-without-signature): Ditto.
20424
20425 2005-08-08  Romain Francoise  <romain@orebokech.com>
20426
20427         * message.el (message-yank-empty-prefix): New variable.
20428         (message-indent-citation): Use it.
20429         (message-cite-original-without-signature): Respect X-No-Archive.
20430
20431 2005-08-08  Simon Josefsson  <jas@extundo.com>
20432
20433         * pgg.el: Autoload url-insert-file-contents instead of loading
20434         w3/url.
20435         (pgg-insert-url-with-w3): Don't load url here.
20436
20437 2005-08-07  Jesper Harder  <harder@phys.au.dk>
20438
20439         * message.el (message-kill-to-signature): Don't insert newline at
20440         bol.
20441         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
20442
20443 2005-08-06  Romain Francoise  <romain@orebokech.com>
20444
20445         * message.el (message-user-fqdn): Fix typo in docstring.
20446
20447 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
20448
20449         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
20450
20451         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
20452
20453 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20454
20455         * mm-bodies.el (mm-encode-body): Use coding system rather than
20456         charset to encode text.
20457
20458         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
20459         number of charsets if utf-8 is available (XEmacs).
20460
20461 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
20462
20463         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
20464         taken from `gnus-button-mid-or-mail-regexp'.
20465         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
20466         (gnus-button-alist): Improve regexp for domain part of the MIDs
20467         for news:localpart@domain buttons.
20468         (gnus-button-ctan-directory-regexp): Update.
20469
20470 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20471
20472         * sieve-manage.el (sieve-manage-interactive-login):
20473         Use make-local-variable rather than make-variable-buffer-local.
20474         (sieve-manage-open): Ditto.
20475         (sieve-manage-authenticate): Ditto.
20476
20477         * mml.el (mml-generate-mime-1): Make the content type default to
20478         text/plain if the filename is not specified.
20479
20480 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20481
20482         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
20483         instead of insert-buffer.
20484
20485         * message.el (message-yank-original): Ditto; set the mark at the
20486         end of the yanked message.
20487
20488 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20489
20490         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
20491         lines to scroll rather than to stop it.
20492
20493         * mml.el (mml-generate-default-type): Add doc string.
20494         (mml-generate-mime-1): Use mm-default-file-encoding or make it
20495         default to application/octet-stream when determining the content
20496         type if it is not specified for the part or the mml contents; add
20497         a comment about mml-generate-default-type.
20498
20499 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
20500
20501         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
20502         make it default to application/octet-stream when determining the
20503         content type if it is not specified for the external contents.
20504
20505 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20506
20507         * rfc2231.el (rfc2231-parse-string): Take care that not only a
20508         segmented parameter but also other parameters might be there.
20509
20510 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20511
20512         * mm-decode.el (mm-display-external): Delete temp file, directory
20513         and buffer immediately if the external process is exited.
20514
20515 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20516
20517         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
20518         fewer lines than that of scroll-margin.
20519         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
20520
20521 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20522
20523         * gnus-art.el (gnus-article-next-page): Revert.
20524         (gnus-article-beginning-of-window): New macro.
20525         (gnus-article-next-page-1): Use it.
20526         (gnus-article-prev-page): Ditto.
20527         (gnus-article-edit-part): Use insert-buffer-substring instead of
20528         insert-buffer.
20529         (gnus-article-edit-exit): Ditto.
20530
20531         * gnus-util.el (gnus-beginning-of-window): Remove.
20532         (gnus-end-of-window): Remove.
20533
20534         * lpath.el: Don't bind header-line-format and scroll-margin.
20535
20536 2005-07-25  Simon Josefsson  <jas@extundo.com>
20537
20538         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
20539         to have the url package without w3.  Reported by Daiki Ueno
20540         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
20541
20542 2005-07-20  Didier Verna  <didier@xemacs.org>
20543
20544         * gnus-diary.el: Remove the description comment (nndiary is now
20545         properly documented in the Gnus manual).
20546         Fix the spelling of "Back End".
20547         * nndiary.el: Ditto.
20548         Fix the copyright notice.
20549
20550 2005-07-18  Romain Francoise  <romain@orebokech.com>
20551
20552         * gnus-sum.el (gnus-summary-to-prefix)
20553         (gnus-summary-newsgroup-prefix): New variables.
20554         (gnus-summary-from-or-to-or-newsgroups): Use them.
20555
20556 2005-07-17  Romain Francoise  <romain@orebokech.com>
20557
20558         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
20559         space as it's generally not especially interesting to the user.
20560
20561 2005-07-16  Romain Francoise  <romain@orebokech.com>
20562
20563         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
20564         nil to avoid prompting and file modification if one of the
20565         messages at the top of the nnfolder file contains a copyright
20566         notice.
20567         Update copyright notice.
20568
20569         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
20570         instead of `current-time-string' as the latter creates a time
20571         string that is not RFC 2822 compliant (it lacks the zone).
20572         Update copyright notice.
20573
20574 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20575
20576         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
20577         for text/rtf.  Display default in prompt.  Pass default for M-n.
20578
20579         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
20580
20581 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20582
20583         * gnus-msg.el (gnus-button-mailto):
20584         Remove save-selected-window-window hackery because it relies on
20585         save-selected-window internals.
20586
20587 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20588
20589         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
20590         (gnus-article-next-page-1): Use gnus-beginning-of-window.
20591         (gnus-article-prev-page): Ditto.
20592
20593         * gnus-util.el (gnus-beginning-of-window): New function.
20594         (gnus-end-of-window): New function.
20595
20596         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
20597
20598 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
20599
20600         * gnus-score.el (gnus-score-edit-all-score):
20601         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
20602         gnus-message.
20603
20604 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20605
20606         * gnus-msg.el (gnus-button-mailto):
20607         Remove save-selected-window-window hackery because it relies on
20608         save-selected-window internals.
20609
20610 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20611
20612         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
20613         add-minor-mode.
20614         (gnus-binary-mode): Ditto.
20615
20616         * gnus-topic.el (gnus-topic-mode): Ditto.
20617
20618 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
20619
20620         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
20621         (gnus-article-prev-page): Take scroll-margin into consideration.
20622
20623 2005-07-04  Lute Kamstra  <lute@gnu.org>
20624
20625         Update FSF's address in GPL notices.
20626
20627 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
20628
20629         * gnus.el (gnus-exit):
20630         * gnus-group.el (gnus-group-icons):
20631         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
20632
20633         * gnus-nocem.el (gnus-nocem):
20634         * message.el (message-various, message-buffers, message-sending)
20635         (message-interface, message-forwarding, message-insertion)
20636         (message-headers, message-news, message-mail):
20637         * pgg-gpg.el (pgg-gpg):
20638         * pgg-parse.el (pgg-parse):
20639         * pgg-pgp.el (pgg-pgp):
20640         * pgg-pgp5.el (pgg-pgp5):
20641         * pop3.el (pop3): Finish `defgroup' description with period.
20642
20643 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20644
20645         * gnus-art.el (article-display-face): Improve the efficiency.
20646         (article-display-x-face): Ditto; remove gray x-face stuff.
20647
20648 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20649
20650         * gnus-art.el (article-display-face): Correct the position in
20651         which Faces are inserted.
20652
20653 2005-06-29  Didier Verna  <didier@xemacs.org>
20654
20655         * gnus-art.el (article-display-face): Display faces in correct
20656         order.
20657
20658 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20659
20660         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
20661         (gnus-fill-real-hashtb): Use hash table instead of obarray.
20662         (gnus-nocem-check-article): Fetch the Type header.
20663         (gnus-nocem-message-wanted-p): Fix the way to examine types.
20664         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
20665         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
20666         make sure gnus-nocem-hashtb is initialized.
20667         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
20668         (gnus-nocem-unwanted-article-p): Ditto.
20669
20670         * pgg.el (pgg-verify): Return the verification result.
20671
20672 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20673
20674         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
20675         is ascii.
20676
20677 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
20678
20679         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
20680         `show-nonbreak-escape'.
20681
20682 2005-06-23  Lute Kamstra  <lute@gnu.org>
20683
20684         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
20685
20686         * dig.el (dig-mode):
20687         * smime.el (smime-mode): Use gnus-run-mode-hooks.
20688
20689 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
20690
20691         * nnimap.el (nnimap-split-download-body): Fix spellings.
20692
20693 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
20694
20695         * gnus-art.el (gnus-article-encrypt-body):
20696         * gnus-cus.el (gnus-score-customize):
20697         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
20698         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
20699
20700 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
20701
20702         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
20703         header by looking for magic "MII" at the beginning.
20704
20705 2005-06-16  Miles Bader  <miles@gnu.org>
20706
20707         * gnus-xmas.el (gnus-xmas-group-startup-message):
20708         Use renamed gnus-splash face.
20709
20710         * assistant.el (assistant-field): Remove "-face" suffix from face name.
20711         (assistant-field-face): New backward-compatibility alias for renamed
20712         face.
20713         (assistant-render-text): Use renamed assistant-field face.
20714
20715         * spam.el (spam): Remove "-face" suffix from face name.
20716         (spam-face): New backward-compatibility alias for renamed face.
20717         (spam-face, spam-initialize): Use renamed spam face.
20718
20719         * message.el (message-header-to, message-header-cc)
20720         (message-header-subject, message-header-newsgroups)
20721         (message-header-other, message-header-name)
20722         (message-header-xheader, message-separator, message-cited-text)
20723         (message-mml): Remove "-face" suffix from face names.
20724         (message-header-to-face, message-header-cc-face)
20725         (message-header-subject-face, message-header-newsgroups-face)
20726         (message-header-other-face, message-header-name-face)
20727         (message-header-xheader-face, message-separator-face)
20728         (message-cited-text-face, message-mml-face):
20729         New backward-compatibility aliases for renamed faces.
20730         (message-font-lock-keywords): Use renamed message faces.
20731
20732         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
20733         (sieve-test-commands, sieve-tagged-arguments):
20734         Remove "-face" suffix from face names.
20735         (sieve-control-commands-face, sieve-action-commands-face)
20736         (sieve-test-commands-face, sieve-tagged-arguments-face):
20737         New backward-compatibility aliases for renamed faces.
20738         (sieve-control-commands-face, sieve-action-commands-face)
20739         (sieve-test-commands-face, sieve-tagged-arguments-face):
20740         Use renamed sieve faces.
20741
20742         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
20743         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
20744         (gnus-group-news-3-empty, gnus-group-news-4)
20745         (gnus-group-news-4-empty, gnus-group-news-5)
20746         (gnus-group-news-5-empty, gnus-group-news-6)
20747         (gnus-group-news-6-empty, gnus-group-news-low)
20748         (gnus-group-news-low-empty, gnus-group-mail-1)
20749         (gnus-group-mail-1-empty, gnus-group-mail-2)
20750         (gnus-group-mail-2-empty, gnus-group-mail-3)
20751         (gnus-group-mail-3-empty, gnus-group-mail-low)
20752         (gnus-group-mail-low-empty, gnus-summary-selected)
20753         (gnus-summary-cancelled, gnus-summary-high-ticked)
20754         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
20755         (gnus-summary-high-ancient, gnus-summary-low-ancient)
20756         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
20757         (gnus-summary-low-undownloaded)
20758         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
20759         (gnus-summary-low-unread, gnus-summary-normal-unread)
20760         (gnus-summary-high-read, gnus-summary-low-read)
20761         (gnus-summary-normal-read, gnus-splash):
20762         Remove "-face" suffix from face names.
20763         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
20764         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
20765         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
20766         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
20767         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
20768         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
20769         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
20770         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
20771         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
20772         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
20773         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
20774         (gnus-summary-selected-face, gnus-summary-cancelled-face)
20775         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
20776         (gnus-summary-normal-ticked-face)
20777         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
20778         (gnus-summary-normal-ancient-face)
20779         (gnus-summary-high-undownloaded-face)
20780         (gnus-summary-low-undownloaded-face)
20781         (gnus-summary-normal-undownloaded-face)
20782         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
20783         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
20784         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
20785         (gnus-splash-face):
20786         New backward-compatibility aliases for renamed faces.
20787         (gnus-group-startup-message): Use renamed gnus faces.
20788
20789         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
20790         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
20791         (gnus-server-agent): Remove "-face" suffix from face names.
20792         (gnus-server-agent-face, gnus-server-opened-face)
20793         (gnus-server-closed-face, gnus-server-denied-face)
20794         (gnus-server-offline-face):
20795         New backward-compatibility aliases for renamed faces.
20796         (gnus-server-agent-face, gnus-server-opened-face)
20797         (gnus-server-closed-face, gnus-server-denied-face)
20798         (gnus-server-offline-face): Use renamed gnus faces.
20799
20800         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
20801         Remove "-face" suffix from face names.
20802         (gnus-picon-xbm-face, gnus-picon-face):
20803         New backward-compatibility aliases for renamed faces.
20804
20805         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
20806         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
20807         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
20808         (gnus-cite-11): Remove "-face" suffix from face names.
20809         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
20810         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
20811         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
20812         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
20813         New backward-compatibility aliases for renamed faces.
20814         (gnus-cite-attribution-face, gnus-cite-face-list)
20815         (gnus-article-boring-faces): Use renamed gnus faces.
20816
20817         * gnus-art.el (gnus-signature, gnus-header-from)
20818         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
20819         (gnus-header-content): Remove "-face" suffix from face names.
20820         (gnus-signature-face, gnus-header-from-face)
20821         (gnus-header-subject-face, gnus-header-newsgroups-face)
20822         (gnus-header-name-face, gnus-header-content-face):
20823         New backward-compatibility aliases for renamed faces.
20824         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
20825
20826         * gnus-sum.el (gnus-summary-selected-face)
20827         (gnus-summary-highlight): Use renamed gnus faces.
20828         * gnus-group.el (gnus-group-highlight): Likewise.
20829
20830 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
20831
20832         * gnus-sieve.el (gnus-sieve-article-add-rule):
20833         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
20834         * spam-stat.el (spam-stat-buffer-change-to-spam)
20835         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
20836
20837         * message.el (message-is-yours-p):
20838         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
20839
20840 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20841
20842         * mm-view.el (mm-inline-text): Withdraw the last change.
20843
20844 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
20845
20846         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
20847         executing enriched-decode.
20848
20849 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20850
20851         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
20852         charset of tar files.
20853
20854 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
20855
20856         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
20857
20858 2005-06-04  Lute Kamstra  <lute@gnu.org>
20859
20860         * nnfolder.el (nnfolder-read-folder): Make sure that undo
20861         information is never recorded.
20862
20863 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20864
20865         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
20866
20867 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20868
20869         * pop3.el (pop3-apop): Run md5 in the binary mode.
20870
20871         * starttls.el (starttls-set-process-query-on-exit-flag):
20872         Use eval-and-compile.
20873
20874 2005-05-31  Simon Josefsson  <jas@extundo.com>
20875
20876         * smime.el (smime-replace-in-string): Define.
20877         (smime-cert-by-ldap-1): Use it.
20878
20879 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20880
20881         * gnus-art.el (article-display-x-face): Replace
20882         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20883
20884         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
20885         set-process-query-on-exit-flag or process-kill-without-query.
20886
20887         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
20888         loop instead of replace-regexp.
20889
20890         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
20891         instead of process-kill-without-query if it is available.
20892
20893         * lpath.el: Fbind ldap-search-entries.
20894
20895         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
20896         instead of find-file-hooks if it is available.
20897
20898         * mml1991.el: Bind pgg-default-user-id when compiling.
20899
20900         * mml2015.el: Bind pgg-default-user-id when compiling.
20901
20902         * nndraft.el (nndraft-request-associate-buffer):
20903         Use write-contents-functions instead of write-contents-hooks if it is
20904         available.
20905
20906         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
20907         instead of find-file-hooks if it is available.
20908
20909         * nntp.el (nntp-open-connection): Replace
20910         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20911         (nntp-open-ssl-stream): Ditto.
20912         (nntp-open-tls-stream): Ditto.
20913
20914         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
20915         set-process-query-on-exit-flag or process-kill-without-query.
20916         (starttls-open-stream-gnutls): Use it instead of
20917         process-kill-without-query.
20918         (starttls-open-stream): Ditto.
20919
20920 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
20921
20922         * smime.el (smime-cert-by-ldap-1): Don't use
20923         replace-regexp-in-string.
20924
20925 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
20926
20927         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
20928
20929         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
20930         in PEM format.  Adjust to the XEmacs compatibility.
20931
20932 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
20933
20934         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
20935         by `string-to-number'.
20936         * gnus-agent.el (gnus-agent-regenerate-group)
20937         (gnus-agent-fetch-articles): Ditto.
20938         * gnus-art.el (gnus-button-fetch-group): Ditto.
20939         * gnus-cache.el (gnus-cache-generate-active)
20940         (gnus-cache-articles-in-group): Ditto.
20941         * gnus-group.el (gnus-group-set-current-level)
20942         (gnus-group-insert-group-line): Ditto.
20943         * gnus-score.el (gnus-score-set-expunge-below)
20944         (gnus-score-set-mark-below, gnus-summary-score-effect)
20945         (gnus-summary-score-entry): Ditto.
20946         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
20947         (gnus-soup-pack): Ditto.
20948         * gnus-spec.el (gnus-xmas-format): Ditto.
20949         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
20950         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
20951         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
20952         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
20953         * nndb.el (nndb-get-remote-expire-response): Ditto.
20954         * nndiary.el (nndiary-parse-schedule-value)
20955         (nndiary-string-to-number, nndiary-request-replace-article)
20956         (nndiary-request-article): Ditto.
20957         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
20958         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
20959         * nneething.el (nneething-make-head): Ditto.
20960         * nnfolder.el (nnfolder-request-article)
20961         (nnfolder-retrieve-headers): Ditto.
20962         * nnheader.el (nnheader-file-to-number): Ditto.
20963         * nnkiboze.el (nnkiboze-request-article): Ditto.
20964         * nnmail.el (nnmail-process-unix-mail-format)
20965         (nnmail-process-babyl-mail-format): Ditto.
20966         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
20967         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
20968         (nnmh-request-create-group, nnmh-request-list-1)
20969         (nnmh-request-group, nnmh-request-article): Ditto.
20970         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
20971         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
20972         * nnsoup.el (nnsoup-make-active): Ditto.
20973         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
20974         * nntp.el (nntp-find-group-and-number)
20975         (nntp-retrieve-headers-with-xover): Ditto.
20976         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
20977         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
20978         (pgg-format-key-identifier): Ditto.
20979         * pop3.el (pop3-last, pop3-stat): Ditto.
20980         * qp.el (quoted-printable-decode-region): Ditto.
20981
20982         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
20983         of concat.
20984
20985 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20986
20987         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
20988
20989         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
20990
20991         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
20992
20993         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
20994
20995         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
20996
20997         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
20998
20999         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
21000         (gnus-carpal-mode): Ditto.
21001
21002         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
21003         (gnus-browse-mode): Ditto.
21004
21005         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
21006
21007         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
21008
21009 2005-05-29  Richard M. Stallman  <rms@gnu.org>
21010
21011         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
21012
21013 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21014
21015         * gnus-util.el (gnus-run-mode-hooks): New function.
21016
21017         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
21018
21019         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
21020         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
21021
21022 2005-05-27  Lute Kamstra  <lute@gnu.org>
21023
21024         * dns-mode.el (dns-mode): Specify customization group.
21025
21026 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
21027
21028         * gnus-agent.el (gnus-agent-make-mode-line-string):
21029         Use mode-line-highlight as mouse-face.
21030
21031 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21032
21033         * canlock.el (canlock): Change the parent group to news.
21034
21035         * deuglify.el (gnus-outlook-deuglify): Add :group.
21036
21037         * dig.el (dig): Add :group.
21038
21039         * dns-mode.el (dns-mode): Add :group.
21040
21041         * encrypt.el (encrypt): Add :group.
21042
21043         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
21044         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
21045         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
21046         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
21047         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
21048
21049         * gnus-diary.el (gnus-diary): Add :group.
21050
21051         * gnus.el (gnus-group-news-1-face): Add :group.
21052         (gnus-group-news-1-empty-face): Ditto.
21053         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
21054         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
21055         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
21056         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
21057         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
21058         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
21059         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
21060         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
21061         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
21062         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
21063         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
21064         (gnus-summary-high-ticked-face): Ditto.
21065         (gnus-summary-low-ticked-face): Ditto.
21066         (gnus-summary-normal-ticked-face): Ditto.
21067         (gnus-summary-high-ancient-face): Ditto.
21068         (gnus-summary-low-ancient-face): Ditto.
21069         (gnus-summary-normal-ancient-face): Ditto.
21070         (gnus-summary-high-undownloaded-face): Ditto.
21071         (gnus-summary-low-undownloaded-face): Ditto.
21072         (gnus-summary-normal-undownloaded-face): Ditto.
21073         (gnus-summary-high-unread-face): Ditto.
21074         (gnus-summary-low-unread-face): Ditto.
21075         (gnus-summary-normal-unread-face): Ditto.
21076         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
21077         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
21078
21079         * hashcash.el (hashcash): New custom group.
21080         (hashcash-default-payment): Add :group.
21081         (hashcash-payment-alist): Ditto.
21082         (hashcash-default-accept-payment): Ditto.
21083         (hashcash-accept-resources): Ditto.
21084         (hashcash-path): Ditto.
21085         (hashcash-extra-generate-parameters): Ditto.
21086         (hashcash-double-spend-database): Ditto.
21087         (hashcash-in-news): Ditto.
21088
21089         * message.el (message-minibuffer-local-map): Add :group.
21090
21091         * netrc.el (netrc): Add :group.
21092
21093         * sieve-manage.el (sieve-manage-log): Add :group.
21094         (sieve-manage-default-user): Diito.
21095         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
21096         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
21097         (sieve-manage-authenticators): Ditto.
21098         (sieve-manage-authenticator-alist): Ditto.
21099         (sieve-manage-default-port): Ditto.
21100
21101         * sieve-mode.el (sieve-control-commands-face): Add :group.
21102         (sieve-action-commands-face): Ditto.
21103         (sieve-test-commands-face): Ditto.
21104         (sieve-tagged-arguments-face): Ditto.
21105
21106         * smime.el (smime): Add :group.
21107
21108         * spam-report.el (spam-report): Add :group.
21109
21110         * spam.el (spam, spam-face): Add :group.
21111
21112 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21113
21114         * nntp.el (nntp-next-result-arrived-p): Some news servers may
21115         return \n.\n.\n at the end of articles.  Protect against that.
21116         (nntp-with-open-group): Allow debugging.
21117
21118         * nnheader.el (mail-header-set-extra): Make into a function
21119         because I just could't understand how to quote the list properly.
21120
21121         * dns.el (query-dns-cached): New function.
21122
21123 2005-05-26  Lute Kamstra  <lute@gnu.org>
21124
21125         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
21126
21127 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21128
21129         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
21130
21131         * gnus-art.el: Don't autoload mail-extract-address-components.
21132
21133         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
21134         eval-and-compile to evaluate it.
21135
21136         * hashcash.el: Don't autoload executable-find.
21137
21138         * nndb.el: Don't declare the nndb back end two or more times; don't
21139         autoload news-reply-mode, news-setup, cancel-timer and telnet.
21140
21141         * nntp.el: Autoload format-spec instead of format; use
21142         eval-and-compile to evaluate autoload forms.
21143
21144 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
21145
21146         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
21147
21148 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21149
21150         * gnus.el (gnus-version-number): Bump version.
21151
21152 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21153
21154         * gnus.el: No Gnus v0.3 is released.
21155
21156 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21157
21158         * lpath.el (featurep): Bind show-nonbreak-escape.
21159
21160 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21161
21162         * gnus-art.el (gnus-article-edit-part): Disable undo.
21163
21164 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21165
21166         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
21167         gnus-article-date-lapsed-new-header is t if date timer is active;
21168         skip headers in which the original date value is empty.
21169         (gnus-article-save-original-date): Redefine it as a macro.
21170         (gnus-display-mime): Use it.
21171
21172 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21173
21174         * gnus-art.el (article-date-ut): Support converting date in
21175         forwarded parts as well.
21176         (gnus-article-save-original-date): New function.
21177         (gnus-display-mime): Use it.
21178
21179 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
21180
21181         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
21182         enclosure element of <item>.
21183
21184 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
21185
21186         * message.el (message-kill-buffer-query): Rename from
21187         `message-kill-buffer-query-if-modified'.  Add :version.
21188
21189 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21190
21191         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
21192         window layout.
21193
21194 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21195
21196         * mml.el: Autoload dnd when compiling.
21197
21198 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
21199
21200         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
21201         x-dnd-*.
21202
21203 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21204
21205         * qp.el (quoted-printable-encode-region): Save excursion.
21206
21207 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
21208
21209         * message.el (message-kill-buffer-query-if-modified): Add new variable
21210         so the user can kill a modified message buffer quickly.
21211         (message-kill-buffer): Use it.
21212
21213 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21214
21215         * lpath.el: Fbind display-time-event-handler; don't fbind
21216         string-to-multibyte.
21217
21218         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
21219
21220 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21221
21222         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
21223         contained in text because xml.el decodes entities) with LFs.
21224
21225 2005-04-11  Lute Kamstra  <lute@gnu.org>
21226
21227         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
21228         differently.
21229
21230 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21231
21232         * mm-util.el (mm-detect-coding-region): Typo.
21233
21234 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
21235
21236         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
21237
21238 2005-04-06  Deepak Goel  <deego@gnufans.org>
21239
21240         * spam-stat.el (spam-stat-score-buffer): Add a call to a
21241         user-function allow user modifications of the scores.
21242         (spam-stat-score-buffer-user): New function, to allow
21243         user-computed modifications to the score.
21244         (spam-stat-score-buffer-user-functions): List of additional
21245         scoring functions.
21246         (spam-stat-error-holder): Global temporary error holder.
21247         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
21248         variable.
21249
21250 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
21251
21252         * gnus-registry.el (gnus-registry-clean-empty-function)
21253         (gnus-registry-trim, gnus-registry-fetch-groups)
21254         (gnus-registry-delete-group): Groups that match
21255         `gnus-registry-ignored-groups' are removed from the registry
21256         entries, not just ignored for splitting.  This helps clean up the
21257         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
21258         to get all the groups a message ID is in.
21259
21260         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
21261         (spam-stat-split-fancy): Change "threshhold" to "threshold".
21262         (spam-stat-score-buffer-user-functions): Add :number custom type.
21263
21264 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21265
21266         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
21267         argument in XEmacs.
21268
21269         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
21270         (nnrss-request-group): Decode group name first.
21271         (nnrss-request-article): Make a text/plain article if mml-to-mime
21272         failed.
21273         (nnrss-get-encoding): Return a compatible encoding according to
21274         nnrss-compatible-encoding-alist.
21275         (nnrss-find-el): Use consp instead of listp.
21276         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
21277
21278 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21279
21280         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
21281         which Emacs 20 doesn't support.
21282         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
21283
21284 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
21285
21286         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
21287         silence the byte compiler inside the defun.
21288
21289         * gnus-demon.el (parse-time-string): Add autoload.
21290
21291         * gnus-delay.el (parse-time-string): Add autoload.
21292
21293         * gnus-art.el (parse-time-string): Add autoload.
21294
21295         * nnultimate.el (parse-time): Require for `parse-time-string'.
21296
21297 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
21298
21299         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
21300
21301         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
21302
21303         * smime.el (smime-ldap-host-list): Add :version.
21304
21305 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
21306
21307         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
21308         pass it to `gnus-browse-read-group'.
21309         (gnus-browse-read-group): Add NUMBER argument and pass it to
21310         `gnus-group-read-ephemeral-group'.
21311
21312         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
21313         argument and pass it to `gnus-group-read-group'.
21314
21315 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
21316
21317         * mm-util.el (mm-xemacs-find-mime-charset): Only call
21318         mm-xemacs-find-mime-charset-1 if we have the mule feature
21319         available at runtime.
21320
21321 2005-03-25  Werner Lemberg  <wl@gnu.org>
21322
21323         * nnmaildir.el: Replace `illegal' with `invalid'.
21324
21325 2005-03-23  Lute Kamstra  <lute@gnu.org>
21326
21327         * time-date.el: Add comment on time value formats.
21328         Don't require parse-time.
21329         (with-decoded-time-value): New macro.
21330         (encode-time-value): New function.
21331         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
21332         (days-to-time): Return a valid time value when arg is huge.
21333         (time-since): Use time-subtract.
21334         (time-to-number-of-days): Use time-to-seconds.
21335
21336 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21337
21338         * gnus-start.el (gnus-display-time-event-handler):
21339         Check display-time-timer at runtime rather than only at load time
21340         in case display-time-mode is turned off in the mean time.
21341
21342 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
21343
21344         * nnimap.el (nnimap-open-connection): Print which authinfo file is
21345         used.
21346
21347         * nneething.el (nneething-map-file-directory): Derive from
21348         `gnus-directory'.
21349
21350         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
21351         the To/Cc button.
21352
21353 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
21354
21355         * nnmaildir.el (nnmaildir-request-accept-article):
21356         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
21357
21358 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21359
21360         * gnus-async.el: Require timer-funcs at compile time when in
21361         XEmacs for `run-with-idle-timer'.
21362
21363 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21364
21365         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
21366         autoloaded function.
21367
21368 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21369
21370         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
21371
21372 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
21373
21374         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
21375
21376 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21377
21378         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
21379         Add gnus-expert-user to default.
21380
21381 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
21382
21383         * nnimap.el (nnimap-open-server): Ditto.
21384
21385         * imap.el (imap-authenticate): Fix typo.
21386
21387 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
21388
21389         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
21390         buffer (since IMAP server might return FETCH response out of
21391         order, and the nntp buffer must be sorted).
21392
21393 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
21394
21395         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
21396         comparison on string.
21397
21398         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
21399         (gnus-agent-score): Rename category keywords to match gnus-cus.
21400         (gnus-agent-summary-fetch-series): Modify to protect against
21401         gnus-agent-summary-fetch-group clearing processable flags.
21402         (gnus-agent-synchronize-group-flags): Update live group buffer as
21403         synchronization may occur due to the user toggle the plugged
21404         status.
21405         (gnus-agent-fetch-group-1): Clear downloadable flag when article
21406         successfully downloaded.
21407         (gnus-agent-expire-group-1): Avoid using markers when the overview
21408         is in ascending order; greatly improves performance.
21409         (gnus-agent-regenerate-group):
21410         Use gnus-agent-synchronize-group-flags to reset read status in both
21411         gnus and server.
21412         (gnus-agent-update-files-total-fetched-for): Fix initial size.
21413
21414 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
21415
21416         * message.el: Don't autoload former message-utils variables.
21417         (message-strip-subject-trailing-was): Change doc string.
21418
21419         * nnweb.el: Fixes for `gnus-group-make-web-group'.
21420         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
21421         (nnweb-google-search): Add "hl=en" here.
21422         (nnweb-google-parse-1, nnweb-google-create-mapping):
21423         Don't hardcode URL.
21424
21425 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
21426
21427         * message.el (message-get-reply-headers, message-followup):
21428         Mention related variables `message-use-followup-to' and
21429         `message-use-mail-followup-to', in the information buffer.
21430
21431         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
21432         of broken groups(-beta).google.com.
21433
21434 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
21435
21436         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
21437         parameter to invoked gnus-request-move-article; remove the
21438         redundant gnus-sum-hint-move-is-internal variable; apply the marks
21439         all at once instead of once per article.
21440         (gnus-summary-remove-process-mark): Accept a list of articles as
21441         well as a single article for processing.
21442
21443         * gnus-int.el (gnus-request-move-article): Add move-is-internal
21444         parameter.
21445
21446         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
21447
21448         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
21449
21450         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
21451         parameter.
21452
21453         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
21454         parameter.
21455
21456         * nnimap.el (nnimap-request-move-article): Add move-is-internal
21457         parameter and remove the gnus-sum-hint-move-is-internal variable.
21458
21459         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
21460         parameter.
21461
21462         * nndraft.el (nndraft-request-move-article): Add move-is-internal
21463         parameter.
21464
21465         * nndiary.el (nndiary-request-move-article): Add move-is-internal
21466         parameter.
21467
21468         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
21469
21470         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
21471         parameter.
21472
21473         * nnagent.el (nnagent-request-move-article): Add move-is-internal
21474         parameter.
21475
21476 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21477
21478         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
21479         a more conservative way.
21480
21481 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21482
21483         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
21484         buffer, so it moves the window's cursor.
21485
21486 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
21487
21488         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
21489         `mm-dissect-multipart' and receive the from field as an (optional)
21490         argument from `mm-dissect-multipart'.
21491         (mm-dissect-multipart): Receive the from field as an argument and
21492         pass it on when we call `mm-dissect-buffer' on MIME parts.
21493         Fixes verification/decryption of signed/encrypted MIME parts.
21494
21495 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
21496
21497         * gnus-sum.el (gnus-summary-move-article):
21498         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
21499         whatever it calls (right now, only nnimap-request-move article
21500         respects it).
21501
21502         * nnimap.el (nnimap-request-move-article):
21503         When gnus-sum-hint-move-is-internal is set, don't do the extra
21504         nnimap-request-article.
21505
21506 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
21507
21508         * nnheader.el (nnheader-find-file-noselect): Add doc string.
21509
21510         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
21511         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
21512
21513         * gnus-sum.el (gnus-summary-caesar-message):
21514         Apply `gnus-treat-article' after rotation.
21515
21516         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
21517         doc string.
21518
21519 2005-02-22  Simon Josefsson  <jas@extundo.com>
21520
21521         * encrypt.el (encrypt-password-cache-expiry): Remove (use
21522         `password-cache-expiry' instead).  Reported by Arne Jørgensen
21523         <arne@arnested.dk>.
21524         (encrypt): Add password-cache and password-cache-expiry as group
21525         members.
21526
21527 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
21528
21529         * smime.el (smime-ldap-host-list): Doc fix.
21530         (smime-ask-passphrase): Use `password-read-and-add' to read (and
21531         cache) password.
21532         (smime-sign-region): Use it.
21533         (smime-decrypt-region): Use it.
21534         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
21535         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
21536         fails.
21537         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
21538         certificate from DER to PEM format rather than calling openssl.
21539
21540         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
21541
21542         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
21543         for signing/encryption.
21544
21545         * mml.el (mml-parse-1): Use them.
21546
21547 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
21548
21549         * nnrss.el (nnrss-verbose): Remove.
21550         (nnrss-request-group): Use `nnheader-message' instead.
21551
21552 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
21553
21554         * nnrss.el (nnrss-verbose): New variable.
21555         (nnrss-request-group): Make it say nnrss is requesting a group.
21556
21557 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
21558
21559         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
21560         Handle news URL with given port correctly.
21561
21562 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21563
21564         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
21565         containing special characters.
21566
21567         * gnus-sum.el (gnus-summary-edit-article): Ditto.
21568
21569         * mml.el (mime-to-mml): Ditto.
21570
21571         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
21572         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
21573         (rfc2047-decode-region): Quote decoded words containing special
21574         characters when rfc2047-quote-decoded-words-containing-tspecials
21575         is non-nil.
21576
21577 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
21578
21579         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
21580
21581         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
21582
21583 2005-02-15  Simon Josefsson  <jas@extundo.com>
21584
21585         * nnimap.el (nnimap-debug): Doc fix.
21586
21587         * imap.el (imap-debug): Doc fix.
21588
21589 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21590
21591         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
21592
21593 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
21594
21595         * gnus.el (spam-contents): Improve docs for spam-contents
21596         parameter in its variable incarnation.
21597
21598 2005-02-14  Simon Josefsson  <jas@extundo.com>
21599
21600         * smime-ldap.el: Use require instead of load-library for ldap.
21601         (smime-ldap-search): Indent.
21602         (smime-ldap-search-internal): Shorten line.
21603
21604         * smime.el (smime-cert-by-dns): Add doc-string.
21605         (smime-cert-by-ldap-1): Indent.
21606
21607         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
21608         mml-smime-get-dns-ldap.
21609         (mml-smime-encrypt-query): Use new function.  Default to ldap.
21610
21611 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
21612
21613         * smime.el: Require smime-ldap.
21614         (smime-ldap-host-list): New variable.
21615         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
21616
21617         * mml-smime.el (mml-smime-encrypt-query): New function.
21618         (mml-smime-encrypt-query): Use it.
21619
21620         * smime-ldap.el: New file.
21621
21622 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21623
21624         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
21625
21626 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
21627
21628         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
21629         argument in doc string.  Make query for type more clear.
21630
21631 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
21632
21633         * gnus.el (gnus-group-startup-message): Search for gnus images in
21634         etc/images/gnus.
21635         * mm-util.el (mm-image-load-path): Likewise.
21636         * smiley.el (smiley-data-directory): Search for smilies in
21637         etc/images/smilies.
21638
21639 2005-02-09  Kim F. Storm  <storm@cua.dk>
21640
21641         Change Emacs release version from 21.4 to 22.1 throughout.
21642         Change Emacs development version from 21.3.50 to 22.0.50.
21643
21644 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21645
21646         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
21647
21648         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
21649         non-Mule XEmacs as well.
21650         (mm-decompress-buffer): Signal an error intentionally if it does
21651         not decompress compressed data because auto-compression-mode is
21652         disabled.
21653
21654 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
21655
21656         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
21657         an ID in the registry even if it has no groups.
21658
21659 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21660
21661         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
21662         merge it into mm-decompress-buffer.
21663         (gnus-mime-copy-part): Use the MIME part charset, the value which
21664         a user specified or gnus-newsgroup-charset for decoding, like
21665         gnus-mime-inline-part does; set buffer-file-coding-system to tell
21666         save-buffer what was used.  Suggested by Kevin Ryde
21667         <user42@zip.com.au>.
21668         (gnus-mime-inline-part): Allow the name parameter as well as the
21669         filename parameter; force decompressing of compressed data; always
21670         display contents being not decoded as unibyte.
21671
21672         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
21673         as well as the filename parameter.
21674
21675         * mm-util.el (mm-decompress-buffer):
21676         Merge gnus-mime-jka-compr-maybe-uncompress.
21677         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
21678         of compressed data.
21679
21680 2005-02-08  Simon Josefsson  <jas@extundo.com>
21681
21682         * imap.el (imap-log): Doc fix.
21683
21684 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21685
21686         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
21687         the coding cookies; decompress compressed parts.
21688
21689         * mml.el (mml-generate-mime-1): Add the charset parameter according
21690         to the value which a user specified manually or the coding cookie.
21691
21692         * mm-util.el (mm-string-to-multibyte): New function.
21693         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
21694         (mm-coding-system-to-mime-charset): New function.
21695         (mm-decompress-buffer): New function.
21696         (mm-find-buffer-file-coding-system): New function.
21697
21698         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
21699         (mm-display-inline-fontify): Rewrite for decoding and decompressing
21700         parts.
21701
21702 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21703
21704         * mm-view.el (mm-display-inline-fontify): Decode a part according
21705         to the charset parameter.
21706
21707 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21708
21709         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
21710         prefix arg is neither nil nor a number, as info specifies.
21711
21712 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21713
21714         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
21715         timestamps.
21716
21717 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
21718
21719         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
21720         groups error checking and notify user.
21721
21722 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
21723
21724         * message.el (message-send-mail-function): Check existence of
21725         sendmail-program first before using default value
21726         `message-send-mail-with-sendmail'.  Otherwise use more generic
21727         `smtpmail-send-it'.
21728
21729 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21730
21731         * nntp.el (nntp-request-update-info): Always return nil.
21732
21733 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21734
21735         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
21736
21737 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21738
21739         * message.el (message-beginning-of-line): Change the behavior when
21740         invoked between BOL and : so that it first moves backward.
21741
21742 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21743
21744         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
21745         article buffer when editing of the article is discarded.
21746         (gnus-article-prepare): Revert.
21747
21748 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21749
21750         * gnus-art.el (gnus-article-prepare):
21751         Remove message-strip-forbidden-properties from the local hook.
21752
21753 2005-01-27  Simon Josefsson  <jas@extundo.com>
21754
21755         * password.el (password-cache-add): Only start one timer per key.
21756         Reported by Derek Atkins <warlord@MIT.EDU>.
21757
21758 2005-01-26  Steve Youngs  <steve@sxemacs.org>
21759
21760         * run-at-time.el: Remove.  It is no longer needed as
21761         timer-funcs.el in the xemacs-base package has a working version of
21762         `run-at-time'.
21763
21764         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
21765
21766         * password.el: Require timer-funcs instead of run-at-time in
21767         XEmacs.
21768         Remove `password-run-at-time' macro.
21769         (password-cache-add): Use `run-at-time' instead of
21770         `password-run-at-time'.
21771
21772         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
21773         Remove `nnheader-cancel-function-timers' alias,
21774         `cancel-function-timers' exists in XEmacs in timer-funcs.
21775
21776         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
21777         for `run-with-idle-timer'.
21778
21779         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
21780         for `run-at-time'.
21781
21782         * mm-url.el: Require timer-funcs at compile time when in XEmacs
21783         for `with-timeout'.
21784
21785         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
21786         the same as for XEmacs 21.4.
21787         No need to ignore `run-with-idle-timer', this function exists in
21788         XEmacs now in timer-funcs.el in the xemacs-base package.
21789         (dgnushack-compile): No need to delete
21790         run-at-time.el from the list of files to compile because it
21791         doesn't exist anymore.
21792
21793 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21794
21795         * mml.el (mml-generate-mime-1): Convert string into unibyte when
21796         inserting " *mml*" buffer's contents into a unibyte temp buffer.
21797
21798 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
21799
21800         * mail-source.el (mail-source-fetch-imap): Search for ^From case
21801         sensitively.
21802
21803 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
21804
21805         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
21806
21807 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21808
21809         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
21810         which will be inserted according to the multibyteness of a buffer
21811         rather than the type of contents.  Suggested by ARISAWA Akihiro
21812         <ari@mbf.ocn.ne.jp>.
21813
21814         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
21815         of string which old xml.el may return rather than a string.
21816
21817 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21818
21819         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
21820
21821 2005-01-16  Simon Josefsson  <jas@extundo.com>
21822
21823         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
21824         idn/idna.el isn't available.
21825         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
21826         <michael@waxrat.com>.
21827
21828         * hashcash.el: Remove non-FSF copyright header.
21829
21830         * hashcash.el (hashcash-extra-generate-parameters): New variable.
21831         (hashcash-generate-payment): Use it.
21832         (hashcash-generate-payment-async): Use it.
21833
21834 2005-01-15  Simon Josefsson  <jas@extundo.com>
21835
21836         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
21837         Suggested by Raymond Scholz <ray-2005@zonix.de>.
21838
21839         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
21840         gnus-summary-idna-message.
21841         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
21842         (gnus-summary-idna-message): New function.
21843
21844 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
21845
21846         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
21847         gnus-novice-user.
21848
21849 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21850
21851         * nnrss.el (nnrss-request-delete-group): Delete entries in
21852         nnrss-group-alist as well.
21853         (nnrss-save-server-data): Insert newline.
21854
21855 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
21856
21857         * gnus.el (gnus-user-agent): Use list of symbols instead of
21858         symbols.  Display full version number for (S)XEmacs.
21859         Optionally display (S)XEmacs codename.
21860
21861         * gnus-util.el (gnus-emacs-version): Update for new
21862         `gnus-user-agent'.
21863
21864         * gnus-msg.el (gnus-extended-version): Make it possible to omit
21865         Gnus version.
21866
21867 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21868
21869         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
21870         which is unreadable in some setups.
21871
21872 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21873
21874         * gnus-spec.el (gnus-update-format-specifications): Flush the
21875         group format spec cache if it doesn't support decoded group names.
21876
21877 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
21878
21879         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
21880         Allow to apply decay on score files matching a regexp.
21881
21882 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21883
21884         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
21885         compatibility in %g and %c.
21886
21887 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21888
21889         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
21890         name for only %g and %c.
21891         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
21892         of gnus-tmp-group to decoded group name.
21893         (gnus-group-make-rss-group): Exclude `/'s from group names.
21894
21895 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21896
21897         * nnrss.el (nnrss-get-encoding): Fix regexp.
21898
21899 2004-12-27  Simon Josefsson  <jas@extundo.com>
21900
21901         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
21902         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
21903         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
21904
21905 2004-12-17  Kim F. Storm  <storm@cua.dk>
21906
21907         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
21908
21909         * gnus-sum.el (gnus-summary-mode-map): Likewise.
21910
21911 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21912
21913         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
21914
21915 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21916
21917         * nnrss.el: Require rfc2047 and mml.
21918         (nnrss-file-coding-system): New variable.
21919         (nnrss-format-string): Redefine it as an inline function.
21920         (nnrss-decode-group-name): New function.
21921         (nnrss-string-as-multibyte): Remove.
21922         (nnrss-retrieve-headers): Decode group name; don't use
21923         nnrss-format-string.
21924         (nnrss-request-group): Decode group name.
21925         (nnrss-request-article): Decode group name; allow a Message-ID as
21926         well as an article number; don't use nnrss-format-string; encode a
21927         Message-ID string which may contain non-ASCII characters; use
21928         mml-to-mime to compose a MIME article.
21929         (nnrss-request-expire-articles): Decode group name.
21930         (nnrss-request-delete-group): Decode group name.
21931         (nnrss-fetch): Clarify error message.
21932         (nnrss-read-server-data): Use insert-file-contents instead of load;
21933         bind file-name-coding-system; use multibyte buffer.
21934         (nnrss-save-server-data): Bind coding-system-for-write to the
21935         value of nnrss-file-coding-system; bind file-name-coding-system;
21936         add coding cookie.
21937         (nnrss-read-group-data): Use insert-file-contents instead of load;
21938         bind file-name-coding-system; use multibyte buffer.
21939         (nnrss-save-group-data): Bind coding-system-for-write to the
21940         value of nnrss-file-coding-system; bind file-name-coding-system.
21941         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
21942         make it work with non-ASCII text.
21943         (nnrss-find-el): Make it work with old xml.el as well.
21944
21945 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21946
21947         * nnrss.el (nnrss-get-encoding): New function.
21948         (nnrss-fetch): Use unibyte buffer initially; bind
21949         coding-system-for-read while performing mm-url-insert; remove ^Ms;
21950         decode contents according to the encoding attribute.
21951         (nnrss-save-group-data): Add coding cookie.
21952         (nnrss-mime-encode-string): New function.
21953         (nnrss-check-group): Use it to encode subject and author.
21954
21955 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
21956
21957         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
21958         imaginary variable.
21959
21960 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21961
21962         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
21963         correctly even if there are wide characters.
21964
21965 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
21966
21967         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
21968         downcased symbol names; make a new cache instead of reusing
21969         bbdb-hashtable.
21970
21971 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
21972
21973         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
21974         concatenating segments rather than before concatenating them.
21975         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21976
21977         * message.el (message-get-reply-headers): Bind `extra'.
21978
21979 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21980
21981         * message.el (message-extra-wide-headers): New variable.
21982         (message-get-reply-headers): Use it.
21983
21984 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21985
21986         * gnus-agent.el (gnus-agent-group-path): Decode group name.
21987         (gnus-agent-group-pathname): Ditto.
21988
21989         * gnus-cache.el (gnus-cache-file-name): Decode group name.
21990
21991         * gnus-group.el (gnus-group-make-group): Decode group name.
21992         (gnus-group-make-rss-group): Register the group data after opening
21993         the nnrss group.
21994
21995 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
21996
21997         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
21998         by expiry now get marked as read.
21999
22000 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22001
22002         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
22003
22004 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
22005
22006         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
22007         unify Latin characters in XEmacs.
22008         (mm-find-mime-charset-region): Use it.
22009
22010 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22011
22012         * gnus-util.el (gnus-delete-directory): New function.
22013
22014         * gnus-agent.el (gnus-agent-delete-group): Use it.
22015
22016         * gnus-cache.el (gnus-cache-delete-group): Use it.
22017
22018 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22019
22020         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
22021         names.
22022
22023 2004-12-16  Simon Josefsson  <jas@extundo.com>
22024
22025         * hashcash.el (hashcash-payment-alist): Fix custom :type.
22026
22027 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22028
22029         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
22030
22031         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
22032         (gnus-group-set-current-level): Decode group name.
22033
22034 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
22035
22036         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
22037         failed.
22038
22039 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22040
22041         * gnus-group.el (gnus-group-delete-group): Decode group name.
22042         (gnus-group-make-rss-group): Encode group name.
22043         (gnus-group-catchup-current): Decode group name.
22044         (gnus-group-kill-group): Decode group name.
22045
22046 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22047
22048         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
22049
22050 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22051
22052         * gnus-group.el (gnus-group-make-rss-group):
22053         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
22054
22055         * gnus-start.el (gnus-setup-news): Honor user's setting to
22056         gnus-message-archive-method.  Suggested by Lute Kamstra
22057         <lute@gnu.org>.
22058
22059 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
22060
22061         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
22062         global counterparts of the buffer-local variables.
22063
22064 2004-11-16  Romain Francoise  <romain@orebokech.com>
22065
22066         * gnus-sum.el (gnus-summary-exit): Don't clear the global
22067         counterparts of the buffer-local variables.
22068
22069 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22070
22071         * message.el (message-forbidden-properties): Fix typo in doc
22072         string.
22073
22074 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22075
22076         * gnus-util.el (gnus-replace-in-string): Add doc string.
22077
22078         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
22079         to avoid problems when splitting mails with many recipients.
22080
22081 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22082
22083         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
22084         pop-to-buffer, covered by the subsequent gnus-configure-windows.
22085
22086 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
22087
22088         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
22089         if there is no hashtable in memory or file modification time is
22090         newer than cached timestamp.
22091
22092 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
22093
22094         * gnus-sum.el (gnus-summary-limit-to-recipient):
22095         Implement not-matching option.
22096
22097 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
22098
22099         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
22100         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
22101         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
22102         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
22103         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
22104         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
22105
22106 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22107
22108         * message.el (message-forward-make-body-mml): Remove headers
22109         according to message-forward-ignored-headers if a message is decoded.
22110
22111 2004-12-02  Romain Francoise  <romain@orebokech.com>
22112
22113         * message.el (message-forward-make-body-plain): Always remove
22114         headers according to message-forward-ignored-headers.
22115
22116 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
22117
22118         * spam.el (spam-summary-prepare-exit): Remove the
22119         gnus-summary-limit pop for now, it has problems with ham marks for
22120         me.
22121
22122 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
22123
22124         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
22125         correctly.
22126
22127 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
22128
22129         * format-spec.el (format-spec): Message the char.
22130
22131 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
22132
22133         * gnus-art.el (gnus-split-methods): Reformat comments.
22134
22135         * spam.el (spam-summary-prepare-exit): Remove article limits
22136         before exiting the summary buffer.
22137
22138 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22139
22140         * lpath.el: Remove bbdb-create-internal, bbdb-records,
22141         spam-BBDB-register-routine and spam-enter-ham-BBDB.
22142
22143         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
22144         order to silence the byte compiler.
22145
22146         * spam.el: Fix the way to silence the byte compiler, which
22147         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
22148         bbdb-search-simple, spam-BBDB-register-routine,
22149         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
22150         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
22151         spam-stat-buffer-is-spam, spam-stat-load,
22152         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
22153         spam-stat-save and spam-stat-split-fancy.
22154
22155 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22156
22157         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
22158         which may confuse users.
22159         (canlock-password-for-verify): Ditto.
22160
22161         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
22162
22163         * gnus-art.el (gnus-emphasis-alist): Ditto.
22164
22165         * gnus-registry.el (gnus-registry-max-entries): Ditto.
22166
22167         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
22168
22169         * gnus-start.el (gnus-save-killed-list): Ditto.
22170
22171         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
22172         (gnus-sum-thread-tree-root): Ditto.
22173         (gnus-sum-thread-tree-false-root): Ditto.
22174         (gnus-sum-thread-tree-single-indent): Ditto.
22175
22176         * message.el (message-courtesy-message): Ditto.
22177         (message-archive-note): Ditto.
22178         (message-subscribed-address-file): Ditto.
22179         (message-user-fqdn): Ditto.
22180
22181         * spam-report.el (spam-report-gmane-regex): Ditto.
22182
22183         * spam.el (spam-blackhole-good-server-regex): Ditto.
22184
22185 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22186
22187         * mml.el (mml-preview): Widen the message buffer before copying
22188         the contents to the preview buffer; sort headers before previewing.
22189
22190         * message.el (message-hidden-headers): Fix the way to avoid a bug
22191         in the `repeat' widget in Emacs 21.3 or earlier.
22192
22193 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22194
22195         * message.el (message-hidden-headers): Default to "^References:".
22196         Improve customization type.  Suggested by Reiner Steib
22197         <Reiner.Steib@gmx.de>.
22198
22199 2004-11-25  Romain Francoise  <romain@orebokech.com>
22200
22201         * message.el (message-strip-forbidden-properties): Remove check for
22202         obsolete `message-hidden' text property, hidden headers are not
22203         accessible in the buffer anymore.
22204
22205 2004-11-22  Romain Francoise  <romain@orebokech.com>
22206
22207         * message.el (message-header-format-alist): Add `From' in list
22208         so that it can be sorted.
22209         (message-fix-before-sending): Widen and sort headers before
22210         sending.
22211         (message-hide-headers): Use narrowing to hide headers by moving
22212         them to the top of the buffer and narrowing to the region
22213         underneath.
22214
22215 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22216
22217         * message.el (message-strip-forbidden-properties):
22218         Bind buffer-read-only (etc) to nil.
22219
22220 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
22221
22222         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
22223         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
22224
22225 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
22226
22227         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
22228
22229 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22230
22231         * dns.el (query-dns): Use sit-for to time instead of
22232         accept-process-output, since that doesn't seem to work on udp
22233         sockets.
22234
22235 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22236
22237         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
22238
22239 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
22240
22241         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
22242         doc string.  Improve doc string.
22243
22244 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22245
22246         * nntp.el (nntp-request-update-info): Return nil if
22247         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
22248         may not call gnus-activate-group which uselessly issues the GROUP
22249         commands for all nntp groups and wastes time.  Reported by Romain
22250         Francoise <romain@orebokech.com>.
22251
22252         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
22253
22254 2004-11-15  Simon Josefsson  <jas@extundo.com>
22255
22256         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
22257         headers separately.
22258         (gnus-button-openpgp): New function, inspired by Jochen Küpper
22259         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
22260
22261 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
22262
22263         * gnus-start.el (gnus-convert-old-newsrc):
22264         Assign legacy-gnus-agent to 5.10.7.
22265
22266 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22267
22268         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
22269         start of the lines.
22270
22271 2004-11-14  Magnus Henoch  <mange@freemail.hu>
22272
22273         * hashcash.el (hashcash-default-payment): Change default to 20.
22274         (hashcash-default-accept-payment): Change default to 20.
22275         (hashcash-process-alist): New variable.
22276         (hashcash-generate-payment-async): Add.
22277         (hashcash-already-paid-p): Add.
22278         (hashcash-insert-payment): Don't generate payments twice.
22279         (hashcash-insert-payment-async): Add.
22280         (hashcash-insert-payment-async-2): Add.
22281         (hashcash-cancel-async): Add.
22282         (hashcash-wait-async): Add.
22283         (hashcash-processes-running-p): Add.
22284         (hashcash-wait-or-cancel): Add.
22285         (mail-add-payment): New optional argument.  Conditionally start
22286         asynchronous calculation.
22287         (mail-add-payment-async): Add.
22288
22289         * message.el (message-send-mail): Wait for asynchronous hashcash
22290         results.  Don't clobber existing X-Hashcash headers.
22291         (message-setup-1): Call mail-add-payment-async when
22292         message-generate-hashcash is non-nil.
22293
22294 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
22295
22296         * message.el (message-use-alternative-email-as-from): Examine the
22297         From header as well; use message-make-from in order to include a
22298         user's full name.
22299
22300 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
22301
22302         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
22303         default; improve customization type.
22304         (gnus-emphasis-custom-with-format): New macro.
22305         (gnus-emphasis-custom-value-to-external): New function.
22306         (gnus-emphasis-custom-value-to-internal): New function.
22307
22308 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22309
22310         * dns.el (query-dns): Resolve reverse addresses.
22311
22312 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22313
22314         * gnus-group.el (gnus-group-get-new-news): Use it.
22315
22316         * gnus-start.el (gnus-check-reasonable-setup): New function.
22317
22318 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22319
22320         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
22321         "Args out of range" error.  Reported by Arnaud Giersch
22322         <arnaud.giersch@free.fr>.
22323
22324 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
22325
22326         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
22327
22328 2004-11-04  Richard M. Stallman  <rms@gnu.org>
22329
22330         * spam.el (spam group): Add :version.
22331
22332         * pgg-def.el (pgg group): Add :version.
22333
22334 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22335
22336         * gnus-art.el (gnus-article-edit-article): Don't associate the
22337         article buffer with a draft file.  This is a temporary measure
22338         against the 2004-08-22 change to gnus-article-edit-mode.
22339
22340 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22341
22342         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
22343         (html2text-format-tags): Remove unused variable `attr'.
22344
22345 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
22346
22347         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
22348
22349         * tls.el (tls-process-connection-type, tls-success)
22350         (tls-certtool-program): Add :version.
22351
22352         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
22353         (starttls-extra-arguments, starttls-process-connection-type)
22354         (starttls-connect, starttls-failure, starttls-success): Add :version.
22355
22356         * spam-stat.el (spam-stat): Add :version.
22357
22358         * sieve.el (sieve): Add :version.
22359
22360         * sha1.el (sha1): Add :version.
22361         (sha1-use-external): Remove redundant version.
22362
22363         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
22364         (nnmail-cache-ignore-groups, nnmail-spool-hook)
22365         (nnmail-split-fancy-match-partial-words)
22366         (nnmail-split-lowercase-expanded): Add :version.
22367
22368         * nndiary.el (nndiary): Add :version.
22369
22370         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
22371
22372         * mml-sec.el (mml-default-sign-method)
22373         (mml-default-encrypt-method, mml-signencrypt-style-alist):
22374         Add :version.
22375
22376         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
22377
22378         * mm-url.el (mm-url-use-external, mm-url-program)
22379         (mm-url-arguments): Add :version.
22380
22381         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
22382         (mm-attachment-file-modes, mm-decrypt-option)
22383         (mm-w3m-safe-url-regexp): Add :version.
22384
22385         * message.el (message-cite-prefix-regexp)
22386         (message-sendmail-envelope-from, message-minibuffer-local-map)
22387         (message-user-fqdn, message-completion-alist): Add :version.
22388
22389         * gnus-win.el (gnus-configure-windows-hook)
22390         (gnus-use-frames-on-any-display): Add :version.
22391
22392         * gnus-art.el (gnus-article-address-banner-alist)
22393         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
22394         (gnus-treat-from-picon, gnus-treat-mail-picon)
22395         (gnus-treat-x-pgp-sig): Add :version.
22396
22397         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
22398         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
22399         (gnus-summary-article-delete-hook)
22400         (gnus-summary-display-while-building): Add :version.
22401
22402         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
22403         (gnus-get-top-new-news-hook): Add :version.
22404
22405         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
22406         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
22407
22408         * gnus-registry.el (gnus-registry): Add :version.
22409
22410         * gnus-spec.el (gnus-use-correct-string-widths)
22411         (gnus-make-format-preserve-properties): Add :version.
22412
22413         * gnus.el (gnus-group-charter-alist)
22414         (gnus-group-fetch-control-use-browse-url)
22415         (gnus-install-group-spam-parameters): Add :version.
22416
22417         * gnus-diary.el (gnus-diary): Add :version.
22418
22419         * gnus-delay.el (gnus-delay): Add :version.
22420
22421         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
22422         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
22423         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
22424         Add :version.
22425
22426         * gnus-agent.el (gnus-agent-max-fetch-size)
22427         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
22428         (gnus-agent-prompt-send-queue): Add :version.
22429
22430         * deuglify.el (gnus-outlook-deuglify): Add :version.
22431
22432         * html2text.el: Beautify code.  Improve doc strings.
22433         Some checkdoc cleanup.
22434         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
22435
22436 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
22437
22438         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
22439
22440 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
22441
22442         * gnus-registry.el (gnus-registry-hashtb): Create the registry
22443         when package is loaded.
22444
22445         * spam.el (spam-summary-score-preferred-header): Add global preference
22446         for people who want to override the default SpamAssassin over
22447         Bogofilter preference (when both are set).
22448         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
22449         (spam-user-format-function-S):
22450         Check spam-summary-score-preferred-header.
22451         (spam-extra-header-to-number): Add X-Bogosity header parsing.
22452         (spam-user-format-function-S): Format the score correctly.
22453
22454 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22455
22456         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
22457         signature file.  Suggested by Manoj Srivastava
22458         <srivasta@golden-gryphon.com>.
22459
22460         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
22461         iso-2022-jp even in the Japanese language environment.
22462         Suggested by Jason Rumney <jasonr@gnu.org>.
22463
22464 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22465
22466         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
22467         use the same characters as the dummy marks; make it free from
22468         getting affected by the language environment.
22469         (gnus-summary-read-group-1): Update mark positions only when the
22470         format spec is updated.
22471
22472         * gnus-spec.el (gnus-update-format-specifications): Return a list
22473         of updated types.
22474
22475 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22476
22477         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
22478         of boundp to check if display-warning is available.
22479
22480 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
22481
22482         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
22483
22484 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22485
22486         * nnspool.el (nnspool-spool-directory): Use news-path if the
22487         news-directory variable is not bound.
22488
22489         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
22490         function instead of display-warning if it is not available.
22491
22492 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
22493
22494         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
22495         v5-10: Use `point-at-bol'.
22496
22497 2004-10-26  Simon Josefsson  <jas@extundo.com>
22498
22499         * hashcash.el: Fix URL in comment, reported by Cheng Gao
22500         <chenggao@gmail.com>.
22501
22502 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
22503
22504         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
22505         instead.
22506
22507 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
22508
22509         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
22510         to remove a server from the nnimap-server-buffer-alist.
22511         (nnimap-open-connection, nnimap-close-server): Use it.
22512
22513         * gnus-encrypt.el: Remove file in favor of encrypt.el.
22514
22515 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22516
22517         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
22518         running the major-mode function.
22519
22520 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22521
22522         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
22523         dummy marks in the right way.
22524
22525 2004-10-18  David Edmondson  <dme@dme.org>
22526
22527         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
22528         excessively.
22529
22530 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
22531
22532         * gnus-util.el (gnus-split-references): Accept a nil references
22533         string and go on blissfully.
22534
22535         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
22536         cases where the references string is non-nil but has no references.
22537
22538         * encrypt.el: Add autoload tags.
22539
22540         * spam.el (spam-resolve-registrations-routine): Remove article
22541         from unregistration list too.  Reported by David Hanak
22542         <dhanak@isis.vanderbilt.edu>
22543
22544 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
22545
22546         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
22547         nil.  Change custom type.
22548
22549 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
22550
22551         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
22552
22553         * gnus-sum.el (gnus-summary-move-article): Use it.
22554
22555 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
22556
22557         * encrypt.el: Add autoload cookies.
22558
22559         * spam.el (spam-backend-article-list-property)
22560         (spam-backend-get-article-todo-list)
22561         (spam-backend-put-article-todo-list)
22562         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
22563         Resolve registrations separately.
22564         (spam-register-routine): Format comments.
22565         (spam-unregister-routine, spam-register-routine): Always call with
22566         specific-articles, no default list.
22567         (spam-summary-prepare-exit): Use the spam-classifications function.
22568
22569         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
22570         gnus-encrypt.el.
22571
22572         * encrypt.el: Copied from gnus-encrypt.el.
22573
22574         * gnus-encrypt.el: Commented that it's obsolete.
22575
22576 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22577
22578         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
22579         (gnus-score-save): Use it.
22580
22581         * message.el (message-bury): Use `window-dedicated-p'.
22582
22583 2004-10-15  Simon Josefsson  <jas@extundo.com>
22584
22585         * pop3.el (top-level): Don't require nnheader.
22586         (pop3-read-timeout): Add.
22587         (pop3-accept-process-output): Add.
22588         (pop3-read-response, pop3-retr): Use it.
22589
22590 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
22591
22592         * spam.el (spam-register-routine): Move comment.
22593         (spam-verify-bogofilter): Use 'unknown for the initial
22594         spam-bogofilter-valid state, not 'never.
22595
22596         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
22597         for netrc-machine.
22598
22599         * nnimap.el (nnimap-open-connection):
22600         Use netrc-machine-user-or-password.
22601
22602 2004-10-17  Richard M. Stallman  <rms@gnu.org>
22603
22604         * gnus-registry.el (gnus-registry-unload-hook):
22605         Set as a variable with add-hook.
22606
22607         * nnspool.el (nnspool-spool-directory): Use news-directory instead
22608         of news-path.
22609
22610         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
22611
22612         * spam.el: Delete duplicate `provide'.
22613         (spam-unload-hook): Set as a variable with add-hook.
22614
22615 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22616
22617         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
22618         in the doc string.
22619
22620         * message.el (message-ignored-news-headers)
22621         (message-ignored-supersedes-headers)
22622         (message-ignored-resent-headers)
22623         (message-forward-ignored-headers): Improve custom type.
22624
22625 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22626
22627         * message.el (message-tokenize-header): Fix 2004-09-06 change
22628         which used point-min in the wrong place.
22629
22630 2004-10-12  Simon Josefsson  <jas@extundo.com>
22631
22632         * tls.el (tls-certtool-program): New variable.
22633         (tls-certificate-information): New function, based on
22634         ssl-certificate-information.
22635
22636 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22637
22638         * compface.el: Move the version of ELisp-based uncompface program
22639         to the contrib directory because of the copyright problem.
22640
22641 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22642
22643         * message.el (message-kill-buffer): Raise the current frame.
22644
22645 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
22646
22647         * gnus-sum.el: Mention that multibyte characters don't work as marks.
22648
22649         * gnus.el (message-y-or-n-p): Autoload.
22650
22651         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
22652         (pop3-password-required, pop3-authentication-scheme)
22653         (pop3-leave-mail-on-server): Make customizable.
22654         (pop3): New custom group.
22655         (pop3-retr): Remove `sleep-for' statements.
22656         Suggested by Dave Love <fx@gnu.org>.
22657
22658         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
22659         Windows/DOS.
22660
22661         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
22662         (imap-parse-body): Fix incorrect use of `assert'.
22663         Suggested by Dave Love <fx@gnu.org>.
22664
22665         * mml.el (mml-minibuffer-read-disposition): Require match.
22666         Suggested by Dave Love <fx@gnu.org>.
22667
22668 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22669
22670         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
22671         doc string.
22672
22673 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22674
22675         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
22676
22677 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22678
22679         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
22680         instead of calling `mm-insert-inline', to decode text/* parts
22681         before displaying them.
22682
22683 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22684
22685         * mm-uu.el (mm-uu-text-plain-type): New variable.
22686         (mm-uu-pgp-signed-extract-1): Use it.
22687         (mm-uu-pgp-encrypted-extract-1): Use it.
22688         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
22689         bind mm-uu-text-plain-type with that value.
22690         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
22691         mm-uu-dissect.
22692
22693 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22694
22695         * gnus-group.el (gnus-update-group-mark-positions):
22696         * gnus-sum.el (gnus-update-summary-mark-positions):
22697         * message.el (message-check-news-body-syntax):
22698         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
22699         of string-as-multibyte.
22700
22701 2004-10-05  Juri Linkov  <juri@jurta.org>
22702
22703         * gnus-group.el (gnus-update-group-mark-positions):
22704         * gnus-sum.el (gnus-update-summary-mark-positions):
22705         * message.el (message-check-news-body-syntax):
22706         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
22707         8-bit unibyte values to a multibyte string for search functions.
22708
22709 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22710
22711         * mm-uu.el (mm-uu-dissect): Allow optional arg.
22712         (mm-uu-dissect-text-parts): New function.
22713
22714         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
22715         dissect text parts.
22716
22717         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
22718         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
22719
22720         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
22721
22722         * gnus-topic.el (gnus-topic-hierarchical-parameters):
22723         Use gnus-current-topics instead of gnus-current-topic.
22724
22725 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
22726
22727         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
22728
22729 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
22730
22731         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
22732         where appropriate.
22733
22734         * nnml.el (nnml-generate-active-info): do.
22735
22736         * nndiary.el (nndiary-generate-active-info): do.
22737
22738         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
22739         (gnus-topic-move): do.
22740
22741         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
22742         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
22743
22744         * gnus-srvr.el (gnus-server-prepare)
22745         (gnus-server-open-all-servers): do.
22746
22747         * gnus-msg.el (gnus-summary-cancel-article)
22748         (gnus-summary-resend-message)
22749         (gnus-summary-mail-crosspost-complaint): do.
22750
22751         * gnus-move.el (gnus-change-server): do.
22752
22753         * gnus-group.el (gnus-group-unmark-all-groups)
22754         (gnus-group-set-current-level): do.
22755
22756 2004-10-04  Simon Josefsson  <jas@extundo.com>
22757
22758         * message.el (message-generate-hashcash): Doc fix.
22759
22760 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
22761
22762         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
22763         avoid infinite recursion via gnus-get-function.
22764
22765 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
22766
22767         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
22768
22769         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
22770
22771         * nnmail.el (nnmail-split-history): do.
22772
22773         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
22774         (nnml-request-delete-group): do.
22775
22776         * nnslashdot.el (nnslashdot-read-groups): do.
22777
22778         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
22779         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
22780
22781         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
22782         (nnspool-sift-nov-with-sed): Use last.
22783         (nnspool-retrieve-headers-with-nov): Use mapc.
22784         (nnspool-request-newgroups): Use dolist.
22785         (nnspool-request-group): Use last.
22786
22787         * nntp.el (nntp-read-server-type): Use dolist.
22788
22789         * nnvirtual.el (nnvirtual-create-mapping)
22790         (nnvirtual-update-read-and-marked): Use dolist.
22791         (nnvirtual-convert-headers): Simplify.
22792
22793 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22794
22795         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22796         Add support for sync'ing tick marks.
22797
22798 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22799
22800         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
22801         there's no visible header.
22802
22803 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22804
22805         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22806         When necessary, pass full group name to gnus-request-set-marks.
22807
22808 2004-10-01  Simon Josefsson  <jas@extundo.com>
22809
22810         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
22811         acroread.
22812
22813 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22814
22815         * spam-report.el (spam-report-gmane): Fix interactive.
22816
22817         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
22818
22819         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
22820         when writing file.
22821         (gnus-agent-synchronize-flags): Don't default to being
22822         interactive.
22823
22824 2004-09-30  Simon Josefsson  <jas@extundo.com>
22825
22826         * message.el (message-generate-hashcash): Add.
22827         (message-send-mail): Use it, call mail-add-payment.
22828
22829 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
22830
22831         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
22832
22833 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
22834
22835         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
22836         gnus-requst-update-info with explicit code to sync the in-memory
22837         info read flags with the marks being sync'd to the backend.
22838
22839         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
22840
22841 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22842
22843         * spam.el (spam-verify-bogofilter): Add new function.
22844         (spam-check-bogofilter)
22845         (spam-bogofilter-register-with-bogofilter): Use it.
22846         (spam-verify-bogofilter): Add small fixes.
22847
22848 2004-09-28  Simon Josefsson  <jas@extundo.com>
22849
22850         * hashcash.el (hashcash-generate-payment): Revert.
22851
22852 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22853
22854         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
22855         Use gnus-extract-references instead of gnus-split-references.
22856
22857         * gnus-util.el (gnus-extract-references): Add new function, analogous
22858         to gnus-split-references but extracts only the message-ID without
22859         anything extra.
22860
22861         * hashcash.el (hashcash-generate-payment)
22862         (hashcash-check-payment): Do the right thing if hashcash-path is
22863         nil (because the hashcash program could not be found).
22864
22865         * spam.el (spam-use-hashcash): Remove comment.
22866
22867 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
22868
22869         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
22870         (gnus-cache-enter-article, gnus-cache-remove-article)
22871         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
22872
22873         * gnus-async.el (gnus-async-prefetch-remove-group): do.
22874
22875         * gnus-art.el (article-hide-boring-headers)
22876         (article-translate-strings, article-display-face)
22877         (gnus-article-mime-match-handle-first)
22878         (gnus-article-highlight-headers)
22879         (gnus-article-add-buttons-to-head): do.
22880
22881 2004-09-27  Simon Josefsson  <jas@extundo.com>
22882
22883         * hashcash.el: New version, from
22884         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
22885         ../contrib/.
22886
22887 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22888
22889         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
22890
22891 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
22892
22893         * gnus-dup.el (gnus-dup-open): Use mapc.
22894         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
22895
22896         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
22897         Reported by Stefan Wiens <s.wi@gmx.net>.
22898
22899         * gnus.el (gnus-shutdown): Use dolist.
22900
22901         * gnus-undo.el (gnus-undo): Use mapc.
22902
22903         * nnrss.el (nnrss-generate-active): do.
22904
22905         * message.el (message-cite-original-without-signature)
22906         (message-cite-original): Use mapc.
22907         (message-do-actions, message-make-forward-subject): Use dolist.
22908
22909 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22910
22911         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
22912         deletion to remove entire duplicate line.  Fixes merged article
22913         number bug.
22914
22915 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22916
22917         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
22918         servers that are offline.  Avoids having gnus-agent-toggle-plugged
22919         first ask if you want to open a server and then, even when you
22920         responded with no, asking if you want to synchronize the server's
22921         flags.
22922         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
22923         multi-line expressions.
22924         (gnus-agent-synchronize-group-flags): New internal function.
22925         Updates marks in memory (in the info structure) AND in the
22926         backend.
22927
22928         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
22929
22930         * nnagent.el (nnagent-request-set-mark):
22931         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
22932         method, to ensure that synchronization updates marks in the
22933         backend and in the info (in memory) structure.
22934
22935 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
22936
22937         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
22938         convention fully; don't miss the root article of a thread; make
22939         the X-Draft-From header with correct article numbers.
22940
22941 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
22942
22943         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
22944         unless plugged.  Disable the agent so that an open failure causes
22945         an error.
22946
22947         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
22948         Revert 2004-09-21 change.  The backend must be opened while
22949         synchronizing flags even when the backend stores the flags
22950         locally.
22951
22952 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
22953
22954         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
22955         in `header' match.  Reported by Svend Tollak Munkejord.
22956
22957         * message.el (message-cite-original): Fix use of
22958         `message-cite-articles-with-x-no-archive'.
22959
22960 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22961
22962         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
22963         (gnus-window-to-buffer): Ditto.
22964
22965         * mml.el (mml-preview-buffer): New variable.
22966         (mml-preview): Manage window layout with gnus-buffer-configuration.
22967
22968         * gnus-msg.el (gnus-setup-message): Put article numbers into the
22969         X-Draft-From header even if those articles aren't quoted.
22970
22971 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
22972
22973         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
22974         (gnus-request-set-mark, gnus-request-update-mark): Use new
22975         g-s-t-u-l-m to decide to use backend even when unplugged.
22976
22977 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22978
22979         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
22980         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
22981
22982 2004-09-20  Simon Josefsson  <jas@extundo.com>
22983
22984         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
22985         "utf-16-le".
22986
22987 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22988
22989         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
22990
22991 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22992
22993         * uudecode.el (uudecode-use-external): Add :version.
22994
22995         * smime.el (smime-CA-file, smime-encrypt-cipher)
22996         (smime-dns-server): Add :version.
22997
22998         * smiley.el (gnus-smiley-file-types): Add :version.
22999
23000         * sha1.el (sha1-use-external): Add :version.
23001
23002         * pgg-def.el (pgg-query-keyserver): Add :version.
23003
23004         * nnmail.el (nnmail-fancy-expiry-targets)
23005         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
23006         Add :version.
23007
23008         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
23009         (nnimap-retrieve-groups-asynchronous): Add :version.
23010         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
23011
23012         * mml.el (mml-content-disposition-parameters)
23013         (mml-insert-mime-headers-always): Add :version.
23014
23015         * mm-util.el (mm-coding-system-priorities): Add :version.
23016
23017         * mm-decode.el (mm-inline-text-html-with-images)
23018         (mm-keep-viewer-alive-types, mm-external-terminal-program)
23019         (mm-verify-option): Add :version.
23020         (mm-text-html-renderer): Change :version.
23021
23022         * message.el (message-fcc-externalize-attachments)
23023         (message-required-headers, message-draft-headers)
23024         (message-subject-trailing-was-query)
23025         (message-subject-trailing-was-ask-regexp)
23026         (message-subject-trailing-was-regexp, message-mark-insert-begin)
23027         (message-mark-insert-end, message-archive-header)
23028         (message-archive-note, message-cross-post-default)
23029         (message-cross-post-note, message-followup-to-note)
23030         (message-cross-post-note-function, message-use-mail-followup-to)
23031         (message-subscribed-address-functions)
23032         (message-subscribed-address-file, message-subscribed-addresses)
23033         (message-subscribed-regexps, message-allow-no-recipients)
23034         (message-yank-cited-prefix, message-signature-insert-empty-line)
23035         (message-hidden-headers, message-hierarchical-addresses)
23036         (message-mail-user-agent, message-use-idna)
23037         (message-valid-fqdn-regexp)
23038         (message-strip-special-text-properties, message-header-synonyms)
23039         (message-beginning-of-line, message-tab-body-function): Add :version.
23040         (message-insert-canlock, message-wide-reply-confirm-recipients):
23041         Change :version.
23042
23043         * mail-source.el (mail-source-ignore-errors): Add :group, :type
23044         and :version.
23045         (mail-source-delete-old-incoming-confirm)
23046         (mail-source-movemail-program): Add :version.
23047
23048         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
23049         (gnus-agent-cache, gnus-agent): Change :version.
23050
23051         * gnus-util.el (gnus-use-byte-compile): Change :version.
23052
23053         * gnus-sum.el (gnus-summary-make-false-root-always)
23054         (gnus-summary-default-high-score)
23055         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
23056         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
23057         (gnus-read-all-available-headers, gnus-article-emulate-mime)
23058         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
23059         (gnus-sum-thread-tree-single-indent)
23060         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
23061         (gnus-sum-thread-tree-leaf-with-other)
23062         (gnus-sum-thread-tree-single-leaf): Add :version.
23063         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
23064         (gnus-article-loose-mime): Change :version.
23065
23066         * gnus-start.el (gnus-backup-startup-file)
23067         (gnus-save-startup-file-via-temp-buffer): Add :version.
23068
23069         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
23070         (gnus-server-offline-face): Add :version.
23071
23072         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
23073
23074         * gnus-msg.el (gnus-gcc-externalize-attachments)
23075         (gnus-debug-files, gnus-debug-exclude-variables)
23076         (gnus-discouraged-post-methods): Change :version.
23077         (gnus-confirm-mail-reply-to-news)
23078         (gnus-confirm-treat-mail-like-news): Add :version.
23079
23080         * gnus-int.el (gnus-server-unopen-status): Add :version.
23081
23082         * gnus-group.el (gnus-group-jump-to-group-prompt)
23083         (gnus-large-ephemeral-newsgroup)
23084         (gnus-fetch-old-ephemeral-headers): Add :version.
23085
23086         * gnus-fun.el (gnus-x-face-directory)
23087         (gnus-convert-pbm-to-x-face-command)
23088         (gnus-convert-image-to-x-face-command)
23089         (gnus-convert-image-to-face-command): Add :version.
23090
23091         * gnus-delay.el (gnus-delay-default-hour): Add :version.
23092
23093         * gnus-cite.el (gnus-cite-blank-line-after-header)
23094         (gnus-article-boring-faces): Add :version.
23095
23096         * gnus-art.el (gnus-buttonized-mime-types)
23097         (gnus-inhibit-mime-unbuttonizing)
23098         (gnus-treat-display-face)
23099         (gnus-treat-body-boundary): Change :version.
23100         (gnus-body-boundary-delimiter, gnus-picon-databases)
23101         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
23102         (gnus-treat-date-english, gnus-treat-fold-headers)
23103         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
23104         (gnus-treat-mail-picon, gnus-treat-wash-html)
23105         (gnus-article-encrypt-protocol)
23106         (gnus-use-idna, gnus-article-over-scroll)
23107         (gnus-mime-display-multipart-alternative-as-mixed)
23108         (gnus-mime-display-multipart-related-as-mixed)
23109         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
23110         (gnus-ctan-url, gnus-button-ctan-handler)
23111         (gnus-button-handle-ctan-bogus-regexp)
23112         (gnus-button-ctan-directory-regexp)
23113         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
23114         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
23115         (gnus-button-man-level, gnus-button-emacs-level)
23116         (gnus-button-message-level, gnus-button-browse-level): Add :version.
23117
23118         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
23119         (gnus-agent-go-online): Change :version.
23120         (gnus-agent-expire-unagentized-dirs)
23121         (gnus-agent-auto-agentize-methods): Add :version.
23122
23123         * flow-fill.el (fill-flowed-display-column)
23124         (fill-flowed-encode-column): Add :version.
23125
23126         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
23127         (gnus-outlook-deuglify-unwrap-max)
23128         (gnus-outlook-deuglify-cite-marks)
23129         (gnus-outlook-deuglify-unwrap-stop-chars)
23130         (gnus-outlook-deuglify-no-wrap-chars)
23131         (gnus-outlook-deuglify-attrib-cut-regexp)
23132         (gnus-outlook-deuglify-attrib-verb-regexp)
23133         (gnus-outlook-deuglify-attrib-end-regexp)
23134         (gnus-outlook-display-hook): Add :version.
23135
23136         * binhex.el (binhex-use-external): Add :version.
23137
23138 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
23139
23140         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
23141         and `invisible'.
23142
23143 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
23144
23145         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
23146         in gnus-registry-trim.
23147
23148 2004-09-13  Simon Josefsson  <jas@extundo.com>
23149
23150         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
23151
23152         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
23153
23154         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
23155         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23156         <yamaoka@jpl.org>.
23157         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
23158         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23159         <yamaoka@jpl.org>.
23160
23161         * sieve.el (sieve-manage-mode): Ditto.
23162
23163 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
23164
23165         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
23166
23167 2004-09-11  Simon Josefsson  <jas@extundo.com>
23168
23169         * dns-mode.el: Add.
23170
23171         * mm-view.el (mm-display-dns-inline): Add.
23172
23173         * mm-decode.el (mm-inline-media-tests): Add text/dns.
23174         (mm-automatic-display): Ditto.
23175
23176         * mailcap.el (mailcap-mime-data): Add text/dns.
23177         (mailcap-mime-extensions): Map .soa to text/dns.
23178
23179 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
23180
23181         * gnus-art.el (article-decode-mime-words, article-babel)
23182         (gnus-article-highlight-signature, gnus-article-add-buttons)
23183         (gnus-signature-toggle): Remove unnecessary bindings of
23184         `inhibit-read-only' inherited from v5.10 merge.
23185
23186 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
23187
23188         * nntp.el (nntp): New customization group.
23189         (nntp-authinfo-file): Add customization group.
23190
23191         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
23192
23193         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
23194
23195         * gnus.el (to-address, to-list, subscribed)
23196         (large-newsgroup-initial): Ditto.
23197
23198         * flow-fill.el (fill-flowed-display-column)
23199         (fill-flowed-encode-column): Ditto.
23200
23201 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23202
23203         * message.el (message-tokenize-header, message-send-mail-with-qmail):
23204         Use point-min rather than 1.
23205         (message-send-mail): Use buffer-size rather than point-max.
23206
23207         * gnus-sum.el (gnus-summary-search-article-forward):
23208         Signal a specific `search-failed' rather than a generic `error'.
23209
23210         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
23211         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
23212         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
23213
23214 2004-09-10  Simon Josefsson  <jas@extundo.com>
23215
23216         * nndb.el (require): Remove tcp and duplicate cl.
23217
23218 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23219
23220         * gnus-agent.el (directory-files-and-attributes): Move forward.
23221
23222 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23223
23224         * gnus-agent.el (directory-files-and-attributes):
23225         Optionally defined to support XEmacs.
23226
23227 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23228
23229         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
23230         to avoid run-time CL dependencies.
23231         (gnus-agent-unfetch-articles): New function.
23232         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
23233         article numbers even when local .overview file is missing.
23234         (gnus-agent-read-article-number): New function.  Only accepts
23235         27-bit article numbers.
23236         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
23237         Use gnus-agent-read-article-number.
23238         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
23239         from backend while recognizing that article numbers in .overview
23240         must be valid.
23241         (gnus-agent-update-files-total-fetched-for):
23242         Use directory-files-and-attributes to improve performance.
23243         * gnus-int.el (gnus-request-move-article):
23244         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
23245         improve performance.
23246
23247         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
23248         some users confused by references to .newsrc when they only have a
23249         .newsrc.eld file.
23250         (gnus-convert-mark-converter-prompt)
23251         (gnus-convert-converter-needs-prompt): Fix use of property list.
23252         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
23253         New function.  Used internally to only display 'gnus converting
23254         files' message when actually necessary.
23255
23256         * gnus-sum.el (): Remove (require 'gnus-agent) as required
23257         methods now autoloaded.
23258
23259 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23260
23261         * gnus-sum.el (gnus-summary-insert-subject): Remove list
23262         identifiers.
23263
23264 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
23265
23266         * gnus-picon.el: Fix indentation and closing parenthesis.
23267
23268 2004-09-01  Simon Josefsson  <jas@extundo.com>
23269
23270         * message.el (message-canlock-generate): Require sha1, not
23271         sha1-el.  (Can we get rid of this require altogether?  It is ugly
23272         to require within a function.  Sadly, if sha1.el isn't loaded, the
23273         let binding in m-c-g will hide the defcustom definition, which is
23274         bad.)
23275
23276         * canlock.el: Require sha1, not sha1-el.
23277
23278         * message.el: Don't autoload sha1 (there is a autoload cookie in
23279         sha1.el).
23280
23281         * sha1-el.el: Rename to sha1.el.
23282
23283 2004-08-30  Juanma Barranquero  <lektu@terra.es>
23284
23285         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
23286
23287 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23288
23289         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
23290
23291 2004-08-30  Kim F. Storm  <storm@cua.dk>
23292
23293         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
23294
23295         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
23296         Add :group 'nnimap.
23297
23298 2004-08-30  Andreas Schwab  <schwab@suse.de>
23299
23300         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
23301         ?* and ?\;.
23302
23303         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
23304         and ?\' to symbol instead of whitespace.
23305
23306 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23307
23308         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
23309
23310         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
23311         instead of re-search-forward.
23312
23313         * gnus-uu.el (gnus-uu-save-article): Ditto.
23314         (gnus-uu-post-encode-uuencode): Ditto.
23315
23316         * html2text.el (html2text-clean-list-items): Ditto.
23317         (html2text-clean-dtdd): Ditto.
23318         (html2text-format-tags): Ditto.
23319
23320         * message.el (message-send-mail-with-sendmail): Fix regexp.
23321         (message-fill-field-general): Use search-forward instead of
23322         re-search-forward.
23323         (unbold-region): Ditto.
23324
23325         * nnrss.el (nnrss-request-article): Ditto.
23326
23327         * nnslashdot.el (nnslashdot-request-article): Ditto.
23328
23329         * nnweb.el (nnweb-gmane-wash-article): Ditto.
23330
23331         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
23332         "Unrecognized menu descriptor" error in XEmacs.
23333
23334 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23335
23336         * gnus-sum.el (gnus-read-header): Don't remove a header for the
23337         parent article of a sparse article in the thread hashtb.
23338
23339 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
23340
23341         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
23342         (nnmail-expand-newtext): Lowercase expanded entries if
23343         nnmail-split-lowercase-expanded is non-nil.
23344
23345 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23346
23347         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
23348
23349         * gnus-group.el (gnus-group-line-format-alist): Convert the value
23350         of gnus-tmp-news-method into string under XEmacs.  It will be
23351         passed to gnus-correct-length which takes only a string argument.
23352
23353 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23354
23355         * gnus-util.el (gnus-bind-print-variables): New macro.
23356         (gnus-prin1): Use it.
23357         (gnus-prin1-to-string): Use it.
23358         (gnus-pp): New function.
23359         (gnus-pp-to-string): New function.
23360
23361         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
23362         Replace pp-to-string with gnus-pp-to-string.
23363         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
23364         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
23365         * gnus-msg.el (gnus-debug): Ditto.
23366         * gnus-score.el (gnus-score-save): Ditto.
23367         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
23368         gnus-pp-to-string.
23369         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
23370         with gnus-pp.
23371         * score-mode.el (gnus-score-pretty-print): Ditto.
23372         * webmail.el (webmail-debug): Ditto.
23373
23374 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23375
23376         * gnus-art.el (article-display-face, article-display-x-face):
23377         Use buffer-read-only.
23378
23379 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23380
23381         * gnus-art.el (article-hide-list-identifiers):
23382         Bind inhibit-read-only as t.
23383
23384 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
23385
23386         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
23387
23388 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23389
23390         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
23391         (gnus-narrow-to-page): Don't assume point-min == 1.
23392         (gnus-article-edit-mode): Derive from message-mode.
23393
23394         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
23395         point-min == 1.
23396
23397         * imap.el (imap-parse-address-list, imap-parse-body-ext):
23398         Disable incorrect use of `assert'.
23399
23400         * message.el (message-mode): Set comment-start-skip.
23401
23402
23403 2004-08-22  Sam Steingold  <sds@gnu.org>
23404
23405         * pop3.el (pop3-leave-mail-on-server): New user variable.
23406         (pop3-movemail): Delete mail only when it is nil.
23407
23408 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
23409
23410         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
23411
23412         * mml.el (mml-preview): Use `pop-to-buffer'.
23413
23414         * message.el (message-goto-mail-followup-to): Insert after "To".
23415         (message-carefully-insert-headers): Add comment.
23416
23417         * gnus.el: Remove unused variable `gnus-article-check-size'.
23418
23419         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
23420
23421         * gnus-art.el (gnus-button-alist):
23422         Improve `gnus-button-handle-library' entry.
23423
23424 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
23425
23426         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
23427         Use downcase, since XEmacs capitalizes error messages differently.
23428
23429 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
23430
23431         * nntp.el: Add (require 'gnus) due to reference to
23432         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
23433
23434 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
23435
23436         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
23437         Bind `mm-fill-flowed'.
23438
23439         * mm-decode.el (mm-dissect-singlepart): Check it.
23440
23441 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
23442
23443         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
23444         'imap' for netrc parsing.
23445
23446 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
23447
23448         * mailcap.el (mailcap-mime-data): Mark as risky.
23449
23450 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23451
23452         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
23453         may be included in the encoded word.
23454         (rfc2047-encode): Don't append a space if the encoded word
23455         includes close parenthesis.
23456
23457 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23458
23459         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
23460         of text within parentheses.
23461
23462 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
23463
23464         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
23465         (gnus-encrypt-write-file-contents): Make the password key the file
23466         name PLUS the cipher, not just the cipher.  Also remove failed
23467         passwords from the cache.
23468
23469 2004-08-06  Simon Josefsson  <jas@extundo.com>
23470
23471         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
23472         Doc fix.
23473
23474 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
23475
23476         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
23477         LWSP.
23478
23479 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
23480
23481         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
23482         Try to append in-reply-to: data to the references: header.
23483
23484         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
23485         (netrc-parse): Use gnus-encrypt.el functions.
23486
23487         * gnus-encrypt.el: Add new file for encryption support; currently
23488         does only a few GPG ciphers and an internal XOR cipher.
23489
23490         * password.el: Add comments on using password-read-and-add.
23491         (password-read-and-add): Add function to read and add the
23492         password to the cache at once.
23493
23494 2004-07-28  Simon Josefsson  <jas@extundo.com>
23495
23496         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
23497         parameter (but don't use it, for now).
23498
23499         * imap.el (imap-ssl-open): Use imap-process-connection-type,
23500         instead of hard coding to nil.
23501
23502 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23503
23504         * mm-view.el (mm-inline-image-emacs): Open lines under an image
23505         as mm-inline-image-xemacs does.
23506
23507 2004-07-26  Simon Josefsson  <jas@extundo.com>
23508
23509         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
23510         Revert part of 2004-07-17 change below.
23511
23512 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23513
23514         * rfc2047.el (rfc2047-encode-region): Don't infloop.
23515         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
23516
23517 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23518
23519         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
23520         quotes that actually start with ">" at the beginning of the
23521         lines.
23522
23523 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23524
23525         * rfc2047.el (rfc2047-encode-region): Fix last change.
23526         (rfc2047-encode-parameter): Remove useless concat.
23527
23528 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23529
23530         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
23531         encode special characters; fix some kind of misconfigured headers;
23532         signal a real error if debug-on-quit or debug-on-error is non-nil.
23533         (rfc2047-encode-max-chars): New variable.
23534         (rfc2047-encode-1): Use it.
23535         (rfc2047-encode-parameter): New function.
23536
23537         * mml.el (mml-insert-parameter): Remove an excessive space.
23538
23539 2004-07-17  Simon Josefsson  <jas@extundo.com>
23540
23541         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
23542         Kai Grossjohann <kai@emptydomain.de>.
23543         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
23544         (gnus-group-make-menu-bar): Ditto.
23545
23546         * gnus-util.el (gnus-group-server): Add.
23547
23548 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
23549
23550         * message.el (message-clone-locals): Clone sendmail and smtp
23551         variables.
23552
23553 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23554
23555         * rfc2047.el (rfc2047-encode-region): Fix last change.
23556
23557 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23558
23559         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
23560         characters as non-special.
23561
23562 2004-07-09  Simon Josefsson  <jas@extundo.com>
23563
23564         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
23565         Users will lose all flag changes made while unplugged with
23566         e.g. nntp unless flag synchronization happens, thus `nil' is not a
23567         good default.  See numerous reports on ding mailing list.
23568
23569 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23570
23571         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
23572         add generate-head-function and generate-article-function to the
23573         rfc822-forward entry.
23574         (nndoc-rfc822-forward-generate-article): New function.
23575         (nndoc-rfc822-forward-generate-head): New function.
23576
23577         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
23578
23579 2004-07-06  Dan Christensen  <jdc@uwo.ca>
23580
23581         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
23582         respect display group parameter and gnus-summary-expunge-below.
23583         (gnus-articles-to-read): Remove unused reference to display group
23584         parameter.
23585
23586 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23587
23588         * nnheader.el (nnheader-uniquify-message-id): New experimental
23589         variable.
23590         (nnheader-nov-read-message-id): Use it.
23591
23592         * spam-report.el (spam-report-gmane): Add interactive.
23593
23594 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23595
23596         * mm-encode.el (mm-content-transfer-encoding-defaults):
23597         Use qp-or-base64 for the application/* types.
23598
23599 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
23600
23601         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
23602
23603 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
23604
23605         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
23606         trim value.
23607
23608 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
23609
23610         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
23611         New macro and function.
23612         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
23613
23614 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23615
23616         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
23617         after-load-alist.
23618
23619 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23620
23621         * gnus-group.el (gnus-group-get-new-news-this-group):
23622         Don't update info that isn't there.
23623
23624 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
23625
23626         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
23627         entry.
23628
23629 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23630
23631         * mm-view.el (mm-inline-render-with-function): Use multibyte
23632         buffer; decode html source by charset.
23633
23634         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
23635
23636         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
23637         Mule-UCS is loaded under XEmacs.
23638         (mm-mime-mule-charset-alist): Avoid duplicated entries.
23639
23640 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
23641
23642         * nnheader.el (nnheader-max-head-length): Increase to 8192.
23643
23644 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23645
23646         * mm-util.el (mm-coding-system-p): Return a coding-system.
23647         (mm-mime-mule-charset-alist): Use shift_jis instead of
23648         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
23649         entries for the mime charsets iso-2022-jp-3 and shift_jis.
23650         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
23651         instead of japanese-shift-jis and iso-latin-1 respectively in
23652         order to share the default value with both Emacs and XEmacs-mule.
23653         (mm-mule-charset-to-mime-charset):
23654         Make mm-coding-system-priorities effective.
23655         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
23656         while predicating of candidates upon the priorities.
23657
23658 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
23659
23660         * gnus-sum.el (gnus-summary-make-menu-bar):
23661         Add gnus-uu-invert-processable.
23662
23663         * gnus.el: Autoload gnus-uu-invert-processable.
23664
23665 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23666
23667         * mm-util.el (mm-with-multibyte-buffer): New macro.
23668
23669         * rfc2047.el (rfc2047-encode-string): Use it.
23670         (rfc2047-encode-region): Move point to the end of the region after
23671         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
23672
23673 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23674
23675         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
23676         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
23677
23678 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23679
23680         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
23681         (gnus-cite-parse): Ignore quoted envelope From_.
23682         Suggested by Karl Chen <quarl@nospam.quarl.org>.
23683
23684 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
23685
23686         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
23687         invalid addresses.
23688
23689 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
23690
23691         * spam.el: Change section markers, revise TODO list.
23692         (spam-backends): Make new master list of all installed backends.
23693         (spam-summary-exit-behavior): Add new variable to determine how
23694         messages moves are done at summary exit.
23695         (spam-move-spam-nonspam-groups-only)
23696         (spam-process-ham-in-nonham-groups)
23697         (spam-process-ham-in-spam-groups): Remove variables, the
23698         spam-summary-exit-behavior variable should be used to manage this
23699         behavior.
23700         (spam-old-ham-articles, spam-old-spam-articles): Remove.
23701         (spam-old-articles): Add variable, replacing spam-old-ham-articles
23702         and spam-old-spam-articles.
23703         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
23704         Add empty variables, placeholders for the backends they represent.
23705         (spam-set-difference): Move, unchanged.
23706         (spam-list-of-processors): Declare OBSOLETE, not used anymore
23707         unless the user has a processor variable.
23708         (spam-classifications, spam-classification-valid-p)
23709         (spam-backend-properties, spam-backend-property-valid-p)
23710         (spam-backend-function-type-valid-p)
23711         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
23712         (spam-report-articles-gmane, spam-report-articles-resend):
23713         Remove functions, they are not needed.
23714         (spam-install-backend-super, spam-backend-list)
23715         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
23716         (spam-backend-function, spam-backend-ham-registration-function)
23717         (spam-backend-spam-registration-function)
23718         (spam-backend-ham-unregistration-function)
23719         (spam-backend-spam-unregistration-function)
23720         (spam-backend-statistical-p, spam-backend-mover-p)
23721         (spam-install-backend-alias, spam-install-checkonly-backend)
23722         (spam-install-mover-backend, spam-install-nocheck-backend)
23723         (spam-install-backend, spam-install-statistical-backend)
23724         (spam-install-statistical-checkonly-backend): Add backend installation
23725         support.
23726         (spam-summary-prepare-exit): Rewrite to use the new backend code.
23727         (spam-group-processor-p): Use the new backend code and respect the
23728         summary exit behavior.
23729         (spam-mark-spam-as-expired-and-move-routine): Remove.
23730         (spam-summary-prepare): Change to use the new spam-old-articles
23731         variable.
23732         (spam-copy-or-move-routine, spam-copy-spam-routine)
23733         (spam-move-spam-routine, spam-copy-ham-routine)
23734         (spam-move-ham-routine): Add code to copy/move ham or spam.
23735         (spam-fetch-field-fast): Improve doc and code, plus allow the
23736         'number request.
23737         (spam-list-of-checks, spam-list-of-statistical-checks):
23738         Remove variables.
23739         (spam-split, spam-find-spam): Use the new backend code.
23740         (spam-registration-functions): Remove variable.
23741         (spam-unregister-routine): Add convenience wrapper.
23742         (spam-log-undo-registration, spam-register-routine)
23743         (spam-log-processing-to-registry)
23744         (spam-log-unregistration-needed-p): Rename "check" to "backend"
23745         where possible.
23746         (spam-check-gmane-xref, spam-check-regex-headers)
23747         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
23748         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
23749         (spam-check-bogofilter-headers, spam-check-spamoracle)
23750         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
23751         (spam-check-crm114-headers): Use the spam-split-group that
23752         spam-split prepares, no need to determine it every time.
23753
23754         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
23755         to the nnheader-parse-naked-head call.
23756
23757         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
23758
23759         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
23760         the nnheader-nov-read-message-id call.
23761
23762 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23763
23764         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
23765         gnus-activate-group twice.  Suggested by Markus Peter
23766         <warp@spin.de>.
23767
23768 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23769
23770         * gnus-art.el (gnus-article-time-format): Exchange the order of
23771         day and month in the default value; fix customization type.
23772         (article-date-ut): Use add-text-properties.
23773         (article-make-date-line): Use message-make-date instead of
23774         current-time-string.
23775
23776         * message.el (message-fetch-field): Don't use set-text-properties.
23777         (message-make-date): Simplify.
23778
23779         * messagexmas.el (message-xmas-make-date): New function.
23780         (message-xmas-redefine): Defalias message-make-date to it.
23781
23782 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23783
23784         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
23785         (rfc2047-encode-region): Treat text within parentheses as special;
23786         show the original text when error has occurred.
23787
23788         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
23789         already-computed method to gnus-activate-group.
23790
23791         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
23792         same select-methods identical Lisp objects.
23793
23794         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
23795         object when modifying the info.
23796
23797 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23798
23799         * gnus-srvr.el (gnus-server-set-info): Remove the server from
23800         gnus-opened-servers since it has never been opened with the new
23801         configuration yet.
23802
23803 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23804
23805         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
23806         arg to nnheader-generate-fake-message-id.
23807
23808 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
23809
23810         * nnheader.el (nnheader-generate-fake-message-id): Accept a
23811         number and build a fake message ID localized to a group and
23812         article number (so it's repeatable from that point on).
23813         (nnheader-fake-message-id-p): Change regex to accomodate new fake
23814         ID format.
23815
23816         * gnus-sum.el (gnus-get-newsgroup-headers):
23817         Call nnheader-generate-fake-message-id with the article number.
23818
23819 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
23820
23821         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
23822         end-of-buffer.
23823
23824 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23825
23826         * message.el (message-ignored-supersedes-headers): Add Approved.
23827
23828 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23829
23830         * rfc2047.el (rfc2047-encode-message-header): Remove useless
23831         goto-char.
23832         (rfc2047-encode): Fold the line before encoding.
23833
23834 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23835
23836         * rfc2047.el (rfc2047-encode-message-header): Disabled header
23837         folding -- not all headers can be folded, and this should be done
23838         by the message composition mode.  Probably.  I think.
23839
23840 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23841
23842         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
23843         fast.
23844
23845         * gnus-ems.el (gnus-remove-image): Don't use
23846         message-text-with-property; remove only the image found first.
23847
23848         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
23849         found first.
23850
23851 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
23852
23853         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
23854
23855 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23856
23857         * message.el (message-text-with-property): Make it fast and accept
23858         optional arguments.
23859         (message-strip-forbidden-properties): Use it.
23860         (message-fix-before-sending): Follow the m-t-w-p change.
23861
23862         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
23863
23864 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
23865
23866         * gnus-art.el (article-hide-headers): Don't change the buffer
23867         mistakenly when performing mml-preview even if
23868         gnus-single-article-buffer is nil.
23869
23870 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
23871
23872         * message.el (message-expand-name-databases): New user option.
23873         (message-expand-name): Use it.
23874
23875 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
23876
23877         * spam.el (spam-report-articles-resend)
23878         (spam-report-resend-register-routine): Allow ham reporting.
23879         (spam-report-resend-register-ham-routine): Add wrapper.
23880         (spam-registration-functions): Add ham resending functions.
23881         (spam-list-of-processors): Add ham resend processor.
23882
23883         * gnus.el (ham-resend-to): Add new group parameter.
23884         (spam-process): Add ham resend option.
23885
23886         * spam-report.el (spam-report-resend): Allow reporting ham.
23887         (spam-report-resend-ham): Add wrapper.
23888
23889 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23890
23891         * message.el (message-cite-articles-with-x-no-archive):
23892         New variable.
23893         (message-cite-original): Use it.
23894
23895 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23896
23897         * message.el (message-cite-original): Respect X-No-Archive.
23898
23899 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23900
23901         * gnus-art.el (article-hide-headers): Refer to the values for
23902         gnus-ignored-headers and gnus-visible-headers in the summary
23903         buffer since a user may have set them as group parameters.
23904
23905 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
23906
23907         * assistant.el (assistant-node-name): Add convenience function.
23908         (assistant-render-text, assistant-render-node): Add error handling,
23909         plus handle multiple next nodes.
23910         (assistant-find-next-node): Comment out for now.
23911         (assistant-find-next-nodes): Add function, returns list of next
23912         nodes.
23913
23914 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
23915
23916         * mail-source.el (mail-source-directory): Fix doc-string.
23917
23918 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
23919
23920         * assistant.el (assistant-render-text, assistant-eval): Add :set
23921         widget type, which is different because it takes and returns a
23922         list.  Much hilarity ensues.
23923
23924 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
23925
23926         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
23927
23928         * gnus-group.el (gnus-group-get-new-news-this-group):
23929         Add doc-string.
23930
23931         * gnus-start.el (gnus-activate-group): Add doc-string.
23932
23933 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23934
23935         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
23936
23937 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
23938
23939         * assistant.el (assistant-render-text): Try to add a :set
23940         widget, more to come.
23941
23942         * spam.el (spam-group-spam-contents-p): Handle empty groupname
23943         strings.
23944         (spam-report-articles-resend)
23945         (spam-register-routine): Do registration iff any articles warrant
23946         it.
23947         (spam-summary-prepare-exit): Change log message for nil group
23948         destinations.
23949
23950 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
23951
23952         * spam.el (spam-report-resend-register-routine):
23953         Allow spam-report-resend-to to be a group parameter or a global value.
23954
23955 2004-05-26  Simon Josefsson  <jas@extundo.com>
23956
23957         * starttls.el: Merge with my GNUTLS based starttls.el.
23958         (starttls-gnutls-program, starttls-use-gnutls)
23959         (starttls-extra-arguments, starttls-process-connection-type)
23960         (starttls-connect, starttls-failure, starttls-success):
23961         New variables.
23962         (starttls-program, starttls-extra-args): Doc fix.
23963         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
23964         New functions.
23965         (starttls-negotiate, starttls-open-stream):
23966         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
23967         function if it is set.
23968
23969 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23970
23971         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
23972         structured fields.
23973
23974 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23975
23976         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
23977
23978 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
23979
23980         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
23981         Add variable.
23982         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
23983         assigning the spam-mark to new messages.
23984
23985 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
23986
23987         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
23988
23989 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23990
23991         * dgnushack.el: Autoload customize-set-variable for XEmacs.
23992
23993         * rfc2047.el (rfc2047-encodable-p): Don't move point.
23994         (rfc2047-decode): Treat the ascii coding-system as raw-text by
23995         default.
23996
23997 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
23998
23999         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
24000         correct data.
24001
24002 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
24003
24004         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
24005         (spam-group-processor-p): Fix function.
24006         (spam-group-processor-multiple-p)
24007         (spam-group-spam-processor-report-gmane-p)
24008         (spam-group-spam-processor-report-resend-p)
24009         (spam-group-spam-processor-bogofilter-p)
24010         (spam-group-spam-processor-blacklist-p)
24011         (spam-group-spam-processor-ifile-p)
24012         (spam-group-ham-processor-ifile-p)
24013         (spam-group-spam-processor-spamoracle-p)
24014         (spam-group-spam-processor-crm114-p)
24015         (spam-group-ham-processor-bogofilter-p)
24016         (spam-group-spam-processor-stat-p)
24017         (spam-group-ham-processor-stat-p)
24018         (spam-group-ham-processor-whitelist-p)
24019         (spam-group-ham-processor-BBDB-p)
24020         (spam-group-ham-processor-spamoracle-p)
24021         (spam-group-ham-processor-copy-p): Remove functions with some
24022         prejudice against unneeded code.
24023         (spam-report-articles-resend)
24024         (spam-report-resend-register-routine): Allow the group/topic
24025         spam-resend-to value to override spam-report-resend-to.
24026         (spam-summary-prepare-exit): Invoke spam-group-processor-p
24027         properly now.
24028
24029         * gnus.el (spam-resend-to): Add group/topic parameter.
24030         (spam-process): Move the OBSOLETE processors to the end of the
24031         choices.
24032
24033 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
24034
24035         * spam-report.el (spam-report-resend-to, spam-report-resend):
24036         Start with resend-to set to nil, and then ask the user if necessary.
24037         (spam-report-resend): spam-report-resend takes a list of articles, not
24038         separate article numbers.
24039
24040 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24041
24042         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
24043         addition to emacs-w3m.
24044
24045 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24046
24047         * assistant.el (assistant-authinfo-data): New function.
24048         (assistant-eval): Eval for entire assistant.
24049
24050         * netrc.el (netrc-services-file): New variable.
24051         (netrc-parse-services): New function.
24052         (netrc-find-service-name): New function.
24053         (netrc-find-service-number): New function.
24054         (netrc-port-equal): New function.
24055         (netrc-machine): Use it.
24056
24057         * nnimap.el (nnimap-open-connection): Use netrc.
24058
24059         * gnus-util.el (gnus-netrc-get): Remove aliases.
24060
24061         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
24062
24063         * assistant.el (wid-edit): Fix compilation.
24064
24065         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
24066
24067 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
24068
24069         * gnus-util.el (gnus-set-file-modes): New function.  (small
24070         patch).
24071
24072 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24073
24074         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
24075
24076         * assistant.el (assistant-render-node): Fix up rendering and
24077         read-only text.
24078         (assistant-render-node): Reset.
24079         (assistant-make-read-only): Not sticky.
24080
24081 2004-05-20  Danny Siu  <dsiu@adobe.com>
24082
24083         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
24084         centered even when gnus-auto-center-summary is t.
24085
24086 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24087
24088         * dns.el (dns-get-txt-answer): New function.
24089         (dns-read-txt): Ditto.
24090         (query-dns): Use it.
24091
24092 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24093
24094         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
24095         active for foreign groups even if the group level is higher than
24096         the specified value.
24097
24098 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24099
24100         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
24101         non-active groups.
24102
24103         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
24104
24105 2004-05-20  Magnus Henoch  <mange@freemail.hu>
24106
24107         * dns.el (dns-read-type): Add support for SVR.  (small patch)
24108
24109 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
24110
24111         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
24112         (spam-crm114-header, spam-crm114-spam-switch)
24113         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
24114         (spam-crm114-positive-spam-header)
24115         (spam-crm114-database-directory, spam-list-of-processors)
24116         (spam-group-spam-processor-crm114-p)
24117         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
24118         (spam-generic-score, spam-list-of-checks)
24119         (spam-list-of-statistical-checks, spam-registration-functions)
24120         (spam-check-crm114-headers, spam-crm114-score)
24121         (spam-check-crm114, spam-crm114-register-with-crm114)
24122         (spam-crm114-register-spam-routine)
24123         (spam-crm114-unregister-spam-routine)
24124         (spam-crm114-register-ham-routine)
24125         (spam-crm114-unregister-ham-routine): Add CRM114 support.
24126
24127 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
24128
24129         * gnus.el: Add spam-use-crm114.
24130
24131         * spam.el (spam-list-of-processors, spam-registration-functions):
24132         Add spam-use-resend.
24133         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
24134         (spam-report-articles-gmane): Add doc fix.
24135         (spam-report-articles-resend, spam-report-resend-register-routine):
24136         Add wrappers around spam-report-resend-to.
24137
24138         * spam-report.el (spam-report-resend-to, spam-report-resend):
24139         Add support for resending spam.
24140         (spam-report-gmane): Fix line length >80.
24141
24142         * gnus.el (spam-process): Add spam-use-resend.
24143
24144 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24145
24146         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
24147         number of processed spam messages.
24148         (spam-ham-copy-or-move-routine): Return the number of processed
24149         ham messages.
24150         (spam-summary-prepare-exit): Use the above values to decide
24151         whether status messages shouled be displayed.
24152
24153 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24154
24155         * rfc2047.el (rfc2047-encode-function-alist): Rename from
24156         `rfc2047-encoding-function-alist' in order to avoid conflicting
24157         with the old version.
24158         (rfc2047-encode-region): Concatenate words containing non-ASCII
24159         characters in structured fields; don't encode space-delimited
24160         ASCII words even in unstructured fields; don't break words at
24161         char-category boundaries.
24162         (rfc2047-encode-1): New function.
24163         (rfc2047-encode): Use it; encode text so that it occupies the
24164         maximum width within 76-column; work correctly on Q encoding for
24165         iso-2022-* charsets.
24166         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
24167         sure not to break a line just after the header name.
24168         (rfc2047-b-encode-region): Remove.
24169         (rfc2047-b-encode-string): New function.
24170         (rfc2047-q-encode-region): Remove.
24171         (rfc2047-q-encode-string): New function.
24172
24173         * mm-util.el (mm-replace-in-string): New function.
24174
24175 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24176
24177         * gnus-msg.el (gnus-inews-make-draft-meta-information):
24178         Really get it right.
24179         (gnus-inews-make-draft): Really.
24180
24181 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
24182
24183         * nnmh.el (nnmh-request-list-1): Don't check the link count
24184         before descending.  (small patch)
24185
24186 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24187
24188         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
24189         stuff.
24190
24191         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
24192         Match on real group name.
24193
24194         * gnus-art.el (gnus-signature-limit): Doc fix.
24195
24196         * gnus-msg.el (gnus-inews-make-draft): Quote list.
24197
24198         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
24199
24200 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
24201
24202         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
24203         isn't a string.
24204
24205 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24206
24207         * gnus-draft.el (gnus-draft-send):
24208         Bind rfc2047-encode-encoded-words.
24209
24210         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
24211         (rfc2047-encodable-p): Say that =? needs encoding.
24212         (rfc2047-encode-encoded-words): New variable.
24213
24214         * gnus-group.el (gnus-group-select-group): Doc fix.
24215
24216         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
24217
24218         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
24219         to nil.
24220
24221         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
24222
24223         * nnheader.el (nnheader-get-lines-and-char): New function.
24224
24225 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
24226
24227         * gnus-msg.el (gnus-summary-followup-with-original):
24228         Document yanking of region when active.
24229
24230 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24231
24232         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
24233         groups if the group level is higher than the specified value.
24234
24235 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24236
24237         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
24238         (gnus-group-jump-to-group): Add prefix argument using
24239         `gnus-group-jump-to-group-prompt'.  Query before jumping to
24240         non-active group.
24241
24242         * compface.el (uncompface): Be verbose when changing
24243         `uncompface-use-external'.
24244
24245         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
24246         handle manual section.
24247
24248 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24249
24250         * gnus-art.el (gnus-button-alist): Revert previous change.
24251
24252 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24253
24254         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
24255
24256 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24257
24258         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
24259         whether backend can accept message.
24260
24261         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
24262
24263 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
24264
24265         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24266         Avoid creating directory when nntp-marks-is-evil is true.
24267         Reported by Reiner Steib.
24268
24269 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24270
24271         * gnus-picon.el (gnus-picon-insert-glyph):
24272         Add optional `nostring' argument.
24273
24274 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24275
24276         * gnus-picon.el (gnus-picon-style): New variable.
24277         (gnus-picon-transform-address): Support `gnus-picon-style'.
24278
24279 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24280
24281         * message.el (message-fill-field): Return point.
24282         (message-generate-headers): Go to end of field.
24283
24284         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
24285         stuff for non-living groups.
24286
24287 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24288
24289         * gnus-art.el (gnus-article-followup-with-original)
24290         (gnus-article-reply-with-original): gnus-mark-active-p ->
24291         gnus-region-active-p.
24292
24293 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
24294
24295         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
24296         only when there is spam or ham to be processed.
24297
24298 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24299
24300         * mail-source.el (mail-source-delete-crash-box): Refactor.
24301         (mail-source-fetch): Use it.
24302         (mail-source-fetch-file): Ditto.
24303         (mail-source-fetch-directory): Run postscript in loop.
24304         (mail-source-fetch-pop): Delete.
24305         (mail-source-fetch-maildir): Ditto.
24306         (mail-source-fetch-imap): Ditto.
24307
24308         * imap.el (imap-authenticators): Comment out sasl.
24309
24310         * message.el (message-skip-to-next-address): New function.
24311         (message-fill-header-address): Refactor.
24312         (message-fill-address): Use it.
24313         (message-delete-address): Use it.
24314         (message-fill-header-general): Refactor.
24315         (message-fill-field-address): Rename.
24316         (message-narrow-to-field): Find the start of the header.
24317         (message-header-format-alist): Don't pre-fill.
24318         (message-fill-header): Remove.
24319         (message-insert-header): New function.
24320         (message-shorten-references): Use it.
24321
24322         * rfc2047.el (rfc2047-field-value): Strip props.
24323
24324         * mail-parse.el (mail-header-make-address): New alias.
24325
24326         * ietf-drums.el (ietf-drums-make-address): New function.
24327
24328         * imap.el: Add compiler directives.
24329
24330         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
24331
24332         * gnus-art.el (article-decode-idna-rhs): Don't use
24333         message-idna-inside-rhs-p.
24334
24335 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24336
24337         * message.el (message-idna-inside-rhs-p): Remove.
24338         (message-idna-to-ascii-rhs-1): Use proper address parsing.
24339
24340         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
24341         false positives.
24342
24343 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
24344
24345         * imap.el (imap-sasl-make-mechanisms): Use sasl.
24346
24347 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24348
24349         * nneething.el (nneething-file-name): Don't create spurious
24350         files.
24351
24352         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
24353         (gnus-inews-do-gcc): Remove sleep.
24354
24355         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
24356         part under point.
24357
24358         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
24359         (gnus-agent-regenerate-group): Using nil messages aren't valid.
24360
24361 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
24362
24363         * spam.el (spam-summary-prepare-exit): Fix (length).
24364
24365 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
24366
24367         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
24368         as expired without moving it" message when there are spam
24369         messages left.
24370
24371 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
24372
24373         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
24374         header is not nil.
24375
24376 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
24377
24378         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24379         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
24380         (nntp-marks-changed-p): New arg SERVER.
24381         (nntp-request-update-info): Adjust caller.
24382
24383 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
24384
24385         * nntp.el (nntp-save-marks): Pass missing arg.
24386
24387 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
24388
24389         * nntp.el: Support marks.
24390         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
24391         (nntp-marks-modtime, nntp-marks-directory): New variables.
24392         (nntp-request-set-mark, nntp-request-update-info)
24393         (nntp-possibly-create-directory, nntp-marks-changed-p)
24394         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
24395         New functions.
24396
24397 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
24398
24399         * gnus-xmas.el (gnus-xmas-select-lowest-window)
24400         (gnus-xmas-redefine): Rename.
24401
24402         * gnus-score.el (gnus-score-insert-help):
24403         Use gnus-select-lowest-window.
24404
24405         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
24406         appt-select-lowest-window and rename to gnus-select-lowest-window.
24407
24408         * gnus.el: do.
24409
24410 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24411
24412         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
24413         encodings of MIME-encoded words, in order to improve
24414         interoperability with several broken MUAs.
24415
24416 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24417
24418         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
24419         tags, only when charsets are not specified in headers.
24420         (mm-inline-text-html-render-with-w3m): Ditto.
24421
24422         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
24423         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
24424
24425 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24426
24427         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
24428         instead of MIME-decoded from fields when checking
24429         `gnus-article-address-banner-alist'.
24430
24431 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
24432
24433         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
24434         description rather than subject.
24435
24436 2004-05-02  Steve Youngs  <steve@youngs.au.com>
24437
24438         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
24439
24440 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24441
24442         * gnus.el (gnus-version-number): Bump.
24443
24444 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
24445
24446         * gnus.el: No Gnus v0.2 is released.
24447
24448 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24449
24450         * gnus-agent.el (gnus-agent-read-agentview):
24451         Inline gnus-uncompress-range.
24452
24453 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24454
24455         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
24456         `exec-installed-p'.
24457
24458 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24459
24460         * gnus.el (spam-process, spam-autodetect-methods):
24461         Add bsfilter and bsfilter-headers.
24462
24463         * spam.el (spam-bsfilter): New customize group.
24464         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
24465         (spam-bsfilter-header, spam-bsfilter-probability-header)
24466         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
24467         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
24468         (spam-bsfilter-database-directory): New options.
24469         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
24470         (spam-list-of-statistical-checks, spam-registration-functions):
24471         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
24472         (spam-bsfilter-score): New command.
24473         (spam-check-bsfilter-headers, spam-check-bsfilter)
24474         (spam-bsfilter-register-with-bsfilter)
24475         (spam-bsfilter-register-spam-routine)
24476         (spam-bsfilter-unregister-spam-routine)
24477         (spam-bsfilter-register-ham-routine)
24478         (spam-bsfilter-unregister-ham-routine): New functions.
24479         (spam-generic-score): Support bsfilter; Accept an optional argument
24480         to recalcurate spam score even if scoring header has already been
24481         added.
24482         (spam-bogofilter-score, spam-spamassassin-score): Accept an
24483         optional argument to recalcurate spam score even if scoring header
24484         has already been added.
24485
24486 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
24487
24488         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
24489         strings!  Reported by David D. Smith <davidsmith@acm.org>.
24490         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
24491         link is missing.
24492
24493 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
24494
24495         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
24496         (html2text-get-attr): Rewrite.
24497
24498         * message.el (message-setup-1): Remove redundant put-text-property
24499         on mail-header-separator.
24500
24501 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
24502
24503         * gnus-registry.el (gnus-registry-cache-whitespace)
24504         (gnus-registry-action, gnus-registry-spool-action)
24505         (gnus-registry-split-fancy-with-parent): Change message levels
24506         from 5 to 3 or 7, as needed.
24507
24508         * spam.el (spam-summary-prepare-exit)
24509         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
24510         (spam-split, spam-find-spam, spam-log-undo-registration)
24511         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
24512         level from 5 to 6.
24513
24514 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24515
24516         * gnus-ems.el: Autoload appt-select-lowest-window (revert
24517         2004-03-04 change).
24518
24519 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
24520
24521         * sieve-manage.el (sieve-manage-open):
24522         * nnweb.el (nnweb-insert-html):
24523         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
24524         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
24525         * nnspool.el (nnspool-request-group):
24526         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
24527         * nnml.el (nnml-request-update-info):
24528         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
24529         (nnmh-request-create-group, nnmh-update-gnus-unreads):
24530         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
24531         (nnimap-request-set-mark):
24532         * nnfolder.el (nnfolder-request-update-info):
24533         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
24534         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
24535         * gnus-uu.el (gnus-uu-find-articles-matching):
24536         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
24537         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
24538         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
24539         * gnus-nocem.el (gnus-nocem-scan-groups):
24540         * gnus-int.el (gnus-start-news-server):
24541         * gnus-group.el (gnus-group-make-kiboze-group)
24542         (gnus-group-browse-foreign-server):
24543         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
24544         Use mapc when appropriate.
24545
24546 2004-04-22  Dan Christensen  <jdc@uwo.ca>
24547             Adam Sjøgren  <asjo@koldfront.dk>
24548             Wes Hardaker  <wes@hardakers.net>
24549             Michael Shields  <shields@msrl.com>
24550
24551         * spam.el (spam-necessary-extra-headers): Get the extra headers we
24552         may need for spam sorting and scoring.
24553         (spam-user-format-function-S): Add user format function suitable for
24554         general use.
24555         (spam-article-sort-by-spam-status): Add sorting function for summary
24556         sorting.
24557         (spam-extra-header-to-number): Add function to get a score from a
24558         header.
24559         (spam-summary-score): Add function to get a numeric score from the
24560         headers.
24561         (spam-generic-score): Fix function doc, was in wrong place.
24562         (spam-initialize): Take symbols when it's run, and install the
24563         extra headers that spam-necessary-extra-headers thinks we need.
24564
24565 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
24566
24567         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
24568         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
24569
24570 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
24571
24572         * gnus-sum.el (gnus-set-global-variables)
24573         (gnus-build-all-threads, gnus-get-newsgroup-headers)
24574         (gnus-article-get-xrefs, gnus-summary-best-group)
24575         (gnus-summary-next-article, gnus-summary-enter-digest-group)
24576         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
24577         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
24578         Use with-current-buffer.
24579
24580 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
24581
24582         * spam.el (spam-summary-prepare-exit): Simplify logic.
24583         (spam-fetch-article-header): Read the article header if it's not
24584         available.
24585         (spam-list-articles): Simplify logic.
24586         (spam-filelist-register-routine): Fix bug with unregister-list.
24587
24588         * gnus-registry.el: Fix comments at beginning.
24589
24590 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
24591
24592         * message.el (message-cater-to-broken-inn): Remove.
24593         (message-shorten-references): Make sure the total folded length of
24594         References is shorter than 998 characters to cater to a bug in INN
24595         2.3.  Also, don't pretend that references aren't folded -- this
24596         hasn't worked for a while.
24597
24598 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24599
24600         * gnus-agent.el (gnus-agentize):
24601         gnus-agent-send-mail-real-function no longer set to current value
24602         of message-send-mail-function but rather a lambda that calls
24603         message-send-mail-function.  The change makes the agent real-time
24604         responsive to user changes to message-send-mail-function.
24605
24606 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24607
24608         * legacy-gnus-agent.el
24609         (gnus-agent-convert-to-compressed-agentview): Fix typos with
24610         help from Florian Weimer <fw@deneb.enyo.de>
24611
24612 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24613
24614         * nnmail.el (nnmail-cache-insert): Revert last change.
24615
24616 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24617
24618         * nnmail.el (nnmail-cache-insert): Always check whether
24619         nnmail-cache-ignore-groups matches a group name.
24620
24621 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
24622
24623         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
24624         (spam-find-spam, spam-log-processing-to-registry)
24625         (spam-log-registered-p, spam-log-unregistration-needed-p)
24626         (spam-log-undo-registration): Use gnus-message instead of
24627         gnus-error, none of these errors are fatal.
24628
24629         * gnus-registry.el (gnus-registry-clean-empty-function)
24630         (gnus-registry-clean-empty): Remove only empty entries without
24631         extra data.
24632
24633 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
24634
24635         * spam-stat.el (spam-stat-buffer-change-to-spam)
24636         (spam-stat-buffer-change-to-non-spam): Change (error) to
24637         (gnus-message 8) invocation.
24638
24639 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24640
24641         * nntp.el (nntp-via-netcat-command): New variable.
24642         (nntp-via-netcat-switches): New variable.
24643         (nntp-open-via-rlogin-and-netcat): New function.
24644         (nntp-open-connection-function): Doc fix.
24645         (nntp-telnet-command): Doc fix.
24646         (nntp-end-of-line): Doc fix.
24647         (nntp-via-rlogin-command): Doc fix.
24648         (nntp-via-user-name): Doc fix.
24649         (nntp-via-address): Doc fix.
24650
24651 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24652
24653         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
24654         error in Emacs 21.1.
24655
24656 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
24657
24658         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
24659
24660 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24661
24662         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
24663         (gnus-agent-with-refreshed-group): New macro.
24664         (gnus-agent-rename-group): New function.
24665         (gnus-agent-delete-group): New function.
24666         (gnus-agent-save-group-info): Use gnus-command-method when
24667         `method' parameter is nil.  Don't write nil entries into the
24668         active file.
24669         (gnus-agent-get-group-info): New function.
24670         (gnus-agent-fetch-articles):
24671         Use gnus-agent-update-files-total-fetched-for to increment disk space
24672         used.
24673         (gnus-agent-fetch-headers, gnus-agent-save-alist):
24674         Use gnus-agent-update-view-total-fetched-for to increment disk space
24675         used.
24676         (gnus-agent-get-local): Add optional parameters to avoid calling
24677         gnus-group-real-name and gnus-find-method-for-group.
24678         (gnus-agent-set-local): Delete stored entry if either min, or max,
24679         are nil.
24680         (gnus-agent-fetch-session): Reworded error/quit messages.
24681         On quit, use gnus-agent-regenerate-group to record existance of any
24682         articles fetched to disk before the quit occurred.
24683         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
24684         gnus-agent-update-view-total-fetched-for, and
24685         gnus-agent-update-files-total-fetched-for to decrement disk space
24686         used.
24687         (gnus-agent-retrieve-headers):
24688         Use gnus-agent-update-view-total-fetched-for to increment disk space
24689         used.
24690         (gnus-agent-regenerate-group): Replace gnus-group-update-group
24691         with gnus-agent-update-files-total-fetched-for to decrement disk
24692         space and fresh group buffer.
24693         (gnus-agent-inhibit-update-total-fetched-for): New variable.
24694         (gnus-agent-need-update-total-fetched-for): New variable.
24695         (gnus-agent-update-files-total-fetched-for): New function.
24696         (gnus-agent-update-view-total-fetched-for): New function.
24697         (gnus-agent-total-fetched-for): New function.
24698
24699         * gnus-cache.el (gnus-cache-save-buffers):
24700         Use gnus-cache-update-overview-total-fetched-for to change disk space
24701         used by this group.
24702         (gnus-cache-possibly-enter-article):
24703         Use gnus-cache-update-file-total-fetched-for to increment disk space
24704         used by this group.
24705         (gnus-cache-possibly-remove-article):
24706         Use gnus-cache-update-file-total-fetched-for to decrement disk space
24707         used by this group.
24708         (gnus-cache-generate-nov-databases): Purge total fetched cache.
24709         (gnus-cache-rename-group): New function.
24710         (gnus-cache-delete-group): New function.
24711         (gnus-cache-inhibit-update-total-fetched-for): New variable.
24712         (gnus-cache-need-update-total-fetched-for): New variable.
24713         (gnus-cache-with-refreshed-group): New macro.
24714         (gnus-cache-update-file-total-fetched-for): New function.
24715         (gnus-cache-update-overview-total-fetched-for): New function.
24716         (gnus-cache-rename-group-total-fetched-for): New function.
24717         (gnus-cache-delete-group-total-fetched-for): New function.
24718         (gnus-cache-total-fetched-for): New function.
24719
24720         * gnus-group.el: Require gnus-sum and autoload functions to
24721         resolve warnings when gnus-group.el compiled alone.
24722         (gnus-group-line-format): Documented new %F.
24723         (size of Fetched data) group line format; identifies disk space
24724         used by agent and cache.
24725         (gnus-group-line-format-alist): Defined new F format.
24726         (gnus-total-fetched-for): New function.
24727         (gnus-group-delete-group): No longer update
24728         gnus-cache-active-altered as gnus-request-delete-group now keeps
24729         the cache in sync.
24730         (gnus-group-list-active): Let the agent store a server's active
24731         list if currently plugged.
24732
24733         * gnus-int.el (gnus-request-delete-group):
24734         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
24735         local disk in sync with the server.
24736         (gnus-request-rename-group):
24737         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
24738         local disk in sync with the server.
24739
24740         * gnus-start.el (gnus-get-unread-articles):
24741         Cosmetic simplification to logic.
24742
24743         * gnus-util.el (gnus-rename-file): New function.
24744
24745 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
24746
24747         * mm-util.el (mm-image-load-path): Handle nil in load-path.
24748
24749 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
24750
24751         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
24752         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
24753
24754 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
24755
24756         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
24757         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
24758
24759 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
24760
24761         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
24762
24763 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
24764
24765         * spam.el (spam-set-difference): Add function to replace
24766         gnus-set-difference in spam.el.
24767         (spam-summary-prepare-exit): Use spam-set-difference.
24768
24769 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
24770
24771         * gnus-registry.el (gnus-registry-cache-file): Update to use
24772         gnus-dribble-directory OR gnus-home-directory OR ~.
24773         (gnus-registry-split-fancy-with-parent): Fix doc.
24774
24775 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24776
24777         * message.el (message-exchange-point-and-mark):
24778         Use message-mark-active-p.  Suggested by Jesper Harder
24779         <harder@ifa.au.dk>.
24780
24781 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24782
24783         * message.el (message-exchange-point-and-mark): Don't activate
24784         region if it was inactive.  Suggested by Hiroshi Fujishima
24785         <pooh@nature.tsukuba.ac.jp>.
24786
24787 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24788
24789         * gnus-art.el (article-display-face): Display Faces in the same
24790         order as X-Faces.
24791
24792 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24793
24794         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
24795
24796 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24797
24798         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
24799         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
24800         (gnus-article-mime-hierarchy): Remove.
24801         (gnus-article-mime-hierarchy-next): Remove.
24802         (gnus-article-mode): Revert 2004-03-19 change.
24803         (gnus-article-setup-buffer): Revert 2004-03-19 change.
24804         (gnus-insert-mime-button): Revert 2004-03-19 change.
24805         (gnus-mime-accumulate-hierarchy): Remove.
24806         (gnus-mime-enter-multipart): Remove.
24807         (gnus-mime-leave-multipart): Remove.
24808         (gnus-mime-display-part): Revert 2004-03-19 change.
24809         (gnus-mime-display-alternative): Revert 2004-03-19 change.
24810
24811         * mml.el (mml-preview): Revert 2004-03-19 change.
24812
24813 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
24814
24815         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
24816
24817 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24818
24819         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
24820         t while entering a file name using the mm-with-multibyte macro.
24821         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24822
24823         * mm-util.el (mm-with-multibyte): New macro.
24824
24825 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24826
24827         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
24828         New user option.
24829         (gnus-mime-multipart-functions): Doc and customization fix.
24830         (gnus-article-mime-hierarchy): New variable.
24831         (gnus-article-mime-hierarchy-next): New variable.
24832         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
24833         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
24834         gnus-article-mime-hierarchy-next to nil.
24835         (gnus-insert-mime-button): Show hierarchy numbers.
24836         (gnus-mime-accumulate-hierarchy): New function.
24837         (gnus-mime-enter-multipart): New function.
24838         (gnus-mime-leave-multipart): New function.
24839         (gnus-mime-display-part): Recompute hierarchical MIME structure.
24840         (gnus-mime-display-alternative): Show hierarchy numbers.
24841
24842         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
24843         gnus-article-mime-hierarchy-next to nil.
24844
24845 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
24846
24847         * dns.el: Don't require gnus-xmas.
24848
24849 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
24850
24851         * mml.el (mml-generate-mime-1): Don't use format=flowed with
24852         inline PGP.
24853         (mml-menu): Disable mml-quote-region if mark is inactive.
24854
24855 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24856
24857         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
24858         when the group's active is not available.
24859
24860 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24861
24862         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
24863         error.
24864
24865 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
24866
24867         * imap.el (imap-store-password): New variable.
24868         (imap-interactive-login): Use it.
24869         Suggested by Mark Plaksin <happy@mcplaksin.org>.
24870
24871 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24872
24873         * gnus-art.el (gnus-article-read-summary-keys): Restore new
24874         window-start and hscroll to summary window.
24875
24876 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24877
24878         * gnus-start.el (gnus-convert-old-newsrc): Only write the
24879         conversion message to newsrc-dribble when an actual conversion is
24880         performed.
24881
24882 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
24883
24884         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
24885
24886 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24887
24888         * mm-decode.el (mm-complicated-handles): New function reviving
24889         former definition of mm-multiple-handles.
24890
24891         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
24892         (gnus-mime-delete-part): Use it.
24893
24894 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24895
24896         * gnus-agent.el (gnus-agent-read-local):
24897         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
24898         avoid the implicit assumption that they will always be equal.
24899         (gnus-agent-save-local): Bind buffer-file-coding-system, not
24900         coding-system-for-write, as the with-temp-file macro first prints
24901         to a buffer then saves the buffer.
24902
24903 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24904
24905         * gnus-art.el (gnus-article-edit-part): New function.
24906         (gnus-mime-save-part-and-strip): Use it; do query instead of
24907         signaling an error; don't use mm-multiple-handles.
24908         (gnus-mime-delete-part): Ditto.
24909
24910 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24911
24912         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
24913         old file versions.
24914         (gnus-group-prepare-hook): Remove function that converted list
24915         form of gnus-agent-expire-days to group properties.
24916
24917         * gnus-int.el: Autoload gnus-agent-regenerate-group.
24918         (gnus-request-accept-article): Re-indented.
24919
24920         * gnus-start.el (gnus-convert-old-newsrc): Registered new
24921         converters to handle old agent file formats.  Add logic for a
24922         "backup before upgrading warning".
24923         (gnus-convert-mark-converter-prompt): Developers can mark
24924         functions as needing (default), or not needing,
24925         gnus-convert-old-newsrc's "backup before upgrading warning".
24926         (gnus-convert-converter-needs-prompt): Tests whether the user
24927         should be protected from potentially irreversable changes by the
24928         function.
24929
24930         * legacy-gnus-agent.el: New.  Provides converters that are only
24931         loaded when gnus-convert-old-newsrc needs to call them.
24932
24933 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24934
24935         * mail-source.el (mail-source-touch-pop): Doc fix.
24936
24937         * message.el (message-smtpmail-send-it): Doc fix.
24938
24939 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
24940
24941         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
24942
24943         * nnmail.el (nnmail-split-fancy): do.
24944
24945         * gnus-kill.el (gnus-kill, gnus-execute): do.
24946
24947 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
24948
24949         * gnus-sum.el (gnus-widget-reversible-match)
24950         (gnus-widget-reversible-to-internal)
24951         (gnus-widget-reversible-to-external): New functions.
24952         (gnus-widget-reversible): New widget.
24953         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
24954
24955 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
24956
24957         * gnus-sum.el (gnus-thread-sort-functions)
24958         (gnus-article-sort-functions): Document `(not F)' items.
24959
24960 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
24961
24962         * spam.el (spam-use-gmane-xref): Add new backend.
24963         (spam-gmane-xref-spam-group): Add variable to control the name of the
24964         Gmane spam group.
24965         (spam-blackhole-servers, spam-blackhole-good-server-regex)
24966         (spam-regex-headers-spam, spam-regex-headers-ham)
24967         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
24968         (spam-list-of-checks): Add spam-use-gmane-xref to list of
24969         backends and checks.
24970         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
24971
24972         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
24973         an autodetect method.
24974
24975 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24976
24977         * gnus-int.el (gnus-request-accept-article): Inform the agent that
24978         articles are being added to a group.
24979         (gnus-request-replace-article): Inform the agent that articles
24980         need to be uncached as the cached contents are no longer valid.
24981
24982 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24983
24984         * binhex.el: Don't autoload executable-find.
24985
24986         * canlock.el: Don't autoload mail-fetch-field.
24987
24988         * dgnushack.el: Autoload c-mode for XEmacs.
24989
24990         * gnus-ems.el: Don't autoload appt-select-lowest-window.
24991
24992         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
24993         rmail-dont-reply-to and rmail-output.
24994
24995         * gnus-score.el: Don't autoload ffap-string-at-point.
24996
24997         * gnus-setup.el: Don't autoload sc-cite-original.
24998
24999         * imap.el: Don't autoload base64-decode-string,
25000         base64-encode-string and md5.
25001
25002         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
25003         and rmail-msg-restore-non-pruned-header.
25004
25005         * mm-decode.el: Don't autoload executable-find.
25006
25007         * mm-url.el: Don't autoload executable-find.
25008
25009         * mm-view.el: Don't autoload diff-mode.
25010
25011         * nndb.el: Don't autoload news-reply-mode, news-setup,
25012         cancel-timer and telnet.
25013
25014         * password.el: Don't autoload run-at-time for Emacs.
25015
25016         * sha1-el.el: Don't autoload executable-find.
25017
25018         * sieve-mode.el: Don't autoload c-mode.
25019
25020         * uudecode.el: Don't autoload executable-find.
25021
25022 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25023
25024         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
25025         (gnus-agent-possibly-alter-active): Avoid null in numeric
25026         comparison.
25027         (gnus-agent-set-local): Refuse to save null in local object table.
25028         (gnus-agent-regenerate-group): The REREAD parameter can now be a
25029         list of articles that will be marked as unread.
25030
25031 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25032
25033         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
25034
25035 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
25036
25037         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
25038         language tags.
25039
25040 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
25041
25042         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
25043         Don't bind "obarray".
25044
25045         * gnus-sum.el (gnus-thread-sort-functions):
25046         Add `gnus-thread-sort-by-most-recent-number' and
25047         `gnus-thread-sort-by-most-recent-date'.
25048         Reported by Kai Grossjohann <kai@emptydomain.de>.
25049
25050 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
25051
25052         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
25053
25054 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25055
25056         * gnus-cus.el (gnus-agent-customize-category):
25057         Remove ignore-errors macro reference that required cl to be loaded at
25058         run-time.
25059
25060         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
25061         single-interval range of the form (min . max).  Previously the
25062         range had to look like ((min . max)).  Likewise, return
25063         (min . max) rather than ((min . max)).
25064         (gnus-range-map): Use gnus-range-normalize to accept
25065         single-interval range.
25066
25067         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
25068         the cache, but not the agent, now appear with their usual face.
25069
25070         * dgnushack.el (loaddir): New variable that is bound to the
25071         directory containing the dgnushack.el file. Use loaddir, rather
25072         than srcdir, to update load-path. Change lets dgnushack compile
25073         code in directories other than GNUS/lisp.
25074
25075 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
25076
25077         * lpath.el: Don't bind w3m-safe-url-regexp.
25078
25079         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
25080         w3m-safe-url-regexp variable buffer-local.
25081
25082         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25083
25084 2004-02-27  Simon Josefsson  <jas@extundo.com>
25085
25086         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
25087         gnus-group-real-prefix.
25088         (gnus-summary-move-article): Use it, instead of
25089         gnus-group-real-prefix.
25090
25091 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25092
25093         * lpath.el: Bind w3m-safe-url-regexp.
25094
25095         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
25096         w3m-safe-url-regexp variable buffer-local and set it as the value
25097         of mm-w3m-safe-url-regexp.
25098
25099         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25100
25101         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
25102         parsing gnus-posting-styles when the message is not for replying.
25103
25104         * dgnushack.el: Autoload sgml-mode for XEmacs.
25105
25106         * nnrss.el (nnrss-opml-export):
25107         Use mm-set-buffer-file-coding-system instead of
25108         set-buffer-file-coding-system.
25109
25110 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
25111
25112         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
25113         of checkdoc.el).
25114         * nnrss.el: do.
25115         * gnus-mlspl.el: do.
25116         * gnus-ml.el: do.
25117         * gnus-srvr.el: do.
25118
25119         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
25120
25121 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
25122
25123         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
25124         Corrections to custom-manual links.
25125
25126         * gnus-art.el (gnus-article): Ditto.
25127
25128         * mm-decode.el (mime-display, mime-security): Ditto.
25129
25130 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25131
25132         * flow-fill.el: Typo.
25133
25134 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
25135
25136         * spam-wash.el: New file.
25137
25138 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
25139
25140         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
25141
25142 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
25143
25144         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
25145         to be run with new-articles as LIST1, not LIST2.
25146         (spam-registration-functions): Add spam-use-ham-copy as a nil
25147         registration backend.
25148
25149 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25150
25151         * spam-stat.el (spam-stat-washing-hook): New option.
25152         (spam-stat-buffer-words): Use it.
25153         (spam-stat-process-directory, spam-stat-test-directory):
25154         Use insert-file-contents-literally.
25155         (spam-stat-coding-system): New variable.
25156         (spam-stat-load, spam-stat-save): Use it.
25157
25158 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
25159
25160         * spam-report.el (spam-report-plug-agent):
25161         Quote spam-report-url-to-file and spam-report-url-ping-plain.
25162
25163 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
25164
25165         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
25166         Allow / in mailto URLs.
25167
25168 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
25169
25170         * spam-report.el (spam-report-process-queue): Fix interactive use.
25171         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
25172         (spam-report-unplug-agent): Doc fixes.
25173         (spam-report-url-ping-mm-url, spam-report-url-to-file)
25174         (spam-report-agentize, spam-report-deagentize): Autoload.
25175
25176 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25177
25178         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
25179
25180         * message.el (message-setup-fill-variables): Add mml tags to
25181         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
25182         <ajk@iu.edu>.
25183         (message-mode): Don't modify paragraph-separate there.
25184
25185 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25186
25187         * compface.el (uncompface-use-external): Default to undecided.
25188         (uncompface-use-external-threshold): New variable.
25189         (uncompface-float-time): New macro.
25190         (uncompface): Determine whether to use the external decoder if
25191         uncompface-use-external is undecided.
25192
25193 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25194
25195         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
25196         after images.
25197
25198         * gnus-art.el (gnus-mime-display-single): Remove dead code.
25199
25200 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
25201
25202         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
25203
25204         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
25205
25206         * gnus-sum.el (gnus-summary-limit-to-age)
25207         (gnus-summary-limit-children): do.
25208
25209         * gnus-int.el (gnus-request-scan): do.
25210
25211         * gnus-group.el (gnus-group-suspend): do.
25212
25213         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
25214
25215         * gnus-cite.el (gnus-cite-parse-attributions): do.
25216
25217         * gnus-agent.el (gnus-summary-set-agent-mark)
25218         (gnus-agent-regenerate-group): do.
25219
25220         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
25221
25222         * binhex.el (binhex-decode-region-internal): do.
25223
25224 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25225
25226         * gnus-fun.el (gnus-face-properties-alist): New user option.
25227         (gnus-display-x-face-in-from): Use it.
25228
25229         * gnus-art.el (article-display-face): Ditto.
25230
25231         * compface.el (uncompface-use-external): Default to nil.
25232
25233 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
25234
25235         * nntp.el (nntp-erase-buffer): New function.
25236         (nntp-retrieve-data, nntp-send-command)
25237         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
25238         (nntp-possibly-change-group): Use it.
25239
25240         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
25241         Use with-current-buffer.
25242
25243 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
25244
25245         * compface.el: Merge the ELisp-based uncompface program.
25246         (compface): New customization group.
25247         (uncompface-use-external): New user option.
25248         (uncompface): Call uncompface-internal if uncompface-use-external
25249         is nil.
25250         (uncompface-internal): New function.  Note that there are also
25251         some other functions and variables added for this function.
25252
25253 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
25254
25255         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
25256         if necessary.
25257
25258 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
25259
25260         * spam-report.el (spam-report-unplug-agent)
25261         (spam-report-plug-agent, spam-report-deagentize)
25262         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
25263         Add support for the Agent in spam-report: when unplugged, report to a
25264         file; when plugged, submit all the requests.
25265
25266         * spam.el (spam-register-routine): Fix message about
25267         registration.
25268
25269 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
25270
25271         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
25272         dependencies.
25273         (rfc2047-encode): Use it.
25274
25275         * gnus-art.el (gnus-button-marker-list): Move before first
25276         reference.
25277
25278         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
25279         (imap-parse-body): Fix format string mismatch.
25280
25281         * gnus-score.el (gnus-summary-increase-score): do.
25282
25283         * nnrss.el (nnrss-close): New function.
25284
25285 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
25286
25287         * nnrss.el (nnrss-make-filename): New function.
25288         (nnrss-request-delete-group, nnrss-read-server-data)
25289         (nnrss-save-server-data, nnrss-read-group-data)
25290         (nnrss-save-group-data): Use it.
25291         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
25292         (nnrss-read-server-data, nnrss-read-group-data): Use load.
25293         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
25294
25295 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
25296
25297         * mml.el (mml-compute-boundary-1): Don't uncompress files.
25298
25299 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
25300
25301         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
25302         files.
25303
25304         * message.el (message-generate-headers-first): Don't quote nil
25305         and t in docstrings.
25306
25307         * imap.el (imap-id): do.
25308
25309         * gnus-agent.el (gnus-agent-consider-all-articles)
25310         (gnus-agent-queue-mail): do.
25311
25312 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
25313
25314         * spam-report.el (spam-report-process-queue): New function.
25315         Process requests from `spam-report-requests-file'.
25316         (spam-report-process-queue): Doc fix.
25317
25318 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
25319
25320         * spam.el (spam-register-routine)
25321         (spam-log-processing-to-registry, spam-log-registered-p)
25322         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25323         Change "check" to "spam-check" for semi-clarity.
25324
25325 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
25326
25327         * pop3.el: Require nnheader.
25328
25329         * mml-smime.el: Require cl.  Autoload message-fetch-field.
25330
25331         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
25332
25333         * gnus-picon.el: Require cl.
25334
25335         * gnus-fun.el: Require gnus-ems and gnus-util.
25336
25337         * gnus.el (gnus-method-to-server): Move defsubst before first use.
25338
25339         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
25340
25341         * gnus-art.el (gnus-article-edit-mode): Define before first
25342         reference.
25343
25344 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
25345
25346         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
25347         (gnus-uu-post-encoded): Use point-at-bol.
25348
25349         * gnus-topic.el (gnus-group-active-topic-p): do.
25350
25351         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
25352
25353         * gnus-group.el (gnus-group-kill-region): do.
25354
25355         * gnus-art.el (article-date-ut): do.
25356
25357         * message.el (message-fetch-field): Remove redundant
25358         case-fold-search binding.
25359         (message-narrow-to-field): Simplify.
25360
25361 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
25362
25363         * spam.el (spam-directory): Derive from `gnus-directory'.
25364
25365         * spam-report.el (spam-report-url-to-file)
25366         (spam-report-requests-file): New function and variable for offline
25367         reporting.
25368         (spam-report-url-ping-function): Add `spam-report-url-to-file'
25369         and user defined function.
25370         (spam-report-url-ping-mm-url): Remove doubled slash.
25371
25372 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
25373
25374         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
25375
25376 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
25377
25378         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
25379         Fix format string mismatch.
25380
25381         * sieve.el (sieve-deactivate-all): do.
25382
25383         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
25384
25385         * nnlistserv.el (nnlistserv-kk-wash-article): do.
25386
25387         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
25388
25389         * mm-bodies.el (mm-7bit-chars): Don't include \r.
25390
25391 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
25392
25393         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
25394         the list of checks.
25395
25396 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
25397
25398         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
25399         padding.
25400
25401 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
25402
25403         * mm-view.el (mm-fill-flowed): New variable.
25404         (mm-inline-text): Use it.
25405
25406 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
25407
25408         * spam.el (spam-spamassassin-register-ham-routine)
25409         (spam-spamassassin-register-spam-routine): Fix function names.
25410
25411 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25412
25413         * gnus.el (gnus-tmp-grouplens): Remove.
25414         (gnus-summary-line-format): Remove grouplens.
25415
25416         * gnus-group.el (gnus-group-line-format): Ditto.
25417
25418         * gnus-spec.el (gnus-format-specs): Ditto.
25419         (gnus-update-format-specifications): Flush the group format spec
25420         cache if there's the grouplens stuff.
25421         (gnus-parse-simple-format): Replace %l with the empty string.
25422
25423 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
25424
25425         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
25426         omission.
25427
25428 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25429
25430         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
25431         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
25432
25433 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25434
25435         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
25436         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
25437         New macros and functions.
25438         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
25439         Handle > NLINK_MAX messages.
25440         * nnmaildir.el (nnmaildir-request-set-mark):
25441         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
25442
25443 2004-01-25  Alex Schroeder  <alex@gnu.org>
25444
25445         * spam-stat.el (spam-stat-process-directory-age): New option.
25446         (spam-stat-process-directory): Use it.
25447
25448 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
25449
25450         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
25451         (spam-stat-save): Accept prefix argument.
25452
25453 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
25454
25455         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
25456         links" error.
25457
25458 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25459
25460         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
25461         the rest of the and/or forms.
25462
25463 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25464
25465         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
25466         compatibility with old .newsrc.eld files.
25467
25468         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
25469
25470         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
25471
25472         * gnus-start.el (gnus-1): do.
25473
25474         * gnus-group.el (gnus-group-line-format-alist): do.
25475
25476         * gnus.el (gnus-use-grouplens, gnus-visual): do.
25477
25478         * gnus-gl.el: Remove.
25479
25480 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25481
25482         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
25483         marks consisting of a single range {for example, (3 . 5)} rather
25484         than a list of a single range { ((3 . 5)) }.
25485
25486 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25487
25488         * spam-stat.el (spam-stat-store-gnus-article-buffer):
25489         Use with-current-buffer.
25490         (spam-stat-store-current-buffer): Use insert-buffer-substring to
25491         avoid consing a string.
25492
25493         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
25494         Remove obsolete entries for big5 and gb2312.
25495
25496 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25497
25498         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
25499         uncompressed list.
25500
25501 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
25502
25503         * spam-stat.el (spam-stat-strip-xref): New function.
25504         (spam-stat-process-directory): Use it.
25505
25506         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
25507         here -- it's done in message-fetch-field.
25508
25509 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25510
25511         * gnus-agent.el (gnus-agent-queue-mail)
25512         (gnus-agent-prompt-send-queue): New variables.
25513         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
25514         * gnus-draft.el (gnus-group-send-queue): Pass the group name
25515         "nndraft:queue" along to gnus-draft-send.
25516         Use gnus-agent-prompt-send-queue.
25517         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
25518         is "nndraft:queue".  Suggested by Gaute Strokkenes
25519         <gs234@srcf.ucam.org>
25520
25521         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
25522         (agent-enable-undownloaded-faces): Add.
25523         (gnus-agent-cat-groups): Use eval-and-compile, not
25524         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
25525         method of gnus-agent-cat-groups even when the buffer has been
25526         evaled.
25527         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
25528         delete gnus-agent-save-active-1.
25529         (gnus-agent-save-groups): Delete.  Identical to
25530         gnus-agent-save-active.
25531         (gnus-agent-write-active): No longer adjust agent's copy of active
25532         file as agent's adjustments are now stored in their own
25533         file.  Remove optional parameter.
25534         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
25535         servers.  Add use of min/max range limits from server's local
25536         file.
25537         (gnus-agent-save-alist): Remove unused optional argument.
25538         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
25539         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
25540         (gnus-agent-set-local): A per-server file that keeps min/max range
25541         limits for articles known to the agent.  Provides a fast mechanism
25542         for altering many active ranges.
25543         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
25544         active file (local makes it unnecessary).
25545         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
25546
25547         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
25548         (agent-enable-undownloaded-faces): Add.
25549
25550         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
25551         disable it when sending to "nndraft:queue".
25552         (gnus-group-send-queue): Add safety check to avoid sending queue
25553         when unplugged.
25554
25555         * gnus-group.el (gnus-group-catchup): Use new
25556         gnus-sequence-of-unread-articles, not
25557         gnus-list-of-unread-articles, to avoid exhausting memory with huge
25558         numbers of articles.  Use gnus-range-map to avoid having to
25559         uncompress the unread list.
25560         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
25561         Fix invalid ange-ftp reference.
25562
25563         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
25564         (gnus-sorted-range-intersection): Intersection of two ranges
25565         without requiring that they first be uncompressed.
25566
25567         * gnus-start.el (gnus-activate-group): Unless blocked by the
25568         caller, possibly expand the active range to include both cached
25569         and agentized articles.
25570         (gnus-convert-old-newsrc): Rewrote in anticipation of having
25571         multiple version-dependent converters.
25572         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
25573         gnus-agent-save-active.
25574         (gnus-save-newsrc-file): Save dirty agent range limits.
25575
25576         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
25577         gnus-agent-possibly-alter-active.
25578         (gnus-adjust-marked-articles): Faster handling of simple lists.
25579
25580 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
25581
25582         * spam-stat.el (spam-stat-test-directory): New optional argument
25583         displays a list of files detected.  Suggested by Andrew Cohen
25584         <cohen@andy.bu.edu>.
25585         (spam-stat-buffer-words-with-scores): Don't narrow and change
25586         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
25587
25588 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
25589
25590         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
25591         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
25592         (spam-spamassassin-arguments)
25593         (spam-spamassassin-spam-flag-header)
25594         (spam-spamassassin-positive-spam-flag-header)
25595         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
25596         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
25597         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
25598         (spam-list-of-processors, spam-list-of-checks)
25599         (spam-list-of-statistical-checks, spam-registration-functions)
25600         (spam-check-spamassassin-headers, spam-check-spamassassin)
25601         (spam-spamassassin-score)
25602         (spam-spamassassin-register-with-sa-learn)
25603         (spam-spamassassin-register-spam-routine)
25604         (spam-spamassassin-register-ham-routine)
25605         (spam-assassin-register-spam-routine)
25606         (spam-assassin-register-ham-routine): Add SpamAssassin support.
25607         (spam-bogofilter-score): Fix to show article before scoring.
25608
25609 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
25610
25611         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
25612         default scoring function.
25613         (spam-generic-score): Call spam-spamassassin-score if
25614         spam-use-spamassassin or spam-use-spamassassin-headers is on;
25615         spam-bogofilter-score otherwise.
25616
25617         * gnus.el (spam-process, spam-autodetect-methods):
25618         Add spamassassin and spamassassin-headers.
25619
25620 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
25621
25622         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25623         Suppress unnecessary messages.
25624
25625 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
25626
25627         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
25628         make-hash-table.
25629
25630 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25631
25632         * canlock.el (base64-encode-string): Don't autoload it.
25633
25634 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25635
25636         * run-at-time.el: Remove useless (require 'itimer),
25637         eval-and-compile and (featurep 'xemacs).
25638
25639 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
25640
25641         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
25642         GROUP is a virtual group.
25643
25644 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
25645
25646         * gnus.el: Autoload `message-y-or-n-p'.
25647
25648 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
25649
25650         * pgg-parse.el: Remove unnecessary (require 'custom).
25651
25652         * pgg-def.el: do.
25653
25654         * nnmail.el: do.
25655
25656         * gnus-undo.el: do.
25657
25658         * gnus-picon.el: do.
25659
25660         * gnus-util.el: do.
25661
25662 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
25663
25664         * gnus-sum.el (gnus-pick-line-number): Add autoload.
25665
25666 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25667
25668         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
25669         handle, as well as a list.
25670
25671         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
25672         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
25673         (mm-w3m-cid-retrieve): Simplify.
25674
25675 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
25676
25677         * message.el (message-kill-to-signature): Allow prefix arg to
25678         specify number of lines to keep before signature.
25679
25680 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
25681
25682         * message.el (message-kill-to-signature): Change docstring.
25683
25684 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
25685
25686         * canlock.el: Always require sha1-el.
25687         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
25688
25689         * message.el: Autoload sha1 only when compiling.
25690
25691         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
25692         eudc-expand-inline for XEmacs.
25693
25694 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
25695
25696         * message.el (message-canlock-generate): Require sha1-el.
25697
25698 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
25699
25700         * message.el (message-expand-name): Silence the byte compiler.
25701
25702         * lpath.el: Add detect-coding-system.
25703
25704         * dgnushack.el (dgnushack-compile): Remove obsolete check for
25705         cus-edit.
25706
25707 2004-01-13  Simon Josefsson  <jas@extundo.com>
25708
25709         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
25710         Invoke gnus-score-mode.
25711         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
25712
25713         * gnus-range.el (gnus-compress-sequence): Doc fix.
25714         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
25715
25716 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25717
25718         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
25719
25720 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
25721
25722         * spam.el (spam-get-article-as-string): Update to use
25723         gnus-request-article-this-buffer, much simpler.
25724         (spam-get-article-as-buffer): Remove.
25725
25726 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
25727
25728         * message.el (message-expand-name): Use EUDC if the user uses that.
25729
25730 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25731
25732         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
25733         character for the encoding to avoid consing a string.
25734
25735         * rfc2047.el (rfc2047-decode-string): Don't cons a string
25736         unnecessarily.
25737
25738         * mm-util.el (mm-replace-chars-in-string): Remove.
25739
25740         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
25741         of mm-replace-chars-in-string.
25742
25743 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
25744
25745         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
25746
25747         * mm-util.el (mm-subst-char-in-string): Support inplace.
25748
25749         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
25750         a new string in every iteration.  Use shy groups.
25751
25752 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
25753
25754         * gnus-srvr.el (gnus-browse-unsubscribe-group):
25755         * gnus-soup.el (gnus-soup-group-brew):
25756         * gnus-msg.el (gnus-put-message):
25757         * gnus-move.el (gnus-group-move-group-to-server):
25758         * gnus-kill.el (gnus-batch-score):
25759         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
25760         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
25761         (gnus-group-update-group, gnus-group-read-group)
25762         (gnus-group-make-group, gnus-group-make-help-group)
25763         (gnus-group-make-archive-group, gnus-group-make-directory-group)
25764         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
25765         (gnus-group-sort-by-unread, gnus-group-catchup)
25766         (gnus-group-unsubscribe-group, gnus-group-kill-group)
25767         (gnus-group-yank-group, gnus-group-set-info)
25768         (gnus-group-list-groups):
25769         * gnus.el (gnus-generate-new-group-name):
25770         * gnus-delay.el (gnus-delay-send-queue):
25771         * nnvirtual.el (nnvirtual-catchup-group):
25772         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
25773         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
25774         (gnus-group-prepare-topics, gnus-topic-check-topology):
25775         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
25776         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
25777         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
25778         (gnus-group-make-articles-read):
25779         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
25780         (gnus-group-change-level, gnus-kill-newsgroup)
25781         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
25782         (gnus-get-unread-articles, gnus-make-articles-unread)
25783         (gnus-make-ascending-articles-unread): Use accessor
25784         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
25785         to get group information for improved readability.
25786
25787
25788 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25789
25790         * gnus-art.el (article-decode-mime-words, article-babel)
25791         (gnus-article-highlight-signature, gnus-article-add-buttons)
25792         (gnus-signature-toggle): Use gnus-with-article-buffer.
25793
25794         * gnus-art.el (gnus-article-highlight-headers)
25795         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
25796
25797         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
25798         (gnus-article-set-globals, gnus-request-article-this-buffer)
25799         (gnus-button-message-id, gnus-article-maybe-hide-headers)
25800         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
25801         (gnus-mime-display-alternative): Use with-current-buffer.
25802
25803 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25804
25805         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
25806         also under 80 char limit, and call gnus-error if needed.
25807         (spam-fetch-article-header): Fix - it was a
25808         buffer-local variable (gnus-newsgroup-data).
25809         (spam-find-spam): Use spam-generate-fake-headers, forget about
25810         spam-insert-fake-headers.
25811         (spam-insert-fake-headers): Remove.
25812
25813 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25814
25815         * deuglify.el (gnus-article-outlook-unwrap-lines)
25816         (gnus-outlook-rearrange-article)
25817         (gnus-outlook-repair-attribution-outlook)
25818         (gnus-outlook-repair-attribution-block)
25819         (gnus-outlook-repair-attribution-other): Remove redundant
25820         save-excursion.
25821
25822 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25823
25824         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
25825         (spam-fetch-field-subject-fast)
25826         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
25827         (spam-fetch-article-header): Add functions to deal with Gnus
25828         internals for fast retrieval of article header data.
25829         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
25830
25831 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25832
25833         * pop3.el (pop3-md5): Remove.
25834         (pop3-apop): Replace pop3-md5 with md5.
25835
25836         * mm-bodies.el: base64 is always built-in.
25837
25838         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
25839         Use with-current-buffer.
25840
25841 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25842
25843         * canlock.el (canlock-insert-header): Remove excessive grouping in
25844         regexp.
25845
25846         * gnus-sum.el (gnus-summary-read-document): Ditto.
25847
25848         * gnus-uu.el (gnus-uu-part-number): Ditto.
25849
25850         * html2text.el (html2text-remove-tags): Ditto.
25851         (html2text-format-tags): Ditto.
25852         (html2text-format-single-elements): Ditto.
25853
25854         * mml.el (mml-parse-1): Ditto.
25855
25856 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25857
25858         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
25859
25860         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
25861
25862         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
25863
25864         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
25865
25866 2003-11-15  Simon Josefsson  <jas@extundo.com>
25867
25868         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
25869         (pgg-gpg-lookup-key): Use regexp match instead of
25870         split-string (split-string is different between emacs 21.2 and
25871         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
25872
25873 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25874
25875         * gnus-art.el (gnus-mime-view-all-parts)
25876         (gnus-article-part-wrapper, gnus-article-view-part):
25877         Use with-current-buffer.
25878
25879 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25880
25881         * spam.el (spam-disable-spam-split-during-ham-respool)
25882         (spam-spamoracle-database, spam-cache-lookups)
25883         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
25884         (spam-group-ham-mark-p, spam-group-spam-mark-p)
25885         (spam-group-ham-marks, spam-group-spam-marks)
25886         (spam-group-spam-contents-p, spam-group-ham-contents-p)
25887         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
25888         also add spam-use-blackholes to the statistical checks.
25889         (spam-fetch-field-fast): Add interface to fetching fields, may
25890         become a macro.
25891         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
25892         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
25893         (spam-insert-fake-headers): Fake an article when needed.
25894         (spam-find-spam): Fake article when possible.
25895         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
25896         (spam-check-bogofilter-headers): Use message-fetch-field instead
25897         of nnmail-fetch-field.
25898
25899 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
25900
25901         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
25902
25903 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25904
25905         * spam.el (spam-split): Do not require spam-use-CHECK to be
25906         enabled if that check is passed to spam-split explicitly; also
25907         fix so 'spam doesn't get converted to spam-split-group when
25908         spam-split-symbolic-return is t.
25909         (spam-find-spam): Find registrations of the article and use those
25910         instead of re-running spam-split to find the spam/ham
25911         classification of the article.
25912         (spam-log-processing-to-registry, spam-log-registered-p)
25913         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25914         Use gnus-error instead of gnus-message.
25915         (spam-log-registration-type): Add function to determine the
25916         classification of a message based on registry entries; will
25917         return nil if both 'spam and 'ham are found.
25918         (spam-check-BBDB): Expand all the BBDB macros here so we can have
25919         a reasonably fast local cache without the loading errors.
25920         (spam-cache-lookups): Set to t by default.
25921         (spam-find-spam): Don't try to guess spam-cache-lookups.
25922         (spam-enter-whitelist, spam-enter-blacklist): Clear the
25923         spam-caches entry.
25924         (spam-filelist-build-cache, spam-filelist-check-cache):
25925         Fix caching of whitelist/blacklist entries.
25926         (spam-check-whitelist, spam-check-blacklist):
25927         Invoke spam-from-listed-p with a type, not a cache variable.
25928         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
25929
25930 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25931
25932         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
25933
25934         * nnmail.el (nnmail-split-fancy): do.
25935
25936         * mml.el (mml-parse): do.
25937
25938         * gnus-score.el (gnus-enter-score-words-into-hashtb)
25939         (gnus-score-adaptive): do.
25940
25941 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25942
25943         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
25944         (gnus-mime-button-map): Don't set keymap parent.
25945         (gnus-button-ctan-directory-regexp): Use shy grouping.
25946         (gnus-prev-page-map): Don't set keymap parent.
25947         (gnus-prev-page-map): Remove duplicated one.
25948         (gnus-next-page-map): Don't set keymap parent.
25949         (gnus-mime-security-button-map): Ditto.
25950
25951         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
25952         version number.
25953
25954         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
25955
25956 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25957
25958         * canlock.el (canlock-sha1-function): Remove.
25959         (canlock-sha1-function-for-verify): Remove.
25960         (canlock-openssl-program): Remove.
25961         (canlock-openssl-args): Remove.
25962         (canlock-ignore-errors): Remove.
25963         (canlock-sha1-with-openssl): Remove.
25964         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
25965         (canlock-verify): Don't use canlock-ignore-errors.
25966
25967         * sha1-el.el (sha1-string-external): Make it can return a string
25968         in binary form.
25969         (sha1-region-external): Ditto.
25970         (sha1-string-internal): Ditto.
25971         (sha1-region-internal): Ditto.
25972         (sha1-region): Ditto.
25973         (sha1-string): Ditto.
25974         (sha1): Ditto.
25975
25976 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25977
25978         * spam.el (spam-report-articles-gmane): New command.
25979
25980 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25981
25982         * gnus.el: Don't make unnecessary *Group* buffer when loading.
25983
25984         * run-at-time.el (run-at-time-saved): Remove.
25985         (run-at-time): Doc fix.
25986
25987 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25988
25989         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
25990         (gnus-summary-limit-map): Add it.
25991         (gnus-summary-make-menu-bar): do.
25992
25993 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
25994
25995         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
25996         Make attempt at some caching support (done for BBDB only now).
25997         (spam-find-spam): Set spam-cache-lookups if there are more than 2
25998         addresses to be checked.
25999         (spam-clear-cache-BBDB): Add function, to be invoked by
26000         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
26001         (spam-check-BBDB): Check and use the caches, if
26002         spam-cache-lookups is on, remove superfluous (provide).
26003
26004 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
26005
26006         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
26007
26008 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
26009
26010         * run-at-time.el (run-at-time-saved): Move to after the definition
26011         of `run-at-time'.
26012
26013         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
26014
26015 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26016
26017         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
26018         mm-w3m-local-map-property.
26019
26020         * mm-view.el (mm-w3m-mode-map): Remove.
26021         (mm-w3m-local-map-property): Remove.
26022         (mm-inline-text-html-render-with-w3m): Don't use
26023         mm-w3m-local-map-property.
26024
26025 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26026
26027         * run-at-time.el: New file.
26028
26029         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
26030         under Emacs.
26031
26032         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
26033         of gnus-set-text-properties.
26034
26035         * gnus-uu.el (gnus-uu-save-article): Ditto.
26036
26037         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
26038
26039         * gnus-cite.el (gnus-cite-parse): Ditto.
26040
26041         * gnus-art.el (gnus-button-push): Use set-text-properties instead
26042         of gnus-.
26043
26044         * gnus-xmas.el (run-at-time): Require run-at-time.
26045
26046         * gnus.el: Change calls to nnheader-run-at-time and
26047         password-run-at-time throughout to use run-at-time directly.
26048
26049         * password.el: Remove definition of run-at-time.
26050
26051         * nnheaderxm.el: Remove definition of run-at-time.
26052
26053 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
26054
26055         * mml.el (mml-minibuffer-read-disposition): Show attachment type
26056         in prompt.
26057
26058 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26059
26060         * messagexmas.el (message-xmas-redefine): Alias
26061         `message-make-caesar-translation-table' to
26062         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
26063         version.
26064
26065         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
26066         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
26067         `gnus-xmas-set-text-properties'.
26068         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
26069         `gnus-xmas-completing-read'.
26070         (gnus-xmas-completing-read): Removed.
26071         (gnus-xmas-open-network-stream): Removed.
26072
26073         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
26074         XEmacs version.
26075
26076         * dns.el (dns-make-network-process): Use `open-network-stream'
26077         instead of `gnus-xmas-open-network-stream'.
26078
26079         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
26080
26081         * .cvsignore: Add auto-autoloads.el, custom-load.el.
26082
26083 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26084
26085         * gnus-art.el (gnus-mime-display-alternative)
26086         (gnus-insert-mime-button, gnus-insert-mime-security-button)
26087         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
26088         Don't use gnus-local-map-property.
26089
26090         * gnus-util.el (gnus-local-map-property): Remove.
26091
26092         * mm-view.el (mm-view-pkcs7-decrypt):
26093         Replace gnus-completing-read-maybe-default with completing-read.
26094
26095         * gnus-util.el (gnus-completing-read): do.
26096         (gnus-completing-read-maybe-default): Remove.
26097
26098 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26099
26100         * password.el: Only autoload `run-at-time' if not XEmacs.
26101         Only autoload the itimer functions if XEmacs.
26102
26103 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26104
26105         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
26106         XEmacsen.
26107
26108         * dgnushack.el: Autoload executable-find for XEmacs.
26109
26110 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26111
26112         * gnus-art.el (gnus-read-string): Remove.
26113         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
26114         read-string.
26115
26116 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
26117
26118         * netrc.el: Autoload password-read.
26119         (netrc): Add configuration group.
26120         (netrc-encoding-method, netrc-openssl-path):
26121         Add variables for encoding and decoding of files with symmetric
26122         ciphers.
26123         (netrc-encode): Add assistant function to encode a file with
26124         netrc-encoding-method.
26125         (netrc-parse): Add interactive parameter, added optional
26126         decoding if netrc-encoding-method is non-nil but otherwise
26127         behavior is standard.
26128         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
26129         Do s/encode/encrypt/ everywhere.
26130
26131         * spam.el: Remove executable-find autoload.
26132
26133 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26134
26135         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
26136
26137         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
26138
26139 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
26140
26141         * gnus-art.el (gnus-treat-ansi-sequences)
26142         (article-treat-ansi-sequences): New variable and function.
26143         Suggested by Dan Jacobson <jidanni@jidanni.org>.
26144
26145         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
26146         Use it.
26147
26148 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26149
26150         * mm-util.el (mm-quote-arg): Remove.
26151
26152         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
26153         shell-quote-argument.
26154
26155         * gnus-uu.el (gnus-uu-command): do.
26156
26157         * gnus-sum.el (gnus-summary-insert-pseudos): do.
26158
26159         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
26160         with make-char.
26161
26162         * mm-util.el (mm-make-char): Remove.
26163
26164         * mml.el (mml-mode): Replace gnus-add-minor-mode with
26165         add-minor-mode.
26166
26167         * gnus-undo.el (gnus-undo-mode): do.
26168
26169         * gnus-topic.el (gnus-topic-mode): do.
26170
26171         * gnus-sum.el (gnus-dead-summary-mode): do.
26172
26173         * gnus-start.el (gnus-slave-mode): do.
26174
26175         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
26176
26177         * gnus-ml.el (gnus-mailing-list-mode): do.
26178
26179         * gnus-gl.el (gnus-grouplens-mode): do.
26180
26181         * gnus-draft.el (gnus-draft-mode): do.
26182
26183         * gnus-dired.el (gnus-dired-mode): do.
26184
26185         * gnus-ems.el (gnus-add-minor-mode): Remove.
26186
26187         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26188         Replace gnus-char-width with char-width.
26189
26190         * gnus-ems.el (gnus-char-width): Remove.
26191
26192         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26193         Replace gnus-char-width with char-width.
26194
26195         * gnus-ems.el (gnus-char-width): Remove.
26196
26197         * spam-stat.el (with-syntax-table): Remove with-syntax-table
26198         definition.
26199         Remove Emacs 20 hash table compatibility code.
26200
26201         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
26202         20 compatibility code.
26203
26204         * spam.el (spam-point-at-eol): Replace with point-at-eol.
26205
26206         * smime.el (smime-point-at-eol): Replace with point-at-eol.
26207
26208         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
26209         Replace with point-at-{eol,bol}.
26210
26211         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
26212
26213         * imap.el (imap-point-at-eol): Replace with point-at-eol.
26214
26215         * flow-fill.el (fill-flowed-point-at-bol)
26216         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
26217
26218         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
26219         Replace with point-at-{eol,bol} throughout all files.
26220
26221 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
26222
26223         * ntlm.el (ntlm-string-as-unibyte): New macro.
26224         (ntlm-build-auth-response): Use it.
26225
26226         Remove Emacs 20 stuff:
26227         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
26228         (butlast, mapc, remove): Remove the compiler macros.
26229         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
26230         of delq and copy-sequence.
26231         * gnus-art.el (popup-menu): Remove the compiler macro.
26232         * nnmail.el (nnmail-split-fancy): Don't support customizing with
26233         Emacs 20.
26234
26235 2004-01-05  Simon Josefsson  <jas@extundo.com>
26236
26237         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
26238         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
26239         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
26240         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
26241         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
26242         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
26243         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
26244         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
26245         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
26246         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
26247         ntlm-string-permute, string-lshift into ntlm-string-lshift,
26248         string-xor into ntlm-string-xor.
26249         Suggested by Jesper Harder <harder@myrealbox.com>.
26250
26251         * ntlm.el: Don't include poem.
26252
26253         * md4.el (print-int32, print-string-hexa): Remove.
26254         Suggested by Jesper Harder <harder@myrealbox.com>.
26255
26256         * sasl-ntlm.el, ntlm.el, md4.el: New files.
26257
26258         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
26259         probably breaks emacs with DL patch, but do we care? Is anyone
26260         still using the DL stuff?)
26261
26262         * sieve-manage.el: Use the password package.
26263         (sieve-manage-read-passwd): Remove.
26264         (sieve-manage-interactive-login): Use password.  Re-add
26265         condition-case around loop.
26266
26267         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
26268         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
26269         Use the password package.
26270
26271 2003-02-19  Simon Josefsson  <jas@extundo.com>
26272
26273         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
26274         token.
26275
26276 2002-08-07  Simon Josefsson  <jas@extundo.com>
26277
26278         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
26279         (sieve-manage-authenticators):
26280         (sieve-manage-authenticator-alist): Add some SASL mechs.
26281         (sieve-sasl-auth): New function.
26282         (sieve-manage-cram-md5-auth):
26283         (sieve-manage-plain-auth): Rewrite using SASL library.
26284         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
26285         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
26286         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
26287         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
26288
26289 2004-01-05  Simon Josefsson  <jas@extundo.com>
26290
26291         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
26292         New files.
26293
26294 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26295
26296         * gnus-group.el (gnus-no-groups-message): Update.
26297
26298         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
26299
26300 2003-11-09  Simon Josefsson  <jas@extundo.com>
26301
26302         * imap.el: Support for ID IMAP extension (RFC 2971).
26303         (imap-local-variables): Add imap-id.
26304         (imap-id): New variable.
26305         (imap-id): New function.
26306         (imap-parse-response): Parse untagged ID response.
26307         * nnimap.el (nnimap-id): New variable.
26308         (nnimap-open-connection): Use it.
26309
26310 2003-12-28  Simon Josefsson  <jas@extundo.com>
26311
26312         * gnus-score.el (gnus-score-edit-all-score): New.
26313         * gnus-group.el (gnus-group-score-map): Bind it to W e.
26314
26315 2004-01-04  Simon Josefsson  <jas@extundo.com>
26316
26317         * password.el: Add.
26318
26319 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
26320
26321         * dns.el (dns-query-types): Fix typo.
26322         (dns-query-types): New function.
26323         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
26324         PTR and SOA replies, see RFC 1035.
26325
26326 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26327
26328         * gnus.el (gnus-logo-color-style): Change colors to `no'.
26329
26330         * Move to Changelog.2.
26331
26332 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26333
26334         * gnus.el (gnus-version-number): Bump version.
26335
26336 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26337
26338         * gnus.el: No Gnus v0.1 is released.
26339
26340 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26341
26342         * gnus.el: No Gnus v0.0 is released.
26343
26344 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26345
26346         * gnus.el (gnus-version-number): Bump.
26347         (gnus-version): No.
26348
26349 See ChangeLog.2 for earlier changes.
26350
26351   Copyright (C) 2004-2013 Free Software Foundation, Inc.
26352
26353   This file is part of GNU Emacs.
26354
26355   GNU Emacs is free software: you can redistribute it and/or modify
26356   it under the terms of the GNU General Public License as published by
26357   the Free Software Foundation, either version 3 of the License, or
26358   (at your option) any later version.
26359
26360   GNU Emacs is distributed in the hope that it will be useful,
26361   but WITHOUT ANY WARRANTY; without even the implied warranty of
26362   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26363   GNU General Public License for more details.
26364
26365   You should have received a copy of the GNU General Public License
26366   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
26367
26368 ;; Local Variables:
26369 ;; coding: utf-8
26370 ;; fill-column: 79
26371 ;; add-log-time-zone-rule: t
26372 ;; End: