(eww-toggle-checkbox): Implement radio/checkboxes.
[gnus] / lisp / ChangeLog
1 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * eww.el: Rewrite to implement form elements "by hand" instead of
4         relying in widget.el.  Using widget.el leads to too many
5         user interface inconsistencies.
6         (eww-self-insert): Implement entering commands in text fields.
7         (eww-process-text-input): New function to make text input field editing
8         work.
9         (eww-submit): Rewrite to use the new-style form methods.
10         (eww-select-display): Display the correct selected item.
11         (eww-change-select): Implement changing the select value.
12         (eww-toggle-checkbox): Implement radio/checkboxes.
13
14         * shr.el (shr-urlify): Use `keymap' instead of `local-map' so that we
15         don't shadow mode-specific bindings.
16
17         * eww.el (eww-browse-url): Don't push stuff onto history if there's
18         nothing to push.
19
20         * shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
21
22 2013-06-19  Glenn Morris  <rgm@gnu.org>
23
24         * gnus-group.el (gnus-mark-article-as-read): Fix declaration.
25
26 2013-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
27
28         * auth-source.el (auth-source-netrc-parse-entries): Remove debugging.
29
30 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
31
32         * shr.el (shr-make-table-1): Implement <td rowspan>.
33         (shr-table-horizontal-line): Allow nil as a value, and change the
34         default.
35         (shr-insert-table-ruler): Respect the nil value.
36
37 2013-06-18  Tom Tromey  <tromey@barimba>
38
39         * eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
40         New defvars.
41         (eww-open-file): New defun.
42         (eww-render): Initialize new variables.
43         (eww-display-html): Handle "link" and "a".
44         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
45         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
46         (eww-back-url): Rename from eww-previous-url.
47         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url): New
48         defuns.
49
50 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
51
52         * shr.el (shr-tag-table): Insert the images after the table, so that
53         they're not covered by the table colourisation, which often looked
54         awkward.
55         (shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and
56         <dd>.
57         (shr-make-table-1): Implement <td colspan=> support.
58         (shr-insert-document): Use one less than window width if `shr-width' is
59         nil, since otherwise things may get one character too wide.
60
61 2013-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
62
63         * eww.el (eww-detect-charset): Improve regexp; move backward.
64
65 2013-06-18  Glenn Morris  <rgm@gnu.org>
66
67         * mm-decode.el (widget-convert-button): Autoload.
68
69         * sieve-manage.el (mm-enable-multibyte): Autoload.
70
71         * shr.el (libxml-parse-html-region): Declare.
72         (shr-render-buffer): Explicit error if no libxml2 support.
73
74 2013-06-17  Teodor Zlatanov  <tzz@lifelogs.com>
75
76         * auth-source.el (auth-source-current-line): New function.
77         (auth-source-netrc-parse-entries): When a data token is "machine",
78         assume we're in the wrong place and abort parsing the current line.
79
80 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
81
82         * eww.el (eww-tag-select): Don't render totally empty <select> forms.
83         (eww-convert-widgets): Don't bug out if the first widget starts at the
84         beginning of the buffer.
85         (eww-convert-widgets): Fix last patch.
86         (eww-tag-input): Support <input type=image>.
87
88         * shr.el (shr-insert-table): Respect border-collapse: collapse.
89         (shr-tag-base): Protect against base specs that are degenerate.
90         (shr-ensure-paragraph): Don't delete empty lines that have text
91         properties, because these may be input fields.
92
93         * eww.el (eww-convert-widgets): Put `help-echo' on input fields so that
94         we can navigate to them.
95
96         * shr.el (shr-colorize-region): Put the colours over the entire region.
97         (shr-inhibit-decoration): New variable.
98         (shr-add-font): Use it to inhibit text property decorations while doing
99         preliminary table renderings.  This speeds up typical Wikipedia page
100         renderings by 15%.
101         (shr-tag-span): Don't respect the <title>, because that overwrites the
102         help-echo from links inside the spans.
103         (shr-next-link): Use `help-echo' for navigation, so that we can
104         navigate to form elements, too.
105
106         * eww.el (eww-button): New face.
107         (eww-convert-widgets): Use it to make submit buttons more button-like.
108
109         * mm-decode.el (mm-convert-shr-links): Override the shr local map, so
110         that Gnus commands work.
111
112         * shr.el (shr-render-td): Support horizontal alignment.
113
114         * eww.el (eww-put-color): Removed.
115         (eww-colorize-region): Use `add-face-text-property'.
116
117         * shr.el (shr-add-font): Append face data, so that we get the correct
118         presedence: The innermost value (which is applied first) wins.
119         (shr-make-overlay): Obsolete function.
120
121         * mm-decode.el (mm-convert-shr-links): New function to convert
122         new-style shr URL links into widgets.
123         (mm-shr): Use it.
124
125         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
126         widget commands, since we're no longer using widgets for links.
127
128         * shr.el (shr-next-link): New command.
129         (shr-previous-link): New command.
130         (shr-urlify): Don't use `widget-convert', because that's slow.
131         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
132         because collecting the overlays and reapplying them when generating
133         tables is slow.
134         (shr-insert-table): Ditto.
135
136 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
137
138         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
139         * shr.el (browse-url): Require `url'.
140         * eww.el (url): Require format-spec.
141
142 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
143
144         * eww.el (eww-display-html): Default to using the entire window width.
145         (eww-browse-url): Don't add a User-Agent header (twice), because that
146         makes Bing refuse connection.
147
148         * shr.el (shr-make-table): Cache the table rendering at the table
149         level, and not the <td> level.  This is a bit faster.
150
151         * eww.el (eww-render): Go to the correct ID when given URLs ending with
152         #id.
153
154         * shr.el (shr-tag-li): Don't require a new paragraph, since other
155         browsers don't.
156         (shr-expand-url): Respect #anchor links.
157         (shr-parse-base): Chop off the anchor before using.
158         (shr-descend): Respect display: none.
159         (shr-descend): Allow marking elements that have certain IDs.
160
161         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
162
163         * shr.el (shr-expand-url): Don't bug out on zero-length links.
164
165         * eww.el (eww-tag-textarea): Support <textarea>.
166
167 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
168
169         * shr.el (shr-dom-to-xml): Fixed function call.
170
171         * eww.el (eww): New group.
172         (eww-header-line-format): New custom variable.
173         (eww-current-title): New variable.
174         (eww-display-html): Update header and handle title tag.
175         (eww-update-header-line-format): New function.
176         (eww-tag-title): New function.
177
178         * shr.el (shr-dom-to-xml): (shr-dom-to-xml): New function.
179         (shr-tag-svg): Add support for the SVG tag.
180         (shr-bullet): New custom variable.
181         (shr-tag-li): Support custom bullet in unordered lists.
182
183 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
184
185         * shr.el (shr-expand-url): Respect // URLs.
186
187         * eww.el (eww-tag-body): Override the shr body rendering so that we can
188         put a background colour onto the entire buffer.
189         (eww-render): When being redirected, use the redirect URL as the new
190         base URL.
191
192         * shr.el (shr-parse-base): Fix parsing error.
193
194         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
195
196         * shr.el (shr-parse-base): New function.
197         (shr-expand-url): Use it to expand relative URLs reliably.
198
199 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
200
201         * auth-source.el (auth-source-search-collection): Fix docstring.
202         (auth-source-netrc-parse): Refactor and improve netrc parser to support
203         single-quoted strings and multiline entries.
204         (auth-source-netrc-parse-next-interesting)
205         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
206         functions to support parser.
207
208 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
209
210         * eww.el (eww-submit): Get submit button logic right when hitting RET
211         on non-submit buttons.
212
213         * shr.el: Remove shr-preliminary-table-render, since that can't really
214         be used for anything in practice.
215
216 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
217
218         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
219         (sieve-manage-quit).
220
221 2013-06-14  Glenn Morris  <rgm@gnu.org>
222
223         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
224
225 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
226
227         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
228         control the maximum size of photo ID image.
229         (mml2015-epg-key-image-to-string): Respect it.
230
231 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
232
233         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
234         instead of the final one so that we can more easily distinguish them.
235
236         * eww.el (eww-submit): Compute the submission URL correctly.
237
238 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
239
240         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
241         Use plist-get rather than CL's getf.
242         (sieve-manage-parse-capability): Avoid CL's remove-if.
243
244 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
245
246         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
247         (sieve-manage-quit).
248
249 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
250
251         * shr.el (shr-expand-url): Expansion should chop off the bits after the
252         last slash.
253
254         * eww.el (eww-tag-select): Use the first value as the default value.
255
256 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
257
258         * eww.el (eww): Prepend urls with http:// if scheme is missing.
259         (eww-mode): Use `define-derived-mode'.
260         (eww-parse-headers): Parse headers from beginning of buffer so that
261         file:// links work.
262
263 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
264
265         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
266
267 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
268
269         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
270         to handle them at all.
271
272 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
273
274         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
275         work, too.
276         (eww-tag-select): Implement <select>.
277
278 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
279
280         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
281         stream managing functions by using open-protocol-stream to do most of
282         the work. Has the nice benefit of enabling STARTTLS.
283         Wait for capabilities after STARTTLS: following RFC5804, the server
284         sends new capabilities after successfully establishing a TLS connection
285         with the client. The client should update the cached list of
286         capabilities, but we just ignore the answer for now.
287         (sieve-manage-network-p, sieve-manage-network-open)
288         (sieve-manage-starttls-p, sieve-manage-starttls-open)
289         (sieve-manage-forward, sieve-manage-streams)
290         (sieve-manage-stream-alist): Remove unneeded functions neither in the
291         API, nor called by any other function.
292         Enable Multibyte for SieveManage buffers: The parser won't properly
293         handle umlauts and line endings unless multibyte is turned on in the
294         process buffer.
295
296 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
297
298         * eww.el (eww-tag-input): Support password fields.
299         (eww-submit): Support POST.
300
301 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
302
303         * eww.el (eww-tag-form): Protect against degenerate forms.
304
305         * shr.el (shr-expand-url): Expand URLs that start with a slash
306         correctly.
307
308         * eww.el (eww-submit): Get submit button logic right.
309
310         * shr.el (shr-final-table-render): New variable to signal when we're
311         doing the final table rendering so that we can collect more data at
312         that point.
313
314         * eww.el (eww-submit): Make form submission work.
315         (eww-tag-input): Implement submit buttons.
316         (eww-click-radio): Implement radio and checkboxes.
317         (eww-submit): Handle hidden elements.
318
319         * shr.el (shr-descend): Allow other packages to override (or provide)
320         rendering of elements.
321         (shr-expand-url): Strip query strings from URLs before expanding them.
322
323         * eww.el: Don't require cl-lib.
324         (eww-tag-form): Start form support.
325
326         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
327
328         * eww.el: Start writing a new, tiny web browser.
329         (eww-previous-url): New command.
330         (eww-quit): New command.
331
332 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
333
334         * sieve.el: Put point at beginning of buffer when viewing a script.
335         (sieve-open-server): respect the PORT parameter. Show the correct port
336         number in sieve-buffer's header. Fixed code to also work with a string
337         as port specifier. Properly close the connection on pressing 'q'. Make
338         sieve-manage-quit close the connection and process buffer. Also, remove
339         duplicate keybinding for 'q'.
340
341 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
342
343         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
344         make it easier to read.
345         (mm-pkcs7-enveloped-magic): Ditto.
346
347 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
348
349         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
350         before `image-type-available-p' to avoid loading the image libraries
351         needlessly.
352
353 2013-06-05  David Engster  <deng@randomsample.de>
354
355         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
356         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
357         to see whether the group was synced before.
358
359 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
360
361         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
362         when opening the connection.
363         Suggested by João Távora <joaotavora@gmail.com> in
364         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
365
366 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
367
368         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
369         assume Date header begins with "Date", that may be customized into
370         something like "X-Sent" using gnus-article-time-format.
371         (article-transform-date): Allow multi-line Date header.
372
373 2013-06-02  David Engster  <deng@randomsample.de>
374
375         * registry.el (initialize-instance, registry-lookup)
376         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
377         (registry-lookup-secondary-value, registry-search, registry-delete)
378         (registry-insert, registry-reindex, registry-size, registry-prune): Do
379         not wrap methods in `eval-and-compile'.  This breaks due to latest
380         changes in EIEIO (introduction of eieio-core.el).
381
382 2013-05-30  Glenn Morris  <rgm@gnu.org>
383
384         * nnmail.el (nnmail-fancy-expiry-target):
385         Also bind mail-dont-reply-to-names.
386
387         * spam-stat.el (spam-stat-save):
388         No need to tweak font-lock in temp buffers.
389
390         * shr.el (shr-put-image): Silence compiler.
391
392 2013-05-29  Glenn Morris  <rgm@gnu.org>
393
394         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
395
396         * gnus-group.el (gnus-sequence-of-unread-articles)
397         (gnus-summary-add-mark, gnus-mark-article-as-read)
398         (gnus-group-make-articles-read): Declare.
399
400         * gnus-sum.el (gnus-parameter-list-identifier)
401         (gnus-article-stop-animations, gnus-stop-downloads)
402         (gnus-article-only-boring-p, article-goto-body)
403         (gnus-flush-original-article-buffer, article-narrow-to-head)
404         (gnus-article-hidden-text-p, gnus-delete-wash-type)
405         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
406
407         * gnus.el: No need to eval-and-compile autoloads.
408
409         * gravatar.el (help-function-arglist): Autoload.
410
411         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
412
413         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
414
415         * spam.el: No need to load spam-report when compiling.
416         No need to eval-and-compile autoloads.
417         (spam-report-resend-to): Declare.
418         (spam-report-resend-register-routine): Require 'spam-report.
419
420 2013-05-24  Julien Danjou  <julien@danjou.info>
421
422         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
423         setup.
424
425 2013-05-23  Glenn Morris  <rgm@gnu.org>
426
427         * gnus-util.el (rmail-swap-buffers-maybe)
428         (rmail-maybe-set-message-counters, rmail-count-new-messages)
429         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
430         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
431
432         * mm-decode.el: No need to load term when compiling.
433         (term-mode, term-char-mode): Declare.
434
435         * mm-util.el: No need to load jka-compr when compiling.
436         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
437
438         * nnmaildir.el: Require is automatically eval-and-compile.
439         (nnmail): Require at run-time too.
440
441         * registry.el (registry-size): Move definition before use.
442
443 2013-05-22  Daiki Ueno  <ueno@gnu.org>
444
445         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
446         signed data to conform the standard.  (Bug#14232)
447
448 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
449
450         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
451         double angle quotation mark.
452
453 2013-05-20  Glenn Morris  <rgm@gnu.org>
454
455         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
456
457 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
458
459         * message.el (message-insert-formatted-citation-line): handle finding
460         first/lastname when more than 2 names appear.
461
462 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
463
464         * shr.el (shr-tag-span): New function.
465
466 2013-05-18  Glenn Morris  <rgm@gnu.org>
467
468         * message.el (message-mode): Use message-mode-abbrev-table,
469         with text-mode-abbrev-table as parent.  (Bug#14413)
470
471 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
472
473         * message.el (message-expand-group): Decode group names.
474
475 2013-05-16  Julien Danjou  <julien@danjou.info>
476
477         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
478         app-icon.
479
480 2013-05-15  Glenn Morris  <rgm@gnu.org>
481
482         * shr-color.el (shr-color-visible-luminance-min)
483         (shr-color-visible-distance-min): Use shr-color group.
484
485 2013-05-11  Glenn Morris  <rgm@gnu.org>
486
487         * gnus-vm.el: Make it loadable without VM.
488         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
489         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
490
491 2013-05-09  Glenn Morris  <rgm@gnu.org>
492
493         * mml1991.el: Make it loadable.  (Bug#13456)
494
495         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
496         * gnus-async.el (gnus-async-post-fetch-function):
497         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
498         * gnus-html.el (gnus-html-image-cache-ttl):
499         * gnus-notifications.el (gnus-notifications-timeout):
500         * gnus-picon.el (gnus-picon-properties):
501         * gnus-util.el (gnus-completion-styles):
502         * gnus.el (gnus-other-frame-resume-function):
503         * message.el (message-user-organization-file)
504         (message-cite-reply-position):
505         * nnir.el (nnir-summary-line-format)
506         (nnir-retrieve-headers-override-function):
507         * shr-color.el (shr-color-visible-luminance-min):
508         * shr.el (shr-blocked-images):
509         * spam-report.el (spam-report-resend-to):
510         * spam.el (spam-summary-exit-behavior): Fix custom types.
511
512         * gnus-salt.el (gnus-selected-tree-face): Fix default.
513
514 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
515
516         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
517         because of let-binding help-xref-following.  (Bug#14356)
518
519 2013-05-06  Glenn Morris  <rgm@gnu.org>
520
521         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
522
523 2013-05-04  Andrew Cohen  <cohen@bu.edu>
524
525         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
526         entering into the registry.
527
528 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
529
530         * gnus.el: Ma Gnus v0.7 is released.
531
532 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
533
534         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
535         (Bug#14304)
536
537 2013-04-27  Glenn Morris  <rgm@gnu.org>
538
539         * gnus.el (gnus-list-debbugs):
540         Use require rather than autoload.  (Bug#14262)
541
542 2013-04-27  Julien Danjou  <julien@danjou.info>
543
544         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
545         port to "sieve" now that it has an official IANA port assigned.
546
547 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
548
549         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
550         Don't set the MAILHOST environment variable permanently (Bug#14271).
551
552 2013-04-26  Glenn Morris  <rgm@gnu.org>
553
554         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
555
556 2013-04-25  Andrew Cohen  <cohen@bu.edu>
557
558         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
559         string values of 'gcc-self. Thanks to Saroj Thirumalai.
560
561 2013-04-24  Andrew Cohen  <cohen@bu.edu>
562
563         * nnir.el (nnir-close-group): Make sure we are in the right group.
564
565         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
566         dependency table from all newly retrieved headers.
567
568 2013-04-16  David Edmondson  <dme@dme.org>
569
570         Support <img src="data:...">.
571
572         * shr.el (shr-image-from-data): New function.
573         (shr-tag-img): Use it.
574
575 2013-04-14  Andrew Cohen  <cohen@bu.edu>
576
577         * nnir.el (nnir-request-set-mark): Make sure we are in the right
578         group.
579
580 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
581
582         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
583         corresponding to any existing group (Bug#14166).
584
585 2013-04-10  Andrew Cohen  <cohen@bu.edu>
586
587         * nnir.el (number-sequence): No longer used.
588         (nnir-request-set-mark): New function.
589         (nnir-request-update-info): Improve marks updating.
590         (nnir-request-scan): Don't duplicate marks updating.
591         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
592         Use 'assq rather than 'assoc. Quote anonymous function.
593         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
594         Use 'gnus-group-prefixed-p.
595         (gnus-summary-create-nnir-group): Make sure server for method is open.
596
597 2013-04-04  Andrew Cohen  <cohen@bu.edu>
598
599         * nnir.el (gnus-nnir-group-p): New function.
600         (nnir-possibly-change-group): Use it.
601
602         * gnus-msg.el (gnus-setup-message): Use it.
603
604 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
605
606         * mml.el (mml-minibuffer-read-description): Use `default' insted of
607         `initial-input' for the argument name.
608         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
609
610 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
611
612         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
613         (used by MH-E).
614
615 2013-04-01  Andrew Cohen  <cohen@bu.edu>
616
617         * nnir.el (nnir-request-update-mark): Improve mark updating in original
618         group.
619
620         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
621         fix compilation.
622
623 2013-03-31  Andrew Cohen  <cohen@bu.edu>
624
625         * nnir.el (nnir-method-default-engines): And another typo.
626
627 2013-03-30  Andrew Cohen  <cohen@bu.edu>
628
629         * nnir.el (nnir-method-default-engines): Fix typo.
630
631 2013-03-29  Andrew Cohen  <cohen@bu.edu>
632
633         * nnir.el: Define 'number-sequence for xemacs.
634         (gnus-summary-create-nnir-group): New function to create an nnir group
635         from an nnir summary buffer based on the current query.
636         (nnir-request-create-group): Update to allow nnir group creation based
637         on the current query.
638
639 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
640
641         * nndraft.el (nndraft-request-expire-articles):
642         Make expiry target always `delete'.
643
644 2013-03-27  Andrew Cohen  <cohen@bu.edu>
645
646         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
647         buffer use the posting-style and gcc of the original article group.
648         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
649
650         * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come
651         after other deffoos.
652
653 2013-03-25  Andrew Cohen  <cohen@bu.edu>
654
655         * nnir.el: Major rewrite. Cleaner separation between searches and group
656         management. Marks are now shown in nnir summary buffers. Rudimentary
657         support for real (i.e. not ephemeral) nnir groups.
658         (gnus-summary-make-nnir-group): New function for initiating searches
659         from a summary buffer.
660
661 2013-03-18  Sam Steingold  <sds@gnu.org>
662
663         * message.el (message-bury): Minor cleanup.
664
665 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
666
667         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
668
669 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
670
671         * nndir.el (nndir-request-list): Remove 2nd argument passed to
672         nnml-request-list.  (Bug#13873)
673         (nndir-request-newsgroups): Remove, unused.
674
675         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
676
677 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
678
679         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
680         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
681         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
682
683 2013-03-03  Ted Phelps  <phelps@gnusto.com>
684
685         * shr.el: Make all the overlays set the `evaporate' property so that
686         they're removed properly.
687
688 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
689
690         * mml2015-el (mml2015-epg-key-image): wrap epg-gpg-program in
691         shell-quote-argument.
692
693 2013-02-22  David Engster  <deng@randomsample.de>
694
695         * gnus-registry.el (gnus-registry-save): Provide class name when
696         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
697         `condition-case' to stay compatible with older EIEIO versions which
698         only accept one argument.
699
700 2013-02-17  Daiki Ueno  <ueno@gnu.org>
701
702         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
703         (epg-user-id-validity): Autoload.
704         (mml2015-epg-check-user-id): New function.
705         (mml2015-epg-check-sub-key): New function split from
706         mml2015-epg-find-usable-key.
707         (mml2015-epg-find-usable-key): Accept context, name, usage, and
708         optional name-is-key-id, to handle the case when user-id is unusable.
709         Reported by Łukasz Stelmach <stlman@poczta.fm>.
710
711 2013-02-17  Glenn Morris  <rgm@gnu.org>
712
713         * shr.el (shr-put-image): Use image-multi-frame-p if available.
714
715 2013-02-16  Glenn Morris  <rgm@gnu.org>
716
717         * shr.el (shr-put-image): Only animate images that specify a delay.
718         This is consistent with the old image-animated-p behavior.
719
720 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
721
722         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
723         for XEmacs.
724
725 2013-02-13  Juri Linkov  <juri@jurta.org>
726
727         * gnus-art.el (gnus-article-mode-map):
728         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
729         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
730
731 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
732
733         * auth-source.el (auth-source-format-prompt): Don't get confused by
734         any "\" in replacement text.  (Bug#13637)
735
736 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
737
738         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
739         (gnus-backend-trace): Honour gnus-backend-trace.
740
741         * mml.el (mml-insert-part): Insert closing tag.
742
743         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
744
745 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
746
747         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
748         able to find the article, which can happen in debbugs groups,
749         apparently.
750
751 2013-01-16  Glenn Morris  <rgm@gnu.org>
752
753         * smiley.el (smiley-style): Make the file loadable in batch mode.
754
755 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
756
757         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
758         imap process running.
759
760 2013-01-14  Julien Danjou  <julien@danjou.info>
761
762         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
763         Compare addresses against addresses, not against the full From field.
764
765 2013-01-13  Richard Stallman  <rms@gnu.org>
766
767         * message.el (message-forward-make-body-mime): New args BEG, END
768         specify what part of FORWARD-BUFFER to use.  Do the work directly
769         instead of calling `mml-insert-buffer'.
770
771 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
772
773         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
774         cross-reference(s).
775
776         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
777         cross-reference(s).
778
779 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
780
781         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
782         and point-max-marker.
783         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
784
785 2013-01-11  Julien Danjou  <julien@danjou.info>
786
787         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
788         max are almost equal. Also return the correct value for V which is
789         already between 0 and 1.
790
791 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
792
793         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
794         to mml2015-encrypt-to-self.
795         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
796
797 2013-01-09  Daiki Ueno  <ueno@gnu.org>
798
799         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
800         mml-smime-epg-find-usable-secret-key.
801
802 2013-01-08  Glenn Morris  <rgm@gnu.org>
803
804         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
805
806 2013-01-07  Daiki Ueno  <ueno@gnu.org>
807
808         * mml-smime.el: Support signing by sender.
809         Requested by Uwe Brauer.
810         (mml-smime-sign-with-sender): New user option analogous
811         to mml2015-sign-with-sender.
812         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
813         (mml-smime-epg-find-usable-secret-key): New helper function copied from
814         mml2015.el.
815
816 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
817
818         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
819         isn't running, because Gnus will probably not know how to handle the
820         Gcc header (bug#11941).
821
822         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
823         articles.
824
825 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
826
827         * nnfolder.el (nnfolder-recursive-directory-files): New function.
828         (nnfolder-generate-active-file): Make this function work with recursive
829         folder names.
830
831 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
832
833         * nntp.el (nntp-open-connection): Use HELP as the capability command
834         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
835         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
836
837 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
838
839         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
840         place holder since this gives `Invalid face reference: nil' messages.
841         Use the `default' face instead.  It has the same effect here, even
842         though it is not no-op.
843
844         * gnus-util.el
845         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
846
847 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
848
849         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
850         non-string posting styles (bug#13285).
851
852 2012-12-27  Glenn Morris  <rgm@gnu.org>
853
854         * plstore.el (plstore-passphrase-callback-function):
855         Use plstore-get-file.
856
857 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
858
859         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
860         stderr.
861
862 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
863
864         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
865
866         * gnus-compat.el (set-buffer-multibyte): Remove.
867
868 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
869
870         * mml2015.el (mml2015-epg-key-image): use --attribute-fd rather than
871         temporary file to get PGP key image. Pass no-show-photos when extracting
872         image to avoid having it pop up twice.
873
874 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
875
876         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
877         eligible for treatment.
878
879         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
880         lines.  This makes summary commands with hidden threads work more
881         reliably.
882
883         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
884         button to mark the hidden citations (bug#9395).
885
886 2012-12-26  Daiki Ueno  <ueno@gnu.org>
887
888         * mml2015.el (mml2015-epg-signature-to-string): New function.
889         (mml2015-epg-verify-result-to-string): New function.
890         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
891         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
892         instead of epg-verify-result-to-string.
893         (epg-signature-key-id, epg-signature-to-string): Autoload.
894         (epg-verify-result-to-string): Remove autoload.
895
896 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
897
898         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
899         ID image from GPG public key.
900         (mml2015-epg-key-image-to-string): New function.
901
902 2012-12-25  Leo Liu  <sdl.web@gmail.com>
903
904         * plstore.el (plstore-passphrase-callback-function): Fix error when
905         error when plstore-cache-passphrase-for-symmetric-encryption is set
906         (bug#13264).
907
908 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
909
910         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
911         buffer to the article buffer here, because that clobbers multiple
912         article buffers.
913
914         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
915         buffer always points to the right summary buffer.
916
917 2012-12-25  John Wiegley  <jwiegley@gmail.com>
918
919         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
920         the password (bug#12097).
921
922 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
923
924         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
925         (bug#13263).
926
927         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
928         buffer exists before using it (bug#12475).
929
930         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
931         offline groups (bug#11937).
932
933         * message.el (message-yank-original): When using customize to set the
934         value of `message-cite-style', the variable it set to a symbol that's
935         the name of the variable, which must then be dereferenced (bug#12616).
936
937 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
938
939         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
940         the `face' property with a list whose car is the face specified in the
941         format string and whose cdr is (nil).
942         * lisp/gnus-util.el
943         (gnus-put-text-property-excluding-characters-with-faces):
944         Change accordingly.
945         (gnus-get-text-property-excluding-characters-with-faces): New function.
946         * lisp/gnus-sum.el (gnus-summary-highlight-line):
947         * lisp/gnus-salt.el (gnus-tree-highlight-node):
948         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
949
950 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
951
952         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
953         login methods.
954         (nnimap-login): Respect the `nnimap-authenticator' variable.
955
956         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
957         mark state when moving articles.  Otherwise unticked articles will get
958         their ticks back after moving.
959
960 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
961
962         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
963
964         * message.el (message-ignored-news-headers): Always remove
965         X-Message-SMTP-Method to avoid information leakage if the user
966         mistakenly inserts the header into news messages.
967
968         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
969
970         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
971         right than four characters, this command would move point to
972         `point-max'.  Don't do that.
973
974         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
975         to nil to allow re-selecting groups that gain articles.
976         (gnus-bug-group-download-format-alist): Update the URL.
977
978 2012-12-23  Andreas Schwab  <schwab@suse.de>
979
980         * shr.el (shr-tag-em): Render em as italic, not bold.
981
982 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
983
984         * gnus-int.el (gnus-backend-trace): Factor out into its own function
985         for reuse.
986         (gnus-open-server): Use it to add more tracing.
987         (gnus-finish-retrieve-group-infos): Add backend tracing.
988         (gnus-backend-trace): Also note the elapsed seconds.
989
990 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
991
992         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
993         Set epa-file-encrypt-to from variable to avoid querying.
994
995 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
996
997         * sieve-mode.el (sieve-font-lock-keywords):
998         Keywords should be word delimited.  (Bug#13173)
999
1000 2012-12-13  Andreas Schwab  <schwab@suse.de>
1001
1002         * tls.el (tls-program): Update customize type.
1003
1004 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1005
1006         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
1007         instead of <pre> to align message header.
1008
1009 2012-12-12  Sam Steingold  <sds@gnu.org>
1010
1011         * gnus.el (gnus-other-frame-resume-function): Add user option.
1012         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
1013
1014 2012-12-06  Sam Steingold  <sds@gnu.org>
1015
1016         * gnus-start.el (gnus-before-resume-hook): Add.
1017         (gnus-1): Run it when Gnus is alive.
1018
1019 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1020
1021         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
1022         * gnus-art.el (article-unsplit-urls)
1023         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
1024         * gnus-registry.el (gnus-registry-get-article-marks)
1025         * message.el (message-goto-body): Use it.
1026         (message-called-interactively-p): Remove.
1027
1028         * spam-stat.el (spam-stat-called-interactively-p): New macro.
1029         (spam-stat-score-buffer): Use it.
1030
1031         * spam.el: Silence the warnings against BBDB functions when compiling.
1032
1033         * gnus-score.el (gnus-score-decode-text-parts):
1034         Use append+mapcar instead of the cl function mapcan.
1035
1036 2012-12-05  Sam Steingold  <sds@gnu.org>
1037
1038         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
1039         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
1040         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
1041
1042 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1043
1044         * gmm-utils.el (gmm-called-interactively-p): Revert.
1045         This seems to cause Emacs to get stuck!
1046         * gnus-art.el (article-unsplit-urls)
1047         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
1048         * gnus-registry.el (gnus-registry-get-article-marks)
1049         * message.el (message-goto-body)
1050         (message-called-interactively-p): Revert.
1051
1052         * gmm-utils.el (gmm-called-interactively-p): New function.
1053         * gnus-art.el (article-unsplit-urls)
1054         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
1055         * gnus-registry.el (gnus-registry-get-article-marks)
1056         * message.el (message-goto-body): Use it.
1057         (message-called-interactively-p): Remove.
1058
1059         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
1060         * gnus-sync.el (gnus-sync-lesync-call)
1061         * message.el (message-read-from-minibuffer): Use it.
1062
1063 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1064
1065         * gmm-utils.el (gmm-flet): Remove.
1066         * gnus-sync.el (gnus-sync-lesync-call)
1067         * message.el (message-read-from-minibuffer): Don't use it.
1068
1069 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1070
1071         * gmm-utils.el (gmm-labels): Use cl-labels if available.
1072
1073 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1074
1075         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
1076
1077         * gnus-sync.el (gnus-sync-lesync-call)
1078         * message.el (message-read-from-minibuffer): Use gmm-flet.
1079
1080         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
1081
1082         * gnus-util.el (gnus-macroexpand-all): Remove.
1083
1084 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
1085
1086         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
1087         to TAB, not [tab].
1088         (gnus-summary-article-map): Likewise.
1089
1090         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
1091         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
1092
1093 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
1094
1095         * time-date.el: Commentary fix.
1096
1097 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1098
1099         * color.el: Don't require cl.
1100         (color-complement): `caddr' -> `nth 2'.
1101
1102         * time-date.el (time-to-seconds): De-obsolete.
1103
1104 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1105
1106         * message.el (message-get-reply-headers):
1107         Make sure the reply goes to the author if it is a wide reply.
1108
1109 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
1110
1111         * gnus-score.el (gnus-score-body):
1112         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
1113         scoring by body.
1114
1115 2012-11-16  Glenn Morris  <rgm@gnu.org>
1116
1117         * gnus-diary.el (nndiary-request-create-group-functions)
1118         (nndiary-request-update-info-functions)
1119         (gnus-subscribe-newsgroup-functions)
1120         (nndiary-request-accept-article-functions):
1121         Use new names for hooks rather than obsolete aliases.
1122
1123 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1124
1125         * dgnushack.el (define-obsolete-variable-alias): Simplify.
1126
1127 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1128
1129         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
1130         in meta tag with the one the part specifies in its header.
1131
1132 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1133
1134         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
1135         by default.
1136
1137 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1138
1139         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
1140         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
1141
1142 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1143
1144         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
1145         and a runtime function for it, of which the XEmacs version takes only
1146         two arguments.
1147
1148 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1149
1150         * nndiary.el (nndiary-request-create-group-functions)
1151         (nndiary-request-update-info-functions)
1152         (nndiary-request-accept-article-functions):
1153         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
1154         "-hooks" suffix.
1155
1156 2012-10-19  Julien Danjou  <julien@danjou.info>
1157
1158         * gnus-art.el: Require gnus-util because it uses
1159         `gnus-timer--function'.
1160
1161 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1162
1163         * starttls.el (starttls-extra-arguments): Doc fix.
1164
1165 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1166
1167         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
1168         it.
1169
1170 2012-10-06  Glenn Morris  <rgm@gnu.org>
1171
1172         * gnus-notifications.el (gnus-notifications):
1173         Add missing group :version tag.
1174         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
1175         (gnus-gcc-post-body-encode-hook):
1176         * gnus-sync.el (gnus-sync-lesync-name)
1177         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
1178
1179 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
1180
1181         * color.el (color-hsl-to-rgb): Fix incorrect results for
1182         small and large hue values.  (Bug#12559)
1183
1184 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1185
1186         New UIDL implementation.
1187
1188         * mail-source.el (mail-sources, mail-source-keyword-map):
1189         Add :leave as a pop3 keyword.
1190         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
1191
1192         * pop3.el (pop3-leave-mail-on-server): Allow number.
1193         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
1194         (pop3-movemail): Add UIDL support.
1195         (pop3-send-streaming-command): Take a list of mail numbers instead of
1196         the number of mails.
1197         (pop3-write-to-file): Add X-UIDL header.
1198         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
1199         (pop3-uidl-add-xheader): New functions.
1200
1201         * message.el (message-ignored-resent-headers):
1202         Add X-Content-Length and X-UIDL headers.
1203
1204 2012-10-05  Glenn Morris  <rgm@gnu.org>
1205
1206         * color.el (color-name-to-rgb, color-rgb-to-hex)
1207         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1208         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1209         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1210         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1211
1212 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1213
1214         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
1215         a user about whether to delete temp files if once a user answered as n.
1216
1217 2012-09-25  Chong Yidong  <cyd@gnu.org>
1218
1219         * password-cache.el (password-read-and-add): Use a declare form to mark
1220         this function obsolete.
1221
1222 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1223
1224         * lpath.el: Bind mail-encode-mml for old Emacsen.
1225
1226 2012-09-17  Richard Stallman  <rms@gnu.org>
1227
1228         * message.el (message-in-body-p): Don't set mark or modify buffer.
1229
1230         * mml.el (mml-attach-file): Doc fix.
1231         (mml-attach-external, mml-attach-buffer, mml-attach-file):
1232         Set mail-encode-mml when in Mail mode.
1233         Simplify code to set HEAD and move back to HEAD.
1234         (mml-insert-multipart, mml-insert-part):
1235         Set mail-encode-mml when in Mail mode.
1236
1237 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1238
1239         * gnus-util.el (gnus-timer--function): New function.
1240
1241         * gnus-art.el (gnus-article-stop-animations): Use it.
1242
1243 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1244
1245         Fix glitches caused by addition of psec to timers.
1246         * gnus-art.el (gnus-article-stop-animations): Use timer--function
1247         rather than raw access to timer vector.
1248
1249 2012-09-11  Julien Danjou  <julien@danjou.info>
1250
1251         * gnus-notifications.el (gnus-notifications): Check for nil values in
1252         ignored addresses check.
1253
1254 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1255
1256         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
1257
1258 2012-09-07  Chong Yidong  <cyd@gnu.org>
1259
1260         * gnus-util.el
1261         (gnus-put-text-property-excluding-characters-with-faces): Restore.
1262
1263         * gnus-salt.el (gnus-tree-highlight-node):
1264         * gnus-sum.el (gnus-summary-highlight-line):
1265         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
1266
1267 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1268
1269         * gnus-util.el: Fix compilation error on XEmacs 21.4.
1270
1271 2012-09-06  Juri Linkov  <juri@jurta.org>
1272
1273         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
1274         scheme for buffer names to be more consistent with other group and
1275         article buffer names in Gnus.
1276
1277 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1278
1279         * gnus-util.el
1280         (gnus-put-text-property-excluding-characters-with-faces): Removed.
1281
1282         * gnus-compat.el: Define compat function `add-face' from Wolfgang
1283         Jenkner.
1284
1285         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
1286
1287         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
1288
1289         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
1290
1291 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1292
1293         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
1294         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
1295
1296         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
1297         string-prefix-p in Emacs >=23.2.
1298
1299         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
1300         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
1301         instead of string-match-p.
1302         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
1303
1304 2012-09-06  Kenichi Handa  <handa@gnu.org>
1305
1306         * qp.el (quoted-printable-decode-region): Fix previous change; handle
1307         lowercase a..f.
1308
1309 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1310
1311         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
1312
1313 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
1314
1315         * nnimap.el (nnimap-request-move-article): Decode the group name when
1316         doing internal moves to avoid charset issues.
1317
1318         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
1319         TIME is set.
1320
1321 2012-09-05  Juri Linkov  <juri@jurta.org>
1322
1323         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
1324         than one group at a time (bug#11961).
1325
1326 2012-09-05  Julien Danjou  <julien@danjou.info>
1327
1328         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
1329         this hide the real reason with a message giving absolutely no hint.
1330
1331 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
1332
1333         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
1334         to the backend (bug#11804).
1335
1336         * message.el (message-insert-newsgroups): Don't insert newsgroup
1337         duplicates (bug#12275).
1338
1339 2012-09-05  John Wiegley  <johnw@newartisans.com>
1340
1341         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
1342         sieve rules.
1343
1344 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
1345
1346         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
1347         function.
1348
1349         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
1350
1351         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
1352
1353 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1354
1355         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
1356         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
1357         This should make nnmaildir more usable with offlineimap.
1358
1359 2012-09-05  Julien Danjou  <julien@danjou.info>
1360
1361         * nnimap.el (nnimap-request-list): Revert change that made listing
1362         synchronous.
1363         (nnimap-get-responses): Restore.
1364
1365 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
1366
1367         * dgnushack.el: XEmacs 21.5 compilation fix.
1368
1369         * gnus-notifications.el (gnus-notifications-notify): Use it.
1370
1371         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
1372         warnings on XEmacs.
1373
1374 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1375
1376         Better seeds for (random).
1377         * gnus-sync.el (gnus-sync-lesync-setup):
1378         * message.el (message-canlock-generate, message-unique-id):
1379         Change (random t) to (random), now that the latter is more random.
1380
1381 2012-08-31  Dave Abrahams  <dave@boostpro.com>
1382
1383         * nnimap.el (nnimap-change-group): Document result value
1384
1385         * auth-source.el (auth-sources): Fix macos keychain access.
1386
1387         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
1388         allow the backend `request-head' function to determine the group
1389         name on its own.
1390         (gnus-request-expire-articles): Filter out negative article numbers
1391         during expiry (Bug#11980).
1392
1393         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
1394         O(N^2) to O(N).  This makes warping into huge groups tolerable.
1395
1396         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
1397         you've found the article when you haven't.
1398
1399         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
1400         that nnimap-change-group can return t.
1401
1402 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1403
1404         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
1405
1406 2012-08-30  Julien Danjou  <julien@danjou.info>
1407
1408         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
1409         `gnus-notifications-timeout'.
1410         (gnus-notifications-timeout): Add.
1411         (gnus-notifications-action): New function.
1412         (gnus-notifications-notify): Add :action using
1413         `gnus-notifications-action'.
1414         (gnus-notifications-id-to-msg): New variable.
1415         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
1416         notifications id to messages.
1417
1418 2012-08-30  Kenichi Handa  <handa@gnu.org>
1419
1420         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
1421         once.
1422
1423 2012-08-29  Julien Danjou  <julien@danjou.info>
1424
1425         * gnus-notifications.el: New file.
1426         (gnus-notifications-notify): New function.
1427         (gnus-notifications): Use `gnus-notifications-notify'.
1428
1429 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1430
1431         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
1432         transfer encoding first; bind gnus-newsgroup-charset to the charset
1433         that the article specifies (Bug#12209).
1434
1435 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1436
1437         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
1438         (gnus-group-customize-done): Encode values posting-style holds.
1439
1440         * gnus-msg.el (gnus-summary-resend-message)
1441         (gnus-configure-posting-styles): Decode values posting-style group
1442         parameter holds.
1443
1444 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1445
1446         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
1447         `name' and `address' in Resent-From header.
1448
1449 2012-08-14  Chong Yidong  <cyd@gnu.org>
1450
1451         * gnus-art.el (article-display-face): Handle failure in
1452         gnus-create-image (Bug#11802).
1453
1454 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1455
1456         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
1457         Use defsetf.
1458
1459 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
1460
1461         * auth-source.el: (auth-source-plstore-search)
1462         (auth-source-secrets-search): Ignore :require and :type in search spec.
1463
1464 2012-08-06  Julien Danjou  <julien@danjou.info>
1465
1466         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
1467         `nnimap-request-move-article'.
1468
1469         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1470         Remove autoload, already handled by gnus.el.
1471
1472         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
1473
1474         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
1475         supported by nnimap actually. Reverts previous change.
1476
1477         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
1478         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
1479         to-buffer argument that is already supported.
1480
1481 2012-08-05  Julien Danjou  <julien@danjou.info>
1482
1483         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1484         Add autoload.
1485
1486 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1487
1488         * gnus.el (gnus-valid-select-methods): Fix custom type.
1489
1490 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
1491
1492         * auth-source.el (auth-sources, auth-source-backend-parse)
1493         (auth-source-macos-keychain-search)
1494         (auth-source-macos-keychain-search-items)
1495         (auth-source-macos-keychain-result-append)
1496         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
1497         auth-source.el through the /usr/bin/security utility.
1498         (auth-sources): Fix syntax error.
1499         (auth-source-macos-keychain-result-append): Fix variable name.
1500         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
1501
1502 2012-07-27  Julien Danjou  <julien@danjou.info>
1503
1504         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
1505         Emacs < 24.1
1506
1507 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1508
1509         * message.el (message-kill-address): Don't kill last newline.
1510         (message-skip-to-next-address): Don't move to the next header.
1511         (message-fill-field-address): Work properly.
1512
1513 2012-07-25  Julien Danjou  <julien@danjou.info>
1514
1515         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
1516
1517 2012-07-24  Julien Danjou  <julien@danjou.info>
1518
1519         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
1520
1521         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
1522         (nntp-async-timer-handler): Remove, unused.
1523
1524         * nnimap.el (nnimap-get-responses): Remove, unused.
1525
1526         * nnheader.el (mail-header-set-extra): Remove, unused.
1527
1528         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
1529         unused.
1530
1531         * mm-view.el (mm-view-sound-file): Remove, unused.
1532
1533         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
1534         (mm-url-encode-multipart-form-data): Remove, unused.
1535
1536         * message.el (message-remove-signature, message-make-host-name)
1537         (message-fill-address): Remove, unused.
1538
1539         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
1540         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
1541         unused.
1542
1543         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
1544         (gnus-xmas-call-region): Remove, unused.
1545
1546         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
1547
1548         * gnus-util.el (gnus-extract-address-component-name)
1549         (gnus-extract-address-component-email, gnus-sortable-date)
1550         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
1551         (gnus-process-live-p): Remove, unused.
1552
1553         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
1554
1555         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
1556         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
1557         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
1558         function.
1559
1560         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
1561
1562         * gnus-score.el (gnus-summary-score-crossposting)
1563         (gnus-score-regexp-bad-p): Remove, unused.
1564
1565         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
1566
1567         * gnus-range.el (gnus-sublist-p): Remove, unused.
1568
1569         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
1570         unused.
1571
1572         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
1573
1574         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
1575         (gnus-request-associate-buffer): Remove, unused.
1576
1577         * gnus-group.el (gnus-group-set-method-info)
1578         (gnus-group-set-params-info): Remove, unused.
1579
1580         * gnus-fun.el (gnus-shell-command-to-string)
1581         (gnus-shell-command-on-region): Remove, unused.
1582
1583         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
1584
1585         * gnus-art.el (gnus-article-text-type-exists-p)
1586         (article-translate-characters, gnus-article-hide-text-of-type)
1587         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
1588         Remove, unused.
1589
1590 2012-07-22  Andrew Cohen  <cohen@bu.edu>
1591
1592         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
1593
1594 2012-07-21  Julien Danjou  <julien@danjou.info>
1595
1596         * message.el (message-dont-reply-to-names): Replace deprecated
1597         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
1598         (message-get-reply-headers): Ditto.
1599
1600 2012-07-18  Julien Danjou  <julien@danjou.info>
1601
1602         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
1603         `sieve-upload-and-kill'.
1604
1605         * sieve.el (sieve-bury-buffer): Remove function.
1606         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
1607         (sieve-upload-and-kill): New function, mapped to C-c C-c.
1608
1609 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1610
1611         * shr.el (shr-expand-url): Handle URL starting with `//'.
1612
1613 2012-07-13  Chong Yidong  <cyd@gnu.org>
1614
1615         * smime.el (smime-certificate-info): Set buffer-read-only directly,
1616         instead of calling toggle-read-only with a (bogus) argument.
1617
1618 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
1619
1620         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
1621         of initial input when reading the author to restrict the summary to.
1622
1623 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1624
1625         * mm-decode.el (mm-shr):
1626         Allow overriding charset by mm-charset-override-alist.
1627
1628 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1629
1630         * gnus-art.el (gnus-article-view-part):
1631         Toggle subparts of multipart/alternative part.
1632
1633 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1634
1635         * shr.el (shr-render-buffer): New command.
1636         (shr-visit-file): Use it.
1637
1638 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1639
1640         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
1641         Set no-byte-compile and no-update-autoloads.
1642
1643 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1644
1645         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
1646
1647 2012-06-25  Julien Danjou  <julien@danjou.info>
1648
1649         * nnimap.el (nnimap-request-articles-find-limit): Rename from
1650         `nnimap-request-move-articles-find-limit' since we do not use it only
1651         for move operations.
1652         (nnimap-request-accept-article): Use
1653         `nnimap-request-articles-find-limit' to limit search by message-id.
1654
1655 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1656
1657         Support higher-resolution time stamps (Bug#9000).
1658
1659         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
1660         VARLIST.  It's optional, for backward compatibility.
1661         (encode-time-value): New optional arg PICO.  New type 3.
1662         (time-to-seconds) [!float-time]: Support the new picoseconds
1663         component if it's used.
1664         (seconds-to-time, time-subtract, time-add):
1665         Support ps-resolution time stamps as well.
1666
1667 2012-06-19  Julien Danjou  <julien@danjou.info>
1668
1669         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
1670
1671         * nnimap.el (nnimap-log-buffer): Check that
1672         `window-point-insertion-type' is boundp, since it's not available in
1673         XEmacs.
1674
1675 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1676
1677         * nnimap.el (nnimap-log-buffer): Add this, setting
1678         `window-point-insertion-type' in the buffer to t.
1679         (nnimap-log-command): Use nnimap-log-buffer.
1680
1681 2012-06-19  Julien Danjou  <julien@danjou.info>
1682
1683         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
1684         argument to be able to limit the search.
1685         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
1686         (nnimap-request-move-articles-find-limit): Add this to limit the search
1687         by Message-Id after a message move.
1688         (nnimap): Add defgroup.
1689
1690 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
1691
1692         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
1693
1694 2012-06-15  Julien Danjou  <julien@danjou.info>
1695
1696         * nnimap.el (nnimap-find-article-by-message-id): Use
1697         `nnimap-possibly-change-group' rather than its own EXAMINE call.
1698         (nnimap-possibly-change-group): Add read-only argument.
1699         (nnimap-request-list): Use nnimap-possibly-change-group rather than
1700         issuing EXAMINE manually.
1701         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
1702         with read-only argument.
1703         (nnimap-change-group): Rename from `nnimap-possibly-change-group'. We
1704         cannot possibly change because we need to be sure that it's either
1705         read-write or read-only.
1706
1707 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1708
1709         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
1710         being bound to a lambda form.
1711
1712 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
1713
1714         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
1715         articles when fetch-old is non-nil (bug#11370).
1716
1717 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
1718
1719         * gnus-picon.el (gnus-picon-properties): New defcustom.
1720         (gnus-picon-create-glyph): Use it.
1721
1722 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1723
1724         * gnus-group.el (gnus-group-get-new-news): Respect
1725         `gnus-group-use-permanent-levels', as documented (bug#11638).
1726
1727 2012-06-10  Dave Abrahams  <dave@boostpro.com>
1728
1729         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
1730         groups (bug#11641).
1731
1732 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
1733
1734         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
1735         is an integer to avoid later problems.
1736
1737 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1738
1739         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
1740         locales.
1741
1742         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
1743         on a handle.
1744
1745         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
1746         address as the default.
1747         (gnus-summary-insert-old-articles): Don't include unexistent messages.
1748
1749         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
1750         makes no sense to query the user about internal files.
1751
1752         * gnus-spec.el: Remove all the byte-compilation stuff, since
1753         benchmarking shows that it doesn't help when entering large summary
1754         buffers.
1755
1756         * gnus-xmas.el (gnus-xmas-define): Remove.
1757
1758         * gnus-util.el (gnus-byte-code): Remove.
1759
1760         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
1761         grouplens stuff.
1762
1763 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1764
1765         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
1766         (bug#11514).
1767
1768 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1769
1770         * message.el (message-buffers): Return all buffers derived from Message
1771         to make `gnus-dired-attach' work with mu4e.
1772
1773 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1774
1775         * nntp.el: Stop the `letf' madness.
1776         (nntp--report-1): New var.
1777         (nntp-report): Merge nntp-report-1 into it.
1778         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
1779         the nntp-report function.
1780
1781         * auth-source.el: Fix comment-style to follow the convention.
1782
1783 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
1784
1785         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
1786         (mm-dissect-singlepart): Don't guess the MIME type of
1787         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
1788         set.
1789         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
1790         toplevel MIME type is multipart/encrypted.
1791
1792 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1793
1794         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
1795         a string so that Gcc works (bug#11514).
1796
1797 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1798
1799         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
1800         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
1801
1802 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1803
1804         * gnus-win.el (gnus-configure-frame): Don't signal an error when
1805         jumping to *Server* from a dedicated *Group* window.
1806         (gnus-configure-frame): CSE.
1807
1808         * gnus-registry.el: Minor style cleanup.
1809         (gnus-registry--set/remove-mark): New function, extracted from
1810         gnus-registry-install-shortcuts.
1811         (gnus-registry-install-shortcuts): Use it.
1812
1813 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1814
1815         * nnspool.el (news-path): Use eval-and-compile.
1816
1817 2012-05-24  Glenn Morris  <rgm@gnu.org>
1818
1819         * nnspool.el (news-directory, news-path, news-inews-program):
1820         Move here from paths.el.  Don't see a need for these to be autoloaded.
1821
1822         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
1823         Merge in doc from paths.el version.  Don't see any need for this to be
1824         autoloaded, or for the warning about users not setting it.
1825
1826 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
1827
1828         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
1829         format.  In particular, add an optional argument and a docstring.
1830
1831         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
1832
1833         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
1834         current before calling `gnus-groups-to-gnus-format'.
1835         Note that this was already the case for `gnus-active-to-gnus-format'.
1836
1837 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1838
1839         Fix minor Y10k bug.
1840         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
1841
1842 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1843
1844         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
1845         message once it's actually open.
1846
1847 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1848
1849         * gnus.el: Ma Gnus v0.5 is released.
1850
1851 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1852
1853         * auth-source.el (auth-source--aput-1, auth-source--aput)
1854         (auth-source--aget): New functions and macros.
1855         Use them instead of aput/aget.
1856
1857 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
1858
1859         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
1860
1861 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1862
1863         * plstore.el (plstore-called-interactively-p): New compat macro copied
1864         from message.el.
1865         (plstore-mode): Use it.
1866
1867 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1868
1869         * plstore.el: Revive the editing feature.
1870         (plstore-mode): New mode to edit plstore file.
1871         (plstore-mode-toggle-display, plstore-mode-original)
1872         (plstore-mode-decoded): New command.
1873         (plstore--encode, plstore--decode, plstore--write-contents-functions)
1874         (plstore--insert-buffer, plstore--make): New function.
1875         (plstore-open, plstore-save): Simplify by using them.
1876
1877 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1878
1879         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
1880
1881 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
1882
1883         * tls.el (open-tls-stream): Remove unused binding.
1884
1885 2012-04-16  Glenn Morris  <rgm@gnu.org>
1886
1887         * nndraft.el (nndraft-request-list): Fix declaration.
1888
1889 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1890
1891         * mm-decode.el (mm-dissect-buffer): Doc fix.
1892
1893         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
1894         don't have a current group.
1895
1896         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
1897         buffer if it doesn't exist.
1898
1899         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
1900         given, mark the group as ephemeral with the current window conf.
1901
1902         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
1903         buffer exists, which it doesn't if we haven't started Gnus.
1904         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
1905
1906 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1907
1908         * mml.el (mml-generate-mime): Allow specifying what the top-level part
1909         type is.
1910
1911         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
1912         `unexists' entries.
1913         (gnus-clean-old-newsrc): Fix last checkin.
1914
1915         * nnimap.el (nnimap-update-info): None of the articles below the active
1916         low-water mark exist.
1917
1918         * dgnushack.el: Get rid of XEmacs compilation warning.
1919
1920         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
1921         would have gotten if we posted to the group, and use that to compare
1922         against the message we want to cancel (bug#10808).
1923
1924         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
1925         on XEmacs.
1926
1927 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
1928
1929         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
1930         `scroll-margin'.
1931
1932 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
1933
1934         * gnus-cite.el (gnus-dissect-cited-text): A single line without
1935         citation prefix within a block of cited text should be considered part
1936         of that block *only* if it is a blank line.
1937
1938 2012-04-09  Chong Yidong  <cyd@gnu.org>
1939
1940         * binhex.el, hashcash.el, uudecode.el:
1941         Remove * characters from the front of variable docstrings.
1942
1943 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1944
1945         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
1946         before kinsoku-bol characters nor within kinsoku-eol characters.
1947
1948 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1949
1950         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
1951         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
1952         (gnus-sync-read): Use mapc instead of mapcar.
1953
1954         * mm-archive.el: Require mm-decode for some macros.
1955         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
1956         the byte compiler.
1957         (mm-archive-decoders): New function that returns the value of
1958         the mm-archive-decoders variable.
1959
1960         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
1961         instead.
1962         (mm-dissect-singlepart): Use the function mm-archive-decoders.
1963
1964         * nnimap.el (gnus-refer-thread-use-nnir):
1965         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
1966
1967 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1968
1969         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
1970
1971 2012-03-12  Peter Münster  <pmrb@free.fr>
1972
1973         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
1974         (gnus-demon-cancel): Ditto.
1975         (gnus-demon-run-callback): When function cannot be called due to low
1976         idleness, call it when idleness reaches the expected value, instead of
1977         waiting another timer period.
1978         (gnus-demon-init): Add `time' to arguments of call-back.
1979
1980 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1981
1982         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
1983
1984         * gnus.el: Register gnus-registry functions.
1985
1986         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
1987         indent.
1988
1989         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
1990         enabled before warping.
1991
1992 2012-03-22  Dave Abrahams  <dave@boostpro.com>
1993
1994         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
1995         registry about each article retrieved.
1996
1997         * gnus-int.el (gnus-select-group-with-message-id): New function.
1998         (gnus-try-warping-via-registry): Ditto.
1999         (gnus-warp-to-article): Fall back on the registry.
2000
2001 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
2002
2003         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
2004         inboxes.
2005
2006 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2007
2008         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
2009
2010 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2011
2012         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
2013         gnus-gcc-self-resent-messages may be a group parameter.
2014         (gnus-summary-resend-message): Don't encode encoded words in header
2015         when Gcc'ing resent message.
2016
2017 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2018
2019         * shr.el (shr-insert): Treat non-breaking space just like normal
2020         space.  This seems to produce more pleasing results.
2021         (shr-insert): Only insert a blank line if we're starting from an image.
2022         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
2023         (shr-ensure-paragraph): Consider lines with white space to be blank.
2024
2025 2012-03-15  Elias Pipping  <pipping@lavabit.com>
2026
2027         * Makefile.in: Respect DESTDIR.
2028
2029 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
2030
2031         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
2032         and gnus-gcc-post-body-encode-hook.
2033
2034 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2035
2036         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
2037         messages that don't exist.
2038
2039         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
2040
2041 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2042
2043         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
2044         Remove.
2045
2046         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
2047
2048         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
2049
2050 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2051
2052         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
2053         have a group name.
2054
2055         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
2056         a multibyte buffer (bug#7410).
2057         (article-wash-html): Parse the original article buffer to get the
2058         unencoded data (bug#7410).
2059
2060         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
2061         .newsrc.el files.
2062
2063 2012-04-05  Bastien Guerry  <bzg@altern.org>
2064
2065         * color.el (color-lighten-name): Fix typo.
2066
2067 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2068
2069         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
2070         "#" to avoid having them interpreted as comments.
2071
2072 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2073
2074         * shr.el (shr-insert): Update the text state properly to avoid
2075         inserting spurious paragraph starts.
2076
2077 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2078
2079         * shr.el (shr-table-widths): Divide the extra width more fairly over
2080         the TDs (bug#10973).
2081         (shr-render-td): Don't delete too much padding.
2082         (shr-natural-width): Compute the natural width more correctly.
2083         (shr-insert): Allow the natural width to be computed for tables again.
2084         (shr-tag-table-1): Rework how the natural widths are computed by
2085         rendering the table a third time.
2086         (shr-natural-width): Removed.
2087         (shr-buffer-width): New function.
2088         (shr-expand-newlines): Use it.
2089
2090         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
2091         using a `gnus-use-full-window' setup (bug#11013).
2092
2093 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2094
2095         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
2096         24.1 release.
2097
2098 2012-03-10  David Edmondson  <dme@dme.org>
2099
2100         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
2101         'Forwarded Message' header and the start of the message.
2102
2103 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2104
2105         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
2106         isn't running (bug#10897).
2107
2108 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2109
2110         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
2111         This is inconsistent with all the other stream functions, which leave
2112         the setting up to the higher levels (if so wanted) (bug#10931).
2113
2114 2012-02-28  Glenn Morris  <rgm@gnu.org>
2115
2116         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
2117         mm-decode.el: Standardize possessive apostrophe usage.
2118
2119 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2120
2121         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
2122
2123 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
2124
2125         * parse-time.el (parse-time-string): Allow extractor to return nil.
2126
2127 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2128
2129         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
2130
2131 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2132
2133         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
2134
2135 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2136
2137         * mm-decode.el (mm-shr): Remove "soft hyphens".
2138
2139         * nnimap.el (nnimap-request-list): Return the group names encoded as
2140         utf8.  Otherwise non-European group names don't work.
2141         (nnimap-request-newgroups): Ditto.
2142
2143         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
2144         the default in `read-string' (bug#10757).
2145
2146         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
2147         topics (bug#10843).
2148
2149         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
2150         buffer.  Suggested by Herbert Valerio Riedel.
2151         (nnimap-request-move-article): Delete the message from the correct IMAP
2152         server.
2153
2154 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2155
2156         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
2157         Reported by Peter Münster.
2158
2159 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
2160
2161         * shr.el (shr-image-fetched): Make sure we really kill the right
2162         buffer.
2163
2164 2012-02-16  Leo Liu  <sdl.web@gmail.com>
2165
2166         * gnus-start.el (gnus-1): Avoid duplicate entries.
2167
2168 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2169
2170         * imap.el: Remove.
2171
2172         * nntp.el (nntp-coding-system-for-read): Remove.
2173         (nntp-coding-system-for-write): Ditto.
2174         (nntp-open-connection): Just use `binary' directly.
2175
2176         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
2177         Gnus 0.3.
2178
2179 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
2180
2181         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
2182         application/octet-stream parts really is.
2183
2184         * gnus-sum.el (gnus-propagate-marks): Remove.
2185
2186 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2187
2188         * shr.el (shr-rescale-image): Undo previous change; see
2189         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
2190
2191 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2192
2193         * gnus.el: Ma Gnus v0.3 is released.
2194
2195 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2196
2197         * gnus-sum.el (gnus-summary-local-variables): Make
2198         `gnus-newsgroup-unexist' into a local variable.
2199
2200 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
2201
2202         * registry.el (registry-usage-test, registry-persistence-test): Move to
2203         tests/gnustest-registry.el.
2204         (registry-make-testable-db, registry-match-test)
2205         (registry-instantiation-test): Move to tests/gnustest-registry.el.
2206
2207         * gnus-registry.el (gnus-registry-misc-test)
2208         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
2209
2210         * tests/gnustest-registry.el: New file with the registry and
2211         gnus-registry ERT tests.
2212
2213 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2214
2215         * gnus-msg.el (gnus-summary-resend-message): Make
2216         gnus-summary-resend-message-insert-gcc be last item in
2217         message-header-setup-hook.
2218
2219 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2220
2221         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
2222         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
2223         Remove.
2224         (nnfolder-open-server): Don't use marks.
2225         (nnfolder-request-delete-group): Ditto.
2226         (nnfolder-request-rename-group): Ditto.
2227         (nnfolder-request-set-mark, nnfolder-request-marks)
2228         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
2229         (nnfolder-save-marks, nnfolder-open-marks): Remove.
2230
2231         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
2232         (nnml-marks-modtime): Remove.
2233         (nnml-request-delete-group): Don't use marks.
2234         (nnml-request-rename-group): Ditto.
2235         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
2236         (nnml-save-marks, nnml-open-marks): Remove.
2237
2238         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
2239         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
2240         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
2241         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
2242         (nntp-server-to-method-cache): Remove.
2243
2244         * shr.el (shr-rescale-image): Fix wrong merge.
2245
2246 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2247
2248         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
2249         too-wide lines.
2250
2251 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2252
2253         * nnimap.el (nnimap-record-commands): New variable.
2254         (nnimap-log-command): Use it.
2255         (nnimap-make-process-buffer): Add a space to the process buffer.
2256         (nnimap-transform-headers): Don't bug out on header lines containing
2257         stuff that look like IMAP length encodings.
2258
2259         * shr.el (shr-rescale-image): Allow viewing large images.
2260
2261 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
2262
2263         * nnml.el (nnml-request-compact-group): Delete the marks file after
2264         compaction (bug#10800).
2265
2266         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
2267         group exit.
2268
2269         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
2270         QRESYNC/FETCH output.
2271
2272 2012-02-11  Glenn Morris  <rgm@gnu.org>
2273
2274         * sieve-manage.el (sieve-manage-default-stream):
2275         * shr.el (shr):
2276         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
2277         (nnir-retrieve-headers-override-function)
2278         (nnir-imap-default-search-key, nnir-notmuch-program)
2279         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
2280         (nnir-method-default-engines):
2281         * message.el (message-cite-reply-position):
2282         * gssapi.el (gssapi-program):
2283         * gravatar.el (gravatar):
2284         * gnus-sum.el (gnus-refer-thread-use-nnir):
2285         * gnus-registry.el (gnus-registry-unfollowed-addresses)
2286         (gnus-registry-max-pruned-entries):
2287         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
2288         * gnus-int.el (gnus-after-set-mark-hook)
2289         (gnus-before-update-mark-hook):
2290         * gnus-async.el (gnus-async-post-fetch-function):
2291         * auth-source.el (auth-source-cache-expiry):
2292         Add missing :version tags to new defcustoms and defgroups.
2293
2294 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
2295
2296         * gnus-sum.el (gnus-adjust-marked-articles): Add to
2297         `gnus-newsgroup-unexist'.
2298
2299         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
2300         marks.
2301         (gnus-article-special-mark-lists): Put the `unexist' in the special
2302         marks list instead.
2303
2304         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
2305         articles in the list of articles to be selected.
2306
2307         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
2308         articles.
2309         (nnimap-update-info): Keep track of unexisting articles.
2310         (nnimap-update-qresync-info): Ditto.
2311
2312 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
2313
2314         * message.el (message-default-send-mail-function): Made into own
2315         function for reuse by emacsbug.el.
2316
2317 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
2318
2319         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
2320         `gnus-sloppily-equal-method-parameters' to avoid a warning.
2321
2322 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2323
2324         * mm-archive.el (mm-archive-dissect-and-inline): New function.
2325         (mm-archive-dissect-and-inline): Fix up the undisplayer.
2326
2327         * gnus-compat.el: Define `timer-set-function'.
2328
2329         * mm-decode.el (mm-display-external): Output the text from the command
2330         in the buffer after the command finished.  This makes text-based
2331         commands behave better.
2332
2333 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2334
2335         * gnus-compat.el: Add a compat for the old `url-retrieve'.
2336
2337 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2338
2339         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
2340         23.1.
2341
2342 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2343
2344         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
2345
2346 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2347
2348         * message.el (smtpmail-smtp-user): Silence compiler warning.
2349
2350 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2351
2352         * message.el (message-multi-smtp-send-mail): Also allow specifying the
2353         SMTP user name.
2354
2355 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2356
2357         * gnus-sum.el (gnus-summary-show-thread):
2358         next-single-char-property-change may return nil in XEmacs.
2359         (gnus-summary-article-map): Fix typo.
2360
2361 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2362
2363         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
2364         running.
2365
2366         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
2367
2368         * gnus.el (gnus-server-extend-method): Don't add an -address component
2369         if the method already has one (bug#9676).
2370
2371 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2372
2373         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
2374         of an initial-input for consistency (bug#10757).
2375
2376         * dgnushack.el: Fix XEmacs compilation warning.
2377
2378         * shr.el: Inhibit getting and sending cookies when fetching pictures.
2379
2380         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
2381
2382 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2383
2384         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
2385         lines that are narrower than the window width.  Otherwise background
2386         "blocks" will look less readable.
2387
2388 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2389
2390         * nnimap.el (nnimap-transform-headers): Remove unused variable.
2391         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
2392         have newlines within the strings, and where the UID comes after the
2393         BODYSTRUCTURE element (bug#10537).
2394
2395         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
2396         (bug#10732).
2397
2398         * shr.el (shr-insert-document): Add doc string.
2399         (shr-visit-file): Ditto.
2400         (shr-remove-trailing-whitespace): New function.
2401         (shr-insert-document): Use it to clean up trailing whitespace as the
2402         final step (bug#10714).
2403
2404 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2405
2406         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
2407         buffer if `gnus-kill-summary-on-exit' is nil.
2408
2409 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2410
2411         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
2412         when just reading a single group from "without" Gnus.
2413
2414 2012-02-06  Chong Yidong  <cyd@gnu.org>
2415
2416         * gnus-sum.el (gnus-summary-show-thread):
2417         next-single-char-property-change never returns nil (Bug#8657).
2418
2419 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2420
2421         * message.el (message-multi-smtp-send-mail): New function.
2422         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
2423         header to implement multi-SMTP functionality.
2424
2425         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
2426         (gnus-agentize): Don't set it.
2427         (gnus-agent-send-mail): Don't use it.
2428
2429         * gnus-sum.el (gnus-summary-widget-backward): New function and
2430         keystroke.
2431
2432         * gnus-compat.el: More the compat functions more compatible.
2433
2434         * shr.el (shr-put-image): Remove underlines from sliced images.
2435         (shr-zoom-image): Compute the region to be replaced more correctly.
2436
2437 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2438
2439         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
2440         (gnus-summary-resend-message-insert-gcc): New function.
2441         (gnus-summary-resend-message): Modify message-header-setup-hook and
2442         message-sent-hook to make it work for Gcc.
2443         (gnus-inews-do-gcc): Update the number of unread articles of groups
2444         that messages are Gcc'd to.
2445
2446         * message.el (message-resend): Run message-sent-hook to do Gcc.
2447
2448 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2449
2450         * lpath.el: Fix an XEmacs compilation warning.
2451
2452         * gnus-compat.el: Require `help-fns' to fix compilation error.
2453
2454         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
2455         a higher level to silence compilation.
2456
2457         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
2458         parameter to allow controlling the scaling.
2459
2460         * shr.el (shr-zoom-image): New command and keystroke.
2461         (shr-put-image): Take a `size' flag to say how to scale the image.
2462
2463         * gnus-compat.el: Redefine `delete-directory' to provide recursive
2464         deletion unless already defined.
2465
2466         * gnus.el (gnus-compat): Require it.
2467
2468         * gnus-compat.el: New file.
2469
2470         * gnus-start.el (gnus-clean-old-newsrc): New function.
2471         (gnus-read-newsrc-file): Use it.
2472
2473         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
2474         Use recursive deletion.
2475         (mm-dissect-archive): Add support for zip files.
2476
2477         * gnus-util.el (gnus-recursive-directory-files): New function.
2478
2479         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
2480         (mm-archive-decoders): Add tgz support.
2481
2482         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
2483         Otherwise inserting text into the Gnus buffer can look odd.
2484
2485         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
2486
2487         * mm-archive.el (mm-archive-decoders): Add support for tar.
2488
2489         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
2490
2491         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
2492
2493 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2494
2495         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
2496
2497         * mm-archive.el: New file.
2498
2499         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
2500
2501         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
2502
2503         * message.el (message-goto-*): Make all the `message-goto-*' commands
2504         push the mark before moving point.  This makes it easier to go back to
2505         where you came from after editing whatever you jumped to.
2506
2507 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2508
2509         * gnus.el: Ma Gnus v0.1 is released.
2510
2511 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
2512
2513         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
2514         without reconnecting.
2515         (nnimap-possibly-change-group): Ditto.
2516         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
2517         connection has died before being called.
2518
2519 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2520
2521         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
2522         an initial sync unless we're really doing one.
2523
2524         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
2525         address parameter if one already exists (bug#9676).
2526
2527         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
2528         not the prefix, as documented (bug#10689).
2529
2530 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2531
2532         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
2533         the "server".
2534
2535         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
2536         the real error message with the useless "previously known to be down".
2537         Which isn't even correct.
2538
2539         * nntp.el (nntp-open-connection): Report the error message if the nntp
2540         server can't be reached.
2541
2542         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
2543         groups we do a total scan for.
2544         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
2545         doing that.
2546
2547 2012-01-31  Jim Meyering  <jim@meyering.net>
2548
2549         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2550         Correct a comment (insert "not") and hide nominally-doubled "to".
2551
2552 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2553
2554         * gnus.el (gnus-version): Change name to "Ma Gnus".
2555
2556 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2557
2558         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
2559         section in the manual.
2560
2561 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
2562
2563         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
2564         words.
2565         (rfc2047-encode-string): Ditto.
2566         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
2567         understand folded filename="..." parameters, for instance.
2568
2569         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
2570         the message for greater debuggability.
2571
2572 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
2573
2574         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
2575         instead of setting it locally, since the latter doesn't seem to have
2576         any effect (most of the time).
2577
2578 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
2579
2580         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
2581         function call.
2582
2583 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2584
2585         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
2586         seconds, and make the repeat clause with HH:MM specs work as
2587         documented.
2588
2589 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2590
2591         * proto-stream.el (proto-stream-capability-open): Fall back on
2592         :end-of-command if :end-of-capability doesn't exist.
2593
2594 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2595
2596         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
2597         bound globally in old Emacsen and XEmacsen.
2598
2599 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2600
2601         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
2602         so that previous errors don't prohibit getting new news.
2603
2604         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
2605
2606         * nntp.el (nntp-retrieve-group-data-early): Ditto.
2607
2608 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
2609
2610         * gnus.el (gnus-group-find-parameter): Check for liveness of the
2611         buffer, not of the string which is its name.
2612
2613 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2614
2615         * proto-stream.el (proto-stream-capability-open): Wait for
2616         :end-of-capability, not :end-of-command.
2617
2618         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
2619         non-server-marks groups.
2620         (gnus-group-make-articles-read): Ditto.
2621
2622         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
2623         methods (bug#9676).
2624
2625         * gnus.el (gnus-method-ephemeral-p): New function.
2626
2627 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2628
2629         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
2630         left-to-right.
2631
2632 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2633
2634         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
2635         warning.
2636
2637 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
2638
2639         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
2640         macroexpand the nnir things, since they haven't been defined yet, and
2641         nnir requires gnus-sum.
2642
2643 2012-01-24  Julien Danjou  <julien@danjou.info>
2644
2645         * color.el (color-rgb-to-hsl): Fix value computing.
2646         (color-hue-to-rgb): New function.
2647         (color-hsl-to-rgb): New function.
2648         (color-clamp, color-saturate-hsl, color-saturate-name)
2649         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2650         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
2651
2652 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2653
2654         * mm-decode.el (mm-interactively-view-part): Fix prompt.
2655
2656 2012-01-19  Julien Danjou  <julien@danjou.info>
2657
2658         * color.el (color-name-to-rgb): Use the white color to find the max
2659         color component value and return correctly computed values.
2660         (color-name-to-rgb): Add missing float conversion for max value.
2661
2662 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
2663
2664         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
2665         logical server name in addition to the actual machine address.
2666
2667         * auth-source.el (auth-source-user-and-password): Add convenience
2668         wrapper to search by just host and optionally user.
2669
2670 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2671
2672         * shr.el (shr-visit-file): Move point to the beginning of the buffer
2673         after rendering.
2674
2675 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
2676
2677         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
2678         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
2679         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
2680
2681 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2682
2683         * gnus-sum.el (gnus-summary-read-group): Document more parameters
2684         (bug#9693).
2685         (gnus-summary-setup-buffer): Document return value (bug#9697).
2686
2687         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
2688         since ido doesn't work on symbols (bug#9632).
2689
2690         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
2691         when getting a single value as when getting all the values.  This means
2692         that atoms like `gcc-self' work cumulatively, like variable settings,
2693         instead of getting the value from the last matching clause.
2694         (gnus-group-find-parameter): Protect against the group buffer not
2695         existing (bug#9585).
2696
2697 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2698
2699         * gnus-start.el (gnus-activate-group): Document more parameters
2700         (bug#9694).
2701
2702         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
2703         (bug#9692).
2704
2705         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
2706         article was fetched, so that it can be expired later (bug#9958).
2707         (gnus-agent-summary-fetch-series): Add doc string.
2708         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
2709         (bug#9517).
2710
2711         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
2712         retrieval is happening.
2713
2714         * gnus.el (gnus-parameters): Doc fix.
2715
2716 2012-01-06  Dave Abrahams  <dave@boostpro.com>
2717
2718         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
2719         show the thread after expansion.
2720
2721 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2722
2723         * gnus-art.el (article-narrow-to-head): If the head is completely
2724         empty, narrow to the empty region (bug#9764).
2725
2726         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
2727         read, and then mark them as unread only when the unread mark is used.
2728         This makes `C-- T k' actually work, even though it's confusing.
2729
2730         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
2731         alive before we try to find its window.
2732
2733 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
2734
2735         * mm-decode.el (mm-display-external): Use a longer timeout for the
2736         deletion to allow slow programs to display the file.
2737
2738 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2739
2740         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
2741         prompt to be less confusing.
2742
2743         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
2744         argument to `message-reply'.  This broke `special-display-*' frame
2745         pop-uping (bug#10238).
2746
2747 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2748
2749         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
2750         systems, since these allegedly don't work there.
2751
2752 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
2753
2754         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
2755         live buffer.
2756
2757 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2758
2759         * nnir.el (nnir-retrieve-headers): Protect against the article not
2760         existing on the server (bug#10335).
2761
2762 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
2763
2764         * gnus-agent.el (gnus-agent-load-local): Recompute
2765         gnus-agent-article-local on changing method.
2766
2767 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2768
2769         * gnus.el (gnus-parameters): Note precedence.
2770
2771 2012-01-04  Leo Liu  <sdl.web@gmail.com>
2772
2773         * nndraft.el (nndraft-update-unread-articles): Don't move point around
2774         in the group buffer.
2775
2776 2012-01-04  Julien Danjou  <julien@danjou.info>
2777
2778         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
2779         change.
2780
2781 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2782
2783         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
2784         too.
2785
2786         * nntp.el (nntp-retrieve-group-data-early): Use it.
2787
2788 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2789
2790         * nntp.el (nntp-retrieval-in-progress): New variable.
2791         (nntp-make-process-buffer): Make it buffer-local.
2792
2793         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
2794         2010.
2795         (gnus-demon-init): Use it to compute the time if time is on the form
2796         "04:23".
2797
2798         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
2799
2800         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
2801         status in the correct buffer.
2802
2803 2012-01-03  Leo Liu  <sdl.web@gmail.com>
2804
2805         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
2806         when opening topics (bug#10407).
2807
2808 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2809
2810         * gnus-cus.el (gnus-score-customize):
2811         * gnus-sum.el (gnus-sort-gathered-threads):
2812         * message.el (message-shorten-references):
2813         * nnmairix.el (nnmairix-request-group):
2814         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
2815
2816 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2817
2818         * gnus-agent.el (gnus-agent-regenerate-group):
2819         * gnus-int.el (gnus-retrieve-group-data-early):
2820         * mm-util.el (mm-codepage-ibm-list):
2821         * nndiary.el (Commentary, nndiary-get-new-mail):
2822         * nnir.el (nnir):
2823         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
2824
2825 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2826
2827         * mm-view.el (mm-display-inline-fontify): Add comment.
2828
2829 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2830
2831         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
2832         * ntlm.el (ntlm-smb-dohash): Spelling fix.
2833
2834 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
2835
2836         * gnus-art.el (gnus-split-methods):
2837         * gnus-msg.el (gnus-configure-posting-styles):
2838         * gnus-spec.el (gnus-parse-simple-format):
2839         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2840         * message.el (message-do-actions): Spelling fix.
2841
2842 2011-12-15  Juri Linkov  <juri@jurta.org>
2843
2844         * mm-decode.el (mm-inline-media-tests): Add missing
2845         `mm-handle-media-subtype'.
2846
2847 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2848
2849         * gnus-group.el (gnus-group-tool-bar):
2850         * gnus-sum.el (gnus-summary-tool-bar):
2851         * message.el (message-tool-bar):
2852         * rfc2231.el (rfc2231-parse-string): Spelling fix.
2853
2854 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
2855
2856         * plstore.el (plstore--insert-buffer): Spelling fix.
2857
2858 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
2859
2860         * message.el (message-valid-fqdn-regexp): Update with newly approved
2861         top-level domain names ".tel" and ".asia".
2862
2863 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2864
2865         * gnus-sum.el (gnus-summary-show-article): Don't load shr
2866         unconditionally.
2867
2868 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2869
2870         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
2871         pop-to-buffer-same-window for old Emacsen.
2872
2873 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
2874
2875         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
2876
2877 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2878
2879         * netrc.el (netrc-credentials): Spelling fix.
2880
2881 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
2882
2883         * gnus-fun.el (gnus-fun-ppm-change-string):
2884         * gnus-msg.el (gnus-inews-do-gcc):
2885         * gnus-sum.el (gnus-summary-find-for-reselect):
2886         * gnus.el (gnus-summary-cancelled):
2887         * message.el (message-cancel-hook, message-send-news):
2888         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
2889         * nnir.el (nnir-run-hyrex):
2890         * nntp.el (nntp-with-open-group-function):
2891         * pgg.el (pgg-pending-timers): Spelling fix.
2892
2893 2011-12-04  Chong Yidong  <cyd@gnu.org>
2894
2895         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
2896         change (Bug#10200).
2897
2898 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2899
2900         * compface.el (uncompface):
2901         * gnus-art.el (gnus-article-x-face-command): Update the header format
2902         of icon data for the most recent icontopbm program.
2903
2904 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2905
2906         * gnus-msg.el (gnus-inews-do-gcc):
2907         * message.el (message-send-mail):
2908         * mml.el (mml-generate-mime): Share the value of the buffer-local
2909         `message-options' variable between a draft buffer and temprary working
2910         buffers.
2911
2912 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2913
2914         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
2915
2916 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2917
2918         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
2919         for Cygwin.
2920
2921 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2922
2923         * gnus-group.el (gnus-group-prepare-flat):
2924         * mm-bodies.el (mm-encode-body):
2925         * mml.el (mml-preview):
2926         * nnml.el (nnml-request-compact-group):
2927         * pop3.el (pop3-stream-type): Spelling fix.
2928
2929 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2930
2931         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
2932
2933 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
2934
2935         * color.el (color-rgb-to-hsl):
2936         * gmm-utils.el (gmm-tool-bar-style):
2937         * gnus-group.el (gnus-group-prepare-flat):
2938         * gnus-topic.el (gnus-topic-prepare-topic):
2939         * mm-decode.el (mm-discouraged-alternatives):
2940         * rfc2047.el (rfc2047-encode-1):
2941         * starttls.el: Spelling fix.
2942
2943 2011-11-24  Glenn Morris  <rgm@gnu.org>
2944
2945         * binhex.el (binhex-begin-line): Give it basic doc-string.
2946
2947         * starttls.el, tls.el: Fix case of "GnuTLS".
2948
2949 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
2950
2951         * gnus-group.el (gnus-group-highlight): Fix typo.
2952
2953 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
2954
2955         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
2956         value of `delete-file', that returns nil for a local file but returns t
2957         for a remote file using ssh.
2958
2959 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
2960
2961         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
2962
2963 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2964
2965         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
2966         avoid later breakage.
2967
2968 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2969
2970         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
2971         article buffers' name.
2972
2973 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2974
2975         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
2976         by Paul Eggert's spellfixes two days ago.
2977
2978 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2979
2980         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
2981         doesn't have it.
2982
2983         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
2984         buffer-local instead of binding them to avoid warnings.  Also demote
2985         errors (bug#10063).
2986         (font-lock-mode-hook): Shut up byte compiler.
2987
2988 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
2989
2990         * mm-util.el (mm-charset-after):
2991         * nnir.el (nnir-run-hyrex):
2992         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
2993         (ntlm-get-password-hashes, ntlm-md4hash):
2994         * smime.el: Fix typo.
2995
2996 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2997
2998         * gnus-agent.el (gnus-agent-expire-group-1):
2999         * nndiary.el (nndiary-last-occurence):
3000         * nnimap.el (nnimap-request-set-mark):
3001         * nnmairix.el (nnmairix-only-use-registry):
3002         * gnus-group.el (gnus-group-prepare-flat):
3003         * gnus-sum.el (gnus-decode-encoded-word-methods):
3004         * message.el (message-wash-subject):
3005         * nntp.el (nntp-retrieve-headers-with-xover):
3006         * smime.el (smime-certificate-directory): Spelling fix.
3007
3008 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
3009
3010         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
3011
3012         * color.el:
3013         * gnus-agent.el (gnus-agent-possibly-alter-active):
3014         * gnus-dired.el (gnus-dired-print):
3015         * mail-parse.el:
3016         * nnmairix.el (nnmairix-request-group):
3017         * shr.el (shr-image-displayer):
3018         * sieve-manage.el:
3019         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
3020
3021 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
3022
3023         * gnus-sum.el (gnus-auto-select-subject):
3024         * spam-report.el (spam-report-resend): Spelling fix.
3025
3026 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
3027
3028         * gnus-agent.el (gnus-agent-get-undownloaded-list):
3029         * gnus-art.el (gnus-default-article-saver):
3030         * gnus-srvr.el (gnus-server-copy-server):
3031         * gnus.el (gnus-sloppily-equal-method-parameters):
3032         * html2text.el (html2text-format-tag-list):
3033         * message.el (message-narrow-to-head):
3034         * nndiary.el:
3035         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3036         * sieve.el: Spelling fix.
3037
3038 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
3039
3040         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
3041         * gnus-sum.el (gnus-summary-make-menu-bar):
3042         * gnus-uu.el (gnus-uu-decode-postscript)
3043         (gnus-uu-decode-postscript-and-save):
3044         * mailcap.el (mailcap-print-command):
3045         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
3046         Fix typos.
3047
3048 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
3049
3050         * gnus-art.el (gnus-article-part-wrapper):
3051         * html2text.el (html2text-fix-paragraphs):
3052         * mm-decode.el (mm-image-fit-p):
3053         * rfc2047.el (rfc2047-encode-message-header):
3054         * shr-color.el (shr-color-visible-distance-min)
3055         (shr-color-relative-to-absolute, set-minimum-interval)
3056         (shr-color-visible): Fix typos.
3057
3058 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
3059
3060         * gmm-utils.el (gmm-tool-bar-item):
3061         * gnus-art.el (gnus-treat-body-boundary):
3062         * gnus-diary.el (gnus-user-format-function-d):
3063         * gnus-start.el (gnus-get-unread-articles):
3064         * pgg-gpg.el (pgg-gpg-update-agent):
3065         * smime.el (smime-cert-by-ldap-1): Spelling fix.
3066
3067 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
3068
3069         * gnus-topic.el (gnus-group-prepare-topics):
3070         * gnus-uu.el (gnus-extract-view):
3071         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
3072
3073 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
3074
3075         * spam.el: Move BBDB autoloads.
3076         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
3077         BBDB 2 and 3.
3078         (spam-check-BBDB): Use it.
3079         (spam-enter-ham-BBDB): Use it.
3080
3081 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
3082
3083         * smime.el (smime-draw-buffer): Spelling fix.
3084
3085 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
3086
3087         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
3088         for scanning exactly one level.
3089         * gnus-start.el (gnus-get-unread-articles): Ditto.
3090
3091 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3092
3093         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
3094         slightly clearer.
3095
3096 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
3097
3098         * gnus-sync.el: More commentary about setup.
3099
3100 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3101
3102         * message.el (message-send-and-exit): Document `arg'.
3103
3104 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3105
3106         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
3107
3108 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
3109
3110         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
3111
3112         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
3113         we don't use `bound-and-true-p'.
3114
3115 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
3116
3117         * gnus-util.el (gnus-bound-and-true-p): Remove.
3118         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
3119         * nnir.el: Use it.
3120         * nnmairix.el: Use it.
3121
3122 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
3123
3124         * gnus-sync.el: Improve docs about CouchDB admins.
3125
3126         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
3127         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
3128         for reasons unknown.
3129         * nnir.el: Use it.
3130         * nnmairix.el: Use it.
3131
3132         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
3133         * nnir.el: Ditto.
3134         * nnmairix.el: Ditto.
3135
3136         * gnus-registry.el (gnus-registry-enabled): Default to nil.
3137
3138 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
3139
3140         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
3141         not needed.  Provide xmlplistread list function to produce XML plist
3142         output for non-Gnus LeSync clients.
3143
3144 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
3145
3146         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
3147
3148         * gnus-sync.el: Add LeSync synchronization backend and logic to read
3149         and save against it.  Group subscriptions, read marks, other marks,
3150         subscription levels, topic names, and topic offsets (the group's
3151         position within the topic) are saved.  This is an experimental backend
3152         and may change significantly.  Load json.el from the gnus-fallback-lib
3153         if it's not available otherwise.
3154         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
3155
3156 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3157
3158         * message.el (message-completion-function): Make sure
3159         message-tab-body-function is not attempted if one of
3160         message-completion-alist fails to find a completion (bug#9158).
3161
3162 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
3163
3164         * mml.el (mml-quote-region): Quote <#secure> tag.
3165         (mml-generate-mime-1): Unquote <#secure> tag.
3166
3167 2011-10-20  Chong Yidong  <cyd@gnu.org>
3168
3169         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
3170         calling a minor mode from Lisp with nil arg enables it, so we have to
3171         make the wording a bit ambiguous here).
3172
3173 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
3174
3175         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
3176         * nnir.el (nnir-mode): Use it.
3177         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3178         Use it.
3179
3180         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
3181         * nnmairix.el (gnus-registry-enabled): Ditto.
3182
3183 2011-10-17  Dave Abrahams  <dave@boostpro.com>
3184
3185         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
3186         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
3187         only while we need to find out if it should be t or nil.
3188         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
3189         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
3190         the registry is installed.  Set it to nil when it's unloaded.
3191         (gnus-registry-install-p): Provide user guidance for the initial value
3192         of `gnus-registry-install' when it's 'ask, otherwise return its value.
3193         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
3194         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3195         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3196         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3197         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
3198         `gnus-registry-install'.
3199
3200 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
3201
3202         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
3203         previous change.
3204         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
3205         primary key is marked as disabled.
3206
3207 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
3208
3209         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
3210         primary key is marked as disabled.
3211
3212 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
3213
3214         * html2text.el (html2text-clean-anchor): Check for quotes around
3215         `href' value.
3216
3217 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
3218
3219         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
3220         searching.  Drop `bbdb-cache'.
3221
3222 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3223
3224         * message.el (message-signed-or-encrypted-p): Exclude header when
3225         checking if there is signed or encrypted body in text/plain message.
3226
3227 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
3228
3229         * html2text.el (html2text-get-attr): Correctly handle attribute values
3230         containing "=".
3231
3232 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
3233
3234         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
3235         handle bindings.
3236
3237 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3238
3239         * gnus-win.el (gnus-configure-windows): Protect against reading
3240         ephemeral groups outside of Gnus.
3241
3242 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3243
3244         * shr.el (shr-tag-img): Don't get images displayed in tables.
3245
3246 2011-10-03  Glenn Morris  <rgm@gnu.org>
3247
3248         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
3249         the "maintainer" version of debbugs.gnu.org reports.
3250
3251 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3252
3253         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
3254         make asynchronous adjacent image insertion work better.
3255
3256 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
3257
3258         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
3259         documentation.
3260
3261 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3262
3263         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
3264         `gnus-asynchronous' isn't shadowed.
3265
3266 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3267
3268         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
3269
3270         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
3271         (nnimap-insert-partial-structure): The charset parameter isn't
3272         case-sensitive.
3273
3274         * nnheader.el (nnheader-message-maybe): New function.
3275
3276         * shr.el (shr-tag-table): Render totally broken tables better.
3277
3278         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
3279         computing the boundary.
3280
3281 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3282
3283         * pop3.el (pop3-number-of-responses): Remove.
3284         (pop3-wait-for-messages): Rewrite to take linear time instead of
3285         exponential time.
3286
3287 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3288
3289         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
3290         re-fetch images.
3291
3292         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
3293         re-fetch images when hitting `g' in Gnus.
3294
3295 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3296
3297         * mml.el (mml-inhibit-compute-boundary): New internal variable.
3298         (mml-compute-boundary): Don't check collision if it is non-nil.
3299         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
3300         before checking collision.
3301
3302 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3303
3304         * message.el (message-indent-citation): Really make sure there's a
3305         newline at the end.
3306
3307         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
3308         Fix suggested by John Wiegley.
3309
3310         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
3311
3312         * gnus-art.el (gnus-treat-hide-citation): Add doc.
3313
3314         * message.el (message-default-send-rename-function): Break out into its
3315         own function.
3316
3317         * ecomplete.el (ecomplete-display-matches): Revert patch since it
3318         doesn't work under XEmacs.
3319
3320         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
3321         of "imaps" to word around Windows problems.
3322         (nnimap-open-connection-1): Use it.
3323
3324         * message.el (message-indent-citation): Revert last change which made
3325         `F' not work.
3326
3327 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
3328
3329         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
3330         terminal as well.
3331
3332 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3333
3334         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
3335         because it displays images using overlays that aren't easy to copy to
3336         the article buffer.
3337
3338 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
3339
3340         * message.el (message-indent-citation): Fix empty line removal at the
3341         end of the citation.
3342
3343 2011-09-20  Julien Danjou  <julien@danjou.info>
3344
3345         * auth-source.el (auth-source-netrc-create): Use default value for
3346         password if specified.  Evaluate default.
3347         (auth-source-plstore-create): Ditto.
3348         (auth-source-plstore-create, auth-source-netrc-create): Fix default
3349         value evaluation.
3350         (auth-source-netrc-create): Typo fix.
3351         (auth-source-plstore-create): Ditto.
3352
3353         * password-cache.el (password-cache-remove): Remove entries even if the
3354         value is nil, so that password with a nil value (negative caching) is
3355         possible to invalidate.
3356
3357         * auth-source.el (auth-source-format-cache-entry): New function.
3358
3359 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3360
3361         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
3362
3363 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3364
3365         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
3366
3367 2011-09-19  Julien Danjou  <julien@danjou.info>
3368
3369         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
3370         which work with things that are not ASCII.
3371
3372 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3373
3374         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
3375
3376 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3377
3378         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
3379         message level.
3380
3381 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3382
3383         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
3384
3385 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3386
3387         * gnus.el (gnus-interactive-exit): Update defcustom spec.
3388
3389 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3390
3391         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
3392         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
3393
3394 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
3395
3396         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
3397         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
3398         articles.
3399
3400 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
3401
3402         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
3403         (message-mail-other-window, message-mail-other-frame)
3404         (message-news-other-window, message-news-other-frame):
3405         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
3406         instead of setting buffer display varibles.
3407
3408 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3409
3410         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
3411
3412         * gnus-sum.el (gnus-fetch-headers): Bump message level.
3413
3414 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3415
3416         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
3417         duplicates" to a higher level.
3418
3419         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
3420         most egregious messages.
3421
3422 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3423
3424         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
3425
3426 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
3427
3428         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
3429         up the file (bug#9351).
3430
3431 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3432
3433         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
3434         it does with all other backends, but decode the names immediately after
3435         getting them.
3436
3437         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
3438         decoding nnimap groups.
3439
3440         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
3441         newsrc file.  It doesn't seem like an important optimization any more.
3442
3443 2011-09-10  Dave Abrahams  <dave@boostpro.com>
3444
3445         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
3446         overflows.
3447
3448 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3449
3450         * gnus.el (gnus-article-mark-lists): Remove `recent'.
3451         (gnus-interactive-exit): Extend to `quiet'.
3452
3453         * gnus-sum.el (gnus-offer-save-summaries): Use it.
3454
3455         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
3456         string.
3457
3458         * plstore.el (plstore--get-buffer): Silence compiler warnings by
3459         renaming function arguments from `this'.
3460
3461         * gnus-sum.el (gnus-newsgroup-recent): Remove.
3462
3463         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
3464         has been renamed.
3465         (gnus-lrm-string-p): Include RLM and PDF, too.
3466
3467         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
3468         (bug#9225).
3469
3470 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
3471
3472         Add autoload cookies for functions used by sendmail.el.
3473         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
3474
3475         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
3476
3477 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3478
3479         * gnus-art.el (article-date-ut): Work properly even when there are
3480         things like Date header in the body; work for forwarded parts.
3481
3482 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
3483
3484         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
3485         original-article-buffer.
3486
3487 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
3488
3489         * nnir.el (nnir-compose-result): Fix matching of server type.
3490         (nnir-run-swish++): Ditto.
3491         (nnir-run-namazu): Ditto.
3492         (nnir-run-notmuch): Ditto.
3493
3494 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3495
3496         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
3497         (bug#9405).
3498
3499         * gnus-score.el (gnus-summary-increase-score): Doc clarification
3500         (bug#9421).
3501
3502         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
3503         (bug#9425).
3504
3505         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
3506         thing (bug#9426).
3507
3508 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3509
3510         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
3511         the error message.
3512
3513 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
3514
3515         * message.el (message-setup-1): Return t (Bug#9392).
3516
3517 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
3518
3519         * gnus-sum.el: When adding article headers to a summary buffer also
3520         update gnus-newsgroup-articles (bug#9386).
3521
3522 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3523
3524         * auth-source.el: Autoload help-mode.
3525
3526 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3527
3528         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
3529         names.
3530
3531 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
3532
3533         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
3534         mm-replace-in-string for compatibility issues.
3535         * mml2015.el (mml2015-epg-verify): Ditto.
3536
3537 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3538
3539         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
3540
3541         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
3542
3543 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3544
3545         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
3546         continue on and do the clean-up phase (bug#9188).
3547
3548         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
3549         just ignore groups that can't be opened instead of erroring out
3550         (bug#9225).
3551
3552         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
3553         nil since some many people are fuddy-duddies.
3554
3555         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
3556         images.
3557
3558         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
3559         instead.
3560
3561         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
3562
3563         * gnus-util.el (gnus-process-live-p): Copy over compat function.
3564
3565         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
3566         processing.
3567
3568         * nntp.el (nntp-kill-buffer): Kill the process before killing the
3569         buffer to avoid warnings.
3570
3571 2011-08-20  Simon Josefsson  <simon@josefsson.org>
3572
3573         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
3574         specified to reduce precision.
3575
3576 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3577
3578         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
3579         bodystructures (bug#9314).
3580
3581 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3582
3583         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
3584         Make button keymap non-sticky after buttons.
3585
3586 2011-08-18  David Engster  <dengste@eml.cc>
3587
3588         * nnmairix.el (nnmairix-request-set-mark)
3589         (nnmairix-goto-original-article): Remove adding of article to registry,
3590         since `gnus-registry-add-group' isn't available anymore.
3591         (nnmairix-determine-original-group-from-registry):
3592         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
3593         available anymore.
3594
3595 2011-08-12  Simon Josefsson  <simon@josefsson.org>
3596
3597         * starttls.el (starttls-any-program-available): Define as obsolete
3598         function.
3599
3600 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3601
3602         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
3603         versions which Gnus use when appropriate.
3604
3605         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
3606         a pretty destructive command.
3607
3608         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
3609
3610 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3611
3612         * message.el (message-fix-before-sending): Make a different warning
3613         about NUL characters (bug#9270).
3614
3615         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
3616         from custom (bug#9260).
3617
3618         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
3619         things work in Emacs 22 and XEmacs, too.
3620
3621         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
3622         default From.
3623
3624         * gnus-spec.el (gnus-lrm-string-p): New macro.
3625         (gnus-lrm-string): New constant.
3626         (gnus-summary-line-format-spec): LRM-ify the from.
3627         (gnus-tilde-max-form): LRM-ify string chopping.
3628
3629         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
3630
3631         * message.el (message-is-yours-p): Allow disabling canlock checking
3632         (bug#9295).
3633         (message-shoot-gnksa-feet): Add `canlock-verify'.
3634         (message-auto-save-directory): Use ~/ as the auto-save directory if the
3635         message directory isn't writable (bug#9304).
3636
3637         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
3638         non-world-readable.
3639
3640 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3641
3642         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
3643         articles.
3644
3645 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
3646
3647         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
3648         copy-list.
3649
3650 2011-08-12  Sam Steingold  <sds@gnu.org>
3651
3652         * gnus-score.el (gnus-score-find-alist): Keep the score files already
3653         in the reverse order to avoid modifying the cache with `nreverse'.
3654         (gnus-all-score-files): Do not modify the value returned by
3655         `gnus-score-find-alist' because it lives in a cache variable.
3656         (gnus-current-home-score-file): No need to `nreverse' the return value
3657         of `gnus-score-find-alist', it is already in the correct order.
3658
3659 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
3660
3661         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
3662         type MESSAGE and subtype RFC822 is slightly different from those of
3663         type TEXT.
3664
3665 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
3666
3667         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
3668         This allows article-referral to work from an nnir group.
3669
3670 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
3671
3672         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
3673
3674 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
3675
3676         * mml1991.el (mml1991-epg-find-usable-key)
3677         (mml1991-epg-find-usable-secret-key): New function.
3678         (mml1991-epg-sign): Check if signing key is usable.
3679         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
3680
3681 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
3682
3683         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
3684         server-variables only.  This should fix a bug introduced with commit
3685         e1889675b7f4adf057833c5513c9374134c4e053.
3686         (nnir-run-query): 'nnir-search-engine should not be set from the global
3687         environment.
3688
3689 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
3690
3691         * nnir.el (nnir-search-thread): Position point on referring article
3692         line.
3693         (nnir-warp-to-article): Clean up summary buffers.
3694
3695         * nnimap.el (nnimap-request-thread): Whitespace fix.
3696
3697 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
3698
3699         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
3700
3701 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3702
3703         * starttls.el (starttls-available-p): Rename from
3704         `starttls-any-program-available' and changed return convention.
3705
3706 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
3707
3708         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
3709         `unix-sync' unless it's defined.
3710
3711 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
3712
3713         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
3714         `aref' for XEmacs compatibiltiy.
3715
3716 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3717
3718         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
3719
3720 2011-07-31  Dave Abrahams  <dave@boostpro.com>
3721
3722         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
3723         closures, quote the form properly (bug#9194).
3724
3725 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3726
3727         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
3728         (gnus-summary-insert-new-articles): Protect against servers that are
3729         down.
3730
3731 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
3732
3733         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
3734         in mm handle if none is specified.
3735
3736 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
3737
3738         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
3739
3740 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
3741
3742         * nnir.el (nnir-search-thread): New function to make an nnir group
3743         based on a thread query.
3744
3745         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
3746         of nnir in thread referral.
3747         (gnus-summary-refer-thread): Use it.
3748
3749         * nnimap.el (nnimap-request-thread): Use it.
3750
3751 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3752
3753         * shr.el (shr-tag-comment): Ignore HTML comments.
3754
3755 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
3756
3757         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
3758         argument.
3759         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
3760         Use `nnir-address' to handle server info rather than passing an arg.
3761
3762         * nnimap.el (nnimap-make-thread-query): New utility function to format
3763         an imap thread search query.
3764         (nnimap-request-thread): Use it.
3765
3766         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
3767         right select-method if we are not going back to the group buffer.
3768
3769 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3770
3771         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
3772         enter invalid buffer configurations into the quit form (bug#9107).
3773         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
3774         unplugged/plugged.
3775
3776         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
3777         keep track of which ones are unread (bug#9061).
3778
3779         * gnus.el (gnus-refer-article-method): Allow entering any sexp
3780         (bug#9055).
3781
3782         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
3783         (bug#9041).
3784
3785         * gnus-html.el (mm-util): Require (bug#9073).
3786
3787         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
3788         (gnus-summary-refer-thread): Use it to remove duplicates in the
3789         un-threaded view (bug#9053).
3790         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
3791
3792 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
3793
3794         * nnir.el (nnir-read-server-parm): Use default value from global
3795         variable.  Without this the default search engine parameters aren't
3796         used at all.
3797
3798 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3799
3800         * message.el (message-unique-id): Don't use the undocumented return
3801         value from (random t) (bug#9118).
3802
3803 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3804
3805         * message.el (message-auto-save-directory): If the ~/Mail directory
3806         doesn't exist, use ~ as the auto-save directory (bug#4432).
3807
3808         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
3809         hasn't already been started.
3810
3811 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3812
3813         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
3814
3815         * message.el (message-reply): Work around mysterious bug where
3816         `message-mode' seems to overwrite the locally bound `subject' variable.
3817
3818 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
3819
3820         * nnimap.el (nnimap-request-thread): Ensure search is performed in
3821         correct group.
3822
3823         * gnus-int.el (gnus-request-thread): Add group argument.
3824
3825         * gnus-sum.el (gnus-summary-refer-thread): Use it.
3826
3827 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3828
3829         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
3830
3831         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
3832         renamed to `debbugs-gnu-*'.
3833
3834 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
3835
3836         * plstore.el: Revert the editing feature since it is not urgent.
3837         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
3838         (plstore-mode-decoded): Remove.
3839
3840 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3841
3842         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
3843         isn't very interesting any more, and it leaks potentially secret data.
3844         (gnus-debug): Remove.
3845
3846         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
3847         use of :custom-show.
3848
3849 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
3850
3851         * plstore.el: Add documentation.
3852         (plstore-mode): New mode to edit plstore file.
3853         (plstore-mode-toggle-display, plstore-mode-original)
3854         (plstore-mode-decoded): New command.
3855         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3856         (plstore--insert-buffer, plstore--make): New function.
3857         (plstore-open, plstore-save): Simplify by using them.
3858
3859 2011-07-06  Glenn Morris  <rgm@gnu.org>
3860
3861         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
3862
3863 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3864
3865         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
3866         no longer is much used.
3867         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
3868         Articles".
3869
3870 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
3871
3872         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
3873         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
3874         `notmuch' backend.
3875
3876 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3877
3878         * mm-decode.el (mm-text-html-renderer): Doc fix.
3879
3880         * gnus-msg.el (gnus-bug): Fix the MML tag.
3881
3882         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
3883
3884 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
3885
3886         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
3887         secondary methods if started with `gnus-no-server'.
3888
3889 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
3890
3891         * message.el (message-return-action): Fix typo in docstring.
3892
3893 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3894
3895         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
3896         bug reports at once.
3897
3898         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
3899
3900 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3901
3902         * nndraft.el: Require gnus-group.
3903         (nndraft-request-list): Declare.
3904
3905         * nndraft.el (nndraft-update-unread-articles): Don't show group having
3906         no unread article unless it matches gnus-permanently-visible-groups.
3907
3908         * nndraft.el (nndraft-update-unread-articles): New function.
3909         (nndraft-request-associate-buffer): Use it to update the number of
3910         unread articles for the nndraft groups in the group buffer when saving
3911         or killing a draft message.
3912
3913 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3914
3915         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
3916         systems to binary before writing and reading the mbox files.
3917
3918         * gnus.el (gnus-summary-line-format): Link to the info node for %U
3919         instead of trying to list them all (bug#8978).
3920
3921 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3922
3923         * pop3.el (pop3-open-server): Use :end-of-capability.
3924
3925 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3926
3927         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
3928         the id is always a number.
3929
3930         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
3931
3932         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
3933         debbugs mode, if possible.
3934
3935 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
3936
3937         * auth-source.el (auth-source-token-passphrase-callback-function):
3938         Reindent.
3939         (epg-context-operation): Remove unnecessary autoload.
3940
3941 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3942
3943         * gnus.el (gnus-list-debbugs): New command.
3944
3945         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
3946         mboxstat instead of the maintbox, since the stat seems to be fuller.
3947
3948         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
3949         summary buffers.
3950
3951         * message.el (message-get-reply-headers): Delete all duplicates,
3952         instead of the first.
3953         (message-get-reply-headers): Ensure that we have progress while
3954         deleting duplicates.
3955
3956         * gnus-msg.el (gnus-configure-posting-styles): Get the local
3957         gnus-posting-style value from the summary buffer to make it easier to
3958         make that a per-buffer conf.
3959
3960 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
3961
3962         * nnir.el (nnir-run-imap): Allow halting a search when an article is
3963         found by setting `shortcut' in 'query.
3964         (nnir-request-article): Use `shortcut' setting when requesting article
3965         by Message-ID.
3966
3967 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
3968
3969         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
3970         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
3971         Bring the pseudo-headers back too.
3972
3973 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3974
3975         * auth-source.el (auth-source-token-passphrase-callback-function):
3976         Simplify and remove EPA dependency.
3977
3978 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
3979
3980         * nnir.el (nnir-request-article): Fix error message text.
3981
3982 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3983
3984         * auth-source.el (plstore-delete): Autoload.
3985         (auth-source-plstore-search): Support delete operation.
3986         * plstore.el (plstore-delete): New function.
3987
3988 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3989
3990         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
3991         mark actually existing articles as unread rather than the ones that
3992         active asserts.
3993
3994 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
3995
3996         * nntp.el (nntp-record-command):
3997         * gnus-util.el (gnus-message-with-timestamp-1):
3998         Use format-time-string rather than decoding time stamps by hand.
3999         This is simpler and insulates the code from potential changes to
4000         current-time format.
4001
4002 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4003
4004         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
4005
4006 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
4007
4008         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
4009         (plstore-save): Support public key encryption.
4010         (plstore--init-from-buffer): New function.
4011         (plstore-open): Use it; fix error when opening a non-existent file.
4012         (plstore-revert): Use plstore--init-from-buffer.
4013
4014 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
4015
4016         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
4017
4018 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4019
4020         * mml2015.el (mml2015-use): Replace string-match-p with string-match
4021         for old Emacsen.
4022
4023 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
4024
4025         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
4026         is not fully working.
4027
4028 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4029
4030         * dgnushack.el: Autoload sha1 on XEmacs.
4031
4032         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
4033         quit window configuration.
4034
4035         * auth-source.el (epg-context-set-passphrase-callback):
4036         Remove duplicate autoload.
4037
4038 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
4039
4040         * nnir.el (nnir-request-article): Allow requesting articles by
4041         Message-ID with nnimap.
4042
4043         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
4044         current server.
4045
4046 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
4047
4048         * auth-source.el: Autoload EPA/EPG functions.
4049         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
4050         changed when EPA/EPG is not available.
4051         (auth-source-backend): Rename "arg" member to "data".
4052         (auth-source-backend-parse, auth-source-plstore-search)
4053         (auth-source-plstore-create): Use it.
4054
4055 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
4056
4057         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
4058         `gnus-refer-article-methods'.
4059
4060 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
4061
4062         * auth-source.el: Require EPA and EPG.
4063         (auth-source-passphrase-alist): New variable.
4064         (auth-source-passphrase-callback-function)
4065         (auth-source-token-passphrase-callback-function): Callbacks for the
4066         netrc field encryption (GPG tokens).
4067         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
4068         Symmetric encryption and decryption of the netrc GPG tokens.
4069         (auth-source-netrc-normalize): Use them, simplifying the closure.
4070
4071 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4072
4073         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
4074         is available.
4075
4076 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4077
4078         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
4079         non-nil, and `nnimap-split-methods' is nil, use the former.
4080
4081 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
4082
4083         * plstore.el (plstore-revert): New function.
4084         (plstore-open): Use it; hide the buffer from user.
4085
4086 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
4087
4088         * auth-source.el (auth-source-backend): New member "arg".
4089         (auth-source-backend-parse): Handle new backend 'plstore.
4090         * plstore.el: New file.
4091
4092 2011-06-30  Glenn Morris  <rgm@gnu.org>
4093
4094         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
4095
4096 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4097
4098         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
4099         expiring articles to.
4100
4101         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
4102         variations as ASCII (bug#5458).
4103
4104 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4105
4106         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
4107
4108 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4109
4110         * message.el (message-point-in-header-p): Tweak the function to default
4111         to saying that we're not in the headers if there is no separator at
4112         all.  This makes it possible to use the Message version of `M-q' in
4113         buffers with no headers (bug#7987).
4114         (message-point-in-header-p): Fix last checkin to work with an empty
4115         mail-header-separator, too.
4116
4117         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
4118         again, save the choice via customize.
4119
4120 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4121
4122         * message.el (message-send-mail-function): Add `sendmail-query-once'.
4123
4124         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
4125         ended the connection, bail out before waiting infinitely on a new
4126         connection.
4127
4128 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
4129
4130         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
4131         reports.
4132
4133         * gnus.el (gnus-bug-package): Use "gnus."
4134         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
4135
4136 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4137
4138         * dgnushack.el: Make the timer warning go away on XEmacs.
4139
4140         * gnus-art.el (gnus-article-stop-animations): New function to stop any
4141         animations going on at article exit time.
4142
4143         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
4144         since removing it breaks people upgrading.
4145
4146         * shr.el (shr-put-image): Use the new interface for animating images.
4147         (shr-put-image): Animate for 60 seconds.
4148
4149         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
4150         avoid compiler warnings.
4151
4152         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
4153         error with `find-file-hooks' on Emacs 22.
4154         (with-auth-source-epa-overrides): Ugly hack to Wrap the
4155         `find-file-hook' things in `symbol-value' to avoid compilation warnings
4156         on all architectures.
4157
4158         * spam.el (spam-stat): Require in a normal fashion without binding
4159         `spam-stat-install-hooks' to avoid compilation warnings.
4160
4161         * spam-stat.el (spam-stat-install-hooks): Remove.
4162         (spam-stat-install-hooks): Don't run automatically.
4163
4164 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
4165
4166         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
4167         and keystroke.
4168
4169 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4170
4171         * auth-source.el (auth-source-netrc-cache): Move forward.
4172
4173 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4174
4175         * proto-stream.el (proto-stream-open-starttls): Use
4176         `gnutls-available-p' to see whether we have built-in support.
4177
4178         * auth-source.el (auth-source-netrc-create): Don't query the bits that
4179         we already know.
4180         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
4181         (auth-source-netrc-create): Don't prompt for the stuff we already know.
4182
4183 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4184
4185         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
4186         %S format, since that looks odd.
4187         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
4188         file, especially when saving.
4189
4190 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
4191
4192         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
4193         article found.
4194
4195 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
4196
4197         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
4198         `auth-source-save-secrets' with a more sensitive alist that can be
4199         configured per file.  Experimental, so defaults to 'never.
4200         (auth-source-netrc-create): Use it.  Still experimental code.
4201         (with-auth-source-epa-overrides): Use `find-file-hooks' if
4202         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
4203
4204 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
4205
4206         * auth-source.el (auth-source-save-secrets): New variable to control if
4207         secret tokens should be saved encrypted.
4208         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
4209         to `auth-source-netrc-normalize'.
4210         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
4211         on the EPA variables being defined.
4212         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
4213         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
4214         the lexical-let closure.
4215         (auth-source-netrc-create): Create "gpg:" tokens according to
4216         `auth-source-save-secrets'.
4217
4218 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4219
4220         * gnus-group.el (gnus-group-update-group): Add new argument
4221         `info-unchanged' that stops updating dribble buffer.
4222
4223         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
4224         deletes lines matching to it in dribble buffer.
4225
4226         * gnus-agent.el (gnus-agent-fetch-group-1):
4227         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
4228         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
4229         * gnus-start.el (gnus-group-change-level):
4230         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
4231
4232         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
4233         if newsgroup info is not changed.
4234
4235         * gnus-group.el (gnus-group-get-new-news-this-group):
4236         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
4237         Don't update dribble buffer.
4238
4239 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
4240
4241         * gnus-registry.el (gnus-registry-remove-ignored): New function to
4242         remove entries with groups we ignore.
4243
4244 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4245
4246         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
4247         the underline comes at the bottom.
4248
4249 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
4250
4251         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
4252         `gnus-registry-user-format-function-M' and declare the latter obsolete.
4253         (gnus-registry-article-marks-to-names): Rename from
4254         `gnus-registry-user-format-function-M2'.
4255
4256 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4257
4258         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
4259         ephemeral group.
4260
4261 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4262
4263         * shr.el (shr-browse-image): Copy the URL if called interactively.
4264
4265 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4266
4267         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
4268         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
4269         done, then unselected articles may be marked as read.
4270
4271         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
4272         since not doing this seems to lead to a race condition in pop3-logon.
4273
4274         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
4275         so that the call chain it correct when we call "upwards".
4276
4277         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
4278         in read-only groups.
4279
4280         * gnus-group.el (gnus-group-mark-article-read): Ditto.
4281
4282         * message.el (message-cite-reply-position): Doc string fix.
4283
4284         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
4285         avoid regexp overflow.
4286         (nnimap-transform-split-mail): Ditto.
4287
4288         * pop3.el (pop3-retr): Error out if the server closes the connection.
4289
4290 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4291
4292         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
4293         mm-with-unibyte-current-buffer.  The buffer should not contain any
4294         multibyte chars anyway at this stage.
4295
4296 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4297
4298         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
4299         at the end of lines.
4300
4301 2011-05-29  Julien Danjou  <julien@danjou.info>
4302
4303         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
4304
4305 2011-05-27  Glenn Morris  <rgm@gnu.org>
4306
4307         * gnus-group.el (gnus-bug-group-download-format-alist):
4308         Use the "maintainer" version of debian reports as well.
4309
4310 2011-05-26  Glenn Morris  <rgm@gnu.org>
4311
4312         * gnus-group.el (gnus-bug-group-download-format-alist):
4313         Use the "maintainer" version of debbugs.gnu.org reports.
4314
4315 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4316
4317         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
4318
4319 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4320
4321         * gnus-cus.el (gnus-agent-customize-category):
4322         * gnus-delay.el (gnus-delay-send-queue):
4323         * gnus.el (gnus-other-frame):
4324         Don't quote lambda expressions with `quote'.
4325
4326 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
4327
4328         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
4329         the thread moves us backwards and so we loop forever.
4330
4331 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4332
4333         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
4334         whitespace in base64 data lines.
4335
4336 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
4337
4338         * gnus-registry.el (gnus-registry-user-format-function-M):
4339         Use `mapconcat'.
4340         (gnus-registry-user-format-function-M2): Use to see the full text of
4341         the marks.  Make "," the mark text separator.
4342
4343         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
4344         authentication with auth-source.
4345
4346 2011-05-17  Glenn Morris  <rgm@gnu.org>
4347
4348         * gnus-group.el (gnus-import-other-newsrc-file):
4349         Use insert-file-contents.
4350
4351 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
4352
4353         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
4354         1000 iterations.
4355
4356 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4357
4358         * nntp.el (nntp-open-connection): Check if process-type is available.
4359
4360 2011-05-16  Julien Danjou  <julien@danjou.info>
4361
4362         * shr.el (shr-tag-del): Add support for del tag.
4363
4364 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4365
4366         * gnus-html.el (gnus-html-put-image): Register a displayer.
4367
4368         * shr.el (shr-image-displayer): Don't remove text props from alt text.
4369
4370 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
4371
4372         * registry.el (prune-factor): New initialization parameter defaulting
4373         to 0.1.
4374         (registry-prune-hard): Use it.
4375
4376         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
4377         0.1 expicitly.
4378
4379 2011-05-13  Glenn Morris  <rgm@gnu.org>
4380
4381         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
4382         is bound, since this function requires sendmail.
4383
4384 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
4385
4386         * registry.el (registry-usage-test): Disable pruning test.
4387
4388 2011-05-11  David Engster  <dengste@eml.cc>
4389
4390         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
4391         Bind set-network-process-option for XEmacs.
4392
4393 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
4394
4395         * registry.el (registry-prune-hard-candidates)
4396         (registry-prune-soft-candidates): Helper methods for registry pruning.
4397         (registry-prune): Use them.  Make the sort function optional.
4398
4399 2011-05-10  Jim Meyering  <meyering@redhat.com>
4400
4401         * shr.el (shr-colorize-region): Fix typo "on on -> on".
4402
4403 2011-05-10  Julien Danjou  <julien@danjou.info>
4404
4405         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
4406         symbol and not a list.
4407
4408 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4409
4410         * gnus-art.el (gnus-article-mode): Move binding of
4411         shr-put-image-function here from gnus-article-prepare-display.
4412
4413         * shr.el (shr-put-image-function): New variable.
4414         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
4415         (shr-put-image): Return scaled image.
4416
4417         * gnus-art.el (gnus-shr-put-image): New function.
4418         (gnus-article-prepare-display): Bind shr-put-image-function to it.
4419
4420         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
4421         original ones, as deletable.
4422
4423 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4424
4425         * nntp.el (nntp-open-connection): Set TCP keepalive option.
4426
4427 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
4428
4429         * registry.el (registry-full): Add convenience method.  Fix logic.
4430         (registry-insert): Use it.  Fix logic here too.
4431
4432         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
4433         `registry-prune' if `registry-full' returns t.
4434         (gnus-registry-handle-action)
4435         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
4436         (gnus-registry-usage-test): Use it.
4437
4438 2011-05-07  Julien Danjou  <julien@danjou.info>
4439
4440         * shr.el (shr-link): Make shr-link inherit from link by default.
4441
4442 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
4443
4444         * shr.el (shr-urlify, shr-link): Fix shr-link face.
4445
4446 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
4447
4448         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
4449         error out because the face is not a list.
4450
4451 2011-05-05  Glenn Morris  <rgm@gnu.org>
4452
4453         * proto-stream.el (gnutls-negotiate): Fix declarations.
4454
4455         * gnus-start.el (gnus-propagate-marks): Declare.
4456
4457 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
4458
4459         * registry.el (registry-reindex): Fix percentage message.
4460
4461         * proto-stream.el (network-stream-open-starttls): Adjust to call
4462         `gnutls-negotiate' with :process and :hostname arguments.
4463
4464 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
4465
4466         * shr.el: Add shr-link face for links.
4467         (shr-urlify): Use it.
4468
4469         * registry.el (registry-insert): Make error message more helpful.
4470
4471 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4472
4473         * gnus-html.el (gnus-html-schedule-image-fetching):
4474         Use url-queue-retrieve, if it exists.
4475
4476         * shr.el (shr-tag-img): Ditto.
4477
4478         * gnus.el: Autoload more gnus-agent functions.
4479
4480         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
4481         agent if we haven't already (bug#8502).
4482
4483         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
4484         into the Agent, too.
4485
4486         * gnus-agent.el (gnus-agent-store-article): New function.
4487
4488         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
4489         and moved from that file for reuse.
4490
4491         * pop3.el (pop3-open-server): Error messages are "-ERR".
4492
4493 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4494
4495         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
4496         (open-tls-stream): Remove superfluous tls/starttls autoloads.
4497
4498 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4499
4500         * gnus.el: No Gnus v0.17 is released.
4501
4502 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4503
4504         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
4505         buffer has moved to a different frame.
4506
4507 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4508
4509         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
4510         to get the conversion from unibyte to multibyte buffers to work on
4511         Emacs 22.
4512
4513         * nntp.el (nntp-request-article): Slight clean-up.
4514
4515 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4516
4517         * shr.el (shr-strike-through): New face.
4518         (shr-tag-s): Use it to provide <s> support.
4519         (shr-tag-s): Remove duplicate definition.
4520
4521 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
4522
4523         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
4524         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
4525
4526 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
4527
4528         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
4529         `gnutls-negotiate'.
4530         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
4531
4532 2011-04-23  Glenn Morris  <rgm@gnu.org>
4533
4534         * gnus-sum.el (gnus-extra-headers): Bump :version.
4535
4536 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4537
4538         * shr.el (shr-tag-sup): New function.
4539         (shr-tag-sub): Ditto.
4540
4541 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
4542
4543         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
4544         for the case where `gnus-registry-ignored-groups' is a list of lists,
4545         and don't call `gnus-parameter-registry-ignore' otherwise.
4546
4547 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
4548
4549         * nnimap.el (nnimap-user): New backend variable.
4550         (nnimap-open-connection-1): Use it.
4551         (nnimap-credentials): Accept user parameter so it's explicit what user
4552         name is desired.
4553
4554         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
4555         default.
4556
4557         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
4558         not gnus-registry.el.
4559
4560         * gnus-registry.el: Mention in comments how to modify
4561         `gnus-extra-headers' for proper recipient tracking and that it may
4562         already have To and Cc recently, which it does as of this commit.
4563         (gnus-registry-ignored-groups): Remove defcustom.
4564         Explain why in comments.
4565         (gnus-registry-action): Fix data-header reference to use the extra
4566         headers.  Explain in package commentary how to add To and Cc headers to
4567         the gnus-extra-headers.
4568         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
4569         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
4570         parameter list or a string list in `gnus-registry-ignored-groups'.
4571         Fix logic error.
4572
4573 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4574
4575         * shr.el (shr-expand-url): Protect against null urls.
4576
4577 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4578
4579         * shr.el (shr-base): New binding.
4580         (shr-tag-base): Keep track of <base>.
4581         (shr-expand-url): New function used throughout.
4582
4583 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
4584
4585         * gnus-registry.el
4586         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
4587         (gnus-registry-ignored-groups): New variable.
4588         (gnus-registry-ignore-group-p): Use it.
4589         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
4590         set the destination group to nil (same as delete) if it's ignored.
4591
4592 2011-04-20  David Engster  <dengste@eml.cc>
4593
4594         * tests/gnustest-nntp.el: New file for simple NNTP testing.
4595
4596         * Makefile.in (test-nntp): New rule.
4597         (check): Add it.
4598         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
4599
4600 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4601
4602         * gnus-registry.el (gnus-registry-action)
4603         (gnus-registry-fetch-header-fast):
4604         Don't use mail-header that looks an internal function of mailheader.el.
4605
4606 2011-04-19  Glenn Morris  <rgm@gnu.org>
4607
4608         * time-date.el (time-to-days): Remove unused local variables.
4609
4610 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4611
4612         * gnus-registry.el: Eliminate cl functions.
4613         (gnus-registry-sort-addresses): New function that replaces mapcan.
4614         (gnus-registry-action, gnus-registry-spool-action)
4615         (gnus-registry-split-fancy-with-parent)
4616         (gnus-registry-fetch-recipients-fast): Use it.
4617         (gnus-registry-import-eld): Replace delete* with dolist + delq.
4618
4619         * registry.el (initialize-instance, registry-lookup)
4620         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
4621         (registry-lookup-secondary-value, registry-search, registry-delete)
4622         (registry-insert, registry-reindex, registry-size, registry-prune):
4623         Use eval-and-compile.
4624
4625 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
4626
4627         * registry.el (registry-reindex): New method to recreate the secondary
4628         registry indices.
4629
4630         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
4631         tracked field changes.
4632         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
4633         (gnus-registry-action, gnus-registry-spool-action)
4634         (gnus-registry-handle-action)
4635         (gnus-registry--split-fancy-with-parent-internal)
4636         (gnus-registry-split-fancy-with-parent)
4637         (gnus-registry-register-message-ids): Add recipient tracking on spool,
4638         move, and delete actions, and for fancy splitting with parent.
4639         (gnus-registry-extract-addresses)
4640         (gnus-registry-fetch-recipients-fast)
4641         (gnus-registry-fetch-header-fast): Convenience functions.
4642         (gnus-registry-misc-test): ERT test of
4643         `gnus-registry-extract-addresses'.
4644
4645 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
4646
4647         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4648         Track by subject first, then sender.
4649
4650 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4651
4652         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
4653
4654         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
4655         Lisp.
4656
4657         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
4658         (gnus-draft-send): Use it to avoid popping
4659         up frames from gnus-group-send-queue.
4660
4661 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
4662
4663         * gnus-registry.el: Updated gnus-registry docs.
4664
4665 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
4666
4667         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4668         Fix logic bug.
4669         (gnus-registry-post-process-groups): Fix logging of no results and
4670         quote sender and subject.
4671
4672 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4673
4674         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
4675         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
4676         gnutls-cli are too slow to be done opportunistically.
4677
4678         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
4679         (gnus-read-active-for-groups): Don't try to finish getting stuff where
4680         we had no early-data returned.
4681         (gnus-get-unread-articles): Add a sanity check so that we don't issue
4682         two async commands to the same server at the same time.
4683
4684 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
4685
4686         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
4687
4688 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4689
4690         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
4691         "warning" level.
4692
4693         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
4694         (mm-url-insert-file-contents): Don't set the package names.
4695
4696 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
4697
4698         * gnus-registry.el (gnus-registry-action): Remove properties and
4699         simplify subject in `gnus-registry-handle-action'.
4700         (gnus-registry-spool-action): Get subject and sender from message if
4701         they are not passed in.
4702         (gnus-registry-handle-action): Remove properties and simplify subject
4703         consistently.
4704
4705 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4706
4707         * registry.el: Require CL before using defmacro*.
4708
4709 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4710
4711         * gnus-art.el (article-treat-date): Assume that
4712         gnus-article-date-headers may be a group parameter.
4713
4714 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
4715
4716         * gnus-registry.el (gnus-registry-handle-action): More debugging.
4717
4718         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
4719         interactively so the newsrc file can contain foreign groups too.
4720         Useful for debugging but not much for users.
4721
4722 2011-04-07  David Engster  <dengste@eml.cc>
4723
4724         * registry.el (registry-usage-test): Only do
4725         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
4726         lexical binding.
4727
4728 2011-04-07  David Engster  <dengste@eml.cc>
4729
4730         * Makefile.in (check, test-registry): New rules for test-suite.
4731
4732 2011-04-06  David Engster  <dengste@eml.cc>
4733
4734         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
4735         argument NOERROR for `require', since XEmacs 21.4 does not support it.
4736
4737 2011-04-06  David Engster  <dengste@eml.cc>
4738
4739         * registry.el (initialize-instance): Change :after to :AFTER to be
4740         compatible with old EIEIO version in XEmacs.
4741
4742 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4743
4744         * gnus-registry.el (gnus-registry-post-process-groups)
4745         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
4746         and provide better messaging.
4747
4748 2011-04-06  David Engster  <dengste@eml.cc>
4749
4750         * Makefile.in (fail-on-warning): New rule to compile with warnings as
4751         errors.
4752
4753         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
4754         dgnushack-compile with error-on-warn enabled, and to signal an error if
4755         clean compilation failed.
4756         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
4757         with `byte-compile-error-on-warn'.  Return nil if errors occured.
4758
4759 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4760
4761         * gnus-registry.el: Don't use ERT if it's not available.  Load it
4762         unconditionally anyway, discarding errors.
4763         (gnus-registry-delete-entries): New convenience function.
4764         (gnus-registry-import-eld): Import from old .eld registry.
4765
4766         * registry.el: Don't use ERT if it's not available.  Load it
4767         unconditionally anyway, discarding errors.
4768
4769         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
4770         version from the Claudio Bley GnuTLS patch (extra optional parameters
4771         and host name).
4772
4773 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
4774
4775         * gnus-registry.el (gnus-registry-fixup-registry): New function to
4776         fixup the parameters that can be customized by the user between
4777         save/read cycles.
4778         (gnus-registry-read): Use it.
4779         (gnus-registry-make-db): Use it.
4780         (gnus-registry-spool-action, gnus-registry-handle-action):
4781         Fix messaging.
4782         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
4783         Map references to actual group names with sender and subject tracking.
4784         (gnus-registry-post-process-groups): Use `cond' for better messaging.
4785         (gnus-registry-usage-test): Add subject lookup test.
4786
4787         * registry.el (registry-db, initialize-instance): Set up constructor
4788         instead of :initform arguments for the sake of older Emacsen.
4789         (registry-lookup-breaks-before-lexbind): New method to demonstrate
4790         pre-lexbind merge bug.
4791         (registry-usage-test): Use it.
4792         (initialize-instance, registry-db): Move the non-function initforms
4793         back to the class definition.
4794
4795 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
4796
4797         * registry.el: New library to manage gnus-registry-style data.
4798
4799         * gnus-registry.el: Use it (major rewrite).
4800
4801         * nnregistry.el: Use it.
4802
4803         * spam.el: Use it.
4804
4805 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4806
4807         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
4808         marks on non-selected articles.
4809
4810 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
4811
4812         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
4813         parameter to open-protocol-stream.
4814
4815 2011-04-01  Julien Danjou  <julien@danjou.info>
4816
4817         * mm-view.el (mm-display-inline-fontify): Do not fontify with
4818         fundamental-mode.
4819
4820 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4821
4822         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
4823         servers.
4824
4825 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4826
4827         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
4828         made marks not propagate, again.
4829
4830 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
4831
4832         * proto-stream.el (open-protocol-stream): Bring back `network' type.
4833         Make this the default type.
4834         (proto-stream-open-plain): Rename from proto-stream-open-default.
4835         (open-protocol-stream, proto-stream-open-starttls)
4836         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
4837         with `plain'.
4838
4839         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
4840         value.
4841
4842         * nntp.el (nntp-open-connection-function): Document the fact that some
4843         values are not functions but are instead handled specially.
4844         Recognize nntp-open-plain-stream value.
4845         (nntp-open-connection): Recognize that value.
4846
4847 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4848
4849         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
4850         where it seems to be needed.
4851
4852 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4853
4854         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
4855         stuff.
4856
4857         * gnus-score.el (gnus-score-string): Fix calling convention of
4858         `gnus-simplify-buffer-fuzzy' after last patches.
4859
4860         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
4861         server for articles we didn't get any headers for.  This is a sanity
4862         check.
4863
4864 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
4865
4866         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
4867         new CAPABILITY, use it.
4868
4869 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4870
4871         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
4872         downloading anything.
4873
4874         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
4875
4876 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
4877
4878         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
4879         colors.
4880         (gnus-splash-svg-color-symbols): New function.
4881
4882 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4883
4884         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
4885         instead of using the global gnus-simplify-subject-fuzzy-regexp.
4886         (gnus-simplify-subject-fuzzy): Use the local
4887         gnus-simplify-subject-fuzzy-regex instead of the global one.
4888         This makes using this variable in group parameters work.
4889
4890 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4891
4892         * gnus-registry.el (gnus-registry-unfollowed-groups):
4893         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
4894         archive:sent-YYYY-MM-DD groups).
4895         (gnus-registry-split-fancy-with-parent): Bail out early in sender
4896         tracking if there are more than `gnus-registry-max-track-groups'
4897         matches.
4898
4899 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4900
4901         * message.el (message--yank-original-internal): New function to do the
4902         insertion cleanly inside eval in `message-yank-original'.
4903         (message-yank-original): Use it.
4904
4905 2011-03-29  Julien Danjou  <julien@danjou.info>
4906
4907         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
4908         local variables disabled rather than `normal-mode'.
4909
4910 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
4911
4912         * imap.el (imap-shell-open, imap-process-connection-type):
4913         Use imap-process-connection-type for 'shell' streams as well as
4914         Kerberos, SSL, other subprocesses.
4915
4916 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
4917
4918         * proto-stream.el: Changes preparatory to merging open-protocol-stream
4919         with open-network-stream.
4920         (proto-stream-always-use-starttls): Option removed.
4921         (open-protocol-stream): Return a process object by default.  Provide a
4922         new parameter :return-list specifying a list-type return value, which
4923         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
4924         :type `network' to `try-starttls', and `network-only' to `default'.
4925         Make `default' the default, for compatibility with open-network-stream.
4926         Handle the no-parameter case exactly as open-network-stream, with no
4927         additional stream processing.  Search plists using plist-get.
4928         Explicitly add :end-of-commend parameter if it is missing.
4929         (proto-stream-open-default): Rename from
4930         proto-stream-open-network-only.  Return 'default as the type.
4931         (proto-stream-open-starttls): Rename from proto-stream-open-network.
4932         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
4933         failed.  Always return a list with a (possibly dead) process as the
4934         first element, for compatibility with open-network-stream.
4935         (proto-stream-open-tls): Use plist-get.  Always return a list.
4936         (proto-stream-open-shell): Return `default' as connection type.
4937         (proto-stream-capability-open): Use plist-get.
4938         (proto-stream-eoc): Function deleted.
4939
4940         * nnimap.el (nnimap-stream, nnimap-open-connection)
4941         (nnimap-open-connection-1): Handle renaming of :type parameter for
4942         open-protocol-stream.
4943         (nnimap-open-connection-1): Pass a :return-list parameter
4944         open-protocol-stream to obtain a list return value.  Parse this list
4945         using plist-get.
4946
4947         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
4948         for open-protocol-stream.  Accept open-protocol-stream return value
4949         that is a subprocess object instead of a list.  Handle the case of a
4950         dead returned process.
4951
4952 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
4953
4954         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
4955
4956         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
4957
4958 2011-03-21  Julien Danjou  <julien@danjou.info>
4959
4960         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
4961         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
4962         query.
4963         (mm-inline-text): Render normal text with fontification whenever
4964         possible.
4965
4966         * gnus-sum.el (gnus-summary-save-parts-1):
4967         * gnus-art.el (gnus-article-browse-html-save-cid-content)
4968         (gnus-article-browse-html-parts, gnus-mime-delete-part)
4969         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
4970         Use `mm-handle-filename'.
4971
4972         * mm-util.el (mm-handle-filename): New function, return the filename of
4973         an handle.
4974
4975 2011-03-18  Julien Danjou  <julien@danjou.info>
4976
4977         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
4978         (gnus-buffer-live-p): Check that buffer is not nil.
4979
4980 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4981
4982         * gnus.el: No Gnus v0.15 is released.
4983
4984 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4985
4986         * time-date.el (format-seconds): Use assoc instead of assoc-string to
4987         avoid warning on XEmacs.
4988
4989         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
4990         on XEmacs.
4991
4992         * gnus-art.el: Require mouse, which the build bot seems to say is
4993         needed.
4994
4995         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
4996
4997         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
4998         XEmacs, since it doesn't have url-retrieve-synchronously.
4999
5000         * time-date.el (format-seconds): Use assoc instead of assoc-string,
5001         since assoc-string doesn't exist in XEmacs.
5002
5003 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
5004
5005         * gnus-group.el (gnus-group-list-ticked): New function.
5006         (gnus-group-make-menu-bar): Provide a menu entry for it.
5007         (gnus-group-list-map): Provide a binding for it.
5008
5009 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5010
5011         * shr.el (shr-visit-file): New command.
5012
5013         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
5014
5015 2011-03-17  Bjørn Mork  <bjorn@mork.no>
5016
5017         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
5018         servers.
5019
5020 2011-03-16  Julien Danjou  <julien@danjou.info>
5021
5022         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
5023         inline.
5024
5025         * gnus-art.el (article-hide-list-identifiers):
5026         Use gnus-group-get-list-identifiers.
5027
5028         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
5029         (gnus-summary-remove-list-identifiers):
5030         Use gnus-group-get-list-identifiers to get regexp.
5031         (gnus-select-newsgroup, gnus-summary-insert-subject)
5032         (gnus-summary-insert-articles):
5033         Call gnus-summary-remove-list-identifiers unconditionally.
5034
5035 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5036
5037         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
5038         we're selecting a group with unread articles.
5039
5040         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
5041
5042         * gssapi.el: New file separated out from imap.el to provide a general
5043         Kerberos 5 connection facility for Emacs.
5044
5045         * message.el (message-elide-ellipsis): Document the format spec
5046         ellipsis.
5047
5048 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
5049
5050         * message.el (message-elide-region): Allow the ellipsis to say how many
5051         lines were removed.
5052
5053 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5054
5055         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
5056         window configurations containing buffers that are now dead.
5057
5058         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
5059         parsing to avoid integer overflows.
5060         (nnimap-parse-flags): Simplify the last change.
5061         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
5062         too large for 32-bit Emacsen.
5063
5064 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5065
5066         * auth-source.el (auth-source-netrc-create):
5067         * message.el (message-yank-original): Fix use of `case'.
5068
5069 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
5070
5071         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
5072         XEmacs, which was one character too wide.
5073
5074 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
5075
5076         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
5077         default number of articles to display.
5078         (gnus-articles-to-read): Use pretty names for prompt.
5079
5080 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5081
5082         * gnus-int.el (gnus-open-server): Ditto.
5083
5084         * gnus-start.el (gnus-activate-group): Give a backtrace if
5085         debug-on-quit is set and the user hits `C-g'.
5086         (gnus-read-active-file): Ditto.
5087
5088         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
5089
5090 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
5091
5092         * message.el (message-yank-original): Use cond instead of CL case.
5093
5094 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5095
5096         * auth-source.el (auth-source-netrc-create): Use usual format for the
5097         default in prompts.
5098
5099 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5100
5101         * lpath.el: Fbind read-char-choice for XEmacs.
5102
5103 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
5104
5105         * auth-source.el (auth-source-netrc-create): Show the default in the
5106         prompt when prompting for token creation.
5107
5108 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
5109
5110         * auth-source.el (auth-source-format-prompt): Always convert the value
5111         to a string to avoid evaluating non-string arguments.
5112         (auth-source-netrc-create): Offer default properly, not as initial
5113         content in `read-string'.
5114         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
5115         of line to determine if we've been run before.  If so, don't run again,
5116         but print a trivial message to indicate the cache was hit instead.
5117
5118 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
5119
5120         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
5121         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
5122         The user will have to run `gnus-sync-read' manually and wait for Cloudy
5123         Gnus.
5124
5125 2011-03-11  Julien Danjou  <julien@danjou.info>
5126
5127         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
5128         modified file".
5129
5130 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
5131
5132         * auth-source.el (auth-source-read-char-choice): New function to read a
5133         character choice using `dropdown-list', `read-char-choice', or
5134         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
5135         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
5136         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
5137         (auth-source-netrc-saver): Use it.
5138         (auth-source-pick-first-password): New convenience function.
5139
5140 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
5141
5142         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
5143         parameter in the credentials.
5144         (nnimap-open-connection-1): Use it after a successful login.
5145         (nnimap-credentials): Add IMAP-specific user and password prompt.
5146
5147         * auth-source.el (auth-source-search): Add :require parameter, taking a
5148         list.  Document it and the :save-function return token.  Pass :require
5149         down.  Change the CREATED message from a warning to a debug statement.
5150         (auth-source-search-backends): Pass :require down.
5151         (auth-source-netrc-search): Pass :require down.
5152         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
5153         Change save prompt to indicate all modifications saved here are
5154         deletions.
5155         (auth-source-netrc-create): Take user login name as default in user
5156         prompt.  Move all the save functionality to a lexically bound function
5157         under the :save-function token in the returned list.  Set up clearer
5158         default prompts for user, host, port, and secret.
5159         (auth-source-netrc-saver): New function, intended to be wrapped for
5160         :save-function.
5161
5162 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5163
5164         * shr.el (shr-table-horizontal-line): Change the defaults for the table
5165         lines to be spaces instead.
5166
5167 2011-03-07  Julien Danjou  <julien@danjou.info>
5168
5169         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
5170         (sieve-sasl-auth): Check that auth-source-search did return something,
5171         or just return an empty string.
5172
5173 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5174
5175         * gnus.el (gnus-interactive): Use read-directory-name.
5176
5177         * gnus-uu.el (gnus-uu-decode-uu-and-save)
5178         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
5179         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
5180         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
5181         Likewise.
5182
5183         * gnus-group.el (gnus-group-make-directory-group): Likewise.
5184
5185 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5186
5187         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
5188         onto the list of killed groups, too.  This makes killed nnimap groups,
5189         for instance, more reliably not reappear.
5190
5191         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
5192         the parent.
5193
5194         * gnus-sum.el (gnus-update-read-articles): Fix typo.
5195
5196         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
5197         really have server-side marks.
5198
5199         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
5200         since most backends do not usefully have server-side marks.
5201         (gnus-update-read-articles): Propagate marks to all backends that
5202         really have server-side marks.
5203
5204 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5205
5206         * message.el (message-cite-reply-position, message-cite-style):
5207         New variables.
5208         (message-yank-original): Use the new citation styles.
5209
5210 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
5211
5212         * message.el (message-options): Revert 22da67af (workaround for XEmacs
5213         buffer-local issue); don't mark it buffer-local when running under
5214         XEmacs.
5215
5216 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
5217
5218         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
5219         numbers too big to be `read'.
5220
5221 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
5222
5223         * password-cache.el (password-in-cache-p): Add autoload.
5224
5225         * message.el (message-options): Make buffer-local two ways to attempt
5226         to fix a XEmacs bug.
5227
5228 2011-03-02  Julien Danjou  <julien@danjou.info>
5229
5230         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
5231
5232 2011-03-01  Julien Danjou  <julien@danjou.info>
5233
5234         * gnus-art.el (list-identifier): Add list-identifier as a parameter
5235         group.
5236         (article-hide-list-identifiers): Use list-identifier group parameter.
5237
5238 2011-02-28  Julien Danjou  <julien@danjou.info>
5239
5240         * sieve.el (sieve-buffer-script-name): New local variable to store
5241         sieve script name.
5242         (sieve-edit-script): Store sieve script name.
5243         (sieve-upload): Use sieve script name when uploading.
5244         (sieve-upload): Use substitute-command-keys.
5245         (sieve-edit-script): Use substitute-command-keys.
5246         (sieve-refresh-scriptlist): Use substitute-command-keys.
5247         (sieve-manage-mode-map): Define keymap properly.
5248         (sieve-manage-mode): Do not set mode name manually, change mode-name to
5249         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
5250         Remove commented code about cvs.
5251         (sieve-manage-quit): New function.
5252         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
5253
5254 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5255
5256         * gnus-group.el (gnus-import-other-newsrc-file): New function.
5257
5258 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
5259
5260         * auth-source.el (auth-source-search): Cache empty result sets.
5261
5262         * password-cache.el (password-in-cache-p): Convenience function to
5263         check if a key is in the cache, even if the value is nil.
5264
5265         * auth-source.el (auth-source-save-behavior): New variable to replace
5266         `auth-source-never-create'.
5267         (auth-source-netrc-create): Use it.
5268         (auth-source-never-save): Remove.
5269
5270 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
5271
5272         * nnimap.el (nnimap-stream): Doc fix.
5273         (nnimap-open-connection-1): Reverse the order of the ports to that the
5274         prompted-for port is first.
5275
5276         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
5277         retrieval by the no-group selection.
5278
5279         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
5280         numerical parameters.
5281
5282 2011-02-25  Julien Danjou  <julien@danjou.info>
5283
5284         * gnus-gravatar.el: Use gnus-with-article-buffer.
5285
5286         * gnus-art.el (gnus-with-article-buffer): Check that the
5287         gnus-article-buffer is alive.
5288
5289 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
5290
5291         * auth-source.el (auth-source-creation-prompts): New variable to manage
5292         creation-time prompts.
5293         (auth-source-search): Document it.
5294         (auth-source-format-prompt): Add utility function.
5295         (auth-source-netrc-create): Don't default the user name to
5296         user-login-name.  Use `auth-source-creation-prompts' and some default
5297         prompts for user, host, port, and password (the default generic prompt
5298         remains ugly).
5299         (auth-source-never-save): Add customizable option to never save info.
5300         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
5301         mode excursion.
5302
5303 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5304
5305         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
5306         argument that XEmacs doesn't support.
5307
5308         * dgnushack.el (dgnushack-compile): Exclude color.el from being
5309         compiled for Emacsen having no `libxml-parse-html-region' support.
5310
5311         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
5312
5313         * lpath.el: Bind buffer-save-without-query for XEmacs.
5314
5315 2011-02-23  Julien Danjou  <julien@danjou.info>
5316
5317         * gnus-art.el (article-make-date-line): Ignore errors if time is
5318         invalid and not convertible.
5319         (article-make-date-line): Only add lapsed time if time is not nil.
5320
5321 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
5322
5323         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
5324         `read-char-choice' for backwards compatibility.
5325         (auth-source-netrc-element-or-first): New function to DTRT for
5326         parameter extraction.
5327         (auth-source-netrc-create): Use it and fix multiple parameter print
5328         bug.  Use the default passed from above (given-default) or the
5329         built-in (user-login-name for :user).
5330
5331 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
5332
5333         * gnus-start.el (gnus-dribble-read-file):
5334         Set buffer-save-without-query, since we always want to save the dribble
5335         file, probably.
5336
5337         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
5338         nnimap.
5339
5340         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
5341         -summary- since it's a user-visible variable.
5342
5343         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
5344         first time you use the new Gnus.
5345
5346 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
5347
5348         * auth-source.el: Don't load netrc.el.
5349         (auth-sources): Search ~/.netrc as well by default.
5350         (auth-source-debug): Add 'trivia option for extra output.
5351         (auth-source-do-trivia): Use it.
5352         (auth-source-search): Simplify logic to use
5353         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
5354         appropriate.  Don't keep a running count at this level.  Layer :create
5355         and :delete options appropriately on the first and second passes.
5356         Don't track the backend with the search results.
5357         (auth-source-search-backends): New function to search a list of
5358         backends for a processed spec.
5359         (auth-source-netrc-parse): Cache all netrc files, making
5360         auth-source-netrc-cache an alist keyed by the file name and using the
5361         file mtime as the caching criterion.  Keep the obfuscated data secret
5362         with a lexical bind.
5363         (auth-source-netrc-search): Don't calculate the length of the results
5364         unnecessarily.
5365         (auth-source-search-backends): Fix bug.
5366         (auth-source-netrc-create): Rework prompts.
5367
5368 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
5369
5370         * nnir.el (nnir-imap-search-arguments,nnir-imap-default-search-key):
5371         Lower case names of search constraints.
5372         (nnir-run-query): Cache and reuse search constraints for all imap
5373         servers.
5374
5375 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
5376
5377         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
5378         after exit.
5379         (gnus-setup-message): Define missing variable from last checkin.
5380
5381         * gnus-sum.el (gnus-summary-show-article): When called with t as the
5382         value, show the raw article.
5383
5384 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5385
5386         * gnus.el: No Gnus v0.13 is released.
5387
5388 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5389
5390         * nnimap.el (nnimap-open-connection-1): Revert last change, since
5391         auth-source now accepts numbers.
5392
5393         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
5394         spec, too.
5395         (auth-source-ensure-strings): New function.
5396
5397         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
5398         (gnus-article-setup-buffer): Always restart the date timer so that user
5399         changes to the frequency is respected.
5400
5401         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
5402         port numbers, so make sure it gets that if nnimap-server-port is
5403         explicit.
5404
5405 2011-02-21  Simon Josefsson  <simon@josefsson.org>
5406
5407         * nnimap.el (nnimap-inbox): Doc fix.
5408
5409 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
5410
5411         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
5412         Autoload.  Add optional arg FRAME, and pass it to color-values.
5413         (color-complement): Caller changed.  Doc fix.
5414         (color-gradient): Rewrite for better clarity and efficiency.
5415
5416 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
5417
5418         * shr-color.el (shr-color->hexadecimal): Use renamed function names
5419         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
5420         color-lab-to-srgb.
5421
5422 2011-02-20  Drew Adams  <drew.adams@oracle.com>
5423
5424         * color.el: First part of merge from hexrgb.el.
5425         (color-rgb-to-hex): Rename from color-rgb->hex.
5426         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
5427         saturation to zero if the value is too small.
5428         (color-rgb-to-hsl): Rename from color-rgb->hsl.
5429         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
5430         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
5431         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
5432         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
5433         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
5434         (color-cie-de2000): Doc fix.
5435
5436 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5437
5438         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
5439         given method as in the group name if we're using an extended method.
5440         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
5441         command, if we're using that, instead of waiting for the beginning.
5442
5443         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
5444         we're sure to get unique server names, and we don't output two async
5445         commands in the same buffer.  This fixes an NNTP hang for some users.
5446
5447 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5448
5449         * gnus.el: No Gnus v0.11 is released.
5450
5451 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5452
5453         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
5454         summary buffer before reading going to the next buffer.  This avoids
5455         putting the point in the group buffer if you `C-g' the command.
5456
5457         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
5458         cache (for now) to make ~/.authinfo.gpg files usable.
5459
5460         * nnfolder.el (copyright-update): Define for the compiler.
5461
5462         * auth-source.el (auth-source-search): Fix unbound variable.
5463
5464 2011-02-19  Glenn Morris  <rgm@gnu.org>
5465
5466         * gnus.el (gnus-meta): Doc fix.
5467
5468 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
5469
5470         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
5471         in case it's not yet loaded.
5472
5473 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
5474
5475         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
5476         line we're waiting for.
5477
5478 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
5479
5480         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
5481         face with line-width greater than zero will cause RET in gnus summary
5482         buffer to scroll down article page-wise because auto vscroll happens,
5483         it should be temporally disabled when doing a scroll-up.
5484
5485 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
5486
5487         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
5488         outputs from the server.
5489
5490 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5491
5492         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
5493         later so that bbdb can hook in easier.
5494
5495 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
5496
5497         * auth-source.el (auth-source-search): Don't try to create credentials
5498         if the caller doesn't want that.
5499         (auth-source-search): If we don't find a match, don't bug out on
5500         non-bound variables.
5501         (auth-source-search): Only ask a single backend to create the
5502         credentials.
5503
5504         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
5505         logging.
5506         (nnimap-credentials): Protect against auth-source-search returning nil.
5507         (nnimap-request-list): Protect against not being able to open the
5508         server.
5509
5510 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
5511
5512         * auth-source.el (auth-source-search): Do a two-phase search, one with
5513         no :create to get the responses from all backends.
5514
5515         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
5516         when getting credentials.
5517
5518         * gnus-util.el (gnus-delete-duplicates): New function.
5519
5520 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
5521
5522         * nnimap.el (nnimap-credentials): Instead of picking the first port as
5523         a creation default, pass the whole port list down.  It will be
5524         completed.
5525
5526         * auth-source.el (auth-source-search): Updated docs to talk about
5527         multiple creation choices.
5528         (auth-source-netrc-create): Accept a list as a value (from the search
5529         parameters) and do completion on that list.  Keep a separate netrc line
5530         with the password obscured for showing the user.
5531
5532         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
5533         first choice to `auth-source-search' so it will be used for entry
5534         creation instead of the server's Gnus-specific name.
5535         (nnimap-credentials): Rely on the auth-source library to select which
5536         port is actually wanted in the new netrc entry, so don't override
5537         `auth-source-creation-defaults'.
5538
5539         * auth-source.el (auth-source-netrc-parse): Use :port instead of
5540         :protocol and accept a missing user, host, or port as a wildcard match.
5541         (auth-source-debug): Default to off.
5542
5543         (auth-source-netrc-search, auth-source-netrc-create)
5544         (auth-source-secrets-search, auth-source-secrets-create)
5545         (auth-source-user-or-password, auth-source-backend, auth-sources)
5546         (auth-source-backend-parse-parameters, auth-source-search): Use :port
5547         instead of :protocol.
5548
5549         * nnimap.el (nnimap-credentials): Pass a port default to
5550         `auth-source-search' in case an entry needs to be created.
5551         (nnimap-open-connection-1): Use :port instead of :protocol.
5552
5553 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5554
5555         * auth-source.el: Bind load-path when loading EIEIO from
5556         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
5557         21.4 doesn't support, to `require'.
5558         (auth-source-secrets-search): Use mm-delete-duplicates instead of
5559         delete-dups that is not available in XEmacs 21.4.
5560
5561 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
5562
5563         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
5564         as EIEIO must also be loaded when auth-source.el is being
5565         byte-compiled.
5566
5567 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5568
5569         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
5570
5571         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
5572
5573         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
5574
5575         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
5576
5577         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
5578
5579         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
5580
5581         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
5582
5583         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
5584         necessary.
5585
5586 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
5587
5588         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
5589         nil means that nnimap doesn't get updated.
5590
5591 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5592
5593         * auth-source.el (auth-source-netrc-create): Return a synthetic search
5594         result when the user doesn't want to write to the file.
5595         (auth-source-netrc-search): Expect a synthetic result and proceed
5596         accordingly.
5597         (auth-source-cache-expiry): New variable to override
5598         `password-cache-expiry'.
5599         (auth-source-remember): Use it.
5600
5601         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
5602         parameter.  Create entry if necessary by using :create t.
5603         (nnimap-open-connection-1): Don't pass `inhibit-create'.
5604
5605 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
5606
5607         * auth-source.el (auth-source-debug): Enable by default and don't
5608         mention the obsolete `auth-source-hide-passwords'.
5609         (auth-source-do-warn): New function to debug unconditionally.
5610         (auth-source-do-debug): Use it.
5611         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
5612         and for Secrets API entries when the secrets.el library is not
5613         available.
5614
5615 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5616
5617         * gnus-sum.el (gnus-propagate-marks): Default to nil.
5618         (gnus-summary-exit): Kill the correct article buffer on exit from a
5619         `C-d' group.
5620
5621         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
5622         gnus-propagate-marks.
5623
5624         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
5625         before killing the buffers so that a non-full window conf gets handled
5626         correctly.
5627         (gnus-summary-exit): Ditto.
5628         (gnus-summary-read-group-1): Ditto.
5629
5630         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
5631         async code again so that we can debug it properly.
5632
5633         * message.el (message-reply): Take an optional switch-buffer parameter
5634         so that Gnus window confs are respected better.
5635
5636 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
5637
5638         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
5639         `plist-get' to accept non-list parameters (XEmacs issue).
5640         Fix docstring.
5641         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
5642         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
5643         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
5644         Login collection is "Login" and not "login".
5645
5646 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5647
5648         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
5649         multiple headers.
5650
5651         * nnimap.el (nnimap-inhibit-logging): New variable.
5652         (nnimap-log-command): Don't log login commands.
5653
5654         * auth-source.el (auth-source-netrc-search): The asserts seem to want
5655         to have more parameters.
5656
5657         * nnimap.el (nnimap-send-command): Mark the command time for each
5658         command, so that we don't get NOOPs stepping on our toes.
5659
5660         * gnus-art.el (article-date-ut): Get the date from the Date header on
5661         `t'.
5662
5663 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5664
5665         * auth-source.el (auth-source-search): Use copy-sequence instead of
5666         the cl.el copy-list.
5667
5668 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5669
5670         * imap.el: Bring it back (revert
5671         84d800cd31de3064f0ed39617d725709a2f8f42f).
5672
5673 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
5674
5675         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
5676         Improve prompt.
5677
5678 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
5679
5680         * gnus-art.el (gnus-article-mode-line-format): Remove the article
5681         washing status from the default format.  It isn't very informative.
5682
5683 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
5684
5685         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
5686         Fix Gcc processing on imap.
5687
5688 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5689
5690         * imap.el: Remove file.  All the functionality is in nnimap.el.
5691
5692 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5693
5694         * message.el (message-bury): Don't pop up a new window when selected
5695         window is dedicated.
5696
5697 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5698
5699         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
5700
5701 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
5702
5703         * sieve-manage.el: Autoload `auth-source-search'.
5704         (sieve-sasl-auth): Use it.
5705
5706 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
5707
5708         * nnimap.el: Autoload `auth-source-forget+'.
5709         (nnimap-open-connection-1): Use it if the connection fails.
5710
5711         * auth-source.el: Require `password-cache'.
5712         (auth-source-hide-passwords, auth-source-cache): Remove and mark
5713         obsolete.
5714         (auth-source-magic): Marker for `password-cache' keys.
5715         (auth-source-do-cache): Update docstring.
5716         (auth-source-search): Use and check cache.
5717         (auth-source-forget-all-cached, auth-source-remember)
5718         (auth-source-recall, auth-source-forget, auth-source-forget+)
5719         (auth-source-specmatchp): Caching support functions.
5720         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
5721         Remove and obsolete.
5722         (auth-source-user-or-password): Remove caching to further discourage
5723         using it.  Always hide passwords.
5724
5725         * password-cache.el (password-cache-remove): Accept secrets that are
5726         not strings.
5727
5728 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
5729
5730         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
5731         code for now, since it doesn't work for all users.
5732
5733 2011-02-09  Julien Danjou  <julien@danjou.info>
5734
5735         * message.el (message-options): Make message-options really buffer
5736         local.
5737
5738 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
5739
5740         * mail-source.el: Autoload `auth-source-search'.
5741         (mail-source-keyword-map): Note order matters.
5742         (mail-source-set-1): Get all the mail-source source values and
5743         defaults and search auth-source on those if needed.  This can all
5744         probably be simplified.
5745
5746         * nnimap.el: Autoload `auth-source-search'.
5747         (nnimap-credentials): Use it.
5748         (nnimap-open-connection-1): Ask for the virtual server and physical
5749         address in one shot.
5750
5751         * nntp.el: Autoload `auth-source-search'.
5752         (nntp-send-authinfo): Use it.  Note TODO.
5753
5754 2011-02-08  Julien Danjou  <julien@danjou.info>
5755
5756         * shr.el (shr-tag-body): Add support for text attribute in body
5757         markups.
5758
5759         * message.el (message-options): Make message-options a local variable.
5760
5761 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
5762
5763         * auth-source.el (auth-source-secrets-search)
5764         (auth-source-user-or-password): Use `append' instead of `nconc'.
5765         (auth-source-user-or-password): Build return list better and protect
5766         against nil :secret.
5767
5768 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
5769
5770         * nnimap.el (nnimap-update-info): Refactor slightly.
5771         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
5772         (nnimap-update-info): Clean up slightly.
5773         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
5774         characters.
5775         (nnimap-process-quirk): Rename function to avoid collision.
5776         (nnimap-update-info): Fix macrology bug-out.
5777         (nnimap-update-info): Simplify split history test.
5778
5779 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
5780
5781         * auth-source.el (top): Require 'eieio unconditionally.
5782         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
5783         (auth-source-secrets-search): Limit search when `max' is greater than
5784         number of results.
5785
5786 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
5787
5788         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
5789         part not returning any data.
5790
5791         * proto-stream.el (open-protocol-stream): Document the return value.
5792
5793 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5794
5795         * auth-source.el (auth-source-secrets-search): Add examples.
5796
5797 2011-02-06  Julien Danjou  <julien@danjou.info>
5798
5799         * message.el (message-setup-1): Handle message-generate-headers-first
5800         set to t.
5801
5802 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5803
5804         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
5805         API with a string "secrets:collection-name" and with 'default.
5806         (auth-source-backend-parse): Parse "secrets:collection-name" and
5807         'default.  Recurse on parses instead of repeating code.  Use the
5808         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
5809         message when ignoring a source.
5810         (auth-source-search): List ignored search keys at the top level.
5811         (auth-source-netrc-create): Use `case' instead of `cond'.
5812         (auth-source-secrets-search): Created with TODOs.
5813         (auth-source-secrets-create): Created with TODOs.
5814         (auth-source-retrieve, auth-source-create, auth-source-delete)
5815         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
5816         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
5817         (auth-source-user-or-password-sftp)
5818         (auth-source-user-or-password-smtp): Remove.
5819         (auth-source-user-or-password): Deprecated and modified to be a wrapper
5820         around `auth-source-search'.  Not tested thoroughly.
5821
5822 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
5823
5824         * auth-source.el: Bring in assoc and eioeio libraries.
5825         (secrets-enabled): New variable to track the status of the Secrets API.
5826         (auth-source-backend): New EIOEIO class to represent a backend.
5827         (auth-source-creation-defaults): New variable to set prompt defaults
5828         during token creation (see the `auth-source-search' docstring for
5829         details).
5830         (auth-sources): Simplify to allow a simple string as a netrc backend
5831         spec.
5832         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
5833         (auth-source-backend-parse-parameters): Fill in the backend parameters.
5834         (auth-source-search): Main auth-source API entry point.
5835         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
5836         (auth-source-search-collection): Helper function for searching.
5837         (auth-source-netrc-parse, auth-source-netrc-normalize)
5838         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
5839         Supports search, create, and delete.
5840         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
5841         backend stubs.
5842         (auth-source-user-or-password): Call `auth-source-search' but it's not
5843         ready yet.
5844
5845 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
5846
5847         * message.el (message-setup-1): Remove the read-only stuff, since it
5848         doesn't work under XEmacs, for some reason.
5849
5850         * gnus-sum.el (gnus-user-date): Rename back from
5851         gnus-summary-user-date since user code refers to it.
5852
5853         * shr.el (shr-render-td): Store the actual background color used.
5854
5855         * message.el (message-setup-1): Don't bind the constant
5856         -forbidden-properties.
5857         (message-setup-1): Revert previous change, since it needs to bind the
5858         props to insert them.
5859         (message-resend): Allow removing the read-only separator line.
5860
5861 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5862
5863         * nnimap.el (nnimap-request-accept-article): Give an error message if
5864         the APPEND wasn't successful.
5865
5866 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
5867
5868         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
5869         that have no groups.
5870
5871 2011-02-03  Julien Danjou  <julien@danjou.info>
5872
5873         * gnus-draft.el: Remove progn around gnus-draft-setup.
5874
5875 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5876
5877         * gnus-start.el (gnus-read-active-for-groups): This function is never
5878         called with a nil `infos', so clean that up.
5879         (gnus-get-unread-articles): Request active files from primary/secondary
5880         methods that have no groups (yet).
5881
5882 2011-02-03  Julien Danjou  <julien@danjou.info>
5883
5884         * message.el (message-setup-1): Always generate References first.
5885         (message-mail): Return the return value of message-setup, not always t.
5886         (message-setup-1): Insert mail-header-separator with read-only and
5887         intangible properties set.
5888
5889         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
5890         user-date in docstring.
5891
5892         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
5893
5894         * gnus.el (gnus-summary-line-format): Mention &user-date format in
5895         docstring.
5896
5897         * gnus.el (gnus-user-date-format-alist): Change default value.
5898         Use defcustom, with type and group. Move from gnus-util.el.
5899         Rename to gnus-summary-user-date-format-alist.
5900
5901 2011-02-03  Glenn Morris  <rgm@gnu.org>
5902
5903         * nnimap.el (gnus-fetch-headers): Declare.
5904
5905         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
5906
5907 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5908
5909         * message.el (message-forward-make-body-digest-plain)
5910         (message-followup, message-reply): Clean up things noted by Stefan.
5911
5912         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
5913         gnus-article-update-date-headers is nil.
5914         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
5915         it didn't really work with defcustom.
5916         (article-update-date-lapsed): Make sure the window start doesn't move,
5917         either.
5918
5919 2011-02-01  Julien Danjou  <julien@danjou.info>
5920
5921         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
5922         format.
5923
5924         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
5925         standard in Emacs nowadays.
5926
5927         * color.el (color-gradient): Add a color-gradient function.
5928
5929 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5930
5931         * message.el (message-expand-name): Don't trust the return value of
5932         bbdb-complete-name.
5933         (message-check-news-header-syntax): Remove unused var `start'.
5934         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
5935         (message-inhibit-body-encoding): Move to before first use.
5936         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
5937         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
5938         (Organization, Message-ID, Date, mh-previous-window-config):
5939         Defvar the vars using dynamic scoping.
5940
5941 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
5942
5943         * shr.el (shr-render-td): Only do colors at the final rendering.
5944         Should be slightly faster.
5945         (shr-insert-table): Fix up TD background colors when doing the
5946         vertical padding.
5947
5948         * gnus-art.el (article-date-ut): Protect against articles with no Date
5949         header.
5950         (article-update-date-lapsed): Don't use current-column to find the
5951         horizontal position.  It's fragile in the presence of \003 characters.
5952
5953         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
5954
5955 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5956
5957         * gnus-art.el (article-transform-date): Rewrite to still work when
5958         there are several rfc2822 parts.
5959         (article-transform-date): Fix infinite recursion.
5960         (article-date-ut): Replace infinitely many Date headers with a single
5961         one when called interactively.
5962
5963         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
5964         secure manner.
5965
5966         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
5967         move around by not using save-window-excursion.  It seems to work...
5968
5969 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5970
5971         * gnus-art.el (article-make-date-line): Work for user-defined format.
5972
5973 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5974
5975         * nntp.el (nntp-retrieve-group-data-early)
5976         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
5977         fetching functions.
5978
5979         * gnus-start.el (gnus-read-active-for-groups): Read the active files
5980         thoroughly for all backends that have no known groups.  This should
5981         allow new nnml methods to retrieve mail.
5982
5983         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
5984         that Gnus doesn't know exists again.
5985
5986         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
5987         (gnus-treat-date-ut): Ditto.
5988         (gnus-article-update-date-header): Rename.
5989         (gnus-treat-date-local): Remove.
5990         (gnus-treat-date-english): Remove.
5991         (gnus-treat-date-lapsed): Remove.
5992         (gnus-treat-date-combined-lapsed): Remove.
5993         (gnus-treat-date-original): Remove.
5994         (gnus-treat-date-iso8601): Remove.
5995         (gnus-treat-date-user-defined): Remove.
5996         (gnus-article-date-headers): New variable to control all the date
5997         header options.
5998         (article-date-ut): Rewrite to allow using the new way to format date
5999         headers(s).
6000
6001 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
6002
6003         * nnmail.el (nnmail-article-group): Check for a direct fancy split
6004         method.
6005         (nnmail-article-group): A better test for fanciness.
6006
6007         * nnimap.el (nnimap-request-head): Protect against not finding the
6008         article by Message-ID.
6009
6010 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
6011
6012         * gnus-art.el (article-update-date-lapsed): Try a better way to really
6013         keep point at the "same place".
6014
6015 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
6016
6017         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
6018         data if the group is inactive.
6019
6020 2011-01-28  Julien Danjou  <julien@danjou.info>
6021
6022         * gnus-win.el: Remove dead function gnus-window-configuration-element.
6023         (gnus-all-windows-visible-p): Remove old compatibility code.
6024         (gnus-window-top-edge): Add docstring.
6025
6026         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
6027
6028 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
6029
6030         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
6031         older request-update-info.
6032
6033         * gnus-art.el (article-make-date-line): Limit the length a bit more.
6034
6035 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
6036
6037         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
6038         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
6039
6040 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
6041
6042         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
6043         groups.  This makes the nndraft:queue group pop up if it's not already
6044         there.
6045
6046         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
6047         messages" logic, which was reversed.
6048
6049         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
6050         the "same place" even if point is on the line being replaced.
6051         (article-update-date-lapsed): Allow updating both the combined lapsed
6052         and the lapsed headers.
6053         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
6054         (article-make-date-line): Limit the number of segments dynamically to
6055         avoid too-long lines.
6056
6057 2011-01-27  Julien Danjou  <julien@danjou.info>
6058
6059         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
6060         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
6061
6062 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6063
6064         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
6065         Use plist-get instead of the cl function getf.
6066
6067 2011-01-27  Glenn Morris  <rgm@gnu.org>
6068
6069         * gnus-util.el (float-time): Get rid of compiler warning, again.
6070
6071 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
6072
6073         * shr.el (shr-put-color): Special-case background colors: Do put them
6074         at the blank parts at the front of the lines.
6075
6076         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
6077         exit hook to nix out all data on readedness on group exit.
6078
6079         * gnus-util.el (float-time): If float-time is bound, always use it on
6080         all Emacsen.  It's unclear why the subrp check was there.
6081         (time-date): Require to make some autoload issues on XEmacs go away.
6082
6083         * shr.el (shr-put-color): Don't do the box padding in tables, since
6084         they're already padded.
6085
6086 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
6087
6088         * gnus-art.el (gnus-article-next-page): When the last line of the
6089         article is displayed, scroll down once more instead of going to the
6090         next article at once.
6091         (article-lapsed-string): Refactor out and allow specifying how many
6092         segments you want.
6093         (gnus-article-setup-buffer): Start updating the lapsed header directly.
6094         (gnus-article-update-lapsed-header): New variable.
6095
6096         * shr.el: Revert change that made headings use different-sized faces.
6097         The Emacs display engine isn't advanced enough that, for instance,
6098         tables can comfortably use differently-sized faces.
6099
6100 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
6101
6102         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
6103         used.
6104         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
6105         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
6106         we're using an encrypted connection.
6107
6108         * proto-stream.el: Alter the interface functions to also return the
6109         actual stream type used: network or tls.
6110
6111 2011-01-25  Julien Danjou  <julien@danjou.info>
6112
6113         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
6114         (mm-display-javascript-inline): New function.
6115
6116         * mm-decode.el (mm-inline-media-tests): Add application/javascript
6117         viewing function.
6118
6119 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6120
6121         * shr.el (shr-expand-newlines): Fix variable name.
6122
6123 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
6124
6125         * shr.el (shr-expand-newlines): Make nested boxes work.
6126
6127 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6128
6129         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
6130         backgrounds.
6131         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
6132         in a more sensible manner.
6133
6134 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
6135
6136         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
6137         if EPG is loaded.
6138
6139 2011-01-24  Julien Danjou  <julien@danjou.info>
6140
6141         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
6142         tags.
6143
6144 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6145
6146         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
6147         commands.
6148
6149         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
6150         in the article buffer.
6151         (gnus-gravatar-insert): Use blank space from the current buffer to
6152         avoid breaking text properties.  This makes X-Sent updating work again.
6153
6154         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
6155
6156 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
6157
6158         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
6159         fix the bug in url-http.el instead.
6160
6161         * shr.el (shr-image-fetched): Ditto.
6162
6163         * shr.el (shr-image-fetched): Avoid having point move in the article
6164         buffer.
6165
6166         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
6167         buffer after being called.  It's apparently being killed by url.el, and
6168         killing it made point move to end-of-buffer in a random buffer.
6169
6170         * shr.el (shr-image-fetched): Ditto.
6171
6172 2011-01-23  Julien Danjou  <julien@danjou.info>
6173
6174         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
6175
6176         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
6177         text/x-org.
6178
6179 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6180
6181         * gnus-sum.el (gnus-summary-move-article): Protect against backends
6182         (i.e., nnimap) returning nil as the article number.
6183
6184 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6185
6186         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
6187         "DelSp" parameter in RFC3676.
6188
6189 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6190
6191         * message.el (message-check-recipients): Display the encoded version of
6192         the bogus address if they differ.
6193
6194         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
6195         after sending.
6196
6197         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6198
6199         * gnus-group.el (gnus-group-refresh-group): New convenience function.
6200
6201         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
6202         group buffer after sending the queue.
6203
6204         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6205
6206 2011-01-22  Julien Danjou  <julien@danjou.info>
6207
6208         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
6209
6210 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6211
6212         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
6213         nested related parts.
6214
6215         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
6216         unexpired articles.  This fixes the regression that led expiry marks to
6217         disappear from nnfolder groups.
6218
6219 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6220
6221         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
6222         Don't confuse the "ret" of "retrograde" with RET.
6223
6224 2011-01-21  Julien Danjou  <julien@danjou.info>
6225
6226         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
6227         than mm-insert-inline.
6228
6229 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6230
6231         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
6232         Widen article buffer.
6233
6234 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6235
6236         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
6237         the temp buffer.
6238         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
6239
6240 2011-01-20  Julien Danjou  <julien@danjou.info>
6241
6242         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
6243
6244         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
6245         than mm-insert-inline to insert inline part: this respect
6246         mm-inline-media-tests displayers.
6247
6248         * mm-view.el (mm-display-shell-script-inline): New function.
6249
6250         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
6251
6252         * mm-uu.el (mm-uu-type-alist): Add org block.
6253         (mm-uu-org-src-code-block-extract): New function.
6254
6255         * mm-view.el (mm-display-org-inline): New function.
6256
6257         * mm-decode.el (mm-automatic-display): Add text/org.
6258
6259         * mailcap.el (mailcap-mime-extensions): Add .org.
6260
6261 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6262
6263         * gnus-art.el (gnus-article-highlight): Remove argument passed to
6264         gnus-article-add-buttons.
6265
6266 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
6267
6268         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
6269         From header with a date and "nobody" as the sender.
6270
6271 2011-01-19  Julien Danjou  <julien@danjou.info>
6272
6273         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
6274         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
6275         if you have the same regexp several times.
6276         (gnus-button-push): Fix matching when regexp is symbol.
6277
6278 2011-01-15  Glenn Morris  <rgm@gnu.org>
6279
6280         * message.el (message-mail): A compose-mail function should
6281         accept headers as strings.
6282
6283 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
6284
6285         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
6286         Add :vert-only tags.
6287         (message-mail): New arg RETURN-ACTION.
6288         (message-return-action): New var.
6289         (message-bury): Use it.
6290         (message-mode): Make it buffer-local.
6291         (message-send-and-exit): Always call message-bury.
6292
6293         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
6294         message-mail.
6295
6296 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6297
6298         * nnimap.el (nnimap-convert-partial-article): Protect against
6299         zero-length body parts.
6300
6301         * mm-decode.el (mm-preferred-alternative-precedence):
6302         Discourage showing empty parts.
6303
6304         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
6305         and stuff if the backend didn't return the article number.  This fixes
6306         an Exchange-related nnimap bug.
6307
6308         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
6309         group window, because it does the wrong thing when a separate frame
6310         displays the group buffer.
6311
6312         * proto-stream.el (open-protocol-stream): Protect against the low-level
6313         transport functions returning nil.
6314
6315 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
6316
6317         * mml2015.el (epg-sub-key-fingerprint): Autoload.
6318         (mml2015-epg-find-usable-secret-key): New function.
6319         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
6320         mml2015-epg-find-usable-key (Bug#7797).
6321         (mml2015-epg-encrypt): Ditto.
6322
6323 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6324
6325         * dgnushack.el (rot13-string): Fix the way to get the argument.
6326
6327 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6328
6329         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
6330
6331 2011-01-03  Glenn Morris  <rgm@gnu.org>
6332
6333         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
6334
6335         * sieve.el (sieve-open-server): Give a more explicit error if
6336         sieve-manage-open returns nil.  (Bug#7720)
6337
6338 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
6339
6340         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
6341
6342 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6343
6344         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
6345         This avoids sending passwords in plain text over non-encrypted
6346         channels.
6347
6348         * shr.el (shr-rescale-image): Display all GIF images as animated images.
6349
6350         * nnimap.el (nnimap-login): Refactored out into own function, and
6351         implement CRAM-MD5.
6352         (nnimap-wait-for-line): Refactored out.
6353
6354         * mm-view.el (mml-smime): Require.
6355
6356 2010-12-20  David Engster  <deng@eml.cc>
6357
6358         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
6359         use EPG to decrypt S/MIME messages instead of openssl.
6360
6361 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6362
6363         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
6364
6365         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
6366         status is the group clearly is unreachable.
6367
6368         * auth-source.el (auth-source-create): Add the optional second
6369         parameter to `local-variable-p' to be compatible with XEmacs.
6370
6371 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
6372
6373         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
6374         work when using a compressed nnml folder.
6375
6376 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6377
6378         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
6379         backends after sanitising on entry, because this never makes sense:
6380         If the articles have gone missing, then the data no longer exists on
6381         the backend, and if they haven't, then Gnus is wrong, and shouldn't
6382         overwrite anything anyway.
6383
6384         * shr.el (shr-insert-document): Bind shr-width dynamically to
6385         window-width if it's nil.
6386
6387 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
6388
6389         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
6390         with the meaning of using the full emacs window width for rendering.
6391
6392 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
6393
6394         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
6395         case when sender is not given.
6396
6397 2010-12-23  Julien Danjou  <julien@danjou.info>
6398
6399         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
6400         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
6401         the addresses, otherwise we might misplaced the gravatar.
6402
6403 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
6404
6405         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
6406         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
6407         obsolete in Emacs.
6408
6409 2010-12-20  Julien Danjou  <julien@danjou.info>
6410
6411         * gnus-util.el (gnus-rescale-image): Revert last change.
6412
6413 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
6414
6415         * binhex.el: Improve commentary (Bug#7482).
6416
6417 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6418
6419         * gnus-group.el (gnus-group-delete-articles): New command.
6420
6421 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6422
6423         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
6424
6425 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6426
6427         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
6428         here, since it's up to the backends to do CRLF removal if their
6429         protocol has it.
6430
6431         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
6432
6433 2010-12-17  Julien Danjou  <julien@danjou.info>
6434
6435         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
6436         they are from file.  Can also scale up.
6437
6438 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6439
6440         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
6441         Restore gnus-use-agent.
6442         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
6443
6444         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
6445
6446 2010-12-17  Julien Danjou  <julien@danjou.info>
6447
6448         * gravatar.el (gravatar-retrieve-synchronously): New function.
6449         (gravatar-get-data): Make more robust.
6450
6451 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6452
6453         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
6454
6455 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6456
6457         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
6458         to really consider the last line.
6459
6460 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
6461
6462         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
6463         list of recipient keys, or use symmetric encryption if not a list.
6464         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
6465         EPA override, replacing the call to `netrc-store-data'.
6466
6467 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
6468
6469         * gnus-srvr.el: Avoid passing nil regexp argument to
6470         delete-matching-lines.
6471
6472 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6473
6474         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
6475         fetching stops when Gnus exits.
6476
6477         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
6478         function.
6479         (nnfolder-request-expire-articles): Save all the buffers after doing
6480         expiry.
6481
6482         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
6483         the last article", since that led to serious performance regressions
6484         when expiring nnml groups.
6485
6486 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
6487
6488         * nnir.el: Improve customizations.
6489
6490 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6491
6492         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
6493
6494         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
6495         group has been killed.
6496         (gnus-group-yank-group): Ditto.
6497
6498         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
6499
6500         * nnimap.el (nnimap-request-update-group-status): New function.
6501
6502         * gnus-int.el (gnus-request-update-group-status): New interface
6503         function.
6504
6505         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
6506         copying read-ness to the backends.
6507
6508         * nnimap.el (nnimap-quirk): New function.
6509         (nnimap-retrieve-group-data-early): Use it.
6510         (nnimap-quirks): New alist.
6511
6512 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6513
6514         * shr.el (shr-insert): Set shr-start after deleting trailing space;
6515         don't delete it within indentation.
6516
6517 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6518
6519         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
6520         previous line.
6521
6522 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6523
6524         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
6525         QRESYNC command by deleting a superfluous space which broke Cyrus
6526         servers.  This change will break other servers that are buggy the other
6527         way around.
6528
6529 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
6530
6531         * spam.el: Reindent and fix long lines.
6532         (spam-copy-or-move-routine): Exclude invalid move destinations.
6533
6534 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
6535
6536         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
6537         installed the registry.
6538
6539 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6540
6541         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
6542
6543 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6544
6545         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
6546         groupname doesn't contain "gmane".
6547
6548 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6549
6550         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
6551         and netrc-bound-and-true-p bindings.
6552         (netrc-parse): Cache the netrc contents.
6553
6554         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
6555         (gnus-1): Don't create the nndrafts group twice.
6556         (gnus-setup-news): There's no need to read the active file here, since
6557         that's done again later on a per-backend basis.
6558         (gnus-start-draft-setup): Make sure that the new group is started out
6559         empty.
6560
6561         * gnus-agent.el (gnus-agentize): Don't create the queue group
6562         automatically on startup.  It'll be created later, if needed.
6563
6564         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
6565         of automatically subscribed groups.
6566         (gnus-auto-subscribed-categories): New variable.
6567         (gnus-matches-options-n): Use it.
6568         (gnus-default-subscribed-newsgroups): Remove unused variable.
6569         (gnus-start-draft-setup): Message a bit less.
6570
6571 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6572
6573         * nnir.el (nnir-run-imap): Return article list in order of increasing
6574         UID.
6575
6576 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6577
6578         * gnus-sum.el (gnus-summary-enter-digest-group):
6579         Mention gnus-auto-select-on-ephemeral-exit.
6580
6581         * proto-stream.el (proto-stream-open-network-only): Fix the calling
6582         convention of the network-only option.
6583
6584 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6585
6586         * proto-stream.el (proto-stream-open-network-only): New function to
6587         have a way to specify non-STARTTLS upgrade connections.
6588
6589 2010-12-10  Julien Danjou  <julien@danjou.info>
6590
6591         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
6592         email address is nil.
6593
6594         * message.el (message-bogus-recipient-p): Set address to "" if nil.
6595
6596 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
6597
6598         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
6599         deletion.
6600         (nnir-run-imap): Only need to parse list once.
6601
6602 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6603
6604         * shr.el (shr-tag-script): Ignore <script>.
6605         (shr-tag-label): Add <label> support.
6606
6607 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6608
6609         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
6610
6611         * shr.el (shr-image-displayer): Work for images lined side by side.
6612
6613 2010-12-08  Robert Pluim  <rpluim@gmail.com>
6614
6615         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
6616         parameter, since XEmacs doesn't accept t as a parameter.
6617
6618 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
6619
6620         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
6621         ids.
6622         (nnir-run-gmane): Simplify groupspec formatting.
6623         (nnir-request-expire-articles): New function.
6624
6625 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6626
6627         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
6628         overflow, possibly.
6629
6630         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
6631         (shr-render-td): Handle td style="" better.
6632         (shr-tag-table): Use the color from the style sheet.
6633         (shr-render-td): Make sure we copy over all the overlays, too.
6634
6635 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
6636
6637         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
6638         (nnir-request-article): Improve article retrieval.
6639
6640 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6641
6642         * mm-util.el (mm-extra-numeric-entities): New variable.
6643
6644         * mm-url.el (mm-url-decode-entities):
6645         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
6646
6647         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
6648
6649 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6650
6651         * message.el: Use completion-at-point.
6652         (message-completion-function): New fun, extracted from message-tab.
6653         (message-mode): Use it for completion-at-point-functions.
6654         (message-tab): Use it and completion-at-point.
6655
6656 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6657
6658         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
6659         character if a non-breakable character follows.
6660
6661 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6662
6663         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
6664         any stream.
6665
6666         * shr.el (shr-tag-font): Colorize the region.
6667         (shr-tag-body): Ditto.
6668         (shr-tag-font): Actually let the styles be inherited instead of
6669         overwriting them.
6670         (shr-tag-font): Get the background color right.
6671         (shr-tag-style): Ignore all <style> tags for the moment.
6672
6673         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
6674         a Message-ID to avoid having nnimap depend on gnus-sum.
6675
6676         * shr.el (shr-descend): Only colorize something if we have a node that
6677         sets colors.
6678
6679 2010-12-06  Julien Danjou  <julien@danjou.info>
6680
6681         * shr.el (shr-render-td): Render td content with shr-descend, so style
6682         will be applied to <td> too.
6683         (shr-colorize-region): Colorize region even if we only have a background.
6684         (shr-tag-body): Fix color and background color inheritance.
6685         Do not recolorize after shr-generic.
6686         (shr-tag-font): Let shr-generic colorize via inheritance.
6687
6688 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6689
6690         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
6691
6692 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
6693
6694         * nnir.el (nnir-request-move-article): Remove obsolete code.
6695
6696 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6697
6698         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
6699
6700 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6701
6702         * gnus-sum.el (gnus-summary-respool-article): The completion function
6703         expects a list instead of an alist.
6704
6705         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
6706         string as the parameter.
6707
6708         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
6709
6710         * shr.el (shr-stylesheet): New dynamic variable for cascading the
6711         styles.
6712         (shr-colorize-region): New function.
6713         (shr-insert-background-overlay): Remove.
6714         (shr-render-td): Background setting should be taken care of on a higher
6715         level.
6716         (shr-tag-body): Use post-hoc colorizations.
6717         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
6718         (shr-put-color-1): Don't overwrite old colors.
6719         (shr-colorize-region): When the background color isn't explicit, use
6720         a fixed background.
6721
6722         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
6723         nnmail variables.
6724
6725 2010-12-05  Bjørn Mork  <bjorn@mork.no>
6726
6727         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
6728         unless necessary.
6729
6730 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
6731
6732         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
6733         server.
6734
6735 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6736
6737         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
6738         so that TAB works.
6739
6740         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
6741         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
6742
6743         * shr.el (shr-urlify): Show the URL before the title to avoid
6744         misleading URLs.
6745
6746 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
6747
6748         * shr.el (shr-urlify): Display the title in <a> tags.
6749
6750 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
6751
6752         * nnir.el (nnir-categorize): Replace mapcar with mapc.
6753
6754 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
6755
6756         * nnir.el: Rearrange code to allow macros to be autoloaded by
6757         gnus-sum.el.
6758         (nnir-retrieve-headers-override-function): Make this variable
6759         customizable.
6760         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
6761
6762         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
6763         from nnir.el.
6764
6765 2010-12-03  Julien Danjou  <julien@danjou.info>
6766
6767         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
6768
6769 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6770
6771         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
6772         allow optional argument `environment'.
6773
6774 2010-12-03  Glenn Morris  <rgm@gnu.org>
6775
6776         * mm-extern.el (message-goto-body): Update declaration.
6777
6778 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6779
6780         * gnus-util.el (gnus-macroexpand-all): New function.
6781
6782         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
6783         instead of macroexpand-all that is unavailable in XEmacs.
6784
6785 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
6786
6787         * nnir.el (nnir-summary-line-format): New variable.
6788         (nnir-mode): Use it.
6789         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
6790         (nnir-article-ids): Reimplement as defsubst.
6791         (nnir-retrieve-headers): Don't mangle the subject header.
6792         (nnir-run-imap): Use 100 as RSV score.
6793         (nnir-run-find-grep): Fix for full server searching.
6794         (nnir-run-gmane): Better restriction to gmane groups.
6795
6796         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
6797         summary buffers.
6798
6799 2010-12-02  Julien Danjou  <julien@danjou.info>
6800
6801         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
6802
6803         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
6804
6805         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
6806         support.
6807
6808 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
6809
6810         * nnir.el: Update to handle the registry better.
6811         (autoload): Silence byte-compiler.
6812         (nnir-open-server): Add a hook for nnir groups.
6813         (nnir-request-move-article): Don't mangle the header.  Better to use
6814         formatting variables (which will be added in the future).
6815         (nnir-registry-action): Update the registry using the original article
6816         group name.
6817         (nnir-mode): Install nnir-specific hooks for updating the registry.
6818
6819         * gnus-sum.el
6820         (gnus-article-original-subject,gnus-newsgroup-original-name):
6821         Remove obsolete variables.
6822         (gnus-summary-move-article): Remove use of obsolete variables.
6823         (gnus-summary-local-variables): Make move and delete hooks local to
6824         summary buffers.
6825
6826 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6827
6828         * rtree.el: New file.
6829
6830 2010-12-01  Julien Danjou  <julien@danjou.info>
6831
6832         * message.el (message-user-organization): Do not use
6833         gnus-local-organization.
6834
6835         * gnus.el: Remove gnus-local-organization.
6836
6837         * gnus-msg.el: Remove nastygram thing.
6838
6839 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
6840
6841         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
6842         funcall.
6843
6844 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6845
6846         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
6847         names.
6848
6849         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
6850         characters.
6851
6852         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
6853         to t of inhibit-read-only since it is inside gnus-with-article-headers.
6854         Suggested by Štěpán Němec <stepnem@gmail.com>.
6855         (gnus-gravatar-transform-address): Use mail-extract-address-components
6856         that supports non-ASCII names rather than mail-header-parse-addresses.
6857
6858 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6859
6860         * proto-stream.el (open-protocol-stream): All starttls connections are
6861         handled by the network handler.
6862
6863 2010-11-30  Julien Danjou  <julien@danjou.info>
6864
6865         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
6866         (nnimap-open-connection-1): Fix PREAUTH.
6867
6868         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
6869
6870 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6871
6872         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
6873         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
6874         (shr-insert): Use them.
6875         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
6876
6877 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6878
6879         * nnir.el (nnir-request-move-article): Bail out if original group
6880         doesn't support article moves.
6881         (nnir-get-active): Improve active list retrieval.
6882
6883 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6884
6885         * shr.el (shr-find-fill-point): Don't break before apostrophes.
6886
6887 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
6888
6889         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
6890         seem to accept strings-with-numbers as port numbers.
6891
6892 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6893
6894         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
6895         change the registry.
6896
6897 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6898
6899         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
6900         delete-dups that is not available in XEmacs 21.4.
6901
6902         * mm-util.el (mm-delete-duplicates): Add comment.
6903
6904 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
6905
6906         * nnir.el (nnir-ignored-newsgroups): New variable.
6907         (nnir-get-active): Use it.
6908
6909 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6910
6911         * proto-stream.el (proto-stream-open-network): Add some comments.
6912
6913         * nntp.el (nntp-open-connection): Provide a :success condition.
6914
6915         * nnimap.el (nnimap-open-connection-1): Ditto.
6916
6917         * proto-stream.el (proto-stream-open-network): See what the response to
6918         the STARTTLS command is.
6919
6920         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
6921         backwards compatibility).
6922         (nnimap-open-connection-1): Really respect nnimap-server-port.
6923
6924         * proto-stream.el (proto-stream-open-network): When doing opportunistic
6925         TLS upgrades we don't really care about the identity of the peer.
6926         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
6927         that what we've checked for.
6928         (proto-stream-always-use-starttls): Only default to t if
6929         open-gnutls-stream exists.
6930         (proto-stream-open-network): If STARTTLS failed, then just open a
6931         normal connection.
6932         (proto-stream-open-network): Wait until the greeting before doing
6933         STARTTLS.
6934
6935         * nntp.el (nntp-open-connection): Report what the connection error is.
6936
6937         * proto-stream.el (open-protocol-stream): Rename from
6938         open-proto-stream.
6939
6940 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6941
6942         * nnimap.el (nnimap-stream): Change default to `undecided'.
6943         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
6944         first, and then network.
6945         (nnimap-open-connection-1): Respect nnimap-server-port.
6946         (nnimap-open-connection): Be more backwards-compatible.
6947
6948         * proto-stream.el (proto-stream-always-use-starttls): New variable.
6949         (proto-stream-open-starttls): De-duplicate the starttls code.
6950         (proto-stream-open-starttls): Folded back into the main function.
6951         (proto-stream-open-network): Fix typo in the gnutls path.
6952         (proto-stream-command): Refactor out.
6953
6954         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
6955
6956         * proto-stream.el (proto-stream-open-starttls): Actually implement the
6957         starttls.el STARTTLS.
6958
6959         * color.el (color-lab->srgb): Fix function call name.
6960
6961         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
6962         if we're using tls.el.
6963         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
6964         built in, then don't try to establish a STARTTLS connection.
6965
6966         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
6967         servers.
6968
6969         * proto-stream.el (open-proto-stream): Use network, not stream.
6970         (open-proto-stream): Add a way to specify what the end of a command is.
6971
6972         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
6973         connections types.
6974         (nntp-open-network-stream): Remove.
6975         (nntp-open-ssl-stream): Remove.
6976         (nntp-open-tls-stream): Remove.
6977         (nntp-ssl-program): Remove.
6978
6979         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
6980
6981 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
6982
6983         * nnir.el: Fix typos.
6984         (nnir-retrieve-headers-override-function): Rename variable to reflect
6985         new semantics.
6986         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
6987         macros.
6988         (nnir-request-article, nnir-request-move-article): Use them.
6989         (nnir-categorize): New function.
6990         (nnir-run-query): Use it.
6991         (nnir-retrieve-headers): Rewrite to batch header retrieval.
6992         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
6993         sorted.
6994         (nnir-group-full-name): Use gnus-group-full-name instead.
6995         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
6996         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
6997
6998 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6999
7000         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
7001
7002         * proto-stream.el: New library to provide protocol-specific
7003         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
7004         protocols.
7005         (open-proto-stream): Complete the documentation.
7006         (proto-stream-open-network): Fix some typos.
7007
7008         * nnimap.el (nnimap-open-connection): Use it.
7009
7010 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
7011
7012         * pop3.el (pop3-open-server): Read server greeting before starting TLS
7013         negotiation.
7014
7015 2010-11-26  Julien Danjou  <julien@danjou.info>
7016
7017         * color.el: Rename various rgb functions to srgb.
7018
7019 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7020
7021         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
7022         names.
7023
7024 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7025
7026         * shr.el (shr-insert): Revert last change.
7027         (shr-find-fill-point): Never leave point being at bol;
7028         relax the kinsoku limitation when rendering tables.
7029
7030 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7031
7032         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
7033         results from -accept-article.
7034
7035         * shr-color.el: Require cl when compiling.
7036
7037         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
7038         checkin.
7039
7040         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
7041
7042         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
7043
7044         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
7045         'add and 'delete to set backend marks.
7046
7047         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
7048
7049         * nnheader.el (nnheader-update-marks-actions): Refactor out.
7050
7051         * nntp.el (nntp-request-set-mark): Use it.
7052
7053         * nnfolder.el (nnfolder-request-set-mark): Ditto.
7054
7055         * nnml.el (nnml-request-set-mark): Ditto.
7056
7057         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
7058         introduces regressions in article selection.
7059         (nnimap-find-uid-response): New function.
7060         (nnimap-request-accept-article): Use the UID returned, if any.
7061         (nnimap-request-move-article): Use the UID returned, if any.
7062         (nnimap-get-groups): Reimplement to work with folded lines.
7063         (nnimap-find-uid-response): The UID is the last element in the list.
7064         (nnimap-request-set-mark): Extend syntax with 'set.
7065
7066         * nnml.el (nnml-request-set-mark): Ditto.
7067
7068         * nnfolder.el (nnfolder-request-set-mark): Ditto.
7069
7070         * nntp.el (nntp-request-set-mark): Ditto.
7071
7072 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7073
7074         * message.el (message-called-interactively-p): A temporary macro.
7075         (message-goto-body): Use it temporarily.
7076
7077 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7078
7079         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
7080         (nnimap-last-response-string): Unfold quoted lines, if they exist.
7081         (nnimap-last-response-string): Fix last unfolding fix.
7082
7083 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7084
7085         * shr.el (shr-insert): Fix the way to fold lines.
7086
7087 2010-11-25  Julien Danjou  <julien@danjou.info>
7088
7089         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
7090
7091         * color.el: Rename from color-lab.el
7092         (color-rgb->hex): Add.
7093         (color-complement): Add.
7094         (color-complement-hex): Add.
7095
7096         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
7097
7098 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7099
7100         * shr-color.el (shr-color-visible): Don't bug out if the color names
7101         don't exist.
7102
7103 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7104
7105         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
7106         assuming that article displaying or another mml-preview may be
7107         interrupted for an error or for the like.
7108
7109         * shr.el (shr-get-background): Fix argument name.
7110
7111 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7112
7113         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
7114
7115         * gnus-sum.el (gnus-summary-include-articles): New function.
7116
7117         * message.el (message-goto-body): called-interactively-p needs a
7118         parameter, so use `any'.
7119
7120         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
7121         clear marks before moving, since they're synced from the Gnus side
7122         first.
7123
7124         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
7125         (gnus-summary-move-article): Copy over all marks before moving, so that
7126         IMAP doesn't think a new article has arrived.
7127
7128 2010-11-24  Julien Danjou  <julien@danjou.info>
7129
7130         * shr.el (shr-insert-background-overlay): Fix typo.
7131         (shr-render-td): Copy the background before rendering.
7132
7133         * shr-color.el (shr-color-visible): Fix docstring.
7134
7135         * shr.el (shr-tag-table): Add bgcolor support.
7136         (shr-render-td): Add bgcolor support.
7137         (shr-get-background): Add.
7138         (shr-insert-foreground-overlay): Use shr-get-background.
7139
7140         * message.el (message-goto-body): Use called-interactively-p.
7141         (message-in-body-p): message-goto-body returns point.
7142
7143 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7144
7145         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
7146         Fixes something or other in Emacs 23, and is backwards compatible.
7147
7148         * message.el (message-goto-body): Remove the <#secure special-casing,
7149         which is too special.
7150
7151         * shr.el (shr-parse-style): Drop !important from styles.
7152
7153 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
7154
7155         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
7156         this function to return incorrect results when calling it with an
7157         explicit article argument different from
7158         (gnus-summary-article-number).
7159
7160 2010-11-24  Julien Danjou  <julien@danjou.info>
7161
7162         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
7163         (shr-tag-body): Add background support.
7164         (shr-descend): Add background support.
7165         (shr-tag-title): Add.
7166
7167         * shr-color.el (shr-color-visible): Really return original background
7168         if fixed.
7169
7170 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7171
7172         * shr.el (shr-color-check): Protect against non-existent color names.
7173
7174 2010-11-24  Julien Danjou  <julien@danjou.info>
7175
7176         * color-lab.el: Require 'cl when compiling.
7177
7178         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
7179
7180         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
7181         matched part.
7182
7183         * color-lab.el: Fix all expt calls to use float type.
7184
7185 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7186
7187         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
7188         expression to shr-color-check as is.
7189
7190         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
7191
7192         * color-lab.el: Add coding cookie.
7193         (float-pi): Use eval-and-compile.
7194
7195         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
7196         compiled for Emacsen having no `libxml-parse-html-region' support.
7197
7198 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7199
7200         * shr.el (shr-insert-color-overlay): Split stuff like
7201         "#444444 !important" to find the real color.
7202         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
7203         parse <font color="red"> entries.
7204
7205 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
7206
7207         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
7208         point when parsing headers.
7209
7210         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
7211         is positioned properly when parsing headers.
7212
7213 2010-11-23  Julien Danjou  <julien@danjou.info>
7214
7215         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
7216
7217         * shr-color.el (shr-color->hexadecimal): Add support for color names.
7218
7219         * shr.el (shr-parse-style): Replace \n with space in style parsing.
7220
7221         * shr-color.el (shr-color-hsl-to-rgb-fractions):
7222         Use shr-color-hue-to-rgb.
7223         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
7224
7225 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7226
7227         * shr.el (shr-color->hexadecimal): Autoload.
7228         (shr-descend): Add color to all tags.
7229
7230 2010-11-22  Julien Danjou  <julien@danjou.info>
7231
7232         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
7233         shr-color->hexadecimal.
7234
7235         * shr-color.el (shr-color->hexadecimal): Add converting functions for
7236         RGB() or HSL() color representation.
7237
7238         * shr.el (shr-tag-font): Add.
7239         (shr-tag-color-check): New function to get better colors.
7240         (shr-tag-insert-color-overlay): Factorize code between tag-font and
7241         tag-span.
7242
7243         * shr-color.el: New file.
7244
7245         * color-lab.el: New file.
7246
7247         * gnus-art.el (gnus-url-mailto): Do not downcase args.
7248
7249 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
7250
7251         * nnir.el: Fix typo in comments.
7252         (nnir-run-imap): Simplify code.  No need to reverse artlist.
7253         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
7254
7255 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7256
7257         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
7258
7259         * nnimap.el (nnimap-get-capabilities): Refactor out.
7260         (nnimap-open-connection): Re-request capabilities after STARTTLS.
7261
7262 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
7263
7264         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
7265         appearing when `mm-uu-hide-markers' is nil.
7266
7267 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7268
7269         * nnimap.el (nnimap-unselect-group): Make into its own function.
7270         (nnimap-request-rename-group): Unselect group before renaming.
7271         This had gotten lost somewhere.
7272         (nnimap-request-accept-article): Keep track of examined groups, and
7273         unselect the group before APPENDing to read-only groups.
7274         (nnimap-request-move-article): Clear flags before moving so that they
7275         can be re-set later.
7276
7277 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7278
7279         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
7280         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
7281
7282 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7283
7284         * gnus-art.el (gnus-mime-display-single):
7285         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
7286         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
7287         parameter.
7288
7289 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7290
7291         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
7292         (shr-table-vertical-line): New variable.
7293         (shr-insert-table): Use it.
7294
7295 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7296
7297         * gnus-html.el (gnus-html-wash-images): Don't display images if
7298         gnus-inhibit-images is non-nil; register displayer for cid images.
7299         (gnus-html-display-image): Work for cid image.
7300         (gnus-html-insert-image): Allow arguments.
7301         (gnus-html-put-image): Inhibit read-only.
7302         (gnus-html-prefetch-images): Don't prefetch images if
7303         gnus-inhibit-images is non-nil.
7304
7305 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7306
7307         * shr.el (shr-put-image): Break lines when inserting big pictures.
7308
7309 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7310
7311         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
7312         sender, thanks Katsumi Yamaoka.
7313
7314 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
7315
7316         * nnir.el (nnir-run-imap): Reverse the article list for each group
7317         rather than the whole list.
7318
7319 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7320
7321         * shr.el (shr-image-displayer): Protect function against non-existent
7322         image source.
7323
7324         * gnus-art.el (gnus-inhibit-images): New user option.
7325         (gnus-mime-display-single): Don't display image if it is non-nil.
7326
7327         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
7328         gnus-inhibit-images.
7329
7330         * shr.el (shr-image-displayer): New function.
7331         (shr-tag-img): Use it.
7332
7333 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7334
7335         * mml2015.el (mml2015-epg-sign): Use From header.
7336
7337 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7338
7339         * gnus-html.el (gnus-html-wash-images): Register a displayer.
7340
7341         * gnus-util.el (gnus-find-text-property-region): Return markers.
7342
7343         * shr.el (shr-tag-img): Put a displayer in the text property.
7344
7345         * gnus-util.el (gnus-find-text-property-region): New utility function.
7346
7347         * gnus-html.el (gnus-html-display-image): Make the alt optional.
7348         (gnus-html-show-images): Remove.
7349
7350         * gnus-art.el (gnus-article-show-images): New, more general function.
7351
7352         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
7353         image url text properties.
7354
7355         * shr.el: Ditto.
7356
7357         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
7358         gnus-agent-auto-agentize-methods is set.  Which it isn't.
7359
7360 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7361
7362         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
7363         work for two or more articles.
7364
7365 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7366
7367         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
7368         divide an image that's in an html article to two or more when washing
7369         non-ASCII characters in alt text of it.
7370
7371 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7372
7373         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
7374         smime-decrypt-region using function argument.
7375         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
7376
7377         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
7378
7379         * smime.el (smime-decrypt-region): Catch it.
7380
7381 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7382
7383         * smime.el (smime-mode-map): Move initialization into declaration.
7384         (gnus-run-mode-hooks): Don't autoload.
7385         (smime-mode): Use define-derived-mode.
7386
7387 2010-11-11  Glenn Morris  <rgm@gnu.org>
7388
7389         * smime.el (from): Restrict declaration to XEmacs.
7390
7391         * nnir.el (gnus-group-topic-name): Autoload.
7392
7393 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7394
7395         * shr.el (shr-insert): Don't break long line if it is because of
7396         kinsoku-bol characters in the line end.
7397
7398 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
7399
7400         * nnir.el (nnir-request-move-article): Fix to provide original group
7401         and subject.
7402         (nnir-warp-to-article): Don't fail on articles whose headers haven't
7403         been retrieved.
7404
7405         * gnus-sum.el (gnus-summary-move-article): Use original group and
7406         subject for virtual articles such as those in an nnir summary buffer.
7407
7408 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7409
7410         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
7411         least 21.5).
7412
7413         * smime.el (from): Declare it again for XEmacs.
7414
7415 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7416
7417         * message.el (message-resend): Don't disable encoding unless it's
7418         already encoded.
7419
7420         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
7421         low-numbered articles.
7422
7423 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7424
7425         * rfc2047.el (rfc2047-syntax-table): Simplify.
7426
7427         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
7428
7429         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
7430         set-char-table-range for XEmacs.
7431
7432 2010-11-10  Glenn Morris  <rgm@gnu.org>
7433
7434         * time-date.el (time-to-seconds): Always an alias on Emacs,
7435         never a real function.
7436         (with-no-warnings): Remove compat stub, now unused.
7437         (time-less-p): Doc fix.
7438         (time-to-number-of-days): Simplify.
7439
7440         * smime.el (from): Remove unused declaration.
7441
7442         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
7443         (gnus-float-time): On Emacs, always an alias.
7444
7445         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
7446         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
7447
7448 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7449
7450         * dgnushack.el: Don't use ignore-errors in the top level form since it
7451         is unavailable in XEmacs even if cl is loaded.
7452
7453         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
7454
7455 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7456
7457         * shr.el (browse-url-mailto): Autoload.
7458
7459         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
7460
7461         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
7462         regexp doesn't need quoting.
7463
7464 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
7465
7466         * message.el (message-subject-trailing-was-ask-regexp)
7467         (message-subject-trailing-was-regexp): Match was: in addition to was.
7468
7469 2010-11-09  Glenn Morris  <rgm@gnu.org>
7470
7471         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
7472         (nnbabyl-check-mbox): Use point-at-bol.
7473
7474 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7475
7476         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
7477
7478         * message.el (message-mailto): New function.
7479         (message-mailto): Should accept other parameters.
7480         (message-mailto): Remove since it duplicates browse-url-mailto
7481         functionality.
7482
7483 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7484
7485         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
7486         methods.
7487         (gnus-read-active-file): Ditto.
7488
7489         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
7490         ": " from the prompt.
7491         (gnus-group-make-group): Ditto.
7492
7493 2010-11-07  Glenn Morris  <rgm@gnu.org>
7494
7495         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
7496         (gnus-bookmark-kill-line): Use point-at-eol.
7497
7498 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7499
7500         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
7501         asterisks in From header.
7502
7503 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7504
7505         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
7506         string to avoid making the From headers syntactically invalid.
7507
7508         * message.el (message-send-mail): Don't insert courtesy messages if the
7509         message already has List-Post and List-ID messages.
7510
7511 2010-11-06  Glenn Morris  <rgm@gnu.org>
7512
7513         * gnus-art.el (gnus-treat-article): Give dynamic local variables
7514         `condition', `type', `length' a prefix.
7515         (gnus-treat-predicate): Update for above name changes.
7516
7517 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
7518
7519         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
7520         binding.  Handled by `gnus-summary-refer-thread' instead.
7521         (nnir-warp-to-article): New backend function.
7522
7523         * nnimap.el (nnimap-request-thread): Force dependency updating.
7524
7525         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
7526         (gnus-summary-refer-thread): Rework to improve thread-referral.
7527
7528         * gnus-int.el (gnus-warp-to-article): New function.
7529
7530         * gnus-sum.el (gnus-summary-article-map): Bind it.
7531
7532 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
7533
7534         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
7535         gnus-summary-refer-thread.
7536
7537         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
7538         headers.
7539         (gnus-summary-limit-include-thread): Prevent articles in thread from
7540         being cut in gnus-cut-threads.
7541         (gnus-summary-refer-thread): Limit retrieved headers to those in
7542         thread.
7543
7544 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7545
7546         * message.el (message-send-mail): Use the value of
7547         message-courtesy-message from the message buffer.
7548
7549         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
7550
7551         * shr.el (shr-browse-url): Implement mailto: URLs.
7552
7553         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
7554         "raw".
7555
7556         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
7557         if it's already selected.
7558
7559         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
7560
7561 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7562
7563         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
7564         to measure the length and truncate alt text.
7565
7566 2010-11-03  Glenn Morris  <rgm@gnu.org>
7567
7568         * nndiary.el (nndiary-generate-nov-databases-1)
7569         (nndiary-generate-active-info): Rename dynamic variable `files' to
7570         something less generic.
7571
7572 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
7573
7574         * nnir.el (nnir-request-move-article): Call the underlying backend to
7575         move articles from nnir.
7576
7577 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7578
7579         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
7580
7581 2010-11-02  Julien Danjou  <julien@danjou.info>
7582
7583         * nnir.el: Remove wais support.
7584
7585 2010-11-02  Glenn Morris  <rgm@gnu.org>
7586
7587         * gnus-html.el: Reorder requirements to quieten compiler.
7588
7589 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7590
7591         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
7592         properly for XEmacs as well.
7593         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
7594         (gnus-article-natural-long-line-p): Use window-width rather than
7595         frame-width.
7596
7597 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
7598
7599         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
7600         (nnir-read-parms): Don't modify query.
7601         (nnir-run-query): Add ability to search topic on current line.
7602         (nnir-get-active): Clean up.
7603
7604 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7605
7606         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
7607         degenerate articles.
7608
7609         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
7610         (gnus-print-buffer): Just print the buffer as is, without any copying
7611         to a buffer and then re-highlighting.
7612
7613         * nnimap.el (nnimap-request-group): Store the new updated info.
7614         (nnimap-request-group): Select the group when we don't know whether it
7615         exists or not.
7616
7617         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
7618         groups.
7619
7620         * gnus-group.el (gnus-group-find-new-groups): Display all the new
7621         groups.
7622
7623         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
7624         groups.
7625
7626         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
7627         long-lines case by only filling the long lines.
7628
7629         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
7630         (bug #7311).
7631
7632 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7633
7634         * shr.el: No need to declare `declare-function' since shr.el is for
7635         only Emacsen that provide `libxml-parse-html-region'.
7636
7637         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
7638         effective only in a file it is referred to.
7639
7640 2010-11-01  Glenn Morris  <rgm@gnu.org>
7641
7642         * mm-util.el (gnus-completing-read): Autoload.
7643         (mm-read-coding-system): Simplify Emacs definition.
7644
7645         * nnmail.el (gnus-activate-group):
7646         * nnimap.el (gnutls-negotiate):
7647         * nntp.el (netrc-parse): Fix declarations.
7648
7649 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7650
7651         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
7652         string-match-p in Emacs >=23.
7653
7654         * gnus-msg.el (gnus-configure-posting-styles):
7655         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
7656
7657 2010-11-01  Glenn Morris  <rgm@gnu.org>
7658
7659         * nnir.el (declare-function): Add compat stub.
7660         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
7661         (nnir-run-gmane): Require 'mm-url.
7662
7663         * mm-util.el (mm-string-to-multibyte): Simplify.
7664
7665         * shr.el (declare-function): Add compat stub.
7666         (url-cache-create-filename): Declare.
7667         (mm-disable-multibyte, widget-convert-button): Autoload.
7668
7669         * smime.el (ldap-search): Declare.
7670         (smime-cert-by-ldap-1): Require ldap on Emacs.
7671
7672         * nnimap.el: Require nnmail, and gnus-sum when compiling.
7673         (nnimap-keepalive): Use gnus-float-time.
7674
7675         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
7676         (mail-source-delete-crash-box): Use gnus-float-time.
7677
7678         * gnus-dired.el (gnus-completing-read): Autoload.
7679
7680         * mm-view.el (gnus-rescale-image): Autoload.
7681
7682         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
7683
7684         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
7685
7686         * sieve-manage.el: Require 'cl when compiling.
7687
7688         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
7689         (gnus-iswitchb-completing-read): Require iswitchb.
7690         (gnus-select-frame-set-input-focus): Silence compiler.
7691
7692 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7693
7694         * message.el (message-subject-trailing-was-query): Change default to t,
7695         since I think that's what most people want.
7696
7697         * nnimap.el (nnimap-request-accept-article): Erase buffer before
7698         appending for easier debugging.
7699         (nnimap-wait-for-connection): Take a regexp.
7700         (nnimap-request-accept-article): Wait for the continuation line before
7701         sending anything unless we're streaming.
7702
7703         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
7704         leave the header washing to take place.
7705
7706 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7707
7708         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
7709         regular expression match and replace in posting styles.
7710
7711 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
7712
7713         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
7714         an entire server.
7715         (nnir-get-active): New function.
7716         (nnir-run-imap): Use it.
7717         (nnir-run-gmane): Who knew, gmane search returns an article score!
7718
7719         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
7720         server on the current line with nnir.
7721
7722 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7723
7724         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
7725         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
7726         left edge.
7727         (gnus-article-foldable-buffer): Skip past the prefix when determining
7728         raggedness.
7729
7730         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
7731         the raw article, and change `C-u g' to show the article without doing
7732         treatments.
7733
7734         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
7735         on to `gnus-treat-article'.
7736         (gnus-inhibit-article-treatments): New variable.
7737
7738         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
7739
7740         * gnus-art.el (gnus-treatment-function-alist): Have
7741         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
7742         (gnus-treat-fill-long-lines): Change default to fill all text/plain
7743         sections.
7744
7745         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
7746         parameter.
7747         (gnus-article-fill-cited-long-lines): New function.
7748         (gnus-article-fill-cited-article): Allow filling only long sections.
7749
7750         * shr.el (shr-find-fill-point): Don't break lines between punctuation
7751         and non-punctuation (like after the apostrophe in "'We").
7752
7753         * gnus-sum.el (gnus-summary-select-article): Make sure
7754         gnus-original-article-buffer is alive.
7755
7756         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
7757         reflect the order they're in in the digest.
7758
7759         * gnus.el (gnus-group-startup-message): Move point to the start of the
7760         buffer.
7761
7762         * nnimap.el (nnimap-capability): New function.
7763         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
7764         is set.
7765
7766 2010-10-31  David Engster  <dengste@eml.cc>
7767
7768         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
7769         conform with changes to gnus-completing-read.
7770
7771 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7772
7773         * shr.el (shr-tag-img): Output "*" instead of "[img]".
7774
7775 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7776
7777         * nnir.el: Move defvar, defcustom around to keep file organized
7778         and keep byte-compiler quiet.
7779         (nnir-read-parms): Accept search-engine as arg.
7780         (nnir-run-query): Pass search-engine as arg.
7781         (nnir-search-engine): Remove.
7782
7783 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7784
7785         * shr.el (shr-generic): The text nodes should be text, not :text.
7786
7787         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
7788         later in the file.
7789
7790 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7791
7792         * nnir.el: General clean up.  Allow searching with multiple engines.
7793         Allow separate extra-parameters for each engine.
7794         Batch queries when possible.
7795         (nnir-imap-default-search-key,nnir-method-default-engines):
7796         Add customize interface.
7797         (nnir-run-gmane): New engine.
7798         (nnir-engines): Use it.  Qualify all prompts with engine name.
7799         (nnir-search-engine): Remove global variable.
7800         (nnir-run-hyrex): Restore for now.
7801         (nnir-extra-parms,nnir-search-history): New variables.
7802         (gnus-group-make-nnir-group): Use them.
7803         (nnir-group-server): Remove in favor of gnus-group-server.
7804         (nnir-request-group): Avoid searching twice.
7805         (nnir-sort-groups-by-server): New function.
7806
7807 2010-10-30  Julien Danjou  <julien@danjou.info>
7808
7809         * gnus-group.el: Remove gnus-group-fetch-control.
7810
7811         * gnus-start.el (gnus-find-new-newsgroups):
7812         Remove gnus-check-first-time-used.
7813
7814         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
7815
7816 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7817
7818         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
7819         set on groups that don't have \* permanentflags.
7820
7821 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7822
7823         * shr.el (shr-tag-span): Drop colorization of regions since we don't
7824         control the background color.
7825         (shr-tag-img): Ignore very small web bug type images.
7826         (shr-put-image): Add help-echo alt texts to the images.
7827         (shr-tag-video): Show the video poster image.
7828
7829 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7830
7831         * shr.el (shr-table-depth): New variable.
7832         (shr-tag-table-1): Only insert the images after the top-level table.
7833
7834         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
7835
7836         * gnus-util.el (gnus-list-memq-of-list): New function.
7837
7838         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
7839         selected.
7840         (nnimap-unsplittable-articles): New slot.
7841         (nnimap-new-articles): Use it.
7842
7843 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
7844
7845         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
7846         move to the previous line on `M-g'.
7847
7848 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7849
7850         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
7851         *-request-group, which seems unnecessary.
7852
7853         * nnimap.el (nnimap-quote-specials): Function copied over from
7854         imap.el.
7855         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
7856         they support that.  Suggested by Tom Regner.
7857
7858 2010-10-29  Julien Danjou  <julien@danjou.info>
7859
7860         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
7861         defalias.
7862         (gnus-summary-delete-marked-with): Remove obsolete defalias.
7863
7864         * gnus.el: Remove `gnus-nntp-service' variable.
7865         (gnus-secondary-servers): Make obsolete.
7866         (gnus-nntp-server): Make obsolete.
7867
7868         * gnus-start.el (gnus-1): Remove x-splash calls.
7869
7870         * gnus-ems.el (gnus-x-splash): Remove.
7871
7872         * gnus.el (gnus-group-startup-message): Simplify/update code.
7873
7874         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
7875         definition.
7876
7877         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
7878         capability before doing anything.
7879         (gnus-group-insert-group-line): Remove useless
7880         gnus-group-remove-excess-properties.
7881
7882 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7883
7884         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
7885
7886 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7887
7888         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
7889         config after reselecting.
7890
7891 2010-10-28  Julien Danjou  <julien@danjou.info>
7892
7893         * shr.el (shr-put-image): Use point even if only inserting text.
7894         (shr-put-image): Save excursion when inserting alt text on non-graphic
7895         display, so the behavior is the same when we are on a graphic display.
7896
7897         * nnir.el (nnir-run-swish-e): Remove hyrex support.
7898
7899 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7900
7901         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
7902         (gnus-mime-copy-part): Check coding system, not charset.
7903         (gnus-mime-view-part-externally): Never remove part.
7904         (gnus-mime-view-part-internally): Don't remove part here.
7905         (gnus-article-part-wrapper): Make sure MIME tag is visible.
7906         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
7907         multipart/alternative.
7908
7909         * mm-decode.el (mm-display-part): Take optional arg `force'.
7910
7911 2010-10-26  Julien Danjou  <julien@danjou.info>
7912
7913         * gnus-group.el (gnus-group-default-list-level): Add this function to
7914         compute the default list level.
7915         (gnus-group-default-list-level): Add possibility to use a function.
7916
7917 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7918
7919         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
7920
7921         * gnus-group.el (gnus-group-completing-read)
7922         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
7923         gnus-replace-in-string.
7924
7925 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7926
7927         * shr.el (shr-tag-div): Add.
7928
7929         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
7930
7931 2010-10-25  Julien Danjou  <julien@danjou.info>
7932
7933         * gnus-util.el: Remove `gnus-with-local-quit'.
7934
7935         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
7936
7937 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7938
7939         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
7940         the original article buffer.
7941
7942 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7943
7944         * nnimap.el (nnimap-request-head): New function.
7945         (nnimap-request-move-article): Try to be slightly faster by not
7946         requesting the entire message when moving.
7947         (nnimap-transform-headers): Don't bug out on bodiless articles.
7948         (nnimap-send-command): Have no outstanding messages if the IMAP server
7949         doesn't support streaming.
7950         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
7951
7952 2010-10-24  Julien Danjou  <julien@danjou.info>
7953
7954         * message.el (message-default-headers): Fix type.
7955
7956 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7957
7958         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
7959         prefetching images.
7960
7961         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
7962         backend for unknown groups.  This is mainly useful for nnimap groups.
7963
7964         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
7965         group isn't covered by the agent.
7966
7967 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
7968
7969         * nnir.el (nnir-method-default-engines): New variable.
7970         (nnir-run-query): Use it.
7971         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
7972         (gnus-summary-nnir-goto-thread): Change group if needed.
7973
7974         * gnus-group.el (gnus-group-group-map): Add key binding for
7975         gnus-group-make-nnir-group.
7976
7977 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7978
7979         * shr.el (shr-tag-object): Add.
7980
7981         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
7982         original article buffer live.
7983         (gnus-summary-select-article-buffer):
7984         Mention gnus-widen-article-buffer.
7985
7986 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7987
7988         * shr.el (shr-tag-strong): Add.
7989
7990 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7991
7992         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
7993         group names.  They mess up the group buffer badly.
7994
7995         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
7996
7997         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
7998         instead of the summary one.
7999
8000 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8001
8002         * mml.el (mml-preview): Work properly when editing article.
8003
8004         * gnus-start.el (gnus-read-active-file-1): Don't add method to
8005         gnus-have-read-active-file if it's already been in.
8006
8007 2010-10-22  Tom Tromey  <tromey@redhat.com>
8008
8009         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
8010         gnus-group-completing-read.
8011
8012 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8013
8014         * message.el (message-mode-map): Don't bind M-; to comment region, to
8015         allow the global comment-dwim to work.
8016
8017 2010-10-21  Julien Danjou  <julien@danjou.info>
8018
8019         * message.el (message-setup-1): Allow message-default-headers to be a
8020         function.
8021
8022 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8023
8024         * shr.el (shr-tag-table): Simplify.
8025
8026 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8027
8028         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
8029         to avoid trying to snarf invalid stuff.
8030
8031         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
8032
8033         * gnus.el (gnus-message-archive-group): Quote value.
8034         (gnus-message-archive-group): Mark as changed.
8035
8036         * shr.el (shr-add-font): Don't put the font properties on the newline
8037         or the indentation.
8038
8039         * message.el (message-fix-before-sending): Change options when sending
8040         non-printable characters.
8041
8042         * gnus.el (gnus-message-archive-method): Change the default to
8043         monthly outgoing groups.
8044
8045         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
8046         that have gotten new numbers.
8047
8048         * nnimap.el (nnimap-request-replace-article): New function.
8049
8050 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8051
8052         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
8053         (nnrss-request-article): Don't use special html washing code.
8054
8055 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8056
8057         * shr.el (shr-tag-table): Remove useless nconc.
8058
8059 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8060
8061         * gnus-art.el (article-wash-html): Simplify and remove the charset
8062         stuff.  Use the normal html rendering code instead of the special html
8063         washing code.
8064
8065         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
8066         `gnus-w3m' symbols.
8067         (mm-text-html-washer-alist): Remove.
8068
8069         * mm-decode.el (mm-inline-text-html-renderer): Remove.
8070         (mm-inline-media-tests): Remove use.
8071         (mm-text-html-renderer): Change default to the `shr' symbol.
8072
8073         * mm-view.el (mm-inline-text-html): Remove use.
8074
8075         * gnus-art.el (gnus-blocked-images): New function.  Allow the
8076         `gnus-blocked-images' to be a function.
8077         (gnus-article-wash-function): Remove.
8078
8079 2010-10-20  Julien Danjou  <julien@danjou.info>
8080
8081         * spam.el (spam-list-of-processors): Mark as obsolete.
8082
8083         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
8084         (nnimap-insert-partial-structure): Fix boundary detection.
8085
8086 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
8087
8088         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
8089         run file-truename on remote files.  This can be expensive and even
8090         prevent one from editing drafts if some unrelated buffer has a stale
8091         connection.
8092
8093 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8094
8095         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
8096         kinsoku-eol regardless of shr-kinsoku-shorten.
8097         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
8098         (shr-tag-table): Support caption, thead, and tfoot.
8099
8100 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8101
8102         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
8103         lines.
8104         (shr-save-contents): New command and keystroke.
8105
8106         * nndoc.el (nndoc-type-alist): Add git support.
8107         (nndoc-git-type-p): New function.
8108         (nndoc-transform-git-article): Ditto.
8109         (nndoc-transform-git-headers): Ditto.
8110         (nndoc-transform-git-headers): Generate Subject headers.
8111
8112         * shr.el (shr-parse-style): New function.
8113         (shr-tag-span): Ditto.
8114
8115         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
8116         to `G G' to avoid collisions.
8117
8118 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8119
8120         * shr.el: Load kinsoku if necessary.
8121         (shr-kinsoku-shorten): New internal variable.
8122         (shr-find-fill-point): Make kinsoku shorten text line if
8123         shr-kinsoku-shorten is bound to non-nil.
8124         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
8125         shr-indentation too when testing if table is wider than frame width.
8126         (shr-insert-table): Use `string-width' instead of `length' to measure
8127         text width.
8128         (shr-insert-table-ruler): Make sure indentation is done at bol.
8129
8130 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8131
8132         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
8133         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
8134         undecoded network data.
8135
8136 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8137
8138         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
8139         name in the mode line spec so that the mode line menu works
8140         (bug #2431).
8141
8142         * message.el (message-get-reply-headers): If we're fed `to-address',
8143         then always use that.
8144
8145         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
8146         aren't so wide as to need to switch off the edit menu.
8147
8148         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
8149         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
8150
8151         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
8152         `M-g'.
8153         (nnimap-update-info): Update flags/read marks even if \* isn't part of
8154         the permanent marks.
8155
8156 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
8157
8158         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8159         Splitting according to references/in-reply-to obeys the ignore-groups
8160         variable, while splitting by sender and subject do not.
8161
8162 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8163
8164         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
8165         alist, so that we can look for non-Unicode chars.
8166         (article-translate-strings): Allow both character and string maps.
8167
8168 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8169
8170         * shr.el (shr-insert): Don't insert space behind a wide character
8171         categorized as kinsoku-bol, or between characters both categorized as
8172         nospace.
8173
8174 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
8175
8176         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
8177         headers to gnus-newsgroup-headers.
8178
8179 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8180
8181         * shr.el (shr-tag-img): Don't align images -- since we're not
8182         rescaling, this often leads to ugly displays.
8183
8184 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
8185
8186         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
8187         duplicates.
8188
8189 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
8190
8191         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
8192         call.
8193
8194 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8195
8196         * gnus.el: Autoload gnus-html-show-images.
8197
8198         * nnimap.el: Use nnheader-message throughout.
8199
8200         * shr.el (shr-tag-img): Ignore images with no data.
8201
8202 2010-10-15  Julien Danjou  <julien@danjou.info>
8203
8204         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
8205         a possibility to disable format=flow encoding when using hard newlines.
8206
8207 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8208
8209         * shr.el (shr-insert): Remove space inserted before or after a
8210         breakable character or at the beginning or the end of a line.
8211         (shr-find-fill-point): Do kinsoku; find the second best point or give
8212         it up if there's no breakable point.
8213
8214 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8215
8216         * nnimap.el (nnimap-open-connection): Message when opening connection
8217         for debugging purposes.
8218
8219         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
8220         on every setup buffer call to allow this to change from article to
8221         article.
8222
8223         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
8224         buffers where we have a wide table.
8225
8226 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
8227
8228         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
8229         uses *-request-thread.
8230
8231 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8232
8233         * nnimap.el (nnimap-open-connection): Remove %s from openssl
8234         incantation, which is no longer valid.
8235
8236 2010-10-14  Julien Danjou  <julien@danjou.info>
8237
8238         * shr.el: Fix defcustom type (char -> character).
8239
8240 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8241
8242         * nnimap.el (nnimap-open-connection): tls-program should be a list of
8243         programs.
8244
8245 2010-10-14  Julien Danjou  <julien@danjou.info>
8246
8247         * shr.el (shr-tag-a): Use url-link as widget type.
8248
8249         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
8250         `gnus-group-get-icon'.
8251
8252 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8253
8254         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
8255         This should make server editing work better.
8256
8257         * shr.el (shr-find-fill-point): Don't inloop on indented text.
8258
8259         * tls.el (tls-program): Remove spurious %s from openssl.
8260
8261         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
8262         (nnimap-parse-flags): Fix regexp.
8263
8264         * shr.el (shr-find-fill-point): Use a filling algorithm that should
8265         probably work for CJVK text, too.
8266
8267         * nnimap.el (nnimap-extend-tls-programs): Remove.
8268         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
8269
8270         * tls.el (tls-starttls-switches): Remove starttls hack.
8271         (open-tls-stream): Ditto.
8272         (tls-find-starttls-argument): Ditto.
8273
8274 2010-10-13  Julien Danjou  <julien@danjou.info>
8275
8276         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
8277         responses.
8278
8279 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8280
8281         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
8282
8283         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
8284         anything in Emacs.
8285
8286         * shr.el (shr-current-column): Remove buggy and unnecessary function.
8287
8288 2010-10-13  Julien Danjou  <julien@danjou.info>
8289
8290         * shr.el (shr-width): Make shr-width a defcustom with default to
8291         fill-column.
8292         (shr-tag-img): Use shr-width rather than fill-column.
8293
8294 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8295
8296         * dgnushack.el (byte-optimize-apply):
8297         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
8298
8299         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
8300         position when (X-)Faces exist.
8301         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
8302         avatars when called interactively.
8303
8304 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8305
8306         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
8307         gnus-article-x-face-too-ugly is bound.
8308
8309 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8310
8311         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
8312
8313         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
8314         mailbox that doesn't exist.
8315
8316 2010-10-12  Julien Danjou  <julien@danjou.info>
8317
8318         * shr.el (shr-tag-img): Encode URL properly when retrieving.
8319         (shr-get-image-data): Encode URL properly when fetching from cache.
8320         (shr-tag-img): Use aligned-to spaces to align correctly images.
8321
8322         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
8323         before inserting the Gravatar.
8324
8325         * shr.el (shr-tag-img): Add align attribute support for <img>.
8326
8327 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8328
8329         * gnus-gravatar.el (gnus-art): Require.
8330
8331         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
8332         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
8333         Remove long obsoleted functions.
8334
8335 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8336
8337         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
8338
8339         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
8340
8341         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
8342         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
8343         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
8344         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
8345         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
8346         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
8347         * sieve-manage.el, smime.el, spam.el:
8348         Fix comment for declare-function.
8349
8350 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8351
8352         * nnimap.el (nnimap-request-rename-group): Select group read-only
8353         before renaming it.
8354
8355         * shr.el (shr-insert): Fix up the white space only regexp.
8356
8357         * nnimap.el (nnimap-transform-split-mail): Not all articles have
8358         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
8359
8360         * shr.el (shr-current-column): New function.
8361         (shr-find-fill-point): New function.
8362
8363 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8364
8365         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
8366         numbers.
8367
8368 2010-10-11  Julien Danjou  <julien@danjou.info>
8369
8370         * shr.el (shr-hr-line): Add.
8371         (shr-tag-hr): Use shr-hr-line to specify which character to use to
8372         display hr lines.
8373         (shr-max-columns): Do not change state to nil if we just inserting
8374         spaces.
8375
8376 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8377
8378         * gnus-topic.el (gnus-topic-read-group): If after the last group,
8379         select the last group.
8380
8381 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
8382
8383         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
8384
8385 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
8386
8387         * dig.el (dig-mode-map): Declare and define in one step.
8388
8389 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8390
8391         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
8392         for Gnus.
8393         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
8394         (nnimap-update-qresync-info): Mark \Seen articles as read.
8395
8396         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
8397         non-variable, too.
8398
8399         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
8400         available.
8401         (nnimap-update-info): Rely more on the current active than the param
8402         active to avoid marking articles as read too much.
8403
8404         * auth-source.el (auth-source-create): Use (user-login-name) for the
8405         user name default.
8406
8407         * nnimap.el (nnimap-update-info): If the server doesn't return any
8408         useful info, just use the previous info.
8409         (nnimap-update-info): Prefer old info over start-article.
8410         (nnimap-update-qresync-info): Finish implementing QRESYNC.
8411
8412 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
8413
8414         * nnir.el (autoload): Clean up autoloads.
8415         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
8416         Use key rather than value.
8417         (nnir-imap-search-other): New variable.
8418         (nnir-read-parm): Use it.
8419         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
8420         (gnus-summary-nnir-goto-thread): Modify to work with imap.
8421
8422 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8423
8424         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
8425         the process, too.
8426
8427 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8428
8429         * spam.el (gnus-summary-mode-map): Bind to "$".
8430         Suggested by Russ Allbery.
8431
8432         * shr.el: Rework the way things are indented by <li> slightly.
8433
8434         * gnus.el (gnus-group-set-parameter): Fix typo.
8435
8436         * nnimap.el: Start implementing QRESYNC support.
8437
8438 2010-10-09  Julien Danjou  <julien@danjou.info>
8439
8440         * nnir.el (nnir-engines): Fix too many arguments.
8441
8442 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8443
8444         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
8445         group is the "last", so that the backends like nnfolder actually save
8446         their folders.
8447
8448         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
8449         try to use that for the tls stream.
8450         (nnimap-retrieve-group-data-early): Rework the marks code to heed
8451         UIDVALIDITY and find out which groups are read-only and not.
8452         (nnimap-get-flags): Use the same marks parsing code as the rest of
8453         nnimap.
8454
8455 2010-10-09  Julien Danjou  <julien@danjou.info>
8456
8457         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
8458
8459         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
8460         retrieving gravatars.
8461
8462         * shr.el (shr-table-corner): Add.
8463         (shr-table-line): Add.
8464         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
8465
8466 2010-10-08  Julien Danjou  <julien@danjou.info>
8467
8468         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
8469
8470 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
8471
8472         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
8473
8474         * gnus-sum.el (gnus-mark-article-as-unread)
8475         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
8476         (gnus-summary-set-bookmark): Use it.
8477
8478         * gnus-msg.el (gnus-setup-message): Use it.
8479
8480         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8481
8482         * gnus.el (gnus-group-remove-parameter): Use it.
8483
8484         * gnus-group.el (gnus-group-make-web-group): Use it.
8485
8486         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8487
8488         * nnregistry.el: Update docs to mention manual.
8489
8490         * gnus-registry.el: Update docs to mention nnregistry.el.
8491         (gnus-registry-initialize): Don't install nnregistry refer method
8492         automatically.
8493         (gnus-registry-install-nnregistry): Remove it.
8494
8495 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8496
8497         * shr.el (shr-insert): Don't insert double spaces.
8498
8499 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8500
8501         * gnus-gravatar.el (gnus-treat-from-gravatar)
8502         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
8503         called interactively.
8504
8505         * gnus-art.el (gnus-mime-view-part-externally)
8506         (gnus-mime-view-part-internally): Make predicate function passed to
8507         gnus-mime-view-part-as-type assume argument is a mime type, not a list
8508         of a mime type.
8509
8510         * shr.el (shr-table-widths): Don't use cl function `reduce'.
8511
8512 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8513
8514         * shr.el (require): Require cl when compiling.
8515         (shr-tag-hr): New function.
8516
8517         * nnimap.el (nnimap-update-info): Remove double setting of high.
8518         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
8519         This makes nnimap work properly on Courier again.
8520
8521         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
8522         the variable for backwards compatibility.
8523
8524         * mm-decode.el (mm-save-part): If given a non-directory result, expand
8525         the file name before using to avoid setting mm-default-directory to
8526         nil.
8527
8528         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
8529         bidning gnus-agent variables.
8530
8531         * shr.el (shr-render-td): Use a cache for the table rendering function
8532         to avoid getting an exponential rendering behavior in nested tables.
8533         (shr-insert): Rework the line-breaking algorithm.
8534         (shr-insert): Don't leave trailing spaces.
8535         (shr-insert-table): Also insert empty TDs.
8536         (shr-tag-blockquote): Ensure paragraphs after </ul>.
8537
8538 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8539
8540         * gnus-sum.el (gnus-number): Rename from `number'.
8541         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
8542         (gnus-summary-limit-children): Update uses correspondingly.
8543
8544 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8545
8546         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
8547         (gnus-gravatar-transform-address): Don't show avatars of people of
8548         which mail addresses match gnus-gravatar-too-ugly.
8549
8550 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8551
8552         * shr.el (shr-table-widths): Expand TD elements to fill available
8553         space.
8554
8555 2010-10-07  Julien Danjou  <julien@danjou.info>
8556
8557         * nnimap.el (nnimap-request-rename-group): Add this method.
8558
8559 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8560
8561         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
8562         name from XEmacs' function-arglist.
8563
8564         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
8565         gravatar under XEmacs.
8566
8567 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
8568
8569         * auth-source.el: Update docs with TODO items.
8570
8571         * gnus-sync.el: Update docs to explain state and plans.
8572
8573         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
8574         Hooks for mark updates.
8575         (gnus-request-set-mark, gnus-request-update-mark): Use them.
8576
8577         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
8578         hooks with arguments, which is needed for mark update hooks.
8579
8580 2010-10-06  Julien Danjou  <julien@danjou.info>
8581
8582         * gnus.el (gnus-expand-group-parameter): Only return and act on what
8583         was matched.
8584
8585         * sieve-manage.el: Update example in `Commentary'.
8586
8587         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
8588
8589         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
8590         not 2000.
8591         (sieve-manage-authenticate): Re-add function.
8592
8593 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8594
8595         * shr.el (shr-insert): Get 'space transition right.
8596         (shr-render-td): Only delete space at the end of the TD.
8597
8598         * nnimap.el (nnimap-open-connection): Prepare to support
8599         open-gnutls-stream.
8600
8601         * shr.el: Rearrange function order to be more logical.
8602
8603 2010-10-06  Julien Danjou  <julien@danjou.info>
8604
8605         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
8606         (nnrss-discover-feed): Remove 404 URL in docstring.
8607
8608         * nnir.el: Fix Swish-E URL.
8609         Fix Namazu URL.
8610
8611         * message.el (message-change-subject): Remove 404 URL in a comment.
8612
8613 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8614
8615         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
8616         called interactively.
8617
8618         * gnus-util.el (gnus-remove-if): Allow hash table.
8619         (gnus-remove-if-not): New function.
8620
8621         * gnus-art.el (gnus-mime-view-part-as-type):
8622         * gnus-score.el (gnus-summary-score-effect):
8623         * gnus-sum.el (gnus-read-move-group-name):
8624         Replace remove-if-not with gnus-remove-if-not.
8625
8626         * gnus-group.el (gnus-group-completing-read):
8627         Regard collection as a hash table if it is not a list.
8628
8629 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8630
8631         * shr.el (shr-render-td): Allow blank/missing <TD>s.
8632
8633         * shr.el: Document the table-rendering algorithm.
8634
8635 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8636
8637         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
8638         for Emacsen having no `libxml-parse-html-region' support.
8639
8640 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8641
8642         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
8643         invalid URLs.
8644
8645         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
8646         line-broken.
8647         (shr-tag-img): Ignore image fetching errors.
8648         (shr-overlays-in-region): Compute overlay positions correctly.
8649
8650         * mm-decode.el (mm-shr): Require shr.
8651
8652         * gnus-art.el (gnus-blocked-images): Move variable here.
8653
8654         * shr.el (shr-insert-table): Bind free variable.
8655
8656         * mm-decode.el (mm-shr): Bind shr-content-function.
8657
8658         * shr.el (shr-content-function): New variable.
8659
8660         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
8661         added for symmetry.
8662
8663         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
8664
8665         * gnus-group.el (gnus-group-make-group): Doc fix.
8666
8667         * nnimap.el (nnimap-request-newgroups): Return success.
8668
8669         * shr.el (shr-find-elements): New function.
8670         (shr-tag-table): Put all the images after the table.
8671         (shr-tag-table): Really inhibit images inside the table.
8672         (shr-collect-overlays): Copy over overlays from the TD elements to the
8673         main document.
8674
8675         * mm-decode.el (mm-shr): Bind shr-blocked-images to
8676         gnus-blocked-images.
8677
8678 2010-10-05  Julien Danjou  <julien@danjou.info>
8679
8680         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
8681
8682         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
8683         (gnus-html-maximum-image-size): Add this function.
8684         (gnus-html-put-image): Use gnus-html-maximum-image-size.
8685
8686         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
8687         server-value of the capability is nil.
8688
8689 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8690
8691         * shr.el (shr-tag-em): Add <EM> tag.
8692
8693 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
8694
8695         * sieve-manage.el (sieve-manage-default-stream): Make default stream
8696         customizable.
8697
8698         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
8699         handing broken links to browse-url.
8700
8701 2010-10-05  Julien Danjou  <julien@danjou.info>
8702
8703         * gnus-util.el (gnus-emacs-completing-read)
8704         (gnus-iswitchb-completing-read): Use autoload rather than require.
8705
8706 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8707
8708         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
8709         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
8710         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
8711         iswitchb-temp-buflist for XEmacs.
8712
8713         * gnus-util.el (gnus-completing-read-function): Exclude
8714         gnus-icompleting-read and gnus-ido-completing-read from candidates for
8715         XEmacs since iswitchb.el is very old and ido.el is unavailable in
8716         XEmacs.
8717
8718         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
8719         not to use `delete-dups' that is unavailable in XEmacs 21.4.
8720
8721         * gnus-html.el: Don't require help-fns under XEmacs.
8722         (gnus-html-schedule-image-fetching): Work for XEmacs.
8723
8724         * mm-decode.el (mm-shr): Decode contents by charset.
8725
8726 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8727
8728         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
8729         unknown.
8730
8731         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
8732         (shr-get-image-data): Ensure against the cache file missing.
8733
8734         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
8735         for data.
8736
8737         * spam-report.el (spam-report-url-ping-plain): Don't query about
8738         killing the process.
8739
8740         * shr.el (shr-render-td): Protect against too-wide text.
8741
8742 2010-10-04  Julien Danjou  <julien@danjou.info>
8743
8744         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
8745         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
8746
8747         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
8748         retrieved.
8749
8750 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8751
8752         * shr.el (browse-url): Require.
8753         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
8754         lines.
8755         (shr-show-alt-text, shr-browse-image): New commands.
8756         (shr-browse-url, shr-copy-url): New commands.
8757
8758         * gnus-sum.el (gnus-widen-article-window): New variable.
8759         (gnus-summary-select-article-buffer): Use it.
8760
8761         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
8762         without @ signs.
8763
8764 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8765
8766         * nnir.el (nnir-run-imap): Remove spurious space in search string.
8767
8768 2010-10-04  Julien Danjou  <julien@danjou.info>
8769
8770         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
8771         for XEmacs.
8772
8773 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8774
8775         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
8776
8777         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
8778         (nnimap-close-server): Implement.
8779
8780         * dgnushack.el (iswitchb): Require to shut up the compiler.
8781
8782         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
8783         (shr-insert): Tweak line breaking.
8784         (shr-insert): Handle <pre> better.
8785         (shr-tag-li): Get <li> indentation right.
8786         (shr-tag-li): Get <li> indentation even righter.
8787         (shr-tag-blockquote): Ensure paragraph start.
8788         (shr-make-table): Tweak table generation.
8789         (shr-make-table): Fix typo.
8790
8791         * shr.el: Implement table rendering.
8792
8793 2010-10-04  Julien Danjou  <julien@danjou.info>
8794
8795         * gnus-html.el (gnus-html-put-image): Fix resize image code.
8796
8797 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8798
8799         * shr.el (shr-insert): Use string anchors instead of line anchors.
8800
8801 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8802
8803         * shr.el: Add headings.
8804         (shr-ensure-paragraph): Actually work.
8805         (shr-tag-li): Make <ul> prettier.
8806         (shr-insert): Get white space at the beginning/end of elements right.
8807         (shr-tag-p): Collapse subsequent <p>s.
8808         (shr-ensure-paragraph): Don't insert double line feeds after blank
8809         lines.
8810         (shr-insert): \t is also space.
8811         (shr-tag-s): Fix "s" tag name function.
8812         (shr-tag-s): Fix face prop name.
8813
8814 2010-10-03  Julien Danjou  <julien@danjou.info>
8815
8816         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
8817
8818         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
8819         gnus-window-inside-pixel-edges.
8820
8821         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
8822         gnus-ems.
8823
8824         * mm-view.el (mm-inline-image-emacs): Support image resizing.
8825
8826         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
8827         function.
8828
8829         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
8830         resize choice.
8831
8832 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8833
8834         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
8835         beginning of the buffer.
8836
8837         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
8838         article buffer again.
8839
8840         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
8841
8842         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
8843         when it's at the start of the buffer.
8844
8845         * shr.el (shr-tag-blockquote): Convert name.
8846         (shr-rescale-image): Use the right image-size variant.
8847
8848         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
8849         buffer isn't shown, then select the current article first instead of
8850         bugging out.
8851         (gnus-summary-select-article-buffer): Show both the article and summary
8852         buffers again.
8853
8854         * shr.el (shr-fontize-cont): Protect against regions with no text.
8855         Rename tag functions to shr-tag-* for enhanced security.
8856         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
8857
8858 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
8859
8860         * shr.el (shr-insert):
8861         * pop3.el (pop3-movemail):
8862         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
8863         loaded.
8864
8865 2010-10-03  Glenn Morris  <rgm@gnu.org>
8866
8867         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
8868
8869         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
8870
8871         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
8872
8873         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
8874
8875         * gnus-util.el (gnus-make-local-hook): Simplify.
8876
8877 2010-10-02  Julien Danjou  <julien@danjou.info>
8878
8879         * gnus-util.el (gnus-iswitchb-completing-read): New function.
8880         (gnus-ido-completing-read): New function.
8881         (gnus-emacs-completing-read): New function.
8882         (gnus-completing-read): Use gnus-completing-read-function.
8883         Add gnus-completing-read-function.
8884
8885 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8886
8887         * shr.el (shr-insert-document): Autoload.
8888         (shr-img): Be silent.
8889         (shr-insert): Add a newline after every picture before text.
8890         (shr-add-font): Use overlays for combining faces.
8891         (shr-insert): Pass upwards the text start point.
8892
8893         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
8894         possible.
8895         (mm-shr): New function.
8896
8897 2010-10-02  Julien Danjou  <julien@danjou.info>
8898
8899         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
8900         should go backward.
8901
8902 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
8903
8904         * shr.el (shr): Fix typo in provide call.
8905
8906 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8907
8908         * shr.el: New file.
8909
8910         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
8911
8912         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
8913         completing read.
8914
8915 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8916
8917         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
8918         we're being queried about.  Suggested by Dan Jacobson.
8919
8920         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
8921         Suggested by Jason Eisner.
8922
8923         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
8924         table, too.  Suggested by Stefan Wiens.
8925         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
8926         the table unnecessary.  Suggested by Stefan Wiens.
8927
8928         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
8929         longer needed, and probably doesn't work either, as pointed out by
8930         Stefan Wiens.
8931         (gnus-summary-exit): Remove call to the clearing function.
8932         (gnus-summary-exit-no-update): Ditto.
8933
8934         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
8935         instead of gnus-eval-in-buffer-window to avoid popping up frames.
8936         Reported by Stefan Monnier.
8937         (gnus-summary-save-in-rmail): Ditto.
8938
8939         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
8940         article buffer, instead of both the article buffer and the summary
8941         buffer.  Sort of suggested by Dan Jacobson.
8942
8943         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
8944
8945         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
8946         Suggested by Dan Jacobson.
8947
8948         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
8949         documentation clearer.
8950
8951         * message.el (message-shorten-references): Comment on the number "21".
8952         Suggested by Stefan Monnier.
8953
8954         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
8955         Suggested by Dan Jacobson.
8956
8957         * gnus.el (gnus-large-newsgroup):
8958         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
8959
8960         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
8961         externalize attachments.  Bug reported by Steve Wen.
8962
8963         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
8964         really message anything to the user.
8965
8966         * nnmail.el (nnmail-article-group): Allow using the fancy split method
8967         directly.
8968
8969         * nnimap.el (nnimap-request-group): Low higher than high to signal no
8970         messages in empty groups.
8971
8972 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
8973
8974         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
8975         non-UIDNEXT group.
8976
8977 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8978
8979         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
8980         not the value from the collection.
8981
8982         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
8983         values.  This sometimes happens on some groups that have no info.
8984         (nnimap-request-newgroups): New function.
8985
8986 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
8987
8988         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
8989         check into `gnus-registry-initialize'.
8990         (gnus-registry-initialize): Ditto.
8991         Fix and extend header docs.
8992
8993 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8994
8995         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
8996         regexp backtrace overflows.
8997
8998         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
8999         for starttls that tls.el implements; i.e. openssl.
9000
9001         * tls.el (tls-starttls-switches): Give up on using starttls with
9002         gnutls-cli.
9003         (tls-program): Add --insecure to be consistent with the defaults from
9004         openssl s_client.  Now all three commands are insecure.
9005
9006 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9007
9008         * lpath.el: Bind completion-styles-alist for XEmacs.
9009
9010         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
9011         (gravatar-create-image): New function that's an alias to
9012         gnus-xmas-create-image, gnus-create-image, or create-image.
9013         (gravatar-data->image): Use it.
9014
9015 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
9016
9017         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
9018         install the nnregistry refer method.
9019         (gnus-registry-install-hooks): Use it.
9020         (gnus-registry-unfollowed-groups): Add nnmairix to the default
9021         unfollowed groups.
9022
9023 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
9024
9025         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
9026         expanding threads.
9027
9028 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9029
9030         * nnir.el: Use the server names without suffixes (bug #7009).
9031
9032         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
9033         unencrypted to STARTTLS, if possible.
9034
9035 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
9036
9037         * message.el (message-ignored-supersedes-headers): Strip Injection-*
9038         headers before superseding.
9039
9040 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9041
9042         * nnrss.el (nnrss-use-local): Add documentation.
9043
9044         * nnimap.el (nnimap-extend-tls-programs): New function.
9045         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
9046         (nnimap-wait-for-connection): Accept the greeting from the stupid
9047         output from openssl s_client -starttls, too.
9048
9049         * tls.el (tls-starttls-switches): New variable.
9050         (tls-find-starttls-argument): Use it.
9051         (open-tls-stream): Ditto.
9052
9053         * netrc.el (netrc-credentials): Return the value of the "default" entry.
9054         (netrc-machine): Ditto.
9055
9056         * nnimap.el (nnimap-find-article-by-message-id): Really return the
9057         article number.
9058         (nnimap-split-fancy): New variable.
9059         (nnimap-split-incoming-mail): Use it.
9060
9061         * nntp.el (nntp-server-list-active-group): Document.
9062
9063         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
9064         SELECT to get the message-id.
9065
9066         * mail-source.el (mail-sources): Remove webmail support.
9067         (defvar): Ditto.
9068         (mail-source-fetcher-alist): Ditto.
9069         (mail-source-fetch-webmail): Remove.
9070
9071         * webmail.el: Remove -- doesn't seem relevant any more.
9072
9073         * gnus.el: Fix up make-obsolete-variable declarations throughout.
9074
9075         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
9076         the \r.
9077
9078 2010-09-30  Julien Danjou  <julien@danjou.info>
9079
9080         * gnus-agent.el (gnus-agent-add-group): Fix call to
9081         gnus-completing-read.
9082
9083 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9084
9085         * nndoc.el (nndoc-retrieve-groups): New function.
9086
9087         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
9088         `default', use nnmail-split-methods.
9089         (nnimap-request-article): Downcase the NILs so that they are nil.
9090
9091         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
9092         symbol.
9093
9094         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
9095         code, since if the user has requested network, that's what they ought
9096         to get.
9097         (nnimap-request-set-mark): Erase the buffer before issuing commands.
9098         (nnimap-split-rule): Mark as obsolete.
9099
9100         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
9101         New variable.
9102
9103         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
9104         correct slot, too.
9105
9106 2010-09-29  Julien Danjou  <julien@danjou.info>
9107
9108         * gnus.el (gnus-local-domain): Declare variable obsolete.
9109
9110         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
9111         Fix history computing.
9112         (gnus-ido-completing-read): Require ido.
9113
9114 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9115
9116         * gnus-registry.el: Don't prompt on load, which makes it impossible to
9117         build Gnus.
9118
9119         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
9120         when interpreting the structures.
9121         (nnimap-request-accept-article): Add \r\n to the lines to make this
9122         work with Cyrus.
9123
9124         * nndraft.el (nndraft-request-expire-articles): Use the group name
9125         instead if "nndraft".  Fix found by Nils Ackermann.
9126
9127 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
9128
9129         * nnregistry.el: Add.
9130
9131 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9132
9133         * nnmail.el (group, group-art-list, group-art):
9134         Remove unneeded directives.
9135
9136 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9137
9138         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
9139         (mm-mime-charset):
9140         * rfc2047.el (rfc2047-syntax-table):
9141         * utf7.el (utf7-utf-16-coding-system): Comment fix.
9142
9143         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
9144         rather than `insert-file-contents' and `eval-region'.
9145
9146         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
9147         construction.
9148
9149         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
9150
9151         * time-date.el: No need to require cl for Emacs 21.
9152
9153 2010-09-29  Julien Danjou  <julien@danjou.info>
9154
9155         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
9156         replacement of `gnus-gravatar-relief' to mimic
9157         `gnus-faces-properties-alist'.
9158         Add :version property.
9159
9160 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9161
9162         * mail-source.el (mail-source-report-new-mail):
9163         * message.el (message-default-mail-headers):
9164         * mm-decode.el (mm-valid-image-format-p): Comment fix.
9165
9166         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
9167
9168 2010-09-28  Julien Danjou  <julien@danjou.info>
9169
9170         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
9171         mail-address contains the same string as real-name.
9172
9173         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
9174         non-blank in header, otherwise it'll get stripped.
9175
9176         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
9177         real-name, and then for mail address rather than doing : or , search.
9178
9179 2010-09-27  Julien Danjou  <julien@danjou.info>
9180
9181         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
9182         right completing-read function.
9183         (gnus-use-ido): New variable
9184         (gnus-completing-read-with-default): Remove.
9185         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
9186         (gnus-agent-add-group):
9187         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
9188         * mm-view.el (mm-view-pkcs7-decrypt):
9189         * mm-util.el (mm-codepage-setup):
9190         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9191         * mml-smime.el (mml-smime-openssl-sign-query):
9192         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
9193         (mml-insert-multipart):
9194         * gnus-msg.el (gnus-summary-yank-message):
9195         * gnus-int.el (gnus-start-news-server):
9196         * mm-decode.el (mm-interactively-view-part):
9197         * gnus-dired.el (gnus-dired-attach):
9198         * gnus.el (gnus-read-method):
9199         * gnus-bookmark.el (gnus-bookmark-jump):
9200         * gnus-art.el (gnus-mime-view-part-as-type)
9201         (gnus-mime-action-on-part, gnus-article-encrypt-body):
9202         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
9203         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
9204         * nnmairix.el (nnmairix-create-server-and-default-group)
9205         (nnmairix-update-groups, nnmairix-get-server)
9206         (nnmairix-backend-to-server, nnmairix-goto-original-article)
9207         (nnmairix-get-group-from-file-path):
9208         * nnrss.el (nnrss-find-rss-via-syndic8):
9209         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
9210         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
9211         (gnus-group-browse-foreign-server):
9212         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
9213         (gnus-summary-execute-command, gnus-summary-respool-article)
9214         (gnus-read-move-group-name):
9215         * gnus-score.el (gnus-summary-increase-score)
9216         (gnus-summary-score-effect):
9217         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
9218
9219 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9220
9221         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
9222         x-focus-frame.
9223
9224         * nnimap.el (auth-source-forget-user-or-password)
9225         (auth-source-user-or-password): Autoload.
9226
9227         * message.el (message-from-style, message-interactive)
9228         (message-cite-prefix-regexp, message-sendmail-envelope-from)
9229         (message-yank-prefix, message-indentation-spaces, message-signature)
9230         (message-signature-file): Add comment.
9231
9232 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9233
9234         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
9235         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
9236         new articles.
9237
9238         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
9239         parts.
9240         (nnimap-request-article): Work with the t setting, too.
9241
9242         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
9243         that you don't get flashes of other buffers.
9244         (gnus-summary-show-complete-article): Intern before setting.
9245
9246 2010-09-27  David Engster  <dengste@eml.cc>
9247
9248         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
9249         well as HEADERS.
9250         (nnmairix-retrieve-headers): Provide new argument for the above.
9251
9252 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9253
9254         * gnus-sum.el (gnus-summary-move-article): Don't alter
9255         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
9256         group.
9257
9258         * nnimap.el (nnimap-update-info): Don't destructively alter active.
9259
9260         * message.el (message-cite-prefix-regexp): Revert my last edit.
9261
9262         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
9263         variable instead of the Gnus variable.
9264
9265         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
9266
9267         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
9268
9269         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
9270         since some servers don't like it.
9271         (nnimap-open-connection): Forget credentials if the server says the
9272         password was wrong.
9273         (nnimap-parse-line): Protect against invalid data.
9274
9275         * gnus-sum.el (gnus-summary-move-article): Add comment.
9276         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
9277         nothing alters it while scanning for new messages.
9278
9279         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
9280         which may or may not help.
9281         (nnimap-open-connection): If we're doing a stream connection, and then
9282         discover we're on a STARTTLS-capable server, then open a STARTTLS
9283         connection instead.
9284
9285 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9286
9287         * nnimap.el (utf7): Require.
9288
9289         * message.el (message-cite-prefix-regexp): Remove "}" from citation
9290         prefix.
9291
9292 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
9293
9294         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
9295
9296 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9297
9298         * nnimap.el (nnimap-request-accept-article): Message the error on
9299         error.
9300
9301 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9302
9303         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
9304
9305 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9306
9307         * nndoc.el (nndoc-request-list): Return success always.
9308
9309         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
9310         `fetch-old' -- we only want to fetch the articles we've requested.
9311         The rest are in the agent, probably.
9312         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
9313         disappeared server" to something low.  It's not important.
9314
9315         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
9316         arrived before the FETCH data.
9317
9318         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
9319         target here, because we don't know the Gnus name of the group.
9320
9321         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
9322         for the correct group.
9323
9324         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
9325
9326         * gnus.el (gnus): Give a final warning after startup.
9327
9328         * gnus-util.el (gnus-action-message-log): New variable.
9329         (gnus-message): Use it.
9330         (gnus-final-warning): New function.
9331
9332         * nnimap.el (nnimap-open-connection): Record the greeting.
9333         (nnimap): Add greeting.
9334
9335 2010-09-26  Julien Danjou  <julien@danjou.info>
9336
9337         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
9338         arguments.
9339         (gnus-html-wash-images): Fix spec computing to include start/end.
9340
9341         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
9342
9343 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9344
9345         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
9346         deletion.
9347         (nnimap-retrieve-headers): Don't select the group, because that's
9348         already done by nnimap-possibly-change-group.
9349
9350         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
9351         (gnus-picon-transform-address): Use it.
9352
9353         * mail-source.el (mail-source-value): Revert previous patch.
9354
9355         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
9356         on failure.
9357         (nnimap-open-connection): Look up both virtual and physical server name
9358         credentials.
9359
9360         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
9361
9362 2009-02-07  Dave Love  <fx@gnu.org>
9363
9364         * tls.el (open-tls-stream): Don't query killing process.
9365
9366 2009-02-08  Dave Love  <fx@gnu.org>
9367
9368         * gnus-win.el (gnus-window-to-buffer-helper)
9369         (gnus-all-windows-visible-p): Function needn't be a symbol.
9370
9371         * mail-source.el (mail-source-value): Function needn't be a symbol.
9372
9373 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9374
9375         * message.el (message-cite-prefix-regexp): Remove } from the cite
9376         prefix.
9377
9378         * gnus-art.el (gnus-treatment-function-alist): Do picons before
9379         highlight again, so that the highlight is correct.
9380
9381         * gnus-picon.el (gnus-picon): Remove again.
9382         (gnus-picon-create-glyph): Set the background XPM color explicitly.
9383
9384         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
9385         doing the header highlightling, so that the background color of the
9386         picon is correct.
9387
9388         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
9389         (gnus-picon): Ditto.
9390         (gnus-picon): Reinstate.  The background color for picons is white.
9391         (gnus-picon-insert-glyph): Make the background white.
9392
9393         * nnml.el (nnml-open-nov): Don't return dead buffers.
9394
9395         * auth-source.el (auth-source-create): Query the user for whether to
9396         store the credentials.
9397
9398         * netrc.el (netrc-store-data): New function.
9399
9400         * auth-source.el (auth-source-user-or-password): Use the existing auth
9401         sources, if any, for creation.
9402
9403         * gnus.el (gnus-group-fast-parameter): Return the last matching
9404         parameter instead of the first matching parameter.
9405
9406 2010-09-26  Julien Danjou  <julien@danjou.info>
9407
9408         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
9409
9410 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9411
9412         * mml2015.el (mml2015-use): Remove gpg support.
9413
9414         * mml1991.el (mml1991-function-alist): Remove gpg function.
9415         (mml1991-gpg-sign): Remove.
9416
9417 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
9418
9419         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
9420         (gnus-browse-unsubscribe-current-group): Document it.
9421         (gnus-browse-unsubscribe-group): Use it.
9422
9423 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9424
9425         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
9426         address to the To list for easier response.
9427
9428         * gnus.el (gnus-play-startup-jingle): Remove.
9429         (gnus-splash): Don't play jingle.
9430         (gnus): Silence gnus-load message.
9431
9432         * gnus-art.el (gnus-treat-play-sounds): Remove.
9433
9434         * gnus.el (gnus-play-jingle): Remove audio support.
9435
9436         * gnus-cus.el (gnus-score-customize): Remove audio reference.
9437
9438         * earcon.el: Remove -- no users.
9439
9440         * gnus-audio.el: Remove -- no users of this package.
9441
9442         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
9443
9444         * gnus-start.el (gnus-setup-news): Remove nocem support.
9445
9446         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
9447
9448         * gnus.el (gnus-use-nocem): Remove.
9449
9450         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
9451         Remove.
9452
9453         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
9454         uses NoCeM any more.
9455
9456         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
9457         (gnus-button-ctan-handler): Ditto.
9458         (gnus-button-handle-ctan-bogus-regexp): Ditto.
9459         (gnus-button-ctan-directory-regexp): Ditto.
9460         (gnus-button-handle-ctan): Ditto.
9461         (gnus-button-tex-level): Ditto.
9462         (gnus-button-alist): Remove CTAN stuff.
9463
9464 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9465
9466         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
9467         nnimap-streaming test.
9468
9469         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
9470         servers twice.
9471
9472         * nnimap.el (nnimap-open-connection): Add more error reporting when
9473         nnimap fails early.
9474
9475         * nnheader.el (nnheader-get-report-string): New function.
9476         (nnheader-get-report): Use it.
9477
9478         * gnus-int.el (gnus-check-server): Say what the error was when opening
9479         failed.
9480
9481         * nnimap.el (nnimap-wait-for-response): Search further when we're not
9482         using streaming.
9483
9484 2010-09-25  Julien Danjou  <julien@danjou.info>
9485
9486         * gnus-html.el (gnus-html-rescale-image): Use our defalias
9487         gnus-window-inside-pixel-edges.
9488
9489 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9490
9491         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
9492
9493         * mm-decode.el (mm-save-part): Allow saving to other directories the
9494         normal Emacs way.
9495
9496         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
9497         Suggested by Jay Berkenbilt.
9498
9499         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
9500         there isn't a single byte.
9501
9502         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
9503         just do it.  It doesn't really seem to matter what the user responds
9504         here, I think, so it's just a confusing question.
9505
9506         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
9507         non-streaming case.
9508
9509         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
9510         (gnus-article-encrypt-body): Use it.
9511
9512         * gnus-sum.el (gnus-summary-show-complete-article): New command and
9513         keystroke.
9514
9515         * nnimap.el (nnimap-find-wanted-parts-1):
9516         Use gnus-fetch-partial-articles.
9517
9518         * gnus-art.el (gnus-fetch-partial-articles): New variable.
9519
9520         * nnimap.el (nnimap-insert-partial-structure): New function.
9521         (nnimap-get-partial-article): New function.
9522         (nnimap-request-article): Use it.
9523         (nnimap-wait-for-response): Return whether the wait was successful.
9524         (nnimap-finish-retrieve-group-infos): Don't do anything if the
9525         retrieval wasn't successful.
9526         (nnimap-retrieve-group-data-early): Allow throttling servers.
9527         (nnimap-streaming): New variable.
9528         (nnimap-fetch-partial-articles): Remove.
9529
9530         * mm-decode.el (mm-with-part): Protect against killed buffers.
9531
9532         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
9533         for prettier summary display.
9534
9535 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
9536
9537         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
9538
9539 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9540
9541         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
9542         apparently third-party libraries depend on it.
9543
9544         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
9545         before starting negotiation.
9546
9547         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
9548         privacy reasons.
9549         (gnus-treat-mail-gravatar): Ditto.
9550
9551         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
9552         buffer when inserting images.  Inserting text into the headers, for
9553         instance, can make them invalid.
9554
9555 2010-09-25  Julien Danjou  <julien@danjou.info>
9556
9557         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
9558         variables.
9559
9560         * nnheader.el: Remove useless variables news-reply-yank-from and
9561         news-reply-yank-message-id.
9562
9563         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
9564         variables.
9565
9566         * mml1991.el: Remove useless mml1991-verbose.
9567
9568         * gnus.el: Remove useless variable gnus-use-generic-from.
9569         Remove obsolete variable gnus-topic-indentation.
9570
9571         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
9572
9573         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
9574
9575         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
9576
9577         * gnus-group.el: Remove useless gnus-group-icon-cache.
9578         Remove useless gnus-ephemeral-group-server.
9579
9580         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
9581
9582         * mml2015.el: Remove useless mml2015-verbose.
9583
9584         * mml-smime.el: Remove useless mml-smime-verbose.
9585
9586         * gnus.el: Remove useless gnus-local-domain.
9587
9588         * gnus-gravatar.el (gnus-gravatar-transform-address):
9589         Use gnus-gravatar-size.
9590
9591         * gnus-art.el: Remove useless gnus-treat-translate.
9592
9593 2010-09-24  Julien Danjou  <julien@danjou.info>
9594
9595         * gnus-sum.el: Add support for Gravatars.
9596
9597         * gnus-art.el: Add support for Gravatars.
9598
9599         * gnus-gravatar.el: Add this file.
9600
9601         * gravatar.el: Add this file.
9602
9603 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9604
9605         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
9606
9607         * gnus-group.el (gnus-group-fetch-faq): Remove.
9608
9609         * gnus.el (gnus-group-faq-directory): Remove.
9610
9611         * gnus-group.el (gnus-group-fetch-charter): Remove.
9612
9613         * gnus.el (gnus-group-charter-alist): Remove.
9614
9615         * gnus-group.el (gnus-group-archive-directory): Remove.
9616         (gnus-group-recent-archive-directory): Ditto.
9617         (gnus-group-make-archive-group): Remove.
9618
9619         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
9620
9621         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
9622         use the same article number for all the cached articles.
9623
9624         * nnimap.el (nnimap-command): Register the last command time so
9625         that we can use it for idling NOOPs.
9626         (nnimap-open-connection): Start the keeplive timer.
9627         (nnimap-make-process-buffer): Store all the process buffers.
9628         (nnimap-keepalive): New function.
9629
9630         * starttls.el (starttls-open-stream): Add autoload cookie.
9631
9632 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9633
9634         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
9635         handling.
9636
9637 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9638
9639         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
9640         its data structures.
9641
9642         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
9643         instead of the cl.el copy-list.
9644         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
9645         equalp.
9646
9647 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9648
9649         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
9650         and tool-bar-local-item-from-menu.
9651
9652         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
9653         mode-line-highlight face for Emacs.
9654
9655         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
9656         loading gnus-sum.elc; fix comment for canlock-verify.
9657         (gnus-article-jump-to-part): Use read-number.
9658         (gnus-insert-mime-button, gnus-insert-mime-security-button):
9659         Remove Emacs pre-21 compatible code for help-echo.
9660         (gnus-article-next-page-1): No need to adjust the number of lines.
9661         (gnus-article-describe-bindings): Always use help-buffer.
9662
9663         * gnus-audio.el (gnus-audio-inline-sound):
9664         * gnus-cus.el (gnus-custom-mode):
9665         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
9666
9667         * gnus-sum.el (gnus-remove-overlays): Doc fix.
9668
9669         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
9670         compatible code.
9671
9672 2010-09-24  Glenn Morris  <rgm@gnu.org>
9673
9674         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
9675         visiting the fcc file in rmail-mode.
9676
9677         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
9678
9679 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9680
9681         * nnir.el: Silence the byte compiler.
9682
9683         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
9684         alias to browse-url-url-encode-chars if any.
9685         (gnus-html-encode-url): Use it.
9686
9687 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9688
9689         * gnus-start.el (gnus-use-backend-marks): New variable.
9690         (gnus-get-unread-articles-in-group): Use it.
9691
9692         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
9693         makeover.
9694
9695 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9696
9697         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
9698
9699 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9700
9701         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
9702         Remove.
9703         (gnus-setup-news-hook):
9704         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
9705
9706         * gnus-int.el (gnus-request-update-info): Protect against backends not
9707         having the function.
9708
9709         * nnimap.el (nnimap-stream): Mention starttls.
9710         (nnimap-open-connection): Add starttls support.
9711
9712 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9713
9714         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
9715
9716 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9717
9718         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
9719         BODYSTRUCTUREs.
9720         (nnimap-transform-headers): Unfold quoted {42} headers.
9721
9722         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
9723         the info.
9724         (gnus-get-unread-articles): Only call updatep on backends that support
9725         it.
9726
9727         * nnweb.el (nnweb-request-update-info): NOOP.
9728
9729         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
9730
9731         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
9732         since it only deals with marks.
9733
9734         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
9735         gnus-request-marks, and make a new gnus-request-update-info.
9736
9737         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
9738         the active instead of the high number, which is usually too low.
9739
9740 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
9741
9742         * netrc.el (netrc-parse): Remove encrypt.el mentions.
9743         * encrypt.el: Remove.
9744
9745 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9746
9747         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
9748         server in symbolic form.
9749
9750         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
9751
9752 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9753
9754         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
9755         (nnimap-update-info): Fix up code slightly.
9756
9757         * gnus-int.el (gnus-open-server): Add tracing for performance
9758         debugging.
9759
9760         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
9761         (gnus-group-insert-group-line): Pass the real group name so that it
9762         gets the right data.
9763
9764         * gnus-start.el (gnus-get-unread-articles): Don't have
9765         `gnus-get-unread-articles-in-group' update info, since that can be
9766         really slow and doesn't seem to be needed?
9767
9768 2010-09-22  Dan Christensen  <jdc@uwo.ca>
9769
9770         * time-date.el (date-to-time): Try using parse-time-string first before
9771         using the slower timezone-make-date-arpa-standard.
9772
9773 2010-09-22  Julien Danjou  <julien@danjou.info>
9774
9775         * gnus-group.el (gnus-group-insert-group-line):
9776         Call gnus-group-highlight-line.
9777         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
9778         default hook list.
9779         (gnus-group-update-eval-form): Add new function.
9780         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
9781         (gnus-group-get-icon): Use gnus-group-update-eval-form.
9782
9783 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9784
9785         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
9786         immediate, then expire all articles.
9787         (nnimap-update-info): Fix off-by-one errors.
9788         (nnimap-flags-to-marks): Would return no marks lists for group with no
9789         flags.  Instead return the other data.
9790
9791 2010-09-22  Julien Danjou  <julien@danjou.info>
9792
9793         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
9794         Only return an icon.
9795         (gnus-group-insert-group-line): Compute icon to return.
9796
9797         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
9798         (gnus-html-image-fetched): Only cache if
9799         gnus-html-image-automatic-caching is set.
9800         (gnus-html-image-fetched): Check for errors.
9801
9802 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9803
9804         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
9805         once per method on `g'.  This ensures that backends like nnfolder don't
9806         open all their folders.
9807
9808         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
9809         (nnimap-request-list): Nix out group in the correct buffer.
9810         (nnimap-parse-flags): Implement by using `read' instead of
9811         hand-parsing.
9812         (nnimap-flags-to-marks): Pass on permanent-flags.
9813         (nnimap-make-process-buffer): Record the server name.
9814         (nnimap-parse-flags): Fix typo.
9815         (nnimap-request-scan): Run split on the server in general, not just a
9816         single group.
9817
9818         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
9819         parameter, and propagate this downwards.
9820
9821         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
9822         since EXAMINE changes it on the server.
9823
9824         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
9825         this command might take a while.
9826
9827 2010-09-22  Julien Danjou  <julien@danjou.info>
9828
9829         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
9830         harmful if you have 2 images side-by-side, they can't be properly
9831         update on text deletion.  Using text-property is safer here.
9832         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
9833         data.
9834
9835 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9836
9837         * nnimap.el (nnimap-expunge-inbox): Remove.
9838         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
9839         (nnimap-expunge): Flip default to t.
9840
9841         * gnus.el (gnus-method-to-server): Don't push things to the cache
9842         unless it's unique.
9843         (gnus-server-to-method): Ditto.
9844
9845 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
9846
9847         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
9848
9849 2010-09-22  Julien Danjou  <julien@danjou.info>
9850
9851         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
9852         get the start of data.
9853         (gnus-html-encode-url): Add this function to encode special chars in
9854         URL.
9855         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
9856         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
9857
9858         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
9859         default.
9860         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
9861
9862         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
9863         images alt-text.
9864         (gnus-html-put-image): Put alt-text as help-echo.
9865
9866 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9867
9868         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
9869         * mm-util.el (mm-decompress-buffer):
9870         * nnir.el (nnir-run-find-grep):
9871         * pop3.el (pop3-list): Use 3rd arg of split-string.
9872
9873         * time-date.el (format-seconds): Comment fix.
9874
9875         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
9876         and byte-optimize-form-code-walker.
9877         (dgnushack-make-auto-load): Don't advise make-autoload.
9878
9879         * lpath.el: Remove Emacs 21 stuff.
9880
9881 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9882
9883         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
9884         outside the active range.  Suggested by Dan Christensen.
9885
9886         * gnus-start.el (gnus-get-unread-articles): Get the extended method
9887         slightly later to avoid double-getting it.
9888
9889         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
9890         previous patch.
9891
9892         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
9893
9894 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
9895
9896         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
9897
9898 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9899
9900         * gnus-int.el (gnus-open-server): Give a better error message in the
9901         "go offline" case.
9902
9903         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
9904         marks for nnimap, which is seldom the right thing to do.
9905
9906         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
9907         (gnus-same-method-different-name): New function.
9908
9909         * nnimap.el (parse-time): Require.
9910
9911         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
9912         method in the presence of many similar methods.
9913
9914         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
9915
9916         * nnimap.el (nnimap-find-expired-articles): Don't refer to
9917         nnml-inhibit-expiry.
9918
9919         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
9920         find out whether methods are equal.
9921
9922         * nnimap.el (nnimap-find-expired-articles): New function.
9923         (nnimap-process-expiry-targets): New function.
9924         (nnimap-request-move-article): Request the article before looking at
9925         what the Message-ID is.  Fix found by Andrew Cohen.
9926         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
9927
9928         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
9929         for oldness in addition to being a predicate.
9930
9931         * nnimap.el (nnimap-request-group): When we have zero articles, return
9932         the right data to Gnus.
9933         (nnimap-request-expire-articles): Only delete articles immediately if
9934         the target is 'delete.
9935
9936         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
9937         method, this would bug out.
9938
9939         * gnus-group.el (gnus-group-expunge-group): Rename from
9940         gnus-group-nnimap-expunge, and implemented as a normal interface
9941         function.
9942
9943         * gnus-int.el (gnus-request-expunge-group): New function.
9944
9945         * nnimap.el (nnimap-request-create-group): Implement.
9946         (nnimap-request-expunge-group): New function.
9947
9948 2010-09-21  Julien Danjou  <julien@danjou.info>
9949
9950         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
9951         (gnus-html-cache-expired): Add new function.
9952         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
9953         wethever we should display image for fetch it.
9954         Compute alt-text earlier to pass it to the fetching function too.
9955         (gnus-html-schedule-image-fetching): Change function argument to only
9956         get one image at a time, not a list.
9957         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
9958         cache.
9959         (gnus-html-get-image-data): New function to retrieve image data from
9960         cache.
9961         (gnus-html-put-image): Change buffer argument to use image data rather
9962         than file, and place image above region rather than inserting a new
9963         one.  Do not take alt-text as argument, since it's useless now: we place
9964         the image above alt-text.
9965         (gnus-html-prune-cache): Remove.
9966         (gnus-html-show-images): Start to fetch image when we find one, do not
9967         push into a temporary list.
9968         (gnus-html-prefetch-images): Only fetch image if they have expired.
9969         (gnus-html-browse-image): Fix, use 'gnus-image-url.
9970         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
9971
9972 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9973
9974         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
9975
9976 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9977
9978         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
9979         spec inser "*" if the group isn't active instead of 0.
9980
9981         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
9982         opening the server.
9983         (nnimap-request-delete-group): Implement group deletion.
9984         (nnimap-transform-headers): Return the size of the entire message in
9985         the Bytes header, not just the size of the first part.
9986         (nnimap-request-move-article): When moving an article from nnimap,
9987         request the article first so the accepting form has an article to
9988         accept.  Reported by Dan Christensen.
9989         (nnimap-command): Make sure that the error message doesn't error out.
9990
9991 2010-09-20  David Edmondson  <dme@dme.org>
9992
9993         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
9994         we haven't requested anything.
9995
9996 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9997
9998         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
9999         "".  Fix found by Andrew Cohen.
10000
10001         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
10002         instead of -encode-string.
10003
10004 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10005
10006         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
10007
10008         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
10009         by mm-subst-char-in-string.
10010
10011 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10012
10013         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
10014         waiting for the connection string.
10015
10016         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
10017         arriving.
10018
10019         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
10020         bogus characters.  This allows selecting certain Gmail groups.
10021
10022         * nnimap.el (nnimap-find-wanted-parts-1): New function.
10023         (nnimap-fetch-partial-articles): New variable.
10024         (nnimap-open-connection): When looking for credentials, also use the
10025         nnimap-server-port.
10026         (nnimap-request-article): Return the group/article number, so that Gnus
10027         `^' works as expected.
10028         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
10029
10030         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
10031         comments.
10032         (gnus-methods-sloppily-equal): New function.
10033         (gnus): When using the development version of Gnus, load the gnus-load
10034         file.
10035
10036         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
10037         `gnus-open-server' on each method before trying to scan them etc.
10038         This ensures that all the backend parameters are set correctly.
10039
10040         * nnimap.el (nnimap-authenticator): New variable.
10041         (nnimap-open-connection): Allow anonymous login.
10042         (nnimap-transform-headers): The chars header is called Chars not Bytes.
10043         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
10044
10045         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
10046         patch, found by Knut Anders Hatlen.
10047
10048 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
10049
10050         * gnus-agent.el (gnus-agent-batch-confirmation)
10051         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
10052         to gnus-message.
10053         * gnus-art.el (gnus-article-describe-briefly): Likewise.
10054         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
10055         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
10056         * gnus-int.el (gnus-open-server): Likewise.
10057         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
10058         (gnus-score-check-syntax): Likewise.
10059         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
10060         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
10061         Likewise.
10062         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
10063
10064 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10065
10066         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
10067         calling conventions so that prefetch doesn't bug out.
10068
10069 2010-09-19  Julien Danjou  <julien@danjou.info>
10070
10071         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
10072         rather than `subst-char-in-region' in order to be able to replace ASCII
10073         char by UTF-8 ones.
10074
10075         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
10076         than curl.
10077         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
10078         the right URL and ALT text on images.
10079         (gnus-html-wash-tags): Fix tag case.
10080         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
10081         (gnus-article-html): Add -o display_ins_del=2 option.
10082         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
10083
10084 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10085
10086         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
10087         the extra mail headers, which sometimes seem to happen for unknown
10088         reasons.
10089
10090         * mail-parse.el (mail-header-encode-parameter): Define as
10091         rfc2045-encode-string instead of as rfc2231-encode-string, since some
10092         (or most, perhaps?) mail readers don't understand the latter, but do
10093         understand the former.
10094
10095         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
10096         to nil, so that no methods are automatically agentized.  I think this
10097         is probably what most users want.
10098
10099         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
10100         from url-retrieve, for instance about invalid URLs.
10101
10102         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
10103         groups that have no articles.
10104         (nnimap-request-article): Check that we really got an article when we
10105         requested one.
10106
10107         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
10108         doesn't exist.
10109
10110         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
10111         nntp buffer so the agent can save it.
10112         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
10113         that CRLF doesn't get translated to \n.
10114         (nnimap-open-connection): Don't make 'shell commands only send \n.
10115
10116 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10117
10118         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
10119         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
10120         Update var name.
10121         (nnml-generate-nov-file): Use dolist.
10122         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
10123         Use with-current-buffer.
10124
10125 2010-09-18  Julien Danjou  <julien@danjou.info>
10126
10127         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
10128         parallel.
10129
10130 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10131
10132         * nnimap.el (nnimap-update-info): When doing partial marks update, get
10133         the range update right.
10134         (nnimap-request-group): Don't make `M-g' bug out on group with no
10135         marks.
10136         (nnoo): Require, so that other packages can require nnimap.
10137         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
10138         command we're looking for.  This helps when the server sends more
10139         responses after we've gotten everything we expected.
10140         (nnimap): Add a `newlinep' field to keep track of end-of-line
10141         conventions.
10142         Don't send CRLF to things that don't want it.
10143         (nnimap-request-accept-article): Ditto.
10144
10145 2010-09-18  Julien Danjou  <julien@danjou.info>
10146
10147         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
10148         than curl to retrieve images.
10149
10150 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10151
10152         * nnimap.el (nnimap-update-info): Extend the info so that we can set
10153         the marks.
10154         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
10155         (nnimap-wait-for-connection): New function.
10156         (nnimap-open-connection): If we have PREAUTH, don't query for login
10157         credentials.
10158         (nnimap-update-info): Fix off-by-one error when concatenating ranges
10159         when doing a partial update.
10160
10161 2010-09-18  Julien Danjou  <julien@danjou.info>
10162
10163         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
10164         tags.
10165
10166 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10167
10168         * nnimap.el (nnimap-credentials): New function.
10169         (nnimap-open-connection): Use the new function to look for credentials
10170         also on the numeric equivalents of "imap" and "imaps".
10171
10172         * gnus-start.el (gnus-activate-group): Send the info to
10173         gnus-request-group.
10174
10175         * nnimap.el (nnimap-request-group): Have the "check" version of the
10176         function parse flags and update the info, so that a `M-g' get a total
10177         resync of all flags from the group.
10178
10179         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
10180         to allow backends to alter the info on group selection.  Also alter all
10181         the backend -request-group functions to take the parameter.
10182
10183         * nnimap.el (nnimap-store-info): New function.
10184         (nnimap-update-info): Store the info for later usage.
10185         (nnimap-request-group): Use the stored info for the dont-check case, so
10186         that we don't retrieve all marks when we enter a group.
10187
10188         * nnimap.el: Use deffoo instead of defun for interface functions.
10189
10190         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
10191         update the group info.  This makes the nndraft groups, for instance, go
10192         back to their old behavior.
10193
10194         * gnus-sum.el (gnus-select-newsgroup): Indent.
10195
10196         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
10197         in.
10198         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
10199         nothing.
10200
10201         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
10202         from methods that are denied.
10203
10204         * gnus-int.el (gnus-method-denied-p): New function.
10205
10206         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
10207         store the password instead of netrc.
10208         (nnimap-open-connection): Don't error out when we can't make a
10209         connections.
10210
10211         * auth-source.el (auth-source-create): In the password prompt, say what
10212         we're querying for.  Also prompt for user name if that hasn't been
10213         given.
10214
10215         * nnimap.el (nnimap-with-process-buffer): Remove.
10216
10217 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10218
10219         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
10220         method when we're reading from the agent.
10221
10222         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
10223
10224         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
10225         that's probably most useful for users.
10226
10227         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
10228         "failed" all the time.
10229
10230         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
10231         ...)) with (with-current-buffer ... ).
10232
10233         * nntp.el (nntp-open-server): Return whether the open was successful or
10234         not.
10235
10236         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
10237         select an unread unseen article first.
10238
10239         * nnimap.el (nnimap-open-connection): If the user doesn't have a
10240         /etc/services, supply some sensible port defaults.
10241
10242         * dgnushack.el: Define netrc-credentials.
10243
10244 2010-09-17  Julien Danjou  <julien@danjou.info>
10245
10246         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
10247
10248 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
10249
10250         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
10251         doesn't have any parameters.
10252
10253 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10254
10255         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
10256         only upcased checks.
10257
10258         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
10259
10260         * nnimap.el (nnimap-open-shell-stream): New function.
10261         (nnimap-open-connection): Use it.
10262         (nnimap-transform-headers): Get the number of lines in each message.
10263         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
10264         number of lines.
10265         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
10266         problem.
10267
10268         * utf7.el (utf7-encode): Autoload.
10269
10270         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
10271         to allow the mail splitting to not return a default group.  This is
10272         useful for nnimap, which will leave unmatched mail in the inbox.
10273
10274         * nnimap.el: Rewritten.
10275
10276         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
10277         nnimap usage.
10278
10279         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
10280         if the move is internal, so that nnimap can do fast internal moves.
10281
10282         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
10283         data.
10284         (gnus-read-active-for-groups): Support finishing the early retrieval of
10285         data.
10286
10287         * gnus-range.el (gnus-range-nconcat): New function.
10288
10289         * gnus-int.el (gnus-finish-retrieve-group-infos)
10290         (gnus-retrieve-group-data-early): New functions.
10291
10292 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10293
10294         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
10295         (nnrss-retrieve-groups):
10296         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
10297         (pop3-quit): Use with-current-buffer.
10298
10299 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10300
10301         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
10302         instead of nnheader-accept-process-output.
10303
10304         * dgnushack.el (dgnushack-compile): Add comment.
10305
10306         * lpath.el: No need to fbind propertize for XEmacs 21.4.
10307
10308         * gnus-html.el (gnus-html-schedule-image-fetching)
10309         (gnus-html-prefetch-images): Replace process-kill-without-query by
10310         gnus-set-process-query-on-exit-flag.
10311
10312 2010-09-16  Romain Francoise  <romain@orebokech.com>
10313
10314         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
10315
10316 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10317
10318         * gnus-registry.el (gnus-registry-install-shortcuts): The second
10319         parameter to unintern is mandatory-ish in Emacs 24.
10320
10321         * gnus-html.el (gnus-html-schedule-image-fetching)
10322         (gnus-html-prefetch-images): Check for curl before using it.
10323
10324         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
10325         depend on curl, which isn't essential.
10326
10327         * imap.el: Revert back to version
10328         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
10329         seem problematic.
10330
10331 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10332
10333         * gnus-registry.el (gnus-registry-install-shortcuts):
10334         Explicitly pass `obarray' to `unintern' to avoid a warning.
10335
10336 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10337
10338         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
10339         change.
10340
10341         * nnrss.el (nnrss-request-list): Remove this function and related
10342         functions, including the moreover stuff.
10343
10344 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10345
10346         * nnrss.el (nnrss-retrieve-groups): New function.
10347
10348 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10349
10350         * .dir-locals.el: Add no-byte-compile cookie.
10351
10352 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10353
10354         * time-date.el (format-seconds): Comment fix.
10355
10356         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
10357         for back end that doesn't support request-scan.
10358
10359 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10360
10361         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
10362         then do request scans from the backends.
10363
10364         * netrc.el (netrc-credentials): New conveniency function.
10365
10366         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
10367         avoid running a hook per line, since this takes a lot of time,
10368         profiling shows.
10369         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
10370         directly if gnus-visual-p is true.
10371
10372 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10373
10374         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
10375         groups; replace mapcar with dolist which is a bit faster; pass groups
10376         info to gnus-read-active-file-1.
10377         (gnus-read-active-file-1): Scan only specified groups if the new
10378         optional arg `infos' is given.
10379
10380 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10381
10382         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
10383
10384         * pop3.el (pop3-movemail): Remove.
10385         (pop3-streaming-movemail): Rename to pop3-movemail.
10386
10387         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
10388         don't restrict end-tag searches to the end of the line.
10389
10390 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10391
10392         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
10393         articles of every unchecked group to t, which means unknown since the
10394         server has never been opened.
10395
10396 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10397
10398         * gnus-html.el (gnus-html-show-alt-text): New command.
10399         (gnus-html-browse-image): Ditto.
10400         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
10401         to browse the image directly.
10402         (gnus-html-wash-tags): Search for images first, so that <a><img> works
10403         better.
10404
10405         * gnus-async.el (gnus-async-article-callback):
10406         Call `gnus-html-prefetch-images' unconditionally.
10407
10408         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
10409         before feeding URLs to curl.
10410
10411 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10412
10413         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
10414         internal images as deletable by `W D D'.
10415
10416         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
10417         (gnus-async-article-callback): Fix typo.
10418
10419 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10420
10421         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
10422         current line to work around bugs in the output from w3m.
10423
10424         * gnus-async.el (gnus-async-article-callback): Always prefetch images
10425         for groups that want that.
10426
10427         * nntp.el (nntp-wait-for-string): Supply a timeout for
10428         accept-process-output to ensure progress.
10429
10430         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
10431         level to get unread articles from, then use that for foreign groups,
10432         too.
10433
10434         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
10435         confuses the rest of the function.
10436
10437         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
10438         for the methods that support -retrieve-groups, too.
10439
10440         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
10441
10442 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10443
10444         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
10445         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
10446
10447         * pop3.el: Require cl when compiling.
10448         (pop3-number-of-responses): Search for "+OK", not "+OK ".
10449
10450 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10451
10452         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
10453         that aren't going to be activated.
10454         (gnus-get-unread-articles): Fix up the last commit.
10455
10456         * gnus-html.el (gnus-article-html): Allow calling without specifying
10457         the handle.  In that case, dissect the buffer first.
10458
10459         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
10460
10461         * nnimap.el (nnimap-open-connection): Revert the change that would look
10462         into authinfo for imaps instead of imap.
10463
10464         * gnus-start.el (gnus-activate-group): Take an optional parameter to
10465         say that you don't want to call gnus-request-group with don-check, but
10466         do check the reponse.  This is for virtual groups only.
10467         (gnus-get-unread-articles): Count the archive groups as secondary, so
10468         that they're activated the same way as before.
10469
10470         * imap.el (imap-message-map): Removed optional buffer parameter, since
10471         no callers use it.
10472         (imap-message-get): Ditto.
10473         (imap-message-put): Ditto.
10474         (imap-mailbox-map): Ditto.
10475         (imap-mailbox-put): Ditto.
10476         (imap-mailbox-get): Ditto.
10477         (imap-mailbox-get): Revert last change for this function.
10478
10479         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
10480         case-insensitively.
10481         (nnimap-debug): Remove.
10482
10483         * net/imap.el (imap-fetch-safe): Remove function, and alter all
10484         callers to use `imap-fetch' instead.  According to the comments, this
10485         should be safe, since all other IMAP clients use the 1:* syntax.
10486         (imap-enable-exchange-bug-workaround): Remove.
10487         (imap-debug): Remove -- doesn't seem very useful.
10488
10489         * mail-source.el (mail-source-fetch): Don't message if we're fetching
10490         mail from a file, and the file doesn't exist.
10491
10492         * imap.el (imap-log): New convenience function used throughout instead
10493         of repeating the same code all over the place.
10494
10495         * pop3.el (pop3-streaming-movemail): Return t for success.
10496
10497         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
10498         .authinfo if we're using ssl connection.
10499
10500         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
10501         already have if we're in a main Gnus `g' run.
10502
10503         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
10504
10505 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10506
10507         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
10508
10509         * nnmh.el (nnmh-request-list-1): Bind `file'.
10510
10511         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
10512         alias to set-process-query-on-exit-flag or process-kill-without-query.
10513         (pop3-open-server): Use it.
10514
10515 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10516
10517         * mail-source.el (mail-source-delete-crash-box): Always move the crash
10518         box to the Incoming file.  Fixes mistake in previous checkin.
10519
10520         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
10521         request loop (for debugging purposes) removed.
10522
10523         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
10524         culprit is more visible.
10525         (nnml-save-incremental-nov, nnml-open-incremental-nov)
10526         (nnml-add-incremental-nov): New functions to do "incremental" nov
10527         updates, where we just append to the end of the existing nov files
10528         without reading/writing them in full.
10529
10530         * mail-source.el (mail-source-delete-crash-box): Really only check the
10531         incoming files once in a while.
10532
10533         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
10534
10535         * mail-source.el (mail-source-delete-crash-box): Only check the
10536         incoming files for deletion once per day to save a lot of file
10537         accesses.
10538
10539         * pop3.el (pop3-logon): Fix up unbound variable typo.
10540
10541         * mail-source.el (pop3-streaming-movemail): Autoload.
10542
10543         * pop3.el (pop3-streaming-movemail):
10544         Respect pop3-leave-mail-on-server.
10545
10546         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
10547         retrieval.
10548
10549         * pop3.el (pop3-process-filter): Remove unused function.
10550         (pop3-streaming-movemail, pop3-send-streaming-command)
10551         (pop3-wait-for-messages, pop3-write-to-file)
10552         (pop3-number-of-responses): New functions for streaming pop3
10553         retrieval.
10554
10555         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
10556         come from no known methods.
10557         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
10558         list.
10559
10560         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
10561         message sizes.
10562         (pop3-movemail): Use erase-buffer instead of looping and deleting
10563         regions, which seems rather odd.
10564
10565         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
10566         file once per `g' run.
10567
10568         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
10569         directories.  This makes the draft queue directory work.
10570
10571         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
10572         data from the backends, so that we only request the list of groups from
10573         each method once.  This should speed things up considerably.
10574
10575         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
10576         detect that it's not implemented.
10577
10578         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
10579         we actually do recurse down into the tree, but don't stat all leaf
10580         nodes.
10581
10582         * gnus-html.el (gnus-html-show-images): If there are no images to show,
10583         then say so instead of bugging out.
10584
10585         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
10586         files exist before trying to read them.
10587
10588         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
10589         around <pre_int>.
10590
10591         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
10592
10593         * nnmh.el (nnmh-request-list-1): Optimize for speed.
10594
10595 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10596
10597         * mm-util.el (mm-image-load-path): Just return the image directories,
10598         not all directories in the path in addition to the image directories.
10599         (mm-image-load-path): Maintain a cache of the image directories so that
10600         the `g' command in Gnus doesn't have to stat dozens of directories each
10601         time.
10602
10603         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
10604         (gnus-html-wash-tags): Add a new `i' command to insert images.
10605         (gnus-html-insert-image): New command and keystroke.
10606         (gnus-html-redisplay-with-images): New command and keystroke.
10607         (gnus-html-show-images): Rename command.
10608         (gnus-html-wash-tags): Remove more white space before <pre_int> image
10609         spacers.
10610         (gnus-html-wash-tags): Decode entities at the end, so that entities
10611         inside the tags don't mess up the rest of the "parsing".
10612
10613         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
10614         so that nnimap methods aren't agentized by default.  There's apparently
10615         many problems related to agent/imap behavior.
10616
10617         * gnus-art.el (gnus-article-copy-string): New command and key binding.
10618
10619         * gnus-html.el: Doc fix.
10620
10621 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10622
10623         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
10624         specifier-spec-list for Emacs 21.
10625
10626         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
10627         glyph-width and glyph-height instead of display-graphic-p and
10628         image-size; make avoidance of displaying small images work for XEmacs.
10629
10630         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
10631         for XEmacs.
10632
10633         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
10634         of symbol that holds plist data.
10635         (gnus-process-plist): Remove plist of process after getting it.
10636
10637 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10638
10639         * message.el (message-generate-hashcash): Change default to
10640         'opportunistic if hashcash is installed.
10641
10642         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
10643         (gnus-html-put-image): Only call image-size once, since it's somewhat
10644         time-consuming on remote X servers.
10645
10646 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10647
10648         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
10649         type on data, not a file name.
10650
10651         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
10652         window-pixel-edges for Emacs 21.
10653
10654         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
10655         decoded contents.
10656         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
10657
10658 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10659
10660         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
10661         group line format, since it isn't very interesting.
10662
10663         * gnus-agent.el (gnus-agent-short-article),
10664         (gnus-agent-long-article): Increase values for these two variables,
10665         since most people are likely to have more network connection and
10666         storage than before.
10667
10668         * gnus.el (gnus-refer-article-method): Change default to 'current.
10669         When referring an article, the common behavior is to refer it from the
10670         current select method, not the native select method.  The chances of
10671         the native select method having the message in question is rather slim
10672         these days.
10673
10674         * gnus-sum.el (gnus-auto-select-subject): Change default to
10675         `unseen-or-unread'.  I think it's likely that most people want to
10676         select an unseen article over a previously seen, but unread one.
10677
10678         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
10679         means that in the article buffer none of the minor mode elements will
10680         be shown, usually, and this is not desirable in most cases.
10681
10682         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
10683         that commands like `d' (and the like) go to the next line in the
10684         buffer, instead of the next unread article.  I think this is the
10685         behavior that is most natural for most users.
10686         (gnus-single-article-buffer): Change default to nil, so that people can
10687         have as many article buffers open as they have summary buffer.  I think
10688         this is the most natural way for the groups to behave.
10689
10690         * message.el (message-generate-new-buffers): Change default to
10691         `unsent', so that all new message buffers start their names with the
10692         string "*unsent", and it's easier to find the buffers if you move from
10693         them.
10694
10695 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10696
10697         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
10698         small.  They're probably tracking images.
10699         (gnus-html-wash-tags): Remove all <pre_int> place holders.
10700         (gnus-html-rescale-image): Yet another try at getting the image sizing
10701         right.
10702
10703         * nntp.el (nntp-request-set-mark): Refuse to do marks if
10704         nntp-marks-file-name is nil.
10705
10706 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10707
10708         * gnus-html.el (gnus-html-wash-tags)
10709         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
10710         Better logging.
10711
10712 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10713
10714         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
10715
10716         * gnus-html.el (gnus-html-wash-tags): Check the value of
10717         gnus-blocked-images in the summary buffer.
10718
10719 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10720
10721         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
10722
10723 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10724
10725         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
10726         like "a", it seems like.
10727         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
10728         since it needs to be picked from the correct buffer.
10729
10730         * nnwfm.el: Remove.
10731
10732         * nnlistserv.el: Remove.
10733
10734 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10735
10736         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
10737         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
10738
10739 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10740
10741         * nnkiboze.el: Remove.
10742
10743         * nndb.el: Remove.
10744
10745         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
10746         alt text.
10747         (gnus-html-rescale-image): Try to get the rescaling logic right for
10748         images that are just wide and not tall.
10749
10750         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
10751         overshadow variable bindings.
10752
10753 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10754
10755         * gnus-html.el (gnus-html-wash-tags)
10756         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
10757         Add extra logging.
10758
10759 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10760
10761         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
10762         (gnus-max-image-proportion): New variable.
10763         (gnus-html-rescale-image): New function.
10764         (gnus-html-put-image): Rescale images.
10765
10766 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10767
10768         Fix up some byte-compiler warnings.
10769         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
10770         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
10771         (gnus-article-fill-cited-article, gnus-article-hide-citation)
10772         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
10773         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
10774         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
10775         (gnus-group-update-group): Use save-excursion and with-current-buffer.
10776
10777 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10778
10779         * gnus-html.el (gnus-article-html): Decode contents by charset.
10780
10781 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10782
10783         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
10784         (gnus-html-frame-width, gnus-blocked-images):
10785         * message.el (message-prune-recipient-rules): Add custom version.
10786         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
10787
10788         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
10789         functions.
10790
10791         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
10792         gnus-process-get.
10793
10794 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
10795
10796         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
10797         instead of lsub directly.
10798
10799 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10800
10801         * nnwarchive.el: Remove.
10802
10803         * gnus-soup.el: Remove.
10804
10805         * nnsoup.el: Remove.
10806
10807         * nnultimate.el: Remove.
10808
10809         * gnus-html.el (gnus-blocked-images): New variable.
10810
10811         * message.el (message-prune-recipients): New function.
10812         (message-prune-recipient-rules): New variable.
10813
10814         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
10815         guess whether a long line is natural text or not.
10816
10817         * gnus-html.el (gnus-html-schedule-image-fetching):
10818         Use gnus-process-plist and friends for compatibility.
10819
10820 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10821
10822         * gnus-html.el: Require packages that define macros used in this file.
10823         (gnus-article-mouse-face): Declare to silence byte-compiler.
10824         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
10825         process-get.
10826         (gnus-html-put-image): Use plist-get to avoid getf.
10827         (gnus-html-prefetch-images): Use with-current-buffer.
10828
10829 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10830
10831         * gnus-ems.el: Provide compatibility functions for
10832         gnus-set-process-plist.
10833
10834         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
10835         header-line-format for XEmacs 21.4.
10836
10837         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
10838         * gnus.el (gnus-valid-select-methods):
10839         * message.el (message-send-mail-partially-limit):
10840         * mm-decode.el (mm-text-html-renderer):
10841         * mml.el (mml-insert-mime-headers-always):
10842         * smiley.el (smiley-regexp-alist): Bump custom version.
10843
10844 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10845
10846         * gnus-html.el: require mm-url.
10847         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
10848         with the url to `url'.
10849         (gnus-html-wash-tags): Support cid: URLs/images.
10850
10851 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10852
10853         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
10854         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
10855         bindings, as they aren't useful at all.  `w' is moved to `W w'.
10856
10857         * gnus-move.el: Remove file, since it doesn't really work.
10858
10859         * gnus-html.el (gnus-article-html): Tell w3m that the input is
10860         UTF-8.  This seems to fix problems with some German web feeds.
10861
10862         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
10863         at the top so that the proper colors are applied.
10864
10865         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
10866         don't have dots in their names.
10867
10868         * gnus-art.el (gnus-article-view-part): Doc fix.
10869
10870         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
10871         XEmacs-compatible.
10872         (gnus-html-put-image): Don't do images on non-graphic displays.
10873
10874         * nnslashdot.el: Remove this unused backend.
10875
10876         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
10877         actions.
10878         (gnus-undo-register-1): Revert last change.
10879
10880         * gnus-group.el (gnus-group-completing-read): Protect against not
10881         having completion-styles bound.
10882
10883         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
10884         make broken recipients happier.
10885
10886         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
10887
10888         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
10889         point parameter.
10890
10891         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
10892
10893         * gnus-group.el (gnus-group-completing-read): Add 'substring to
10894         completion-styles for group selection.
10895
10896 2009-02-04  Andreas Schwab  <schwab@suse.de>
10897
10898         * gnus-score.el (gnus-score-string): Fix regex for matching extra
10899         headers and regexp-quote the match if necessary.
10900
10901 2009-03-24  Miles Bader  <miles@gnu.org>
10902
10903         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
10904         the blinking smiley.
10905
10906 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10907
10908         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
10909         blink smiley.
10910
10911 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10912
10913         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
10914         where the dribbel file lives exists.
10915
10916         * message.el (message-send-mail-partially-limit): Change the default to
10917         nil, since most people don't want this.
10918
10919         * mm-url.el (mm-url-decode-entities): Also decode entities like
10920         &#x3212.
10921
10922 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
10923
10924         * gnus-sum.el (gnus-summary-idna-message):
10925         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
10926         Hyperlink urls in docstrings with URL `...'.
10927
10928 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
10929
10930         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
10931         functions.
10932
10933 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10934
10935         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
10936         say what the mouseover text should be.
10937
10938         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
10939         version of the mm-w3m-safe-url-regexp variable to only download images
10940         in the groups where we want that to happen.
10941
10942         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
10943
10944         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
10945         easier debugging.
10946         (gnus-article-beginning-of-window): Add kludge to allow spacing past
10947         big pictures in the article buffer.
10948
10949         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
10950         gnus-article-html.
10951         (mm-text-html-renderer): gnus-article-html needs curl in addition to
10952         w3m.
10953
10954         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
10955
10956 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10957
10958         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
10959         which doesn't exist.
10960
10961         * message.el (message-inhibit-ecomplete): New variable to allow some
10962         function to inhibit ecomplete address storage.
10963         (message-resend): Disable ecomplete message storage when resending
10964         messages.
10965
10966         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
10967
10968 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10969
10970         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
10971         Save excursion while copying, moving, and deleting articles in order to
10972         prevent the cursor from jumping to unforeseen place.
10973
10974 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10975
10976         * lpath.el: No need to bind bookmark-current-buffer,
10977         bookmark-yank-point and bookmark-make-record-function.
10978
10979 2010-08-17  Glenn Morris  <rgm@gnu.org>
10980
10981         * gnus-sync.el: Require gnus components whose functions are used.
10982
10983         * gnus-art.el (bookmark-make-record-function):
10984         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
10985         Declare for compiler.
10986
10987         * mm-url.el (mml-compute-boundary): Autoload.
10988
10989 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10990
10991         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
10992
10993 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
10994
10995         Typo fix "hoo4a" -> "hook".
10996
10997         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
10998
10999 2010-08-14  Glenn Morris  <rgm@gnu.org>
11000
11001         * gnus-sync.el (gnus-sync): Fix defgroup version.
11002
11003 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
11004
11005         Doc fixes and keep unknown groups (ammended for nunion bug fix).
11006
11007         * gnus-sync.el: Fix docs.
11008         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
11009         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
11010
11011 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
11012
11013         Optimizations for gnus-sync.el.
11014
11015         * gnus-sync.el: Add docs about gnus-sync-backend
11016         possibilities.
11017         (gnus-sync-save): Remove unnecessary message.
11018         (gnus-sync-read): Optimize and show what groups were skipped.
11019
11020 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
11021
11022         Minor bug fixes for gnus-sync.el.
11023
11024         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
11025         Don't read the sync on get-new-news.
11026
11027         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
11028         quiet.
11029
11030         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
11031         (fix typo).
11032
11033 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
11034
11035         Make saving and restoring of hidden threads work with overlays.
11036         Patch applied by Ted Zlatanov.
11037
11038         * gnus-sum.el (gnus-hidden-threads-configuration)
11039         (gnus-restore-hidden-threads-configuration): Update to deal with text
11040         properties, rather than searching for a magic character.
11041
11042 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
11043
11044         New gnus-sync.el library for synchronization of marks.
11045
11046         * gnus-sync.el: New library for synchronization of marks.
11047
11048         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
11049         renamed from `gnus-registry-grep-in-list'.
11050
11051         * gnus-registry.el (gnus-registry-follow-group-p):
11052         Use `gnus-grep-in-list'.
11053
11054         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
11055
11056 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11057
11058         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
11059         determining charset of text fails.
11060
11061 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11062
11063         * nnmail.el (nnmail-get-new-mail-1): Revert.
11064
11065         * nnml.el (nnml-active-number): Make sure names of newly created groups
11066         in nnml-group-alist are encoded.
11067
11068 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11069
11070         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
11071         containing non-ASCII characters in active file for nnml back end.
11072
11073 2010-07-24  David Engster  <dengste@eml.cc>
11074
11075         * mml-smime.el (mml-smime-epg-verify): Also accept the older
11076         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
11077
11078 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
11079
11080         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
11081         tag (Bug#6654).
11082
11083 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11084
11085         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
11086         the article buffer, not the summary buffer.
11087
11088 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11089
11090         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
11091         Emacs 23 as well.
11092
11093 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11094
11095         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
11096         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
11097
11098 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11099
11100         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
11101         Patch applied by Karl Fogel.
11102
11103         * gnus-sum.el (gnus-summary-bookmark-make-record):
11104         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
11105
11106 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11107
11108         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
11109         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
11110         C-w still not working correctly from Article buffers; Thierry's
11111         patch to fix that will be applied after this.
11112
11113         * gnus-art.el (bookmark-make-record-function): New local variable.
11114
11115         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
11116         article buffer.
11117         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
11118
11119 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
11120
11121         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
11122         on changes in bookmark.el.
11123
11124 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11125
11126         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
11127         `no-log' instead of message not to log prompt string.
11128
11129 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
11130
11131         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
11132         the *other* type of HTML form submission.
11133
11134 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
11135
11136         * auth-source.el (auth-source-pick): If choice does not contain a
11137         questioned keyword, set the check to t.
11138
11139 2010-06-12  Romain Francoise  <romain@orebokech.com>
11140
11141         * gnus-util.el (gnus-date-get-time): Move up before first use.
11142
11143 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11144
11145         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
11146         (gnus-article-edit-part): Bind it to make last part that is substituted
11147         or deleted visible.
11148         (gnus-mime-display-single): Buttonize part of which id equals to
11149         gnus-mime-buttonized-part-id.
11150
11151 2010-06-10  Dan Christensen  <jdc@uwo.ca>
11152
11153         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
11154         (gnus-dd-mmm): Use gnus-date-get-time.
11155         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
11156         simplify logic.
11157         (gnus-summary-limit-to-age): Use gnus-date-get-time.
11158         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
11159
11160 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
11161
11162         * auth-source.el (top): Autoload `secrets-list-collections',
11163         `secrets-create-item', `secrets-delete-item'.
11164         (auth-sources): Fix tag string.
11165         (auth-get-source, auth-source-retrieve, auth-source-create)
11166         (auth-source-delete): New defuns.
11167         (auth-source-pick): Rewrite in order to avoid 2 passes.
11168         (auth-source-forget-user-or-password): New parameter USERNAME.
11169         (auth-source-user-or-password): New parameters CREATE-MISSING and
11170         DELETE-EXISTING.  Retrieve password interactively, if needed.
11171
11172 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
11173
11174         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
11175         deleting unused directories when gnus-expert-user is t.
11176
11177 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11178
11179         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
11180         for each temp file when gnus-article-browse-delete-temp is ask.
11181
11182 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11183
11184         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
11185         Replace Lisp calls to delete-backward-char by calls to delete-char.
11186
11187 2010-05-20  Kevin Ryde  <user42@zip.com.au>
11188
11189         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
11190
11191 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
11192
11193         * password-cache.el (password-cache-remove): Fix docstring.
11194
11195 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11196
11197         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
11198         article unless decoding article to be saved.
11199
11200 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11201
11202         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
11203         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
11204         generated within the mm-with-unibyte-current-buffer macro.
11205
11206 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11207
11208         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
11209         to nil when we're in a mml-preview buffer and no group is selected.
11210
11211 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
11212
11213         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
11214         when catching the `C-g'.  Reported by "Leo".
11215
11216 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11217
11218         * message.el (message-forward-make-body-plain)
11219         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
11220         multibyte-string-p.
11221
11222         * lpath.el: Revert.
11223
11224 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11225
11226         * message.el (message-forward-make-body-mml): Assume original message
11227         is multibyte string; error on unibyte.
11228         (message-forward-make-body-plain): Ditto; don't add excessive newline
11229         in body end.
11230
11231         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
11232
11233 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
11234
11235         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
11236         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
11237
11238 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11239
11240         * mm-extern.el (mm-extern-url): Don't use
11241         mm-with-unibyte-current-buffer.
11242         (mm-extern-cache-contents): Use with-current-buffer instead of
11243         save-excursion + set-buffer.
11244
11245 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11246
11247         * mm-util.el (mm-emacs-mule): Remove.
11248
11249 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
11250
11251         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
11252         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
11253         change.
11254
11255 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11256
11257         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
11258         bind the default value of enable-multibyte-characters to nil.
11259
11260 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11261
11262         * message.el (message-forward-make-body-plain)
11263         (message-forward-make-body-mml):
11264         Don't use mm-with-unibyte-current-buffer.
11265
11266 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11267
11268         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
11269
11270 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
11271
11272         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
11273         (Bug#5592).
11274
11275 2010-05-07  Julien Danjou  <julien@danjou.info>
11276
11277         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
11278         it to mm-pipe-part.
11279
11280         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
11281         it is given.
11282
11283 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11284
11285         * binhex.el (binhex-decode-region-internal):
11286         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
11287         (dns-query):
11288         * nnweb.el (nnweb-gmane-search):
11289         * pgg-parse.el (pgg-parse-armor):
11290         * pgg.el (pgg-verify-region):
11291         * sha1.el (sha1-string-external):
11292         * uudecode.el (uudecode-decode-region-internal):
11293         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
11294         XEmacs.
11295
11296         * gnus-art.el (gnus-article-browse-html-parts):
11297         * gnus-group.el (gnus-read-ephemeral-gmane-group):
11298         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
11299         make-temp-file.
11300
11301         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
11302         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
11303         compiling.
11304
11305         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
11306         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
11307         XEmacs when compiling.
11308
11309         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
11310         gnus-pick-mode-off-hook for XEmacs when compiling.
11311         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
11312         gnus-binary-mode-off-hook for XEmacs when compiling.
11313
11314         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
11315         Return nil if char-charset is not available.
11316
11317         * imap.el (imap-disable-multibyte)
11318         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
11319         macros.
11320
11321         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
11322         instead of encode-coding-string.
11323
11324         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
11325         'xemacs) instead of mm-emacs-mule to switch function definitions.
11326         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
11327
11328         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
11329         bind temporary-file-directory for XEmacs;
11330         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
11331         timer-set-function for XEmacs 21.4 and SXEmacs;
11332         bind timer-list for XEmacs 21.4 and SXEmacs;
11333         fbind char-charset and find-charset-region for non-Mule XEmacs;
11334         fbind decode-coding-region, decode-coding-string, detect-coding-region,
11335         encode-coding-region and encode-coding-string for XEmacs having no
11336         file-coding feature.
11337
11338 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
11339
11340         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
11341
11342 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11343
11344         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
11345         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
11346
11347 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
11348
11349         * mm-util.el (mm-decompress-buffer): Use `delete-file';
11350         alias `jka-compr-delete-temp-file' no longer exists.
11351
11352 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11353
11354         Use define-minor-mode in Gnus where applicable.
11355         * mml.el (mml-mode): Use define-minor-mode.
11356         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
11357         (gnus-undo-mode): Use define-minor-mode.
11358         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
11359         (gnus-dead-summary-mode): Use define-minor-mode.
11360         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
11361         Initialize in declaration.
11362         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
11363         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
11364         (gnus-mailing-list-mode): Use define-minor-mode.
11365         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
11366         (gnus-draft-mode): Use define-minor-mode.
11367         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
11368         (gnus-dired-mode): Use define-minor-mode.
11369
11370 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
11371
11372         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
11373         handles on recursive mml-to-mime translation and check them for
11374         boundary delimiter collisions.  Reported by Greg Troxel.
11375
11376 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11377
11378         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
11379
11380 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11381
11382         * mm-util.el (mm-find-buffer-file-coding-system):
11383         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
11384
11385 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
11386
11387         * message.el (message-generate-headers): Record insertion of optional
11388         headers as well.  Otherwise the check to prevent repeated insertion of
11389         optional headers is a no-op.
11390
11391 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
11392
11393         * smime.el: Don't mention CVS.
11394
11395         * nnrss.el (nnrss-fetch): Don't mention CVS.
11396
11397         * nnir.el: Don't mention CVS.
11398
11399 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11400
11401         * gnus-sum.el (gnus-summary-bookmark-make-record):
11402         Add `location' field.
11403
11404 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11405
11406         * lpath.el: Fbind bookmark-default-handler,
11407         bookmark-get-bookmark-record, bookmark-make-record-default,
11408         bookmark-prop-get for Emacs <23 and XEmacs.
11409
11410 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11411
11412         * gnus-sum.el: Add bookmark declarations to silence the compiler.
11413         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
11414         Use with-current-buffer to silence the byte-compiler.
11415         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
11416         bother to require `gnus'.
11417         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
11418
11419 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11420
11421         * gnus-sum.el (gnus-summary-bookmark-make-record)
11422         (gnus-summary-bookmark-jump): New functions.
11423         (gnus-summary-mode): Setup bookmark support.
11424
11425 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
11426
11427         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
11428         if set.
11429
11430 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11431
11432         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
11433         gnus-article-browse-html-save-cid-image; make it work recursively for
11434         forwarded messages as well.
11435         (gnus-article-browse-html-parts): Work when prefix arg is given.
11436         (gnus-article-browse-html-article): Doc fix.
11437
11438 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
11439
11440         * message.el (message-default-mail-headers):
11441         (message-default-headers): Carry the value mail-default-headers over
11442         into message-default-mail-headers, rather than message-default-headers.
11443
11444 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
11445
11446         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
11447         charset.
11448
11449         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
11450         charset into the <meta> tag when the article is encoded to utf-8.
11451
11452 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11453
11454         * gnus-art.el (gnus-article-browse-delete-temp-files):
11455         Delete directories as well.
11456         (gnus-article-browse-html-parts): Work for images that do not specify
11457         file names; delete temp directory when quitting; insert header at the
11458         right place; use file: scheme for image files.
11459
11460 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
11461
11462         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
11463         (gnus-article-browse-html-parts): Use it to make temporary cid image
11464         files in addition to html file so that browser may display them.
11465
11466 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11467
11468         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
11469
11470 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
11471
11472         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
11473
11474 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
11475
11476         * auth-source.el (auth-sources): Change default to be simpler.
11477         Explain about Secret Service API sources.  Improve Customize options.
11478         (auth-source-pick): Change to accept any number of search parameters.
11479         Implement fallbacks iteratively, not recursively.  Add scoring on the
11480         second pass and sort by score.  Call Secret Service API when needed.
11481         (auth-source-user-or-password): Use it.  Call Secret Service API
11482         directly when needed to get the user name and the password.
11483
11484 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
11485
11486         * message.el (message-interactive): Doc fix.
11487         (message-qmail-inject-args): Reflow.
11488         (message-kill-to-signature): Fix typo in docstring.
11489
11490         * smiley.el (smiley-buffer): Fix typo in docstring.
11491
11492 2010-03-24  Glenn Morris  <rgm@gnu.org>
11493
11494         * mail-source.el (gnus-message): Declare.
11495         (mail-source-delete-old-incoming): Require gnus-util.
11496
11497 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11498
11499         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
11500
11501         * message.el (ecomplete-setup): Autoload it for Emacs <23.
11502
11503         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
11504         password-cache's default if it is not bound.
11505         (mml-secure-passphrase-cache-expiry): Default to 16 that is
11506         password-cache-expiry's default if it is not bound.
11507
11508         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
11509         available in Emacs 21.
11510
11511         * lpath.el: Suppress compiler warnings for:
11512         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
11513         XEmacs;
11514         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
11515         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
11516         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
11517
11518 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
11519
11520         * auth-source.el (auth-sources): Fix up definition so extra parameters
11521         are always inline.
11522
11523 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
11524
11525         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
11526         wasn't updated after mismatch.  Clear cached mailbox info correctly
11527         when uidvalidity changes.
11528         (nnimap-group-prefixed-name): New function to avoid some code
11529         duplication.
11530         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
11531         (nnimap-request-group): Use it.
11532         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
11533         (nnimap-update-unseen): Significantly improved speed of Gnus startup
11534         with many imap folders.  This is done by caching the group status from
11535         the imap server persistently in a group parameter `imap-status'.  (This
11536         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
11537         but not persistently, so every Gnus startup was still very slow.)
11538
11539 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
11540
11541         * assistant.el (assistant-render-text): Run `widget-setup' and don't
11542         delete the extra newline.  Otherwise editing of :string and :number
11543         types don't work.
11544
11545 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11546
11547         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
11548         secrets.el dependency.
11549         (auth-sources): Add optional user name.  Add secrets.el configuration
11550         choice (unused right now).
11551
11552 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11553
11554         * gnus-sum.el (gnus-summary-make-menu-bar):
11555         Let `gnus-registry-install-shortcuts' fill in the functions.
11556
11557         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
11558         warnings.
11559         (gnus-registry-misc-menus): Variable to hold registry mark menus.
11560         (gnus-registry-install-shortcuts): Populate and use it in a
11561         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
11562
11563 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
11564
11565         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
11566         In-place substitutions for the group name encoding/decoding.
11567         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
11568         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
11569         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
11570         (nnimap-update-unseen, nnimap-request-list)
11571         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
11572         (nnimap-request-set-mark, nnimap-split-to-groups)
11573         (nnimap-split-articles, nnimap-request-newgroups)
11574         (nnimap-request-create-group, nnimap-request-accept-article)
11575         (nnimap-request-delete-group, nnimap-request-rename-group)
11576         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
11577         `encoded-mbx' for consistency.
11578         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
11579         variable `imap-current-mailbox'.
11580
11581         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
11582         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
11583
11584 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
11585
11586         * pop3.el (pop3-display-message-size-flag): Display message size byte
11587         counts during POP3 download.
11588         (pop3-movemail): Use it.
11589         (pop3-list): Implement listing of available messages.
11590
11591 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
11592
11593         * nnir.el (nnir-get-article-nov-override-function): New function to
11594         override the normal NOV retrieval.
11595         (nnir-retrieve-headers): Use it.
11596
11597 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
11598
11599         * auth-source.el (netrc-machine-user-or-password): Autoload.
11600
11601 2010-03-19  Glenn Morris  <rgm@gnu.org>
11602
11603         Stop message.el from loading about 40 libraries it doesn't always need.
11604         The general approach is to autoload rather than require, and to
11605         require in the specific functions rather than the file.  (Bug#5642)
11606
11607         * gmm-utils.el: Don't require wid-edit.
11608         (widget-create-child-value, widget-convert, widget-default-get):
11609         Autoload.
11610
11611         * gnus-util.el: Don't require time-date, netrc.
11612         (message-fetch-field, gnus-group-name-decode): Declare rather than
11613         autoloading.
11614         (gnus-fetch-field): Require message.
11615         (gnus-decode-newsgroups): Require gnus-group.
11616
11617         * ietf-drums.el: Don't require time-date.
11618
11619         * message.el: Don't require hashcash, canlock, ecomplete.
11620         Do require mail-utils.  Require nnheader only when compiling.
11621         (smtpmail-default-smtp-server): Remove declaration.
11622         (message-send-mail-function): Check smtpmail-default-smtp-server
11623         is bound rather than requiring smtpmail.
11624         (message-auto-save-directory, message-insert-signature):
11625         Use expand-file-name rather than nnheader-concat.
11626         (nnheader-insert-file-contents): Autoload.
11627         (hashcash-wait-async): Declare.
11628         (message-send-mail): Only call gnus-setup-posting-charset if
11629         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
11630         (message-send-mail-with-sendmail): Require sendmail.
11631         (canlock-password, canlock-password-for-verify): Declare.
11632         (message-canlock-password): Require canlock.
11633         (nnheader-get-report): Autoload.
11634         (gnus-setup-posting-charset): Declare.
11635         (message-send-news): Require gnus-msg.
11636         (message-make-references, message-make-in-reply-to): Use mail-header-id
11637         rather than the alias mail-header-message-id.
11638         (ecomplete-add-item, ecomplete-save): Declare.
11639         (message-put-addresses-in-ecomplete): Require ecomplete.
11640         (ecomplete-display-matches): Autoload.
11641
11642         * mm-decode.el: Don't require mailcap, gnus-util.
11643         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
11644         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
11645         Autoload.
11646         (mailcap-mime-extensions): Declare.
11647
11648         * mm-encode.el: Don't require mailcap.
11649         (mailcap-extension-to-mime): Autoload.
11650
11651         * mml-sec.el: Don't require password-cache.
11652
11653         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
11654         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
11655         (mml-minibuffer-read-type): Require mailcap.
11656         (mml-preview): Require gnus-msg.
11657
11658         * mml1991.el: Require password-cache.
11659         (password-cache-expiry): Remove declaration.
11660
11661         * mml2015.el: Require password-cache.
11662         (password-cache-expiry): Remove declaration.
11663
11664         * nneething.el (mailcap): Require mailcap.
11665
11666         * nnheader.el (declare-function): Add compatibility stub.
11667         (message-remove-header): Declare rather than autoload.
11668         (nnheader-replace-header): Require message.
11669
11670         * nnimap.el (declare-function): Add compatibility stub.
11671         (netrc-parse, netrc-machine-user-or-password): Declare.
11672         (nnimap-open-connection): Require netrc.
11673
11674         * nntp.el (declare-function): Add compatibility stub.
11675         (netrc-parse, netrc-machine, netrc-get): Declare.
11676         (nntp-send-authinfo): Require netrc.
11677
11678         * rfc2047.el: Don't require qp.
11679         (quoted-printable-encode-region, quoted-printable-decode-string):
11680         Autoload.
11681
11682         * sieve-mode.el: Don't require easymenu.
11683         (easy-menu-add-item): Autoload it.
11684
11685         * spam-stat.el (time-to-number-of-days): Autoload it.
11686
11687 2010-03-19  Glenn Morris  <rgm@gnu.org>
11688
11689         * password-cache.el (password-cache, password-cache-expiry): Autoload.
11690
11691 2010-03-18  Glenn Morris  <rgm@gnu.org>
11692
11693         * hashcash.el (declare-function): Remove duplicate definition.
11694
11695 2010-03-17  Kevin Ryde  <user42@zip.com.au>
11696
11697         * mml.el (mml-read-tag): Unquote values with `read' to reverse
11698         prin1 in mml-insert-tag (just stripping the quotes gave wrong
11699         value if any backslash escapes).
11700
11701 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11702
11703         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
11704         if it is available.  (bug#5647)
11705
11706         * lpath.el: Suppress compiler warning for coding-system-from-name for
11707         Emacs 21 and XEmacs.
11708
11709 2010-03-14  Juri Linkov  <juri@jurta.org>
11710
11711         * hmac-def.el:
11712         * hmac-md5.el:
11713         * netrc.el: Fix keywords.
11714
11715 2010-02-26  Glenn Morris  <rgm@gnu.org>
11716
11717         * message.el (message-send-mail-function): Change the default, so that
11718         it inherits from a customized send-mail-function.  (Bug#5643)
11719
11720 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11721
11722         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
11723         shell-command-to-string signals an error (bug#5299).
11724
11725 2010-02-24  Glenn Morris  <rgm@gnu.org>
11726
11727         * message.el (message-smtpmail-send-it)
11728         (message-send-mail-with-mailclient): Doc fixes.
11729
11730 2010-02-16  Glenn Morris  <rgm@gnu.org>
11731
11732         * message.el (message-default-mail-headers): Change the default value
11733         to ease the transition from mail-mode to message-mode.  (Bug#5555)
11734
11735 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11736
11737         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
11738         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
11739
11740 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
11741
11742         * time-date.el (date-to-time): Doc fix (Bug#5408).
11743
11744 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
11745
11746         * message.el (message-mail): Just pass yank-action on to message-setup.
11747         (message-setup): Handle (FUN . ARGS) form of yank-action.
11748         (message-with-reply-buffer, message-widen-reply)
11749         (message-yank-original): Handle non-buffer values of
11750         message-reply-buffer (Bug#4080).
11751         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
11752
11753 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
11754
11755         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
11756         Fix typo in docstring.
11757
11758 2010-01-08  Jason Rumney  <jasonr@gnu.org>
11759
11760         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
11761         response.
11762
11763 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11764
11765         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
11766
11767         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
11768
11769         * message.el (message-check-news-header-syntax): Protect against a
11770         string that `rfc822-addresses' returns when parsing fails.
11771
11772 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11773
11774         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
11775         (gnus-previous-char-property-change): New functions.
11776
11777         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
11778
11779 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
11780
11781         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
11782         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
11783
11784 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
11785
11786         * message.el (message-exchange-point-and-mark): Rework last change to
11787         avoid using optional arg of exchange-point-and-mark, for backward
11788         compatibility.
11789
11790 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
11791
11792         * message.el (message-exchange-point-and-mark):
11793         Call exchange-point-and-mark with an argument rather than setting
11794         mark-active by hand (Bug#5175).
11795
11796 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11797
11798         * nntp.el (nntp-service-to-port): Work for service expressed with
11799         numeric string; replace [:digit:] with [0-9] for XEmacs.
11800
11801 2009-12-17  Glenn Morris  <rgm@gnu.org>
11802
11803         * gnus-group.el (gnus-bug-group-download-format-alist):
11804         Change emacs entry to debbugs.gnu.org.  Bump :version.
11805
11806 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
11807
11808         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
11809
11810 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
11811
11812         * message.el (message-info): Explain why we use `Info-goto-node'.
11813
11814 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11815
11816         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
11817
11818 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11819
11820         * message.el (message-completion-in-region): New compatibility function.
11821         (message-expand-group): Use it.
11822
11823 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11824
11825         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
11826         with no unread article should be listed if the 2nd arg `predicate' is
11827         given.
11828
11829 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11830
11831         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
11832
11833 2009-11-29  Juri Linkov  <juri@jurta.org>
11834
11835         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
11836         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
11837         on `gnus-recenter'.  (Bug#4698, Bug#4981)
11838
11839 2009-11-26  Kevin Ryde  <user42@zip.com.au>
11840
11841         * sha1.el (sha1-string-external): default-directory "/" in case
11842         otherwise non-existent.  process-connection-type pipe for touch of
11843         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
11844
11845 2009-11-25  Kevin Ryde  <user42@zip.com.au>
11846
11847         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
11848         it's comms related and sgml-mode.el has "comm" on that basis too.
11849
11850 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11851
11852         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
11853         containing tspecial characters if they have been already quoted.
11854
11855 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11856
11857         * dns-mode.el (auto-mode-alist): Purecopy string.
11858
11859 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11860
11861         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
11862
11863 2009-10-24  Glenn Morris  <rgm@gnu.org>
11864
11865         * gnus-art.el (help-xref-stack-item): Define for compiler.
11866
11867 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11868
11869         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
11870
11871 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11872
11873         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
11874
11875 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11876
11877         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
11878         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
11879
11880 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11881
11882         * gnus.el (gnus-overlay-get): New alias to overlay-get.
11883         (gnus-overlays-in): New alias to overlays-in.
11884
11885         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
11886         gnus-overlay-get, and gnus-delete-overlay.
11887         (gnus-summary-show-thread): Make it work as well for systems in which
11888         next-single-char-property-change is not available.
11889         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
11890
11891         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
11892         (gnus-overlay-get): New alias to extent-property.
11893         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
11894
11895         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
11896         SXEmacs.
11897
11898         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
11899         SXEmacs.
11900
11901 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
11902
11903         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
11904
11905 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
11906
11907         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
11908         and XEmacs that don't have `remove-overlays'.
11909
11910 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11911
11912         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
11913         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
11914         selective display.  Use overlays instead.
11915
11916 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11917
11918         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
11919
11920 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11921
11922         * spam-stat.el (spam-stat-load): Fix typo in message.
11923
11924 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
11925
11926         * dig.el (dig-invoke): Fix typo in docstring.
11927         (query-dig): Reflow docstring.
11928
11929 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
11930
11931         * gnus-art.el (gnus-article-encrypt-body):
11932         * message.el (message-check-recipients):
11933         * mm-util.el (mm-codepage-setup):
11934         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
11935         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
11936
11937 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
11938
11939         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
11940         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
11941         keys from the menu if mm-{sign,encrypt}-option is 'guided.
11942         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
11943         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
11944
11945 2009-09-21  Kevin Ryde  <user42@zip.com.au>
11946
11947         * dig.el: Add "Keywords: comm", as per net-utils.el.
11948
11949 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11950
11951         * dig.el (dig-mode): Use define-derived-mode.
11952
11953 2009-09-19  Glenn Morris  <rgm@gnu.org>
11954
11955         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
11956
11957 2009-09-18  Glenn Morris  <rgm@gnu.org>
11958
11959         * gnus-diary.el (gnus-diary-check-message):
11960         * message.el (message-insert-formatted-citation-line):
11961         * nnbabyl.el (top-level):
11962         * nndiary.el (nndiary-schedule):
11963         Fix typos in condition-case handlers.
11964
11965 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11966
11967         * gnus-art.el (gnus-article-edit-part): Work for the buffer
11968         configuration that provides the sole article window in a frame;
11969         position point correctly after deleting a part.
11970
11971 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
11972
11973         * spam.el (spam-unregister-on-reregister): Add boolean variable.
11974         (spam-resolve-registrations-routine): Use it to unregister articles
11975         that change status.
11976
11977 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11978
11979         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
11980         with XEmacs.
11981         (parse-time-string-chars): Use it.
11982
11983 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
11984
11985         * imap.el (imap-interactive-login): Better messages.
11986         (imap-open): Fix bug with renamed buffer on reconnect.
11987         (imap-authenticate): Add buffer-local imap-last-authenticator variable
11988         for easier debugging and cleaner code.  On successful (guessed based on
11989         server capabilities) secondary authentication, set imap-state
11990         correctly.
11991         (imap-last-authenticator): Define imap-last-authenticator as a variable
11992         to avoid warnings.
11993
11994 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11995
11996         * nnrss.el (nnrss-request-article): Remove binding of
11997         default-enable-multibyte-characters that has gotten needless by
11998         the 2007-07-13 change in rfc2047-encode-message-header.
11999
12000         * mml.el (mml-insert-multipart): Error on the message header.
12001         (mml-insert-part): Error on the message header; position point at
12002         the end of a MIME tag.
12003
12004 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12005
12006         * time-date.el (autoload): Expand define-obsolete-function-alias into
12007         defalias and make-obsolete for old Emacsen that Gnus supports.
12008         (with-no-warnings): Define it for old Emacsen.
12009         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
12010         is available.
12011         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
12012         float-time is available; suppress compile warning for time-to-seconds.
12013
12014         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
12015         (gnus-float-time): Alias to float-time if it exists.
12016
12017         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
12018         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
12019         float-time is available; suppress compile warning for time-to-seconds.
12020
12021         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
12022         XEmacs.
12023
12024 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
12025
12026         * imap.el (imap-message-map): Docstring fix.
12027
12028 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12029
12030         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
12031         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
12032         Add the optional argument `encoding' that overrides the default.
12033
12034         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
12035         mm-encode-buffer.
12036
12037 2009-09-04  Glenn Morris  <rgm@gnu.org>
12038
12039         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
12040         mm-disable-multibyte, rather than default-enable-multibyte-characters.
12041         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
12042         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
12043         * mm-util.el (mm-with-unibyte-current-buffer)
12044         (mm-find-buffer-file-coding-system):
12045         * yenc.el (yenc-decode-region): Use default-value rather than
12046         default-enable-multibyte-characters.
12047
12048 2009-09-03  Glenn Morris  <rgm@gnu.org>
12049
12050         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
12051         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
12052         than default-enable-multibyte-characters.
12053
12054 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
12055
12056         * gnus-art.el (gnus-article-read-summary-keys):
12057         Fix gnus-buffer-configuration's value temporarily used.
12058
12059 2009-09-02  Glenn Morris  <rgm@gnu.org>
12060
12061         * gnus-util.el (gnus-float-time): New function.
12062         * gnus-delay.el (gnus-delay-article):
12063         * gnus-sum.el (gnus-thread-latest-date):
12064         * gnus-util.el (gnus-user-date): Use gnus-float-time.
12065         * nnspool.el (nnspool-request-newgroups):
12066         Use gnus-float-time rather than time-to-seconds.
12067         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
12068
12069         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
12070         (gnus-header-subject-face, gnus-header-newsgroups-face)
12071         (gnus-header-name-face, gnus-header-content-face):
12072         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
12073         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
12074         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
12075         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
12076         (gnus-cite-face-11):
12077         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
12078         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12079         (gnus-server-closed-face, gnus-server-denied-face)
12080         (gnus-server-offline-face):
12081         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
12082         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
12083         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
12084         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
12085         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
12086         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
12087         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
12088         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
12089         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
12090         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
12091         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
12092         (gnus-summary-selected-face, gnus-summary-cancelled-face)
12093         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
12094         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
12095         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
12096         (gnus-summary-high-undownloaded-face)
12097         (gnus-summary-low-undownloaded-face)
12098         (gnus-summary-normal-undownloaded-face)
12099         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
12100         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
12101         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
12102         (gnus-splash-face):
12103         * message.el (message-header-to-face, message-header-cc-face)
12104         (message-header-subject-face, message-header-newsgroups-face)
12105         (message-header-other-face, message-header-name-face)
12106         (message-header-xheader-face, message-separator-face)
12107         (message-cited-text-face, message-mml-face):
12108         * sieve-mode.el (sieve-control-commands-face)
12109         (sieve-action-commands-face, sieve-test-commands-face)
12110         (sieve-tagged-arguments-face):
12111         * spam.el (spam-face):
12112         Mark face aliases with "-face" in the name as obsolete.
12113
12114 2009-09-01  Glenn Morris  <rgm@gnu.org>
12115
12116         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
12117         than goto-line.
12118
12119 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12120
12121         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12122         Don't move point if the command is invoked inside the message header.
12123
12124 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12125
12126         * imap.el (imap-send-command): Simplify.
12127         (imap-wait-for-tag): point-max -> buffer-size.
12128
12129 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12130
12131         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
12132         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
12133         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
12134         * nnir.el (nnir-swish-e-index-file):
12135         * gnus-sum.el (gnus-summary-delete-marked-as-read)
12136         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
12137         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
12138         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
12139         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
12140         (gnus-treat-display-xface): Add Emacs version of obsolescence.
12141
12142 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12143
12144         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12145         Don't save excursion.
12146
12147 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12148
12149         * nnheader.el (nnheader-find-file-noselect):
12150         * mm-util.el (mm-insert-file-contents):
12151         Use (default-value 'major-mode) instead of default-major-mode.
12152
12153 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12154
12155         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
12156
12157 2009-08-26  Glenn Morris  <rgm@gnu.org>
12158
12159         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
12160         than placing in files.el.
12161
12162 2009-08-25  Glenn Morris  <rgm@gnu.org>
12163
12164         * nnir.el (top-level): Don't require cl at run-time.
12165         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
12166         Replace cl-function substitute with gnus-replace-in-string.
12167         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
12168         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
12169         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
12170         simplified expansions.
12171
12172 2009-08-25  Kevin Ryde  <user42@zip.com.au>
12173
12174         * dig.el (dig): Add autoload cookie.
12175
12176 2009-08-22  Glenn Morris  <rgm@gnu.org>
12177
12178         * gnus-art.el (gnus-button-patch): Use forward-line rather than
12179         goto-line.
12180
12181 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
12182
12183         * parse-time.el (parse-time-string-chars): Save match data.
12184
12185 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
12186
12187         * parse-time.el (parse-time-string-chars): Compute using character
12188         classes, to handle non-ascii characters (Bug#3190).
12189
12190 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12191
12192         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
12193
12194         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
12195         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
12196         (gnus-mm-display-part, gnus-mime-display-single)
12197         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
12198         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
12199
12200         * gnus-sum.el
12201         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
12202         (gnus-summary-move-article): Add expirable mark to articles copied or
12203         moved to group that has auto-expire turned on if the option is non-nil.
12204
12205 2009-07-24  Glenn Morris  <rgm@gnu.org>
12206
12207         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
12208         Fix typo.  (Bug#3903)
12209
12210 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12211
12212         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
12213         gnus-article-read-summary-keys rather than gnus-summary-edit-article
12214         that should not be used for draft articles.
12215         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
12216         that has no concern in minor mode keys.
12217         (gnus-article-summary-command, gnus-article-summary-command-nosave):
12218         Abolish.
12219
12220 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12221
12222         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
12223         article without making inquiry to a user for unknown encoding.
12224
12225         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
12226         (nnmaildir--scan): Assume i-node and device number that file-attributes
12227         returns might be cons-cell.
12228
12229         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
12230
12231         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
12232
12233 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
12234
12235         * auth-source.el: Remove docs now in auth.texi.  Don't use
12236         `gnus-message' for logging.  Add new variables `auth-source-debug' and
12237         `auth-source-hide-passwords' and use them.
12238
12239 2009-07-15  Glenn Morris  <rgm@gnu.org>
12240
12241         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
12242
12243 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12244
12245         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
12246         excessive whitespace from the default values of title and description.
12247
12248 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12249
12250         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
12251         mail-fetch-field to fetch Content-Description header in order to
12252         exclude newlines.
12253
12254 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
12255
12256         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
12257         format used by GnuPG 2.0.11.
12258
12259 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12260
12261         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
12262         to deleted part.
12263
12264 2009-05-30  David Engster  <dengste@eml.cc>
12265
12266         * nnmairix.el: Remove old documentation in the commentary block.
12267         (nnmairix-request-group): Do not update active file for nnml back ends.
12268         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
12269         end so that overview files are ignored.
12270         (nnmairix-update-groups): Make updating the groups more robust by using
12271         marks.
12272         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
12273         with dollar characters in message-id.
12274
12275 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
12276
12277         * spam.el: Use dns-query instead of query-dns.  Was renamed on
12278         2008-12-25 in dns.el.
12279
12280 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12281
12282         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
12283         could happen if the text is only composed of spaces and/or tabs.
12284
12285 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
12286
12287         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
12288         when sending a queued message to avoid extra mml tags.
12289
12290 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12291
12292         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
12293
12294 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12295
12296         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
12297         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
12298         rmail-toggle-header for XEmacs;
12299         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
12300
12301 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12302
12303         * gnus-dired.el: Remove autoload for gnus-setup-message.
12304         (gnus-dired-attach): Fake this-command value to prevent Gnus from
12305         displaying Gnus logo; always use compose-mail.
12306
12307 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12308
12309         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
12310
12311 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12312
12313         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
12314         (gnus-nocem-issuers): List currently active issuers; fix custom type.
12315         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
12316         available.
12317         (gnus-nocem-epg-verify): New function.
12318
12319 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
12320
12321         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
12322
12323 2009-02-15  Glenn Morris  <rgm@gnu.org>
12324
12325         * gnus-util.el (rmail-insert-rmail-file-header)
12326         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
12327         autoloads.
12328         (rmail-default-rmail-file): Remove unnecessary declaration.
12329         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
12330
12331 2009-02-14  Glenn Morris  <rgm@gnu.org>
12332
12333         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
12334         variable (only used in gnus-util, which declares it anyway).
12335         (rmail-output-to-rmail-file): Remove autoload of deleted function,
12336         which was only needed by gnus-art (changed to not use it any more).
12337         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
12338         only used in gnus-util, which autoloads it itself.
12339         (rmail-update-summary): Fix autoload.
12340
12341         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
12342         rather than rmail-output-to-rmail-file.
12343
12344 2009-02-07  Glenn Morris  <rgm@gnu.org>
12345
12346         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
12347         autoload of function that no longer exists.
12348         (rmail-toggle-header): Declare.
12349         (message-forward-rmail-make-body): Handle mbox Rmail.
12350
12351 2009-01-31  Glenn Morris  <rgm@gnu.org>
12352
12353         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
12354         2009-01-09 change.
12355
12356 2009-01-31  Dave Love  <fx@gnu.org>
12357
12358         * imap.el (imap-fetch-safe): Bind debug-on-error.
12359         (imap-debug): Add imap-fetch-safe.
12360
12361 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
12362
12363         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
12364         (auth-source-forget-all-cached): New convenience function.
12365         (auth-source-user-or-password): Accept list of modes or a single mode.
12366
12367         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
12368         auth-source modes.
12369
12370         * netrc.el (netrc-machine-user-or-password): Use list of
12371         auth-source modes.
12372
12373         * nnimap.el (nnimap-open-connection): Use list of
12374         auth-source modes.
12375
12376         * nntp.el (nntp-send-authinfo): Use list of
12377         auth-source modes.
12378
12379 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
12380
12381         * auth-source.el: Update docs to reflect epa-file-enable is to be used
12382         now.
12383
12384 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12385
12386         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
12387         coding system in XEmacs; add a workaround for XEmacs.
12388
12389         * lpath.el: Fbind coding-system-aliasee.
12390
12391 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12392
12393         * mm-util.el (mm-coding-system-priorities): Protect against nil value
12394         of current-language-environment.
12395
12396 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12397
12398         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
12399         available at runtime.
12400
12401 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12402
12403         * gnus-art.el (article-date-ut): Fix end point of narrowing.
12404
12405 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
12406
12407         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
12408         the greatest positive fixnum value doesn't work under an XEmacs with
12409         bignum support; use the most-positive-fixnum constant instead,
12410         available since Emacs 21.1 with cl and XEmacs 21.1.
12411
12412 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12413
12414         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
12415         XEmacs gets not to work.
12416
12417 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12418
12419         * mm-util.el (mm-coding-system-priorities): Allow the value like
12420         "Japanese (UTF-8)" of current-language-environment.
12421
12422 2009-01-09  Glenn Morris  <rgm@gnu.org>
12423
12424         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
12425         with last-command-event.
12426
12427 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12428
12429         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
12430         in the doc string.
12431
12432         * message.el (message-fix-before-sending): Amend comment.
12433
12434 2009-01-08  Dave Love  <fx@gnu.org>
12435
12436         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
12437
12438 2009-01-07  David Engster  <dengste@eml.cc>
12439
12440         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
12441         simplified server definitions by converting it via
12442         gnus-server-to-method.
12443
12444 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12445
12446         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
12447         parameter's operands.
12448
12449 2009-01-06  David Engster  <dengste@eml.cc>
12450
12451         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
12452         primary select method (for gnus-group-mark-article-as-read).
12453
12454 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
12455
12456         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
12457         `(gnus)Face', not `(gnus)X-Face'.
12458
12459 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12460
12461         * mm-util.el (mm-ucs-to-char): New function.
12462
12463         * mm-url.el (mm-url-decode-entities): Use it.
12464
12465         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
12466         unicode-to-char.
12467
12468 2009-01-05  Dave Love  <fx@gnu.org>
12469
12470         * time-date.el: Require cl for `declare'.
12471
12472 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12473
12474         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
12475         Dave Love.
12476
12477 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12478
12479         * message.el (message-fix-before-sending): Add `eight-bit' to
12480         illegible-text check.
12481
12482 2009-01-03  Michael Olson  <mwolson@gnu.org>
12483
12484         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
12485         `headers' is nil.  This can occur if the IMAP server does not have
12486         permissions to read messages from a folder, but can write new messages
12487         to the folder.
12488         (nnimap-request-article-part): Do not insert `data' if it is nil.
12489
12490         * imap.el (imap-parse-fetch): Courier can insert spurious blank
12491         characters which will confuse `read', so skip past them.
12492
12493 2009-01-01  Dave Love  <fx@gnu.org>
12494
12495         * imap.el (imap-string-to-integer): Fix typo.
12496         (imap-fetch-safe): New function.
12497         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
12498
12499         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
12500
12501         * imap.el (imap-process-connection-type, imap-debug, imap-open):
12502         (imap-parse-greeting): Fix doc strings.
12503         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
12504         (imap-parse-flag-list): Make messages unique.
12505         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
12506
12507         * nnimap.el: Fix author email.
12508         (nnimap-split-rule): Add FIXME comment.
12509         (nnimap-debug): Fix doc string.
12510
12511 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
12512
12513         * dns.el (dns-set-servers): Check "Address".  Fix typo.
12514
12515 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
12516
12517         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
12518         nslookup if resolv.conf isn't available.
12519         (dns-query): Rename from query-dns.
12520         (dns-query-cached): Rename from query-dns-cached.
12521
12522 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12523
12524         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
12525         overlay-arrow-position and overlay-arrow-string buffer-local; no need
12526         to check if those variables exist (first appeared in Emacs 18.50).
12527
12528 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12529
12530         * mm-util.el (mm-line-number-at-pos): New function.
12531
12532         * spam-report.el (spam-report-process-queue): Use it.
12533
12534 2008-12-24  David Engster  <dengste@eml.cc>
12535
12536         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
12537         parameters that haven't existed as variables as buffer-local variables.
12538
12539 2008-12-23  Dave Love  <fx@gnu.org>
12540
12541         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
12542         cadar.
12543
12544         * sieve-manage.el (sieve-manage-starttls-p): Rename from
12545         imap-starttls-p.
12546         (sieve-manage-starttls-open): Rename from imap-starttls-open.
12547
12548 2008-12-22  Dave Love  <fx@gnu.org>
12549
12550         * imap.el: Fix author email.  Doc fixes.
12551         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
12552         reply.
12553
12554 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
12555
12556         * spam-report.el (spam-report-gmane-max-requests): New constant.
12557         (spam-report-gmane-wait): New variable.
12558         (spam-report-gmane-ham, spam-report-gmane-spam)
12559         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
12560         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
12561         the server.
12562
12563         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
12564         Add explanations.
12565
12566         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
12567         nnheader-accept-process-output and nnheader-read-timeout if available.
12568         (pop3-movemail): Use it.
12569
12570         * message.el (message-check-news-body-syntax): Fix signature check if
12571         there's an attachment.
12572
12573 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12574
12575         * mm-util.el: Add comments to the mm- emulating functions.
12576
12577 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
12578
12579         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
12580         Reported by Stephen Berman <stephen.berman@gmx.net>.
12581
12582 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12583
12584         * mm-util.el (mm-substring-no-properties): New function.
12585         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
12586         (mm-special-display-p): Enable those lambda forms to be byte compiled.
12587         (mm-string-to-multibyte): Doc fix.
12588
12589         * mml.el (mml-attach-file): Use mm-substring-no-properties.
12590
12591 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12592
12593         * mml.el (mml-attach-file): Strip text properties from file name.
12594         (Bug#1574)
12595
12596 2008-12-16  Glenn Morris  <rgm@gnu.org>
12597
12598         * mm-util.el (mm-charset-override-alist): Declare for compiler.
12599
12600 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12601
12602         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
12603         knows since the charset specified might be a bogus alias that
12604         mm-charset-synonym-alist provides.
12605
12606 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12607
12608         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
12609         "ISO_8859-1".
12610
12611         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
12612
12613 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12614
12615         * mm-util.el (mm-charset-eval-alist):
12616         Define it before mm-charset-to-coding-system.
12617         (mm-charset-to-coding-system): Add optional argument `silent';
12618         define it before mm-charset-override-alist.
12619         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
12620         default value if it can be used in Emacs currently running;
12621         silence mm-charset-to-coding-system.
12622
12623 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12624
12625         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
12626         `allow-override' which says whether to use `mm-charset-override-alist'.
12627         (rfc2047-decode-encoded-words): Use it.
12628
12629         * mm-util.el (mm-charset-override-alist): Fix custom type;
12630         add `(gb2312 . gbk)' to choices.
12631
12632 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12633
12634         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
12635         fast.
12636
12637         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12638
12639         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
12640
12641 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
12642
12643         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
12644         on links.
12645
12646         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12647
12648 2008-12-03  Lute Kamstra  <lute@gnu.org>
12649
12650         * sha1.el: Remove leading * from docstrings of defcustoms,
12651         deffaces, defconsts and defuns.
12652
12653 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12654
12655         * message.el (message-idna-to-ascii-rhs-1): Protect against local
12656         users' addresses that don't have domain parts.
12657         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
12658         rather than message-narrow-to-head since there will be the message
12659         header separator.
12660
12661 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12662
12663         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
12664         since the result is inserted in a unibyte buffer anyway.
12665         (nnimap-demule-use-string-to-multibyte): Remove.
12666         (nnimap-demule): Alias it to mm-string-to-multibyte.
12667
12668 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12669
12670         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
12671         variable for debugging bug#464 and bug#1174.
12672         (nnimap-demule): Use it.
12673
12674 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
12675
12676         * gnus-score.el (gnus-score-find-trace): Handle default score in total
12677         score calculation correctly.
12678
12679 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12680
12681         * message.el (message-send-mail): Just set the buffer to unibyte
12682         rather than use mm-with-unibyte-current-buffer which does a lot more.
12683         (message-send-mail-partially): Don't bother with
12684         mm-with-unibyte-current-buffer since it's already been made unibyte by
12685         message-send-mail.
12686
12687 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
12688
12689         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
12690
12691 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
12692
12693         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
12694
12695 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12696
12697         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
12698         require itself and to remove `with-no-warnings'.
12699
12700 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
12701
12702         * starttls.el (starttls-any-program-available): Get the name of the
12703         available TLS layer program.
12704         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
12705         well as the host name in the "opening" message.
12706
12707         * auth-source.el (auth-source-cache, auth-source-do-cache)
12708         (auth-source-user-or-password): Cache passwords and logins by default,
12709         allow override with `auth-source-do-cache'.
12710         (auth-source-forget-user-or-password): Allow users to remove cache
12711         entries if needed.
12712
12713 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
12714
12715         * md4.el (md4-buffer): Fix typo in docstring.
12716         (md4, md4-64): Doc fixes.
12717         (md4-pack-int32): Reflow docstring.
12718
12719 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12720
12721         * ietf-drums.el (ietf-drums-remove-comments): Localize second
12722         condition-case to only the forward-sexp call.
12723
12724 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12725
12726         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
12727         quotes contained.  Make it more robust regardless by an extra
12728         condition-case wrapper.
12729
12730 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12731
12732         * lpath.el: No need to fbind codepage-setup for Emacs 23.
12733
12734 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12735
12736         * nnml.el (nnml-request-expire-articles): Check if the function set to
12737         `nnmail-expiry-target' returns the symbol `delete'.
12738
12739         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
12740
12741         * nnmail.el (nnmail-expiry-target): Fix custom type.
12742
12743 2008-10-02  Glenn Morris  <rgm@gnu.org>
12744
12745         * mm-util.el (mm-codepage-setup): Tweak codepage error.
12746         Silence compiler warning.
12747
12748 2008-10-01  Magnus Henoch  <mange@freemail.hu>
12749
12750         * tls.el (open-tls-stream): Show the actual command being
12751         executed, instead of the format string.
12752
12753 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12754
12755         * lpath.el: Fbind codepage-setup for Emacs 23.
12756
12757 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
12758
12759         * mml.el (mml-menu): Don't assume mml2015 is bound.
12760
12761 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12762
12763         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
12764         exists.
12765
12766 2008-09-27  Glenn Morris  <rgm@gnu.org>
12767
12768         * gnus-util.el (mail-header-remove-comments): Autoload it.
12769
12770 2008-09-27  Andreas Schwab  <schwab@suse.de>
12771
12772         * gnus-util.el (gnus-split-references): Strip comments.
12773         (gnus-parent-id): Likewise.
12774
12775 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
12776
12777         * message.el (message-confirm-send): Fix version.
12778
12779 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12780
12781         * message.el (message-idna-to-ascii-rhs-1): Use
12782         mail-extract-address-components rather than mail-header-parse-addresses
12783         that is an alias by default to ietf-drums-parse-addresses that does not
12784         support non-ASCII names in headers' contents.
12785
12786 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
12787
12788         * message.el (message-confirm-send): Fix variable documentation to
12789         avoid the "y/n" wording.
12790
12791 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
12792
12793         * message.el (message-set-auto-save-file-name): Save to a different
12794         filename so multiple messages (especially drafts) can be recovered.
12795
12796 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
12797
12798         * message.el (message-confirm-send): Add appropriate version.
12799
12800 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
12801
12802         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
12803         defvar.
12804
12805 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
12806
12807         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
12808         (mm-pkcs7-enveloped-magic): Ditto.
12809
12810 2008-09-17  Simon Josefsson  <simon@josefsson.org>
12811
12812         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
12813         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
12814
12815 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
12816
12817         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
12818         default, it's better.
12819
12820 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
12821
12822         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
12823         summary line gnus-number property and ignore them (with a warning
12824         message).
12825
12826 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12827
12828         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
12829         macro caddr in the interactive form since it won't be expanded.
12830
12831 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12832
12833         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
12834         `charset'; fix name of function called recursively.
12835         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
12836
12837 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12838
12839         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
12840         (gnus-mime-set-charset-parameters): New function.
12841         (gnus-mime-view-part-as-charset): Use it to correctly display part
12842         specifying wrong charset.
12843
12844 2008-09-08  David Engster  <dengste@eml.cc>
12845
12846         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
12847         in completing-read for back end server.
12848
12849 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
12850
12851         * message.el (message-confirm-send): New variable to confirm sending a
12852         message.
12853         (message-send): Use it.
12854
12855 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
12856
12857         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
12858
12859 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12860
12861         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
12862
12863 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
12864
12865         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
12866         prevent tracking too many groups.
12867         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
12868         Use it.
12869
12870 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
12871
12872         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
12873         moving point to the bottom of the window in order to avoid recentering.
12874
12875 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12876
12877         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
12878
12879         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
12880         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
12881         (gnus-article-beginning-of-window): Fix calculation.
12882
12883 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12884
12885         * gnus-msg.el (gnus-summary-supersede-article)
12886         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
12887         value of gnus-newsgroup-charset to decode non-MIME encoded text in
12888         message header.
12889
12890 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
12891
12892         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
12893         pending output coming after the status change.
12894
12895 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
12896
12897         * message.el:
12898         * gnus-start.el:
12899         * gnus-registry.el: Remove VMS support.
12900
12901 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12902
12903         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
12904         macro.
12905         (rfc2104-hash): Use it.
12906
12907 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
12908
12909         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
12910         (gnus-summary-sort-by-most-recent-date): New commands.
12911         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
12912         and menu entries.
12913
12914 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12915
12916         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
12917         don't redisplay article for raw contents; remove plural articles stuff.
12918
12919         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
12920         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
12921         on gnus-summary-save-article; display results properly.
12922
12923 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12924
12925         * lpath.el: No need to fbind ns-focus-frame.
12926
12927 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12928
12929         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
12930
12931 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12932
12933         * gnus-art.el (gnus-summary-save-in-pipe):
12934         Consider gnus-save-all-headers.
12935
12936 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
12937
12938         * gnus-util.el (ns-focus-frame): Remove declaration.
12939         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
12940         like x.
12941
12942 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
12943
12944         * rfc2104.el (rfc2104-zero): Delete defconst.
12945         (rfc2104-hex-alist): Likewise.
12946         (rfc2104-hex-to-int): Delete func.
12947         (rfc2104-hexstring-to-bitstring): Likewise.
12948         (rfc2104-nybbles): New defconst.
12949         (rfc2104-hash): Rewrite for speed.
12950
12951 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12952
12953         * tls.el (open-tls-stream): Make it work with the 2nd argument
12954         BUFFER that is a string but does not exist as a buffer object, as
12955         mentioned in the doc-string.
12956
12957 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12958
12959         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
12960         SXEmacs.
12961
12962 2008-07-16  Glenn Morris  <rgm@gnu.org>
12963
12964         * gnus-util.el (ns-focus-frame): Declare for compiler.
12965
12966 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12967
12968         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
12969         set as a group parameter.
12970         (gnus-summary-save-in-pipe): Work when it is called independently.
12971         (gnus-summary-pipe-to-muttprint): Don't modify
12972         gnus-summary-pipe-output-default-command.
12973
12974 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12975
12976         * message.el (message-send-mail-with-sendmail):
12977         Display the error message.
12978
12979 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12980
12981         * gnus-art.el (gnus-default-article-saver):
12982         Add gnus-summary-save-in-pipe to choices.
12983         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
12984         gnus-summary-pipe-output-default-command as the default command.
12985         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
12986         instead of gnus-last-shell-command.
12987
12988         * gnus-sum.el (gnus-summary-pipe-output-default-command):
12989         New user option.
12990         (gnus-summary-muttprint-program): Mention the value will be changed.
12991         (gnus-summary-save-article): Force showing of all headers.
12992         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
12993
12994 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
12995
12996         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
12997
12998 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
12999
13000         * nnimap.el (nnimap-id):
13001         * sieve-manage.el (sieve-manage-open): Doc fixes.
13002
13003 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
13004
13005         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
13006         if available.
13007
13008 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13009
13010         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
13011
13012         * nnkiboze.el (nnkiboze-generate-group):
13013         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
13014
13015         * nnmairix.el: Require CL.
13016
13017 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13018
13019         * dgnushack.el: Autoload get-display-table and put-display-table for
13020         XEmacs 21.5.
13021
13022         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
13023         21.4 and SXEmacs.
13024
13025 2008-06-15  David Engster  <dengste@eml.cc>
13026
13027         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
13028
13029 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
13030
13031         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
13032         New macros that expand to an `aset'/`aref' call under Emacs, and to a
13033         runtime choice under XEmacs.
13034
13035         * gnus-sum.el (gnus-summary-set-display-table):
13036         Use `gnus-put-display-table', `gnus-get-display-table',
13037         `gnus-set-display-table' for the display table, instead of `aset'.
13038
13039         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
13040         Use `gnus-put-display-table', `gnus-get-display-table',
13041         `gnus-set-display-table' for the display table.
13042
13043 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
13044
13045         * nnmairix.el: Add autoloads.
13046
13047 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
13048
13049         * nnmairix.el (nnmairix-delete-recreate-group)
13050         (nnmairix-update-and-clear-marks): Fix error messages.
13051
13052 2008-06-14  David Engster  <dengste@eml.cc>
13053
13054         * nnmairix.el: Upgrade to version 0.6.
13055         (nnmairix-group-toggle-propmarks-this-group)
13056         (nnmairix-group-toggle-readmarks-this-group)
13057         (nnmairix-group-delete-recreate-this-group)
13058         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
13059         (nnmairix-remove-tick-mark-original-article): New commands.
13060         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
13061         (nnmairix-propagate-marks-to-nnmairix-groups)
13062         (nnmairix-only-use-registry, nnmairix-allowfast-default)
13063         (nnmairix-marks-cache, nnmairix-version-output): New variables.
13064         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
13065         functions needed for marks propagation and manipulation of read marks.
13066         (nnmairix-update-groups): New function.
13067         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
13068         (nnmairix-determine-original-group-from-registry)
13069         (nnmairix-determine-original-group-from-path)
13070         (nnmairix-get-group-from-file-path, nnmairix-map-range)
13071         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
13072         New helper functions.
13073         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
13074         keystrokes for new commands.
13075         (nnmairix-delete-and-create-on-change): Doc string cleanup.
13076         (nnmairix-request-group): Check allow-fast group parameter.
13077         (nnmairix-request-create-group): Set allow-fast group parameter if
13078         nnmairix-allowfast-default is set.
13079         (nnmairix-close-group): Propagate marks upon closing if needed.
13080         (nnmairix-group-toggle-threads-this-group): Use new.
13081         nnmairix-group-toggle-parameter helper function.
13082         (nnmairix-search): Better check for empty search result.
13083         (nnmairix-goto-original-article): Use new helper functions for
13084         determining original article.
13085         (nnmairix-show-original-article): Make sure message-id is in brackets.
13086         (nnmairix-call-mairix-binary): Change variable name.
13087         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
13088         helper function.
13089         (nnmairix-widget-toggle-activate): Fix doc string.
13090
13091 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13092
13093         * nnir.el: Require edmacro when compiling with XEmacs.
13094         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
13095         available in Emacs 21.
13096
13097 2008-06-11  Glenn Morris  <rgm@gnu.org>
13098
13099         * gnus-util.el (x-focus-frame):
13100         * gnus.el (image-size):
13101         * mm-decode.el (image-size): Declare.
13102
13103         * gnus-picon.el (declare-function): Add compat definition.
13104         (image-size): Declare.
13105
13106         * gnus-group.el (tool-bar-map):
13107         * gnus-sum.el (tool-bar-map): Define for compiler.
13108
13109         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
13110
13111         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
13112
13113         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
13114         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
13115         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
13116         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
13117         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
13118         * sieve-manage.el, spam-report.el, spam.el:
13119         Remove unnecessary eval-and-compile of autoloads.
13120
13121 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
13122
13123         * auth-source.el: Precise Tramp doc.
13124
13125 2008-06-07  Glenn Morris  <rgm@gnu.org>
13126
13127         * nnmairix.el: Remove unnecessary eval-when-compile.
13128
13129 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13130
13131         * lpath.el: Fbind propertize for XEmacs 21.4.
13132
13133 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
13134
13135         * nnir.el: Move here from ../contrib.
13136
13137 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13138
13139         * gnus-util.el (gnus-read-shell-command): New function.
13140         * mm-decode.el (mm-pipe-part):
13141         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
13142
13143 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13144
13145         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
13146
13147 2008-06-03  Glenn Morris  <rgm@gnu.org>
13148
13149         * pop3.el (nnheader-accept-process-output): Autoload it.
13150
13151 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13152
13153         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
13154         are not 2-digit hexadecimal characters that follow `%'s.
13155
13156 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
13157
13158         * message.el (message-bogus-recipient-p): Fix type in doc string.
13159         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
13160         (message-bogus-addresses): Rename from message-bogus-address-regexp.
13161         Improve custom options.
13162         (message-bogus-recipient-p): Adjust accordingly.
13163
13164 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
13165
13166         * parse-time.el (parse-time-months, parse-time-weekdays): Add
13167         long-form month and day names.
13168
13169 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13170
13171         * dgnushack.el: Autoload debug, eudc-expand-inline and
13172         pgg-snarf-keys-region for XEmacs.
13173
13174         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
13175
13176         * nnmairix.el: Require edmacro when compiling with XEmacs.
13177
13178 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
13179
13180         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
13181         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
13182
13183 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
13184
13185         * auth-source.el: Add more docs.
13186
13187         * netrc.el (netrc-machine): Always match if the port is not given.
13188
13189 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13190
13191         * nnheader.el (nnheader-read-timeout): Change the default timeout from
13192         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
13193         retrieval faster in some cases, but might make CPU usage larger.
13194         If this has any bad side effects, we might revert this change.
13195
13196         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
13197         seems to make mail retrieval much, much faster.
13198         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
13199         unconditionally.
13200
13201         * gnus-draft.el (gnus-group-send-queue):
13202         Bind message-send-mail-partially-limit to nil to avoid being prompted.
13203
13204 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
13205
13206         * mml.el (mml-attach-buffer): Prompt for `disposition'.
13207
13208         * message.el (message-bogus-address-regexp): Fix and improve custom
13209         type.
13210         (message-setup-hook): Add message-check-recipients as custom option.
13211
13212 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
13213
13214         * message.el (message-cite-function): Remove bogus autoload which crept
13215         in during merge from v5-10.
13216
13217 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13218
13219         * nnimap.el (nnimap-open-connection): Fix login/password bug.
13220
13221         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
13222
13223         * auth-source.el: Preliminary Tramp docs.
13224         (auth-sources): Change the default auth-sources to use
13225         EPA .gpg files.
13226
13227 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
13228
13229         * nntp.el: Autoload `auth-source-user-or-password'.
13230         (nntp-send-authinfo): Use it.
13231
13232         * nnimap.el: Autoload `auth-source-user-or-password'.
13233         (nnimap-open-connection): Use it.
13234
13235         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
13236         for the gnus-message function.
13237         (auth-source-user-or-password): Use it.
13238
13239 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13240
13241         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
13242         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
13243         (rfc2104-hash): Use it.
13244
13245 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
13246
13247         * gnus-art.el (gnus-article-toggle-truncate-lines):
13248         Don't use `iff' in docstring.
13249
13250 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
13251
13252         * gnus-registry.el: Adjusted copyright dates and added a keyword.
13253
13254         * gnus-util.el (gnus-extract-address-component-name)
13255         (gnus-extract-address-component-email): Convenience functions around
13256         `gnus-extract-address-components'.
13257
13258         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13259         Use `gnus-extract-address-component-email' to fix bug of comparing full
13260         sender name to `user-mail-address'.
13261
13262 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
13263
13264         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
13265         catch/throw to optimize.
13266         (gnus-registry-find-keywords): Just use member to find a keyword.
13267
13268 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13269
13270         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
13271         is current before calling gnus-server-prepare.
13272         (gnus-server-setup-buffer, gnus-server-update-server)
13273         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
13274
13275 2008-05-04  Juri Linkov  <juri@jurta.org>
13276
13277         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
13278         (mailcap-file-default-commands): Use mailcap-replace-in-string
13279         instead of replace-regexp-in-string, and mailcap-delete-duplicates
13280         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
13281
13282 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
13283
13284         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
13285
13286 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13287
13288         * gnus.el: Bump version to 0.11.
13289
13290 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13291
13292         * gnus.el: No Gnus v0.10 is released.
13293
13294 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13295
13296         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
13297         hooks.
13298         (gnus-update-read-articles): Speed up non-marks-using users.
13299         (gnus-use-marks): Define gnus-use-marks.
13300         (gnus-propagate-marks): Rename variable to something more sensible.
13301
13302 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
13303
13304         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
13305         (gmm-image-load-path-for-library): Fix typos in docstrings.
13306         (gmm-message): Reflow docstring.
13307
13308 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
13309
13310         * mail-source.el (mail-source-set-1, mail-source-bind):
13311         Move auth-source code out of the macro to clean it up and fix bugs.
13312
13313 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
13314
13315         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
13316         by sender if it's equal to user-mail-address, it's likely to be
13317         useless.
13318
13319         * mail-source.el (mail-source-bind): Don't use user or password if they
13320         are not bound.  Unintern them if they are nil.  Don't use server unless
13321         it's bound, and default it to empty string otherwise.
13322
13323 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
13324
13325         * mail-source.el: Load auth-source.el.
13326         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
13327         get user name or password, if auth-sources is set up.
13328
13329         * gnus-registry.el (gnus-registry-split-strategy): New variable for
13330         strategy of splitting with parent.
13331         (gnus-registry-split-fancy-with-parent)
13332         (gnus-registry-post-process-groups): Use it and fix prior
13333         bug (returning a list as the split result).
13334
13335         * auth-source.el (auth-sources): Remove server parameter.
13336         (auth-source-pick, auth-source-user-or-password)
13337         (auth-source-user-or-password-imap)
13338         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13339         (auth-source-user-or-password-sftp)
13340         (auth-source-user-or-password-smtp): Remove server parameter.
13341
13342 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
13343
13344         * smime.el (smime-sign-region, smime-encrypt-region)
13345         (smime-decrypt-region):
13346         Remove redundant calls to `generate-new-buffer-name'.
13347
13348 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
13349
13350         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
13351         Don't use QP for message/rfc822.
13352         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
13353
13354 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13355
13356         * sieve-manage.el (sieve-string-bytes): Remove.
13357         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
13358         correct byte-length only if the process's coding-system is the same as
13359         the one used internally by Emacs to represent strings.
13360
13361 2008-04-22  Juri Linkov  <juri@jurta.org>
13362
13363         * mailcap.el (mailcap-file-default-commands): New function.
13364
13365 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13366
13367         * message.el (message-signature-separator, message-cite-function):
13368         Change custom version.
13369
13370 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
13371
13372         * tls.el (tls-program): Add -ign_eof argument to call the openssl
13373         commands.
13374         (tls-checktrust): Ditto.
13375
13376 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13377
13378         * mm-decode.el (mm-display-external): Make temp file read-only.
13379
13380 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
13381
13382         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
13383         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
13384         `C-c C-f d'.
13385
13386 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
13387
13388         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
13389
13390 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13391
13392         * gnus.el: Bump version to 0.9.
13393
13394 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
13395
13396         * gnus.el: No Gnus v0.8 is released.
13397
13398 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13399
13400         * mail-source.el (mail-source-value):
13401         Prefer fboundp to functionp so it works with macros as well.
13402
13403 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13404
13405         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13406         Fix last change in case the element is not even a symbol.
13407
13408 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13409
13410         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13411         Prefer fboundp to functionp so it works with macros as well.
13412
13413 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
13414
13415         * auth-source.el: Add docs.
13416         (auth-sources): Modify format to support server.
13417         (auth-source-pick, auth-source-user-or-password)
13418         (auth-source-user-or-password-imap)
13419         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13420         (auth-source-user-or-password-sftp)
13421         (auth-source-user-or-password-smtp): Add server parameter.
13422
13423 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
13424
13425         * gnus-registry.el: Initialize the registry when gnus-registry-install
13426         is t.
13427
13428 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13429
13430         * compface.el (uncompface): Make buffer unibyte.
13431
13432 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13433
13434         * mail-source.el (mail-source-value):
13435         Prefer fboundp to functionp so it works with macros as well.
13436
13437 2008-04-05  Glenn Morris  <rgm@gnu.org>
13438
13439         * gnus-ems.el (mm-disable-multibyte): Autoload it.
13440
13441 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13442
13443         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
13444         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
13445
13446         * nnheader.el (nnheader-init-server-buffer): Change buffer's
13447         multibyteness after rather than before erasing it.
13448
13449         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
13450         mm-with-multibyte.
13451         (gnus-request-article-this-buffer): Make sure the proper decoding is
13452         used if gnus-original-article-buffer happens to be unibyte.
13453
13454         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
13455         default-enable-multibyte-characters.
13456
13457         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
13458         default-enable-multibyte-characters.
13459
13460         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
13461
13462         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
13463
13464 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13465
13466         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13467         Fix last change in case the element is not even a symbol.
13468
13469 2008-04-02  Simon Josefsson  <simon@josefsson.org>
13470
13471         * imap.el (imap-enable-exchange-bug-workaround): New variable.
13472         (imap-message-copyuid-1): Use it.
13473         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
13474         J. Williams in
13475         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
13476
13477         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
13478         imap-enable-exchange-bug-workaround.
13479         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
13480
13481 2008-04-01  Simon Josefsson  <simon@josefsson.org>
13482
13483         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
13484         a 100 byte status-checks into a 2-3MB transfer for each group.
13485         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
13486         to enable bug workaround or not.
13487         (nnimap-find-minmax-uid): Only enable workaround conditionally.
13488
13489 2008-03-31  Glenn Morris  <rgm@gnu.org>
13490
13491         * message.el (mml2015-use): Declare for compiler.
13492         (message-info): Require mml2015 when appropriate.
13493
13494 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13495
13496         * Makefile.in (EMACS_COMP): Quote directory name that might contain
13497         whitespace.
13498
13499 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13500
13501         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
13502         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
13503         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
13504         (nntp-service-to-port): New function.
13505         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
13506         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
13507         (nntp-open-netcat-stream): New function.
13508         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
13509
13510 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
13511
13512         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
13513
13514 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13515
13516         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
13517
13518 2008-03-28  Magnus Henoch  <mange@freemail.hu>
13519
13520         * dns.el (dns-write): Use set-buffer-multibyte.
13521
13522 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
13523
13524         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
13525
13526 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
13527
13528         * message.el (message-signature-separator): Change default.
13529         Improve custom type.
13530         (message-cite-function): Change default to
13531         message-cite-original-without-signature.
13532
13533         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
13534         toggle.
13535
13536         * message.el (message-check-news-body-syntax): Fix signature check.
13537         (message-setup-1): Mark buffer as unmodified _after_ running
13538         message-setup-hook and handling message-alternative-emails.
13539         (message-shorten-references): Be more strict when building list of
13540         valid references to comply with GNKSA.
13541
13542         * gnus-group.el (gnus-read-ephemeral-bug-group)
13543         (gnus-read-ephemeral-debian-bug-group)
13544         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
13545
13546         * message.el (message-info): Don't use booleanp which isn't supported
13547         in Emacs 21 and XEmacs.
13548
13549 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
13550
13551         * gnus-group.el (gnus-gmane-group-download-format): Rename from
13552         gnus-group-gmane-group-download-format.
13553         (gnus-group-read-ephemeral-gmane-group): Rename from
13554         gnus-group-read-ephemeral-gmane-group.
13555         (gnus-read-ephemeral-gmane-group-url): Rename from
13556         gnus-group-read-ephemeral-gmane-group-url.
13557         (gnus-bug-group-download-format-alist): New variable.
13558         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
13559         (gnus-read-ephemeral-emacs-bug-group): New commands.
13560
13561 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
13562
13563         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
13564         (gnus-visible-headers): Improve custom type.
13565
13566 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
13567
13568         * mml.el (mml-menu): Add workarounds for XEmacs.
13569
13570         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
13571         X-Boundary header.
13572
13573         * message.el (message-simplify-recipients): Fix previous commit.
13574
13575 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13576
13577         * mm-util.el (mm-set-buffer-multibyte): New function.
13578         * mm-decode.el (mm-copy-to-buffer): Use it.
13579
13580         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13581         Prefer fboundp to functionp so it works with macros as well.
13582
13583 2008-03-19  Glenn Morris  <rgm@gnu.org>
13584
13585         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
13586         Accidentally removed in the sync process with Emacs.
13587
13588 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
13589
13590         * message.el (message-alter-recipients-discard-bogus-full-name):
13591         New function.
13592         (message-alter-recipients-function): New variable.
13593         (message-get-reply-headers): Use it.
13594         (message-replace-header): New helper function.
13595         (message-recipients-without-full-name): New variable.
13596         (message-simplify-recipients): New command.
13597
13598         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
13599
13600         * message.el (message-info): Handle EasyPG manual.
13601
13602         * mml.el (mml-menu): Add entry for EasyPG.
13603
13604 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
13605
13606         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
13607         parameter.
13608
13609         * message.el (message-disassociate-draft): Specify drafts group name
13610         fully.
13611
13612 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
13613
13614         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13615         Eliminate unnecessary duplicates from the match list.
13616
13617 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13618
13619         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
13620
13621         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
13622
13623         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
13624         args of `how-many' of which the XEmacs version doesn't take; declare
13625         Info-index-next as function.
13626
13627 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
13628
13629         * gnus-score.el (gnus-score-headers): Fix handling of
13630         gnus-inhibit-slow-scoring.
13631
13632         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
13633         string.
13634         (gnus-button-url-regexp): Improve handling of parenthesis.
13635         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
13636         (gnus-button-handle-info-keystrokes): Handle index entries.
13637
13638 2008-03-15  Glenn Morris  <rgm@gnu.org>
13639
13640         * parse-time.el (parse-time-string): Simplify.
13641
13642 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13643
13644         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
13645         Incoming* files.
13646
13647 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
13648
13649         * auth-source.el (auth-sources): Rename from auth-source-choices.
13650         (auth-source-pick): Use it.
13651
13652 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13653
13654         * binhex.el (binhex-decode-region-internal):
13655         * uudecode.el (uudecode-decode-region-internal):
13656         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
13657         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
13658         setting default-enable-multibyte-characters.
13659
13660 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
13661
13662         * auth-source.el (auth-source-protocols)
13663         (auth-source-protocols-customize, auth-source-choices): Add and
13664         modified variable customizations and defaults.
13665         (auth-source-pick, auth-source-user-or-password)
13666         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
13667         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13668         (auth-source-user-or-password-sftp)
13669         (auth-source-user-or-password-smtp): Use new variables and provide an
13670         interface to netrc.el.
13671
13672 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13673
13674         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
13675         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
13676         Make sure the nntp port to specify is a string.
13677
13678 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13679
13680         * nntp.el: Use with-current-buffer.
13681         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
13682         dubious mm-with-unibyte-current-buffer.
13683         (nntp-with-open-group-function): New function extracted from
13684         nntp-with-open-group macro.
13685         (nntp-with-open-group): Use the function, so it's easier to debug.
13686         Add indentation and debugging info.
13687         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
13688         Recommend the use of the netcat alternatives.
13689
13690         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
13691         Avoid mm-string-as-multibyte as well.
13692
13693         * nnweb.el (nnweb-insert-html):
13694         Remove use of nnheader-string-as-multibyte.
13695
13696         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
13697         (nnheader-string-as-multibyte): Remove.
13698
13699         * mm-view.el: Use inhibit-read-only.
13700         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
13701         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
13702         or unibyte-string.
13703
13704         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
13705         (mm-uu-yenc-extract): Use with-current-buffer.
13706
13707         * gnus-soup.el (gnus-soup-send-packet): Don't use
13708         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
13709
13710         * nnmh.el: Use with-current-buffer.
13711         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
13712         mm-string-as-multibyte on the output of mm-encode-coding-string.
13713
13714         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
13715         (nnimap-request-move-article): Use with-current-buffer.
13716
13717         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
13718         inserting the handle-buffer's text, so the implicit multibyte->unibyte
13719         conversion uses string-make-unibyte rather than string-as-unibyte.
13720
13721         * gnus-msg.el: Use with-current-buffer.
13722
13723         * message.el (message-ignored-resent-headers): Add "Delivered-To".
13724
13725 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
13726
13727         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
13728         string for caching if it is 'PIN.
13729
13730 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13731
13732         * lpath.el: Consider the case without Emacs/W3.
13733
13734 2008-03-08  Glenn Morris  <rgm@gnu.org>
13735
13736         * time-date.el (date-to-time, time-subtract, time-add)
13737         (safe-date-to-time): Doc fixes.
13738
13739 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
13740
13741         * mail-source.el (mail-source-delete-old-incoming-confirm):
13742         Change default to nil.
13743         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
13744
13745 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13746
13747         * lpath.el: Rearrange.
13748
13749         * gnus-art.el (gnus-narrow-to-page): Position point properly.
13750         (gnus-article-goto-prev-page): Work for articles having ^L's.
13751
13752         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
13753
13754         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
13755
13756 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
13757
13758         * gnus-bookmark.el: Adjust for renames in bookmark.el.
13759         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
13760         (gnus-bookmark-jump): Adjust some variable names.
13761
13762 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
13763
13764         * auth-source.el: New package.
13765         (auth-source-choices): Add customization entry point variable.
13766
13767         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
13768         bug.
13769
13770 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
13771
13772         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
13773         (gnus-registry-initialize, gnus-registry-install-p): Use it.
13774         (gnus-registry-install-shortcuts): Rename from
13775         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
13776         the `gnus-registry-mark-map' keymap dynamically from
13777         `gnus-registry-marks'.  The generated functions update the summary line
13778         when a registry mark is added or deleted, and will call
13779         `gnus-registry-install-p' (see the comments in the code).
13780         (gnus-registry-user-format-function-M): Use concat intelligently.
13781
13782         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
13783         the registry mark functions.
13784
13785 2008-03-05  Glenn Morris  <rgm@gnu.org>
13786
13787         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
13788         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
13789         gnus-art.
13790         (top-level): No need to load own source when compiling.
13791
13792 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13793
13794         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
13795         Suggested by <chris.anderton@zetnet.co.uk>.
13796
13797 2008-03-04  Glenn Morris  <rgm@gnu.org>
13798
13799         * gnus-sum.el (top-level): No need to require gnus when compiling,
13800         since unconditionally required near start of file.
13801         (gnus-summary-display-while-building): Move definition before use.
13802
13803 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
13804
13805         * gnus-registry.el (gnus-registry-user-format-function-M):
13806         Add formatting function.
13807
13808 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
13809
13810         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
13811         with plists.
13812         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
13813         Use new format.
13814
13815 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13816
13817         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
13818         `where-is-internal' that returns a range of key sequences.
13819
13820 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13821
13822         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
13823
13824         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
13825         (gnus-summary-jump-to-group): Consider windows on other displayed
13826         frames as well.  Similar changes might be needed elsewhere, but that's
13827         the one I've bumped into during my use.
13828
13829         * nndoc.el (nndoc-oe-dbx-type-p):
13830         * gnus-msg.el (gnus-debug):
13831         * gnus-group.el (gnus-update-group-mark-positions):
13832         Use mm-string-to-multibyte.
13833
13834 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13835
13836         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
13837         doesn't handle NotDashEscaped.
13838
13839         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
13840         (mml-dnd-attach-options): Fix typo in custom choice.
13841
13842         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
13843         Change nndoc-article-type to mbox.
13844         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
13845
13846         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
13847         to nil, instead of html2text.
13848
13849         * imap.el (imap-debug): Add `imap-ping-server'.
13850
13851         * gnus-bookmark.el: Add FIXMEs.
13852
13853         * message.el (message-form-letter-separator)
13854         (message-send-form-letter-delay): New variables.
13855         (message-send-form-letter): Use them.  New command to send form
13856         letters.  Requested by Uwe Siart.
13857         (message-send-mail-function): Doc fix.  Add "Other" custom option.
13858
13859 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13860
13861         * Update copyright years.
13862
13863 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13864
13865         Sync from EMACS_22_BASE.
13866
13867         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
13868
13869 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
13870
13871         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
13872         empty author.
13873
13874 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
13875
13876         * gnus-registry.el (gnus-registry-marks): Add variable for
13877         customization of marks and their appearance.
13878         (gnus-registry-read-mark): Use it.
13879         (gnus-registry-do-marks): Add utility function to loop through
13880         `gnus-registry-marks'.
13881         (gnus-registry-install-shortcuts-and-menus): Add function to install
13882         shortcuts and menus.
13883         (gnus-registry-initialize): Use it.
13884         (gnus-registry-default-mark): Clarify documentation.
13885
13886 2008-02-29  Glenn Morris  <rgm@gnu.org>
13887
13888         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
13889         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
13890         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
13891         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
13892         Change defcustom :version from 23.0 to 23.1.
13893
13894 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
13895
13896         * gnus-registry.el (gnus-registry-follow-group-p)
13897         (gnus-registry-post-process-groups): Add functions to aid registry
13898         splitting and improve logging.  Clarify behavior in function
13899         documentation.
13900         (gnus-registry-split-fancy-with-parent): Use them.
13901
13902 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13903
13904         * gnus-art.el: Use with-current-buffer.
13905
13906 2008-02-27  David Engster  <dengste@eml.cc>
13907
13908         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
13909         Express real group name in the response.
13910
13911 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13912
13913         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
13914         (nnmairix-last-server, nnmairix-current-server): Defvar them.
13915         (nnmairix-goto-original-article): Defvar gnus-registry-install and
13916         autoload gnus-registry-fetch-group when compiling.
13917         (nnmairix-request-group-with-article-number-correction):
13918         Remove unreferenced argument passed to nnmairix-call-backend.
13919
13920 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13921
13922         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
13923         (mm-uu-extract): Improve face for low color ttys.
13924         Reported by Sascha Wilde.
13925
13926 2008-02-27  Glenn Morris  <rgm@gnu.org>
13927
13928         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
13929         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
13930         variables to defconsts.  Convert comments to doc-strings.
13931         (nnmairix-last-server, nnmairix-current-server): Convert from free
13932         variables to defvars.  Convert comments to doc-strings.
13933         (gnus-registry-fetch-group): Autoload.
13934         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
13935         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
13936         (nnmairix-widget-build-editable-fields): Use car cddr rather than
13937         caddr.
13938         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
13939         nnmairix-request-group-with-article-number-correction call.
13940         (nnmairix-fast, nnmairix-group): New, less general names, for free
13941         variables passed from nnmairix-request-group to
13942         nnmairix-request-group-with-article-number-correction.  Declare.
13943         (nnmairix-request-group-with-article-number-correction):
13944         Use nnmairix-fast, nnmairix-group rather than fast, group.
13945
13946 2008-02-26  David Engster  <dengste@eml.cc>
13947
13948         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
13949         version 0.5.
13950
13951 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
13952
13953         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
13954         instead of making an extra function call.  Don't add the current group
13955         to articles only when they have the group.  Use
13956         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
13957         Reported by David <de_bb@arcor.de>.
13958
13959 2008-02-24  Miles Bader  <miles@gnu.org>
13960
13961         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
13962         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
13963         (mm-find-mime-charset-region):
13964         * mm-bodies.el (mm-encode-body):
13965         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
13966
13967 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13968
13969         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
13970         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
13971
13972 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
13973
13974         * mail-source.el (mail-source-delete-incoming): Change default.
13975         Supplement doc string.
13976
13977         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
13978
13979 2008-02-14  Glenn Morris  <rgm@gnu.org>
13980
13981         * time-date.el (format-seconds): New function.
13982
13983 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13984
13985         * nnmail.el (nnmail-message-id-cache-file): Derive from
13986         `gnus-home-directory'.
13987
13988 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
13989
13990         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
13991         Document negative prefix.
13992
13993         * gnus-group.el (gnus-group-read-group): Document negative prefix.
13994
13995 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13996
13997         * message.el (message-unsent-separator): Add the Exim bounce
13998         separator.
13999
14000 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
14001
14002         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
14003         list.
14004         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
14005         recipient/signer list.
14006
14007 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14008
14009         * Makefile.in (datarootdir): Define.
14010         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
14011         name that might contain whitespace.
14012
14013 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
14014
14015         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
14016         fbound (Emacs 23 unicode), signal an error.
14017
14018 2008-02-08  Glenn Morris  <rgm@gnu.org>
14019
14020         * gnus-art.el (pgg-display-output-buffer): Declare as function.
14021
14022 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
14023
14024         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
14025         ports to the calls to `netrc-machine-user-or-password' in addition to
14026         "imap" and "imaps".
14027
14028 2008-02-01  Zhang Wei  <id.brep@gmail.com>
14029
14030         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
14031
14032         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
14033
14034 2008-02-01  Kenichi Handa  <handa@m17n.org>
14035
14036         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
14037         rfc2104-hexstring-to-bitstring and changed to return a byte list.
14038         (rfc2104-hash): Convert the result of concat to unibyte string.
14039
14040 2008-02-01  Dave Love  <fx@gnu.org>
14041
14042         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
14043         coding-system-for-read.
14044         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
14045
14046 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
14047
14048         * gnus.el (gnus-group-startup-message): Add `find-image' call before
14049         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
14050         <hanche@math.ntnu.no>.
14051
14052 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14053
14054         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
14055
14056         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
14057
14058 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
14059
14060         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
14061         * message.el (message-beginning-of-line): Use featurep instead of bound
14062         tests in order to resolve conditionals at compile time.
14063
14064 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
14065
14066         * mail-source.el (mail-sources): Add `group' choice.
14067
14068         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
14069         parameter `in-group' to control into which group the articles go.
14070         Add treatment of `group' mail-source.
14071
14072 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14073
14074         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
14075
14076         * mm-decode.el (mm-dissect-buffer): Decode description.
14077
14078         * mml.el (mml-to-mime): Encode message header first.
14079
14080 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14081
14082         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
14083         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
14084
14085         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
14086         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
14087
14088 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
14089
14090         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
14091
14092 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14093
14094         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
14095         prefix keys.
14096         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
14097         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
14098         gnus-xmas.el.
14099
14100         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
14101         (gnus-xmas-article-describe-bindings): New function.
14102         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
14103         gnus-xmas-article-describe-bindings.
14104
14105         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
14106
14107 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
14108
14109         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
14110         Add new variables for article mark management.
14111         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
14112         list of extra data entries which, when present, will indicate that the
14113         article ID should not be trimmed from the registry.
14114         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
14115         functions.
14116         (gnus-registry-read-mark): New function to read a mark name from the
14117         user.
14118         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
14119         (gnus-registry-set-article-mark-internal): New functions to add and
14120         remove marks.
14121         (gnus-registry-get-article-marks): New function to show the marks for
14122         an article, or retrieve them for further use.
14123
14124 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14125
14126         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
14127         keys when no argument is given.
14128
14129 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
14130
14131         * imap.el (imap-ping-server): New variable.
14132         (imap-opened): On add extra ping if imap-ping-server is non-nil.
14133         (imap-ping-server): Minor doc string fixes.
14134
14135 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
14136
14137         * imap.el (imap-ping-server): New function.
14138         (imap-opened): Call imap-ping-server.
14139
14140 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
14141
14142         * gnus-sum.el (gnus-article-sort-by-random)
14143         (gnus-thread-sort-by-random): Fix doc strings.
14144         Reported by jidanni@jidanni.org.
14145
14146 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14147
14148         * gnus-art.el (gnus-article-describe-bindings): New function.
14149         (gnus-article-read-summary-keys): Use it.
14150         (gnus-article-mode-map): Bind `C-h b' to it.
14151
14152 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14153
14154         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
14155         XEmacs.
14156         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14157         Protect against non-character events.
14158
14159         * lpath.el: Fbind map-keymap for Emacs 21.
14160
14161 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
14162
14163         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
14164         New command.
14165         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
14166         instead of END.  Change name of the temp file.
14167         (gnus-group-gmane-group-download-format): Add doc string.  Make it
14168         customizable.
14169
14170 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14171
14172         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
14173         bind `S W' to gnus-article-wide-reply-with-original; set default
14174         binding to gnus-article-read-summary-send-keys.
14175         (gnus-article-read-summary-keys): Fix the order of keys; display
14176         continuation keys correctly in the echo area; describe bindings
14177         correctly when keys end with `C-h'.
14178         (gnus-article-read-summary-send-keys): New function.
14179         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14180         Work for gnus-article-read-summary-send-keys; display continuation keys
14181         correctly in the echo area.
14182         (gnus-article-reply-with-original): Ignore prefix argument.
14183         (gnus-article-wide-reply-with-original): New function.
14184
14185         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
14186         Emacs 21.
14187
14188 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14189
14190         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
14191         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
14192
14193 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
14194
14195         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
14196         (gnus-group-read-ephemeral-gmane-group): New command.
14197
14198 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
14199
14200         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
14201
14202 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
14203
14204         * message.el (message-send-mail-function): Increase custom version.
14205
14206         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
14207         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
14208
14209 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
14210
14211         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
14212         for the cases where imap-authenticate is called with a nil buffer
14213         parameter.
14214
14215 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14216
14217         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
14218         html parts correctly; support forwarded messages.
14219         (gnus-article-browse-html-article): Remove work buffers.
14220
14221         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
14222         compiling.
14223         (netrc-bound-and-true-p): New macro.
14224         (netrc-parse): Use it instead of bound-and-true-p that is not available
14225         in XEmacs 21.4.
14226
14227 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
14228
14229         * gnus-registry.el (gnus-registry-mark-article)
14230         (gnus-registry-article-marks): Add functionality to mark articles
14231         through the Gnus registry.
14232
14233         * encrypt.el: Clarify documentation for the new pgg method.
14234         (encrypt-file-alist): Add PGG option.
14235         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
14236         functionality.  Abstract password key and messaging to external
14237         functions.
14238         (encrypt-password-key, encrypt-get-passphrase-if-needed)
14239         (encrypt-message-method-and-cipher): Add new convenience external
14240         functions.
14241         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
14242         (encrypt-pgg-process-buffer): Add PGG functionality glue.
14243
14244         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
14245         (netrc-parse): Use encrypt-file-alist to determine if
14246         encrypt-find-model or encrypt-insert-file-contents should be used.
14247
14248         * encrypt.el: Clarify documentation.  Load password-cache or
14249         password, whichever one is found first, instead of autoloading.
14250
14251 2007-12-19  Glenn Morris  <rgm@gnu.org>
14252
14253         * mml.el (message-options-set, message-narrow-to-head)
14254         (message-in-body-p, message-mail-p, message-encode-message-body):
14255         Autoload.
14256         (message-remove-header, message-narrow-to-headers-or-head)
14257         (message-subscribed-p, message-make-mail-followup-to)
14258         (message-position-on-field, message-news-p)
14259         (message-options-set-recipient, message-generate-headers)
14260         (message-sort-headers): Declare as functions.
14261
14262 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14263
14264         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
14265         convention in doc string.
14266
14267 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14268
14269         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
14270         title to html parts.
14271         (gnus-article-browse-html-article): Pass message header to it.
14272
14273         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
14274
14275 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
14276
14277         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
14278         or password compatible with XEmacs.
14279
14280 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14281
14282         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
14283         format document.
14284         (gnus-mime-delete-part): Don't write description line if empty.
14285         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
14286
14287 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
14288
14289         * gnus-sum.el (gnus-summary-mark-unread-as-read)
14290         (gnus-summary-mark-read-and-unread-as-read)
14291         (gnus-summary-mark-current-read-and-unread-as-read)
14292         (gnus-summary-mark-unread-as-ticked): Doc fix.
14293         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
14294
14295 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14296
14297         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
14298         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14299
14300 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14301
14302         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
14303         yes-or-no-p.
14304
14305 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14306
14307         * mm-decode.el (mm-add-meta-html-tag): New function.
14308         (mm-save-part-to-file, mm-pipe-part): Use it.
14309
14310         * gnus-art.el (gnus-article-browse-delete-temp-files):
14311         Use gnus-y-or-n-p instead of y-or-n-p.
14312         (gnus-article-browse-html-parts): Work with message/external-body; use
14313         mm-add-meta-html-tag.
14314
14315 2007-12-11  Glenn Morris  <rgm@gnu.org>
14316
14317         * gnus-cache.el: Require gnus-sum not just when compiling.
14318
14319         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
14320
14321         * gnus-int.el (gnus-server-opened, gnus-status-message):
14322         Move definitions before use.
14323
14324         * mm-decode.el: Require gnus-util.
14325         (mm-remove-part): Only call delete-annotation on XEmacs.
14326
14327         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
14328
14329         * nnmail.el: Require gnus-int.
14330
14331         * spam.el: Move `require's before `eval-when-compile's.
14332
14333         * gnus-ems.el (gnus-alive-p):
14334         * gnus-fun.el (message-goto-eoh):
14335         * gnus-util.el (gnus-group-name-decode):
14336         * mail-source.el (gnus-compress-sequence):
14337         * message.el (Info-goto-node, format-spec):
14338         * mm-bodies.el (message-options-get):
14339         * mm-decode.el (mm-view-pkcs7):
14340         * mm-util.el (gmm-write-region):
14341         * mml-smime.el (mml-compute-boundary)
14342         (gnus-completing-read-with-default):
14343         * mml.el (widget-button-press, gnus-make-hashtable):
14344         * mml1991.el (mm-decode-content-transfer-encoding)
14345         (mm-encode-content-transfer-encoding)
14346         (message-options-get, message-options-set):
14347         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
14348         * nnfolder.el (gnus-request-group):
14349         * nnheader.el (ietf-drums-unfold-fws):
14350         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
14351         * smime.el (gnus-run-mode-hooks):
14352         * spam-stat.el (gnus-message): Autoload.
14353
14354         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
14355         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
14356         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
14357         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
14358         Add declare-function compatibility definition.
14359
14360         * gnus-cache.el (nnvirtual-find-group-art):
14361         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
14362         (gnus-add-image, gnus-add-wash-type):
14363         * gnus-group.el (nnkiboze-score-file):
14364         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
14365         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
14366         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
14367         (message-tokenize-header, gnus-get-buffer-create)
14368         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
14369         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
14370         * gnus.el (gnus-group-decoded-name):
14371         * mail-source.el (imap-capability):
14372         * mm-bodies.el (message-options-set):
14373         * mm-decode.el (gnus-configure-windows):
14374         * mm-extern.el (message-goto-body):
14375         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
14376         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
14377         (epg-sub-key-validity, message-options-set):
14378         * mml.el (widget-event-point, gnus-configure-windows):
14379         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
14380         * mml2015.el (epg-check-configuration, epg-configuration)
14381         (message-options-set):
14382         * nndb.el (nndb-request-article):
14383         * nnfolder.el (gnus-request-create-group):
14384         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
14385         * nnmaildir.el (gnus-group-mark-article-read):
14386         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
14387         * rfc1843.el (message-fetch-field):
14388         * spam.el (gnus-extract-address-components):
14389         Declare as functions.
14390
14391 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14392
14393         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
14394
14395         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
14396
14397         * lpath.el: Fbind run-mode-hooks for Emacs 21;
14398         bind show-trailing-whitespace for XEmacs.
14399
14400 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14401
14402         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
14403         new no-op macro for backward compatibility.
14404
14405         * imap.el (imap-string-to-integer): New function.
14406
14407 2007-12-09  Glenn Morris  <rgm@gnu.org>
14408
14409         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
14410
14411         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
14412         * message.el, mm-view.el, sieve-manage.el, smime.el:
14413         Add declare-function compatibility definition.
14414
14415         * gnus-art.el (w3-region, w3m-region, Info-menu):
14416         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
14417         * gnus-sum.el (gnus-get-predicate):
14418         * gnus-util.el (mm-append-to-file, w32-focus-frame):
14419         * message.el (mail-abbrev-in-expansion-header-p):
14420         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
14421         (w3m-detect-meta-charset, w3m-region):
14422         * sieve-manage.el (password-read, password-cache-add)
14423         (password-cache-remove):
14424         * smime.el (password-read-and-add): Declare as functions.
14425
14426 2007-12-08  David Kastrup  <dak@gnu.org>
14427
14428         * gnus-sum.el (gnus-summary-simplify-subject-query):
14429         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
14430         `message'.
14431
14432 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14433
14434         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
14435         it to bind idna-program, installation-directory, defined-colors, and
14436         face-attribute for XEmacs of the version that compiles defcustom forms.
14437
14438 2007-12-07  Glenn Morris  <rgm@gnu.org>
14439
14440         * gnus-art.el (article-make-date-line): Revert previous change.
14441
14442 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14443
14444         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
14445
14446 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
14447
14448         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
14449         Call gnus-add-to-range ranges only once with a prepared article-list.
14450
14451 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
14452
14453         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
14454         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
14455         group names with backslashes.
14456         Reported by Tassilo Horn <tassilo@member.fsf.org>.
14457
14458 2007-12-06  Deepak Goel  <deego3@gmail.com>
14459
14460         * gnus-art.el (article-make-date-line):
14461         * gnus-start.el (gnus-load):
14462         * pop3.el (pop3-read-response): Fix buggy call to `error'.
14463
14464 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14465
14466         * gnus-art.el (gnus-use-idna):
14467         * gnus-start.el (gnus-site-init-file):
14468         * message.el (message-use-idna):
14469         * mm-uu.el (mm-uu-hide-markers):
14470         * smiley.el (smiley-style): Revert changes that suppress warnings.
14471
14472 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14473
14474         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
14475         specify charset to html source.
14476         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14477
14478 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14479
14480         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
14481         idna-program in order to suppress byte compile warning issued by XEmacs
14482         that came to byte compile the default value section of defcustom forms
14483         recently.
14484
14485         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
14486         value of installation-directory.
14487
14488         * message.el (message-use-idna): Don't directly refer to the value of
14489         idna-program.
14490
14491         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
14492
14493         * smiley.el (smiley-style): Don't directly call face-attribute.
14494
14495 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
14496
14497         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
14498
14499         * gnus-dired.el: Reduce Gnus dependencies.
14500         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
14501         Don't require.  Use autoloads instead.
14502         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
14503         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
14504         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
14505         (gnus-dired-mode): Adjust doc string.
14506         (gnus-dired-mail-mode): New variable.
14507         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
14508         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
14509         (gnus-dired-mail-buffers): New function.  Return mail or message
14510         composition buffers.
14511         (gnus-dired-attach): Use it.
14512         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
14513         NO-DECODE.
14514         (gnus-dired-print): Use `gnus-print-buffer' depending on
14515         `gnus-dired-mail-mode'.
14516
14517 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14518
14519         * rfc2047.el (rfc2047-encoded-word-regexp)
14520         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
14521         explaining what regexp patterns are for.
14522
14523 2007-12-04  Glenn Morris  <rgm@gnu.org>
14524
14525         * password.el: Move to password-cache.el.
14526
14527         * mml1991.el (password-read, password-cache-add, password-cache-remove):
14528         * mml2015.el (password-read, password-cache-add, password-cache-remove):
14529         * mml-smime.el (password-read, password-cache-add)
14530         (password-cache-remove):
14531         No need to autoload, since mml-sec requires password.
14532
14533         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
14534         * message.el (gnus-extract-address-components):
14535         * mml-smime.el (gnus-extract-address-components): Define for compiler.
14536
14537         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
14538         password.
14539
14540 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
14541
14542         * mailcap.el: Reduce dependencies.
14543         (mail-header-parse-content-type): Autoload.
14544         (mailcap-delete-duplicates): New alias.
14545         (mailcap-mime-info): Add optional argument NO-DECODE.
14546         (mailcap-mime-types): Use mailcap-delete-duplicates.
14547
14548         * message.el (message-ignored-supersedes-headers): Add "X-ID".
14549
14550 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
14551
14552         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
14553         (imap-parse-status): Upcase status-att for servers that sends them
14554         lower-case (e.g., MS Exchange 2007).
14555
14556 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14557
14558         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
14559         function.
14560
14561         * gnus-uu.el (gnus-uu-decode-yenc): New command.
14562         (gnus-uu-yenc-article): New function.
14563
14564         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
14565
14566         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
14567
14568 2007-12-02  Glenn Morris  <rgm@gnu.org>
14569
14570         * binhex.el (binhex): New custom group.
14571         (binhex-decoder-program, binhex-decoder-switches)
14572         (binhex-use-external): Move to the binhex custom group.
14573
14574         * uudecode.el (uudecode): New custom group.
14575         (uudecode-decoder-program, uudecode-decoder-switches)
14576         (uudecode-use-external): Move to the uudecode custom group.
14577
14578         * netrc.el (top-level): Don't load `encrypt' features.
14579         (netrc-parse): Don't use encrypt.
14580         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
14581
14582         * encrypt.el: Remove file.
14583
14584 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
14585
14586         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
14587         matches on patches.
14588
14589         * gnus-art.el (gnus-article-browse-html-article):
14590         Mention `mm-text-html-renderer' in the doc string.
14591
14592         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
14593         string.  Add comments.
14594
14595         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
14596         if rhs is ASCII.
14597
14598 2007-12-01  Glenn Morris  <rgm@gnu.org>
14599
14600         * mail-source.el (top-level): Require format-spec before
14601         eval-when-compile.
14602
14603 2007-11-30  Glenn Morris  <rgm@gnu.org>
14604
14605         * encrypt.el: Require password, rather than autoloading password-read.
14606
14607 2007-11-29  Glenn Morris  <rgm@gnu.org>
14608
14609         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
14610         (sasl-make-client, sasl-next-step, sasl-step-data)
14611         (sasl-step-set-data): Declare as functions.
14612
14613 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
14614
14615         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
14616
14617 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
14618
14619         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
14620         certs should be verified and what is to be done in the event of a
14621         verification failure.
14622
14623         * gnus.el (gnus-method-to-server): Add an optional parameter so the
14624         caller can indicate whether the cache should be disregarded for this
14625         call.  This way the result of the call is reproducible at all times and
14626         can be considered a canonical server name for the supplied method.
14627         (gnus-agent-method-p): Canonicalize server names by pushing their
14628         method through `gnus-method-to-server' using the no-cache argument.
14629
14630         * gnus-srvr.el (gnus-server-insert-server-line):
14631         Call `gnus-method-to-server' with `no-cache' argument.
14632
14633         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
14634         gnus-agent-possibly-synchronize-flags as this should be called when the
14635         server is actually being opened.
14636         (gnus-agent-possibly-synchronize-flags)
14637         (gnus-agent-possibly-synchronize-flags-server): Move check for the
14638         flags file of an agentized server to the latter function.
14639
14640         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
14641         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
14642         after a connection has been established successfully.
14643
14644 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14645
14646         * gnus-art.el (article-display-face): Force to display face if called
14647         interactively; check if gnus-article-x-face-too-ugly matches author.
14648         (article-display-x-face): Display face even if From header is missing
14649         as article-display-face does.
14650
14651 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14652
14653         * hashcash.el (message-narrow-to-headers-or-head)
14654         (message-fetch-field, message-goto-eoh)
14655         (message-narrow-to-headers): Declare as functions.
14656
14657 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
14658
14659         * mail-source.el (mail-sources): Default to fetch from file for
14660         compatibility with default of nnmail-spool-file.
14661
14662 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14663
14664         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
14665         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
14666         to look for encoded word that should be encoded again.
14667         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
14668         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
14669         encoding pattern.
14670         (rfc2047-decode-region): Switch strict regexp and loose one according
14671         to rfc2047-allow-irregular-q-encoded-words.
14672
14673 2007-11-25  Romain Francoise  <romain@orebokech.com>
14674
14675         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
14676
14677 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14678
14679         * tls.el (tls-program): Provide more custom choices from
14680         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
14681         (tls-process-connection-type, tls-success): Remove "*" in doc string.
14682
14683 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14684
14685         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
14686         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
14687
14688         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
14689         `nnmail-spool-file'.
14690
14691         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
14692         `nnmail-spool-file'.
14693
14694         * gnus-move.el (gnus-change-server): Ditto.
14695
14696         * gnus-kill.el (gnus-batch-score): Ditto.
14697
14698         * gnus-cache.el (gnus-jog-cache): Ditto.
14699
14700         * gnus-msg.el (gnus-summary-reply):
14701         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
14702
14703 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14704
14705         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
14706         version.  Minor improvement to doc strings.
14707         (tls-program): Add comment.
14708
14709 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
14710
14711         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
14712         (tls-checktrust): New variable.  Check if GNU TLS complained about a
14713         mismatch between the hostname provided in the certificate and the name
14714         of the host connnecting to.
14715         (open-tls-stream): Use them.  Check certificates against trusted root
14716         certificates.
14717
14718 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14719
14720         * gnus-cache.el (gnus-cache-generate-nov-databases):
14721         Use nnml-generate-nov-databases-directory instead of
14722         nnml-generate-nov-databases-1.
14723
14724 2007-11-24  Glenn Morris  <rgm@gnu.org>
14725
14726         * message.el (message-tool-bar-retro): Update for rename
14727         mail_send.xpm->mail-send.xpm.
14728
14729 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14730
14731         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
14732         `smime-ldap-search' for Emacs 22 and up.
14733
14734 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14735
14736         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
14737
14738         * message.el (message-send-mail-function): Fix error convention.
14739         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
14740         (message-widen-reply, message-send-mail, message-talkative-question)
14741         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
14742         (message-clone-locals, message-send-news): Use with-current-buffer.
14743         (message-insert-or-toggle-importance): Remove unused var `valid'.
14744         (message-make-references): Remove unused var `new-references'.
14745         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
14746
14747 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14748
14749         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
14750         (spam-split-symbolic-return-positive): Reflow docstring.
14751         (spam-backends, spam-summary-exit-behavior)
14752         (spam-mark-ham-unread-before-move-from-spam-group)
14753         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
14754         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
14755         (spam-clear-cache, spam-backend-check, spam-install-backend)
14756         (spam-install-statistical-backend, spam-list-of-processors)
14757         (spam-group-processor-p, spam-split, spam-bogofilter-score)
14758         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
14759         (spam-check-crm114, spam-initialize, spam-unload-hook):
14760         Fix typos in docstrings.
14761
14762 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14763
14764         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
14765         been checked if they have never been read and those group levels are
14766         higher than the one that a user specified.
14767
14768 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14769
14770         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
14771         foreign groups unless a group level is specified by a user.
14772         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
14773
14774 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
14775
14776         * message.el (message-send-mail-function): Require sendmail.
14777
14778 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
14779
14780         * message.el (message-send-mail-function): Check for smtpmail too.
14781
14782         * utf7.el (utf7-encode, utf7-decode): Use coding system
14783         `utf-7'/`utf-7-imap' from utf-7.el' if available.
14784
14785         * message.el (message-send-mail-function): New function.
14786         (message-send-mail-function): Set default using
14787         message-send-mail-function.  Adjust doc string.
14788         (message-send-mail-with-mailclient): New function.
14789
14790 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
14791
14792         * smime.el (from):
14793         * rfc2047.el (message-posting-charset):
14794         * qp.el (mm-use-ultra-safe-encoding):
14795         * pop3.el (parse-time-months):
14796         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
14797         * nnml.el (files):
14798         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
14799         (jka-compr-compression-info-list, ange-ftp-path-format)
14800         (efs-path-regexp):
14801         * nndiary.el (files):
14802         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
14803         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
14804         (epg-digest-algorithm-alist, inhibit-redisplay)
14805         (password-cache-expiry):
14806         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
14807         (pgg-output-buffer, password-cache-expiry):
14808         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
14809         (efs-path-regexp):
14810         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
14811         (inhibit-redisplay):
14812         * mm-uu.el (file-name, start-point, end-point, entry)
14813         (gnus-newsgroup-name, gnus-newsgroup-charset):
14814         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
14815         (latin-unity-ucs-list):
14816         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
14817         (mm-uu-binhex-decode-function):
14818         * message.el (gnus-message-group-art, gnus-list-identifiers)
14819         (rmail-enable-mime-composing, gnus-local-organization)
14820         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
14821         (gnus-read-active-file, facemenu-add-face-function)
14822         (facemenu-remove-face-function, gnus-article-decoded-p)
14823         (tool-bar-mode):
14824         * mail-source.el (display-time-mail-function):
14825         * gnus-util.el (nnmail-pathname-coding-system)
14826         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
14827         (gnus-original-article-buffer, gnus-user-agent)
14828         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
14829         (xemacs-codename, sxemacs-codename, emacs-program-version):
14830         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
14831         * gnus-start.el (gnus-agent-covered-methods)
14832         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
14833         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
14834         (gnus-newsgroup-headers, gnus-group-list-mode)
14835         (gnus-group-mark-positions, gnus-newsgroup-data)
14836         (gnus-newsgroup-unreads, nnoo-state-alist)
14837         (gnus-current-select-method, mail-sources)
14838         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
14839         (nnmail-spool-file, gnus-cache-active-hashtb):
14840         * gnus-mh.el (mh-lib-progs):
14841         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
14842         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
14843         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
14844         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
14845         (gnus-group-buffer):
14846         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
14847         (font-lock-set-defaults):
14848         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
14849         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
14850         (gnus-summary-post-menu, total-parts, type, condition, length):
14851         * gnus-agent.el (gnus-agent-read-agentview):
14852         * flow-fill.el (show-trailing-whitespace):
14853         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
14854         eval-and-compile wrappers for byte compiler pacifiers.
14855
14856         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
14857         (mm-display-inline-fontify): Check for featurep 'xemacs not
14858         extent-list.
14859
14860         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
14861         itimer-list.
14862         (mm-create-image-xemacs): Only do something for XEmacs.
14863         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
14864
14865         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
14866
14867         * gnus-registry.el (gnus-adaptive-word-syntax-table):
14868         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
14869
14870 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
14871
14872         * nnimap.el (nnimap-split-download-body):
14873         * gnus-demon.el (gnus-demon):
14874         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
14875
14876 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14877
14878         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
14879         New macros.
14880         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
14881         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
14882         copy data from unibyte buffer to multibyte current buffer.
14883         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
14884         to copy data from unibyte current buffer to multibyte buffer.
14885         (nntp-make-process-buffer): Make process buffer unibyte.
14886
14887         * pop3.el (pop3-open-server): Fix typo in Lisp code.
14888
14889 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
14890
14891         * pop3.el (pop3-open-server): Accept and process data more robustly at
14892         connection start to avoid spurious "POP SSL connection failed" errors.
14893
14894 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14895
14896         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
14897         read group names.
14898
14899 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
14900
14901         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
14902
14903 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14904
14905         * nnmail.el (nnmail-parse-active): Make group names unibyte.
14906         (nnmail-save-active): Use a unibyte buffer when saving active file,
14907         which may contain non-ASCII group names.
14908
14909         * nnml.el (nnml-request-group): Decode group names in messages.
14910
14911 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
14912
14913         * message.el (message-citation-line-function)
14914         (message-insert-formatted-citation-line): Fix spelling of
14915         `message-insert-formated-citation-line'.
14916
14917 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
14918
14919         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
14920
14921 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14922
14923         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
14924         nnmail-pathname-coding-system.
14925
14926         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
14927         that a user enters; decode group names in messages.
14928
14929         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
14930
14931 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
14932
14933         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
14934
14935         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
14936
14937         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
14938         risky local variable.
14939
14940         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
14941
14942 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
14943
14944         * encrypt.el: Improve documentation to fix function name typo.
14945         Reported by Daiki Ueno <ueno@unixuser.org>.
14946
14947 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14948
14949         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
14950         even if the point is not in the last page of an article.
14951         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
14952         back to the previous page.
14953
14954 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
14955
14956         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
14957
14958 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14959
14960         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
14961
14962 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14963
14964         * message.el (message-check-news-body-syntax):
14965         Avoid mm-string-as-multibyte.
14966         (message-hide-headers): Don't assume (point-min)==1.
14967
14968 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14969
14970         * message.el (message-remove-blank-cited-lines): Fix if remove is
14971         given.
14972         (message-bogus-address-regexp): New variable.
14973         (message-bogus-recipient-p): New function.
14974         (message-check-recipients): New command.
14975         (message-syntax-checks): Add `bogus-recipient'.
14976         (message-fix-before-sending): Add `bogus-recipient'.
14977
14978         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
14979         (gnus-treat-body-boundary): Don't test window-system.
14980
14981 2007-10-28  Leo Liu  <sdl.web@gmail.com>
14982
14983         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
14984
14985 2007-10-28  Miles Bader  <miles@gnu.org>
14986
14987         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
14988         at compile-time too.
14989
14990 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14991
14992         * gnus-msg.el (gnus-message-setup-hook):
14993         Add `message-remove-blank-cited-lines' to options.
14994
14995 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14996
14997         * message.el (message-remove-blank-cited-lines): New function.
14998         Suggested by Karl Plästerer.
14999
15000 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15001
15002         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
15003         mapc.
15004
15005         * imap.el (imap-open): Replace mapcar called for effect with mapc.
15006         (top-level): Use mapc to set functions to be traced for debugging.
15007
15008         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
15009         called for effect with while loop.
15010
15011         * message.el (message-talkative-question): Replace mapcar called for
15012         effect with mapc.
15013
15014         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
15015         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
15016         called for effect with dolist.
15017
15018         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
15019
15020         * nndiary.el: Use dolist instead of mapcar to add diary headers to
15021         gnus-extra-headers and nnmail-extra-headers.
15022
15023         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
15024         called for effect with dolist.
15025         (top-level): Use mapc to set functions to be traced for debugging.
15026
15027         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
15028         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
15029         dolist.
15030
15031         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
15032         Replace mapcar called for effect with mapc.
15033         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
15034         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
15035         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
15036         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
15037
15038         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
15039         remove-if that's a cl function.
15040
15041         * webmail.el (webmail-debug): Replace mapcar called for effect with
15042         dolist.
15043
15044         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
15045         with mapc.
15046
15047 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15048
15049         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
15050         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
15051         with while loop.
15052
15053         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
15054         functions from article-* functions.
15055         (gnus-multi-decode-header): Replace mapcar called for effect with
15056         dolist.
15057
15058         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
15059         (gnus-bookmark-show-details): Replace mapcar called for effect with
15060         while loop.
15061
15062         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
15063         called for effect with while loop.
15064
15065         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
15066         with dolist.
15067
15068         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15069         Replace mapcar called for effect with dolist.
15070
15071         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
15072
15073         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
15074         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
15075         Replace mapcar called for effect with dolist.
15076         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
15077         mapc.
15078
15079         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
15080         Replace mapcar called for effect with dolist.
15081         (gnus-topic-list): Replace mapcar called for effect with mapc.
15082
15083         * gnus.el: Use mapc instead of mapcar to add autoloads.
15084
15085 2007-10-23  Richard Stallman  <rms@gnu.org>
15086
15087         * gnus-group.el (gnus-group-highlight): Mark as risky.
15088
15089 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15090
15091         * gnus.el (gnus-server-to-method): Return method found first in
15092         gnus-newsrc-alist.
15093
15094         * gnus-art.el (gnus-article-highlight-signature)
15095         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
15096         button overlay without the front stickiness.
15097
15098 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
15099
15100         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
15101         overview buffer needed a catch to receive its throw.
15102         (gnus-agent-flush-cache): Declare as interactive to make this function
15103         easier to use.
15104
15105 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
15106
15107         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
15108         `next-line'.
15109
15110 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15111
15112         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
15113         exclude address matching message-dont-reply-to-names.
15114
15115 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15116
15117         * gnus-util.el (gnus-string<): New function.
15118
15119         * gnus-sum.el (gnus-article-sort-by-author)
15120         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
15121
15122 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15123
15124         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
15125         the frame-focus tag is set in gnus-buffer-configuration.
15126
15127 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15128
15129         * gnus-art.el (gnus-article-add-button): Make a button overlay without
15130         the front stickiness.
15131
15132 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15133
15134         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
15135         url pattern; remove duplicate one.
15136         (gnus-article-extend-url-button): New function.
15137         (gnus-article-add-buttons): Use it.
15138         (gnus-button-push): Use concatenated url that it makes.
15139
15140 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
15141
15142         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
15143
15144 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15145
15146         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
15147         Don't hardcode point-min==1.
15148
15149 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
15150
15151         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
15152         Fix comment about "iso8859-1".
15153
15154 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
15155
15156         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
15157         ones returned from the verify-function.
15158
15159         * mm-uu.el (mm-uu-pgp-signed-extract-1):
15160         Call mml2015-extract-cleartext-signature if extraction failed.
15161
15162 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
15163
15164         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
15165         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
15166         failed.
15167
15168 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
15169
15170         * Relicense "GPLv2 or later" files to "GPLv3 or later".
15171
15172 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
15173
15174         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
15175         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
15176         recommends to use EasyPG instead of PGG.
15177
15178         * pgg.el: Revert to revision 6.23.2.16.
15179
15180         * pgg-def.el: Revert to revision 6.6.2.14.
15181
15182         * pgg-gpg.el: Revert to revision 6.23.2.34.
15183
15184 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
15185
15186         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
15187         to mark a thread as expirable.  Add variable `hide' to handle hiding of
15188         thread for both the null and zero (kill/expire thread) universal prefix
15189         cases.
15190         (gnus-summary-expire-thread): Add new function to expire a thread,
15191         using gnus-summary-kill-thread.
15192         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
15193         shortcuts for gnus-summary-expire-thread.
15194         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
15195         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
15196
15197 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15198
15199         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
15200         extras value, so an extras entry can be deleted.
15201         (gnus-registry-delete-extra-entry): Use it.
15202         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
15203         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
15204         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
15205         storage through the gnus-registry, and provide an appropriate API for
15206         it.
15207
15208 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15209
15210         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
15211         Suggested by Leo <sdl.web@gmail.com>.
15212
15213         * gnus.el: Do.
15214
15215 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15216
15217         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
15218         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
15219
15220         * gnus-agent.el (gnus-agent-fetch-headers): Do.
15221
15222         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15223         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
15224
15225 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15226
15227         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
15228         newline.
15229         (nnmbox-request-accept-article): Don't change article in source buffer;
15230         narrow to header to use message-fetch-field rather than
15231         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
15232         (nnmbox-request-replace-article): Quote lines that'll be misidentified
15233         as delimiters; make sure article ends with newline.
15234         (nnmbox-delete-mail): Correct last position of article to be deleted;
15235         ignore X-Gnus-Newsgroup header in article body.
15236         (nnmbox-save-mail): Quote lines looking like delimiters at the right
15237         positions; make sure article ends with newline.
15238
15239         * message.el (message-display-abbrev): Don't infloop when a user
15240         inserts SPC in the beginning of header.
15241
15242         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
15243         coding-system-for-read and coding-system-for-write for XEmacs having no
15244         file-coding feature.
15245
15246         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
15247
15248 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
15249
15250         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
15251         list of groups not followed by default.  Fix type to be regexp.
15252         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
15253
15254 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
15255
15256         * hmac-def.el (define-hmac-function): Switch from old-style to
15257         new-style backquotes.
15258
15259         * md4.el (md4-make-step): Likewise.
15260
15261 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15262
15263         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
15264         raw-text coding system when saving .newsrc file, which may contain
15265         non-ASCII group names.
15266
15267 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15268
15269         * gnus-cus.el (gnus-score-extra): New widget.
15270         (gnus-score-extra-convert): New function.
15271         (gnus-score-customize): Use it for Extra.
15272
15273 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
15274
15275         * mml2015.el (mml2015-extract-cleartext-signature): New function.
15276         (mml2015-mailcrypt-clear-verify): Use it.
15277         (mml2015-gpg-clear-verify): Use it.
15278         (mml2015-pgg-clear-verify): Use it.
15279         (mml2015-epg-clear-verify): Replace the current part with the output
15280         from GnuPG; don't extract the plaintext by itself.
15281
15282         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
15283         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
15284         mml2015-clear-verify-function; don't touch the armor headers or
15285         dash-escaped text here.
15286
15287 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15288
15289         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
15290         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
15291         parts, or application/octet-stream as a last resort.
15292         (gnus-mime-view-part-as-type): Don't toggle display.
15293         (gnus-mime-view-part-as-charset): Don't turn off display before
15294         querying charset.
15295
15296         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
15297         stuff to undisplayer function in Emacs.
15298         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
15299
15300         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
15301         text/calendar parts.
15302
15303 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15304
15305         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
15306         decoding text/calendar parts.
15307
15308         * message.el (message-forward-make-body-mime): Always mark body as
15309         having no illegible text; remove signed-or-encrypted argument.
15310         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
15311
15312         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
15313         (mml-generate-mime-1): Don't encode body if it is specified to be in
15314         raw form; don't make buffer be unibyte when inserting multibyte string.
15315
15316 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15317
15318         * sha1.el: Fix up comment style.
15319         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
15320         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
15321
15322         * hex-util.el: Fix up comment style.
15323         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
15324
15325         * gnus-salt.el: Use with-current-buffer.
15326         (gnus-pick-setup-message): Fix long-standing typo.
15327
15328 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15329
15330         * imap.el (imap-logout-timeout): New variable.
15331         (imap-logout, imap-logout-wait): New functions.
15332         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
15333
15334         * nnimap.el (nnimap-logout-timeout): New server variable.
15335         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
15336         nnimap-logout-timeout.
15337
15338         * gnus-art.el (gnus-article-summary-command-nosave)
15339         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
15340
15341 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15342
15343         * gnus.el (gnus-maximum-newsgroup): New variable.
15344
15345         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
15346         according to gnus-maximum-newsgroup.
15347
15348         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15349         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
15350         Limit the range of articles according to gnus-maximum-newsgroup.
15351
15352 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
15353
15354         * gnus-art.el (gnus-sticky-article): Fix problems described in
15355         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
15356         Don't perform gnus-configure-windows here; reuse existing sticky
15357         article buffer.
15358
15359         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
15360         it doesn't exist in gnus-article-mode.
15361
15362 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15363
15364         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
15365         (gnus-agent-decoded-group-name): New function.
15366         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
15367         (gnus-agent-expire-group-1): Use it; decode group name in messages.
15368
15369 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
15370
15371         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
15372         Add binding for gnus-sticky-article.
15373         (gnus-summary-exit): Don't kill sticky article buffers.
15374
15375         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
15376         article buffer.
15377         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
15378         (gnus-kill-sticky-article-buffers): New commands.
15379
15380 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15381
15382         * nntp.el (nntp-xref-number-is-evil): New server variable.
15383         (nntp-find-group-and-number): If it is non-nil, don't trust article
15384         numbers in the Xref header.
15385
15386 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15387
15388         * gnus-agent.el (gnus-agent-read-group): New function.
15389         (gnus-agent-flush-group, gnus-agent-expire-group)
15390         (gnus-agent-regenerate-group): Use it.
15391         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
15392         nnmail-pathname-coding-system.
15393
15394 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15395
15396         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
15397
15398         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
15399         that are unread as unread, and also as selected so that information of
15400         marks having been changed by a user may be updated when exiting group.
15401
15402 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
15403
15404         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
15405
15406 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15407
15408         * gnus-art.el (gnus-mime-display-single): Pass part number that is
15409         calculated ignoring signature parts to gnus-treat-article.
15410
15411 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15412
15413         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
15414         a point here in order to keep the window start.
15415         (gnus-insert-mime-security-button): Make a button overlay without the
15416         front stickiness.
15417         (gnus-mime-display-security): Goto the end of a button.
15418
15419         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
15420
15421 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15422
15423         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
15424         group-name-at-point.
15425         (gnus-group-completing-read): New function that offers decoded
15426         non-ASCII group names for completion.
15427         (gnus-fetch-group, gnus-group-read-ephemeral-group)
15428         (gnus-group-jump-to-group, gnus-group-make-group-simple)
15429         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
15430         (gnus-group-fetch-control): Use it.
15431         (gnus-fetch-group): Use group-name-at-point for the initial value
15432         rather than the default value; use gnus-alive-p.
15433
15434         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
15435         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
15436         (gnus-summary-post-news): Use gnus-group-completing-read.
15437
15438         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
15439         (gnus-read-move-group-name): Decode group name for completion.
15440
15441 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
15442
15443         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
15444         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
15445         Yamaoka slightly modified the code).
15446
15447 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15448
15449         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
15450         (nnmail-split-incoming): Bind it.
15451
15452         * nnml.el (nnml-group-name-charset): New function.
15453         (nnml-decoded-group-name): Use it; don't decode group name if
15454         nnmail-group-names-not-encoded-p is non-nil.
15455         (nnml-encoded-group-name): New function.
15456         (nnml-group-pathname): Inline nnml-decoded-group-name.
15457         (nnml-request-expire-articles): Decode group name in message.
15458         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
15459         nnmail-pathname-coding-system.
15460         (nnml-save-mail, nnml-active-number): Work with decoded group names and
15461         not decoded ones according to nnmail-group-names-not-encoded-p.
15462         (nnml-generate-active-info): Use nnml-encoded-group-name.
15463
15464 2007-08-08  Glenn Morris  <rgm@gnu.org>
15465
15466         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
15467         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
15468         doc-strings and comments.
15469
15470 2007-07-25  Glenn Morris  <rgm@gnu.org>
15471
15472         * Relicense all FSF files to GPLv3 or later.
15473
15474 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15475
15476         * gnus-sum.el (gnus-summary-move-article):
15477         Make gnus-summary-respool-article work.
15478
15479 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
15480
15481         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
15482         string.
15483
15484 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
15485
15486         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
15487         that should be ignored when comparing distant RSS articles with local
15488         ones.
15489         (nnrss-make-hash-index): New function.  Create a hash index according
15490         to the ignored fields.
15491         (nnrss-check-group): Use it.
15492
15493 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15494
15495         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
15496
15497         * gnus-art.el (article-decode-group-name): Decode Xref header too.
15498
15499         * gnus-group.el (gnus-group-make-group): Encode group name here unless
15500         the new optional argument ENCODED is non-nil.
15501         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
15502         coding system for encoding group name.
15503         (gnus-group-make-rss-group): Pass un-encoded group name to
15504         gnus-group-make-group.
15505         (gnus-group-set-info): Tell gnus-group-make-group that group name is
15506         encoded.
15507
15508         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
15509         Encode group name to which articles are moved or copied.
15510         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
15511         coding system for encoding Newsgroup, Followup-To and Xref headers.
15512
15513         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
15514         marks; use nnheader-file-coding-system to write a file.
15515         (nnagent-retrieve-headers): Bind file-name-coding-system to
15516         nnmail-pathname-coding-system.
15517
15518         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
15519
15520         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
15521         (nnml-request-article, nnml-request-create-group)
15522         (nnml-request-rename-group, nnml-find-id)
15523         (nnml-possibly-change-directory, nnml-possibly-create-directory)
15524         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
15525         (nnml-save-marks): Use nnml-group-pathname instead of
15526         nnmail-group-pathname.
15527
15528         (nnml-request-create-group, nnml-request-expire-articles)
15529         (nnml-request-move-article, nnml-request-delete-group)
15530         (nnml-deletable-article-p, nnml-possibly-create-directory)
15531         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
15532         (nnml-open-marks): Bind file-name-coding-system to
15533         nnmail-pathname-coding-system.
15534
15535         (nnml-request-article): Pass server argument to nnml-find-group-number.
15536         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
15537         Pass server argument to nnml-possibly-create-directory.
15538         (nnml-request-accept-article): Pass server argument to
15539         nnml-active-number and nnml-save-mail.
15540         (nnml-find-group-number): Pass server argument to nnml-find-id.
15541         (nnml-request-update-info): Pass server argument to
15542         nnml-marks-changed-p.
15543
15544         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
15545         (nnml-save-mail, nnml-active-number): Add server argument.
15546
15547         (nnml-request-delete-group): Warn if group is missing.
15548         (nnml-get-nov-buffer): Decode group name.
15549         (nnml-generate-active-info): Encode group name.
15550         (nnml-open-marks): Decode group name in messages.
15551
15552 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15553
15554         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
15555         if it is not specified.
15556         (gnus-article-pipe-part, gnus-article-save-part)
15557         (gnus-article-interactively-view-part, gnus-article-copy-part)
15558         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
15559         (gnus-article-inline-part, gnus-article-save-part-and-strip)
15560         (gnus-article-replace-part, gnus-article-delete-part)
15561         (gnus-article-view-part-as-type): Pass raw prefix argument to
15562         gnus-article-part-wrapper.
15563
15564 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15565
15566         * gnus-agent.el (gnus-agent-save-active):
15567         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
15568
15569         * gnus-cache.el (gnus-cache-save-buffers)
15570         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
15571         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
15572         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
15573         (gnus-cache-braid-nov, gnus-cache-braid-heads)
15574         (gnus-cache-generate-active, gnus-cache-rename-group)
15575         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
15576         (gnus-cache-update-overview-total-fetched-for):
15577         Bind file-name-coding-system to nnmail-pathname-coding-system.
15578         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
15579         New variables.
15580         (gnus-cache-decoded-group-name): New function.
15581         (gnus-cache-file-name): Use it.
15582         (gnus-cache-generate-active): Use non-decoded group name for active.
15583
15584         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
15585         right place.
15586         (gnus-write-active-file): Don't break non-ASCII group names.
15587
15588         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
15589         nnmail-pathname-coding-system.
15590
15591         * lpath.el: Bind default-file-name-coding-system,
15592         file-name-coding-system and language-info-alist for XEmacs.
15593
15594         * gnus-uu.el (gnus-uu-decode-save): Typo.
15595
15596 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15597
15598         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
15599
15600 2007-07-14  David Kastrup  <dak@gnu.org>
15601
15602         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
15603         finishing actions if we did not edit the article.
15604
15605 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15606
15607         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
15608         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
15609         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
15610         (gnus-agent-flush-group, gnus-agent-flush-cache)
15611         (gnus-agent-fetch-headers, gnus-agent-load-alist)
15612         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
15613         (gnus-agent-retrieve-headers, gnus-agent-request-article)
15614         (gnus-agent-regenerate-group)
15615         (gnus-agent-update-files-total-fetched-for)
15616         (gnus-agent-update-view-total-fetched-for):
15617         Bind file-name-coding-system to nnmail-pathname-coding-system.
15618         (gnus-agent-group-pathname): Don't encode file names by
15619         nnmail-pathname-coding-system.
15620         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
15621         coding-system-for-write instead of buffer-file-coding-system to
15622         gnus-agent-file-coding-system.
15623
15624         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
15625         Decode group name.
15626
15627         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
15628
15629         * gnus-start.el (gnus-update-active-hashtb-from-killed)
15630         (gnus-read-newsrc-el-file): Make group names unibyte.
15631
15632         * nnmail.el (nnmail-group-pathname): Don't encode file names by
15633         nnmail-pathname-coding-system.
15634
15635         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
15636         (nnrss-request-delete-group): Bind file-name-coding-system to
15637         nnmail-pathname-coding-system.
15638         (nnrss-read-server-data, nnrss-read-group-data):
15639         Bind file-name-coding-system correctly.
15640         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
15641
15642         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
15643         (nntp-server-to-method-cache): New variable.
15644         (nntp-group-pathname): New function that decodes non-ASCII group names.
15645         (nntp-possibly-create-directory, nntp-marks-changed-p)
15646         (nntp-save-marks, nntp-open-marks): Use it.
15647         (nntp-possibly-create-directory, nntp-open-marks):
15648         Bind file-name-coding-system to nnmail-pathname-coding-system.
15649         (nntp-open-marks): Decode group names when bootstrapping marks.
15650
15651         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
15652         Newsgroups and Followup-To headers.
15653
15654 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15655
15656         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15657         (gnus-server-closed-face, gnus-server-denied-face)
15658         (gnus-server-offline-face): Remove variable.
15659         (gnus-server-font-lock-keywords): Use faces that are not aliases.
15660
15661         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
15662         of modifying message-stack directly for XEmacs.
15663
15664         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
15665         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
15666         if the coding-system argument is nil for XEmacs.
15667
15668         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
15669         mm-charset-override-alist.
15670
15671         * rfc2047.el: Don't require base64; require rfc2045 for the function
15672         rfc2045-encode-string.
15673         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
15674         to quote the parameter value.
15675
15676 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15677
15678         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
15679         form in gnus-group-name-charset-method-alist.
15680
15681         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
15682         overrides the default layout edit-form.
15683
15684         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
15685
15686         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
15687
15688 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15689
15690         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
15691         as unfetched articles.
15692
15693 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
15694
15695         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
15696
15697 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15698
15699         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
15700         original back end that keeps marks in the local system.
15701
15702 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15703
15704         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
15705         arg of pop-to-buffer for XEmacs.
15706         (gnus-article-read-summary-keys): Ditto; don't restore window
15707         configuration if summary command ends up with neither article buffer
15708         nor summary buffer; describe bindings if summary keys end with C-h.
15709
15710 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15711
15712         * message.el (message-fix-before-sending): Skip raw message part to be
15713         forwarded while checking illegible text.
15714         (message-forward-make-body-mime, message-forward-make-body):
15715         Mark signed or encrypted raw message as having no illegible text.
15716
15717 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15718
15719         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
15720         (gnus-message-with-timestamp-1): New macro.
15721         (gnus-message-with-timestamp): New function.
15722         (gnus-message): Use them.
15723
15724         * nnheader.el (nnheader-message): Use them.
15725
15726 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
15727
15728         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
15729         .newsrc.eld file.
15730
15731 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15732
15733         * gnus-agent.el (gnus-agent-fetch-headers)
15734         (gnus-agent-retrieve-headers):
15735         Bind gnus-decode-encoded-address-function to identity.
15736
15737         * nntp.el (nntp-send-xover-command): Recognize an xover command is
15738         available also when the server returns simply a dot.
15739
15740         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
15741
15742 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15743
15744         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
15745
15746 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15747
15748         * gnus-ems.el (gnus-x-splash): Make it work.
15749
15750         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
15751         from being used.
15752
15753         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
15754
15755 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15756
15757         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
15758         4th and the 5th arguments.
15759
15760         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
15761         the front stickiness.
15762         (gnus-article-summary-command-nosave): Correct the order of the
15763         arguments passed to pop-to-buffer.
15764         (gnus-article-read-summary-keys): Ditto; make it work properly when the
15765         summary command ends up with the article buffer.
15766
15767         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
15768         the same faces.
15769
15770 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
15771
15772         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
15773
15774 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
15775
15776         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
15777         * gnus-sum.el (gnus-summary-highlight):
15778         * pgg.el (pgg-sign-region, pgg-sign):
15779         * mail-source.el (mail-source-delete-old-incoming-confirm):
15780         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
15781
15782 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15783
15784         * gnus-art.el (gnus-mime-view-part-externally)
15785         (gnus-mime-view-part-internally): Fix predicate function passed to
15786         completing-read.
15787
15788         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
15789
15790         * gnus.el (gnus-update-message-archive-method): Add :version.
15791
15792 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15793
15794         * gnus.el (gnus-update-message-archive-method): New variable.
15795
15796         * gnus-start.el (gnus-setup-news): Update saved "archive" method
15797         according to gnus-message-archive-method if
15798         gnus-update-message-archive-method is non-nil.
15799
15800 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15801
15802         * gnus-sum.el (gnus-summary-limit-to-address): New function.
15803         Suggested by Loic Dachary <loic@dachary.org>.
15804         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15805
15806 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15807
15808         * message.el (message-pop-to-buffer): Add switch-function argument.
15809         (message-mail): Pass switch-function argument to it.
15810
15811 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
15812
15813         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
15814         Improve doc string.
15815
15816 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15817
15818         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
15819         (gnus-header-content):
15820         * gnus-cite.el (gnus-cite-10):
15821         * gnus-srvr.el (gnus-server-closed):
15822         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
15823         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
15824         (gnus-group-mail-3-empty, gnus-group-mail-low)
15825         (gnus-group-mail-low-empty, gnus-splash):
15826         * message.el (message-header-to, message-header-cc)
15827         (message-header-subject, message-header-other, message-header-name)
15828         (message-header-xheader, message-separator, message-cited-text)
15829         (message-mml): Lighten colors of faces used for dark background.
15830
15831 2007-05-24  Simon Josefsson  <simon@josefsson.org>
15832
15833         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
15834         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
15835
15836 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15837
15838         * message.el (message-narrow-to-headers-or-head):
15839         Ignore mail-header-separator in the body.
15840
15841 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15842
15843         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
15844         same as window size.
15845
15846 2007-05-22  Kevin Ryde  <user42@zip.com.au>
15847
15848         * message.el (message-font-lock-keywords): Use message-header-xheader
15849         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
15850         ahead of the anything pattern, to get it recognized.
15851
15852 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15853
15854         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
15855         spam.el loads uses it in the compiled defadvice form.
15856
15857 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
15858
15859         * gnus-sum.el (gnus-articles-to-read)
15860         (gnus-summary-insert-old-articles): Don't truncate group name for
15861         `read-string'.
15862
15863         * gnus-util.el (gnus-limit-string): Delete this function.
15864
15865         * gnus-sum.el (gnus-simplify-subject-fully):
15866         Use `truncate-string-to-width' instead.
15867
15868 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
15869
15870         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
15871         Tell if, on summary exit, the next group has to be selected.
15872         (gnus-summary-exit): Use it.
15873
15874 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
15875
15876         * gnus-art.el (gnus-article-mode): Fix comment about displaying
15877         non-break space.
15878
15879 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15880
15881         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
15882         Check if group is not a directory.
15883         (nnfolder-request-expire-articles): Don't delete articles if the target
15884         group is not available.
15885
15886         * nnml.el (nnml-request-create-group): Properly check if group is not a
15887         file.
15888         (nnml-request-expire-articles): Don't delete articles if the target
15889         group is not available.
15890
15891         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
15892         Don't quote characters that are within parentheses.
15893
15894 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15895
15896         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
15897         (gnus-handle-ephemeral-exit): Select article according to it.
15898
15899 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
15900
15901         * message.el (message-insert-formated-citation-line): Remove newline.
15902         (message-citation-line-format): Add final \n here so that the user can
15903         avoid a blank line.
15904
15905 2007-05-03  Dan Christensen  <jdc@uwo.ca>
15906
15907         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
15908         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
15909         Update lanl/arXiv support.
15910
15911 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
15912
15913         * gnus.el: Bump version number.
15914
15915 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15916
15917         * gnus.el (gnus-version-number): Bump version.
15918
15919 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15920
15921         * gnus.el: No Gnus v0.6 is released.
15922
15923 2007-04-27  Didier Verna  <didier@xemacs.org>
15924
15925         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
15926         * gmm-utils.el (gmm-regexp-concat): ... here.
15927         * message.el: Don't require 'gnus-util.
15928         (message-dont-reply-to-names): Handle name change above.
15929         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
15930
15931 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15932
15933         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
15934         since the initial value varies according to the system.
15935
15936 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15937
15938         * mm-util.el (mm-charset-synonym-alist): Defcustom.
15939
15940 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
15941
15942         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
15943
15944 2007-04-24  Didier Verna  <didier@xemacs.org>
15945
15946         Improve the type of gnus-ignored-from-addresses.
15947         * gnus-util.el (gnus-orify-regexp): New function.
15948         * message.el (gnus-util): Require it.
15949         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
15950         * gnus-sum.el (gnus-ignored-from-addresses): New function.
15951         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
15952
15953 2007-04-24  Didier Verna  <didier@xemacs.org>
15954
15955         * gnus-sum.el:
15956         * gnus-utils.el: Fix some trailing whitespaces.
15957
15958 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15959
15960         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
15961         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
15962         article's Message-ID; refer parent article in summary buffer.
15963
15964         * message.el (message-bounce): Call mime-to-mml.
15965
15966         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
15967         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
15968         optimize and/or forms properly.
15969
15970 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
15971
15972         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
15973         URL.
15974
15975 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15976
15977         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
15978
15979 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15980
15981         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
15982         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
15983         displayed of multipart/alternative part if it is invoked from summary
15984         buffer.
15985
15986         * mm-view.el (mm-inline-text-html-render-with-w3m)
15987         (mm-inline-text-html-render-with-w3m-standalone)
15988         (mm-inline-render-with-function): Use mail-parse-charset by default.
15989
15990 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
15991
15992         * parse-time.el (parse-time-string-chars): Check if CHAR
15993         is less than the length of parse-time-syntax.
15994
15995 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15996
15997         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
15998         from gnus-newsgroup-processable.
15999
16000 2007-04-16  Didier Verna  <didier@xemacs.org>
16001
16002         * gnus-msg.el (gnus-configure-posting-styles):
16003         Handle message-signature-directory properly with :file syntax.
16004         Reported by "Leo".
16005
16006 2007-04-11  Didier Verna  <didier@xemacs.org>
16007
16008         New user option: message-signature-directory.
16009         * gnus-msg.el (gnus-configure-posting-styles): Support it.
16010         * message.el (message-insert-signature): Ditto.
16011         * message.el (message-signature-file): Doc update.
16012         * message.el (message-signature-directory): New.
16013
16014 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16015
16016         * gnus-msg.el (gnus-inews-yank-articles):
16017         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
16018
16019 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16020
16021         * message.el (message-yank-original): Make sure cited text ends with
16022         newline; don't exchange point and mark.
16023
16024 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
16025
16026         * tls.el (open-tls-stream): Properly handle case where there
16027         is no associated buffer.
16028
16029 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
16030
16031         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
16032         message-yank-original, make sure (< mark TEXT point).
16033
16034 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
16035
16036         * message.el (message-fill-column): New variable.
16037         (message-mode): Use it.  Add comment on a possible new hook.
16038
16039         * nnmail.el (nnmail-spool-file): Mark as obsolete.
16040         (nnmail-get-new-mail): Reformat.
16041
16042         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
16043
16044         * gmm-utils.el: Fix Commentary.
16045         (gmm-tool-bar-from-list): Fix typo in doc string.
16046
16047 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
16048
16049         * message.el (message-yank-original): Don't switch point and mark
16050         unnecessarily to put point and mark as documented.
16051
16052 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16053
16054         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
16055         from the message heads.
16056
16057 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
16058
16059         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
16060         article buffer does not have a window.  This may not be the best
16061         solution but is certainly better than setting the start of the null,
16062         that is the current, window.
16063
16064 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
16065
16066         * gnus-draft.el (gnus-draft-setup-hook): New hook.
16067         (gnus-draft-setup): Run it.
16068
16069         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
16070         gnus-score-fast-scoring.  Allow regexp.
16071         (gnus-score-headers): Use it.
16072
16073         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
16074         XEmacs.
16075
16076         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
16077         string.
16078         (gnus-button-alist): Also catch `<f1> k ...'.
16079         (gnus-treat-display-x-face): Fix doc string.
16080
16081 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16082
16083         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
16084         evaluation of gnus-extended-version to ensure correct generation of the
16085         User-Agent header when message-generate-headers-first is used.
16086
16087 2007-03-24  Simon Josefsson  <simon@josefsson.org>
16088
16089         * hashcash.el (hashcash-generate-payment-async): Don't crash if
16090         hashcash-path is nil.  Don't call callback with incorrect number of
16091         parameters if val is 0.
16092
16093 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16094
16095         * message.el (message-required-news-headers):
16096         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
16097
16098 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
16099
16100         * tls.el (open-tls-stream): In handshake-waiting loop,
16101         don't wait more if there is output available to process.
16102
16103 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
16104
16105         * tls.el (tls-program): Doc fix.
16106
16107 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16108
16109         * message.el (message-generate-new-buffers): Change the meaning of the
16110         nil value; add `standard' to the choices; treat t as `unique'; improve
16111         doc string.
16112         (gnus-select-frame-set-input-focus): Autoload.
16113         (message-buffer-name): Search for the existing message buffer if
16114         message-generate-new-buffers is nil or `standard'; treat the value t of
16115         message-generate-new-buffers as `unique'.
16116         (message-pop-to-buffer): Raise the frame already displaying the message
16117         buffer; clear the echo area after querying.
16118         (message-setup): Pass the `continue' argument to compose-mail.
16119         (message-mail): Prefer `switch-function' if it is given; search for the
16120         existing message buffer if the `continue' argument is non-nil; pass
16121         continue and switch-function arguments to compose-mail by way of
16122         message-setup.
16123         (message-mail-other-window): Adjust argument of message-setup.
16124         (message-mail-other-frame): Ditto.
16125
16126 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16127
16128         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
16129         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
16130         to turn font-lock on when turning gnus-message-citation-mode on.
16131
16132 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
16133
16134         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
16135         (mml-smime-function-alist): New variable; add epg as the backend.
16136         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
16137         mml-smime- functions instead.
16138         * mm-view.el: Require smime.
16139
16140 2007-03-05  Didier Verna  <didier@xemacs.org>
16141
16142         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
16143         instead of just inheritance for posting styles.
16144         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
16145
16146 2007-02-24  Chris Moore  <dooglus@gmail.com>
16147
16148         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
16149         * pgg-pgp.el (pgg-pgp-encrypt-region):
16150         * pgg-gpg.el (pgg-gpg-encrypt-region):
16151         Check pgg-encrypt-for-me if no other recipients.
16152
16153 2007-02-24  John Paul Wallington  <jpw@pobox.com>
16154
16155         * tls.el (tls-certtool-program): Fix custom type.
16156
16157 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16158
16159         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
16160         and point-at-eol instead of line-(beginning|end)-position.
16161
16162         * assistant.el (assistant-parse-buffer): Ditto.
16163
16164         * netrc.el (netrc-parse-services): Ditto.
16165
16166 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
16167
16168         * mml2015.el (mml2015-epg-find-usable-key): New function.
16169         (mml2015-epg-sign): Use it.
16170         (mml2015-epg-encrypt): Use it.
16171
16172 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16173
16174         * message.el (message-make-in-reply-to): Quote name containing
16175         non-ASCII characters.  It will make the RFC2047 encoder cause an error
16176         if there are special characters.  Reported by NAKAJI Hiroyuki
16177         <nakaji@jp.freebsd.org>.
16178
16179 2007-02-27  Didier Verna  <didier@xemacs.org>
16180
16181         Include the group parameters as well as the topic ones in the
16182         inheritance filter process.
16183         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
16184         argument GROUP-PARAMS-LIST.
16185         * gnus-topic.el (gnus-group-topic-parameters): Use it.
16186
16187 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16188
16189         * nntp.el (nntp-never-echoes-commands)
16190         (nntp-open-connection-functions-never-echo-commands): New variables.
16191         (nntp-send-command): Use them.
16192
16193 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
16194
16195         * mml2015.el (mml2015-epg-verify): Simplify.
16196
16197 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16198
16199         * mml.el (mml-content-disposition-alist): New user option.
16200         (mml-content-disposition): New function.
16201         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
16202         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
16203
16204 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
16205
16206         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
16207         verification.
16208
16209 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16210
16211         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
16212         articles posted in the last 24 hours.
16213
16214 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
16215
16216         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
16217
16218 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
16219
16220         * nntp.el (nntp-send-command): Don't wait for echoes when
16221         nntp-open-ssl-stream is used.
16222
16223 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16224
16225         * gnus-cite.el (gnus-test-font-lock-add-keywords)
16226         (gnus-message-add-citation-keywords)
16227         (gnus-message-remove-citation-keywords): Remove.
16228         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
16229         directly, make the variables in font-lock-defaults buffer-local, add
16230         gnus-message-citation-keywords to them and then update the value of
16231         font-lock-keywords.
16232
16233 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16234
16235         * message.el (message-cite-original-1): Don't call
16236         gnus-article-highlight-citation.
16237
16238         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
16239         citations; fix line count.
16240
16241 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16242
16243         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
16244         (gnus-message-add-citation-keywords)
16245         (gnus-message-remove-citation-keywords): Use it; fix the emulating
16246         versions of font-lock-add-keywords and font-lock-remove-keywords to
16247         work with XEmacs correctly.
16248
16249 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16250
16251         * gnus-cite.el (gnus-cite-face-list): Set the values of
16252         gnus-message-max-citation-depth and gnus-message-citation-keywords.
16253         (gnus-message-max-citation-depth): Use defvar rather than defconst.
16254         (gnus-message-cite-prefix-regexp): New variable.
16255         (gnus-message-search-citation-line): Use it; protect against long
16256         citation prefix; fill match data with nil rather than 0 for XEmacs; set
16257         the 0th match data for Emacs.
16258         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
16259         (gnus-message-add-citation-keywords): Append keywords rather than
16260         prepending; emulate font-lock-add-keywords if it is not available.
16261         (gnus-message-remove-citation-keywords):
16262         Emulate font-lock-remove-keywords if it is not available.
16263
16264         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
16265
16266         * message.el (message-cite-prefix-regexp): Set the value of
16267         gnus-message-cite-prefix-regexp.
16268
16269 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16270
16271         * nnweb.el (nnweb-google-parse-1): Update parser.
16272
16273 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
16274
16275         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
16276
16277 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16278
16279         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16280         regexp.
16281
16282 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16283
16284         * uudecode.el (uudecode-string-to-multibyte): New function emulating
16285         string-to-multibyte.
16286         (uudecode-decode-region-internal): Use it.
16287
16288         * lpath.el: Fbind string-as-multibyte for XEmacs.
16289
16290 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
16291
16292         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
16293         Fix custom choice.
16294
16295         * gnus-art.el (gnus-signature-limit): Fix custom choice.
16296
16297 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
16298
16299         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
16300
16301         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
16302         `write-region' to respect `mm-inhibit-file-name-handlers'.
16303
16304 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
16305
16306         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
16307         Use gnus-home-directory instead of "~/" or "$HOME".
16308
16309 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
16310
16311         * encrypt.el (encrypt-insert-file-contents): Add better prompt
16312         to mention filename.
16313         Add comments at beginning regarding usage.
16314         (encrypt-write-file-contents): Change interactive so a string is
16315         acceptable.  If the file has no associated model, show an error instead
16316         of a nonsense prompt.
16317
16318 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16319
16320         * spam.el (spam-bsfilter-ham-switch): Fix typo.
16321         Thanks to Yoshihiko Yamada for kind notification of this typo.
16322
16323 2007-01-12  Kenichi Handa  <handa@m17n.org>
16324
16325         * uudecode.el (uudecode-decode-region-internal): Make it work in a
16326         multibyte buffer.
16327
16328 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16329
16330         * gnus-score.el (gnus-score-fast-scoring): New variable.
16331         (gnus-score-headers): Use it.
16332
16333         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
16334
16335         * message.el (message-cite-original-1):
16336         Call gnus-article-highlight-citation if requested.
16337         (message-make-from): Allow name and address as optional arguments.
16338
16339         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
16340
16341         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
16342         bugs to doc string.
16343         (gnus-button-alist): Add mid\\|message-id.
16344         (gnus-button-fetch-group): Extend for use in
16345         `browse-url-browser-function'.
16346         (gnus-button-url-regexp): Try to catch paired parentheses like in
16347         Wikipedia URLs.
16348
16349         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
16350         Suggested by Simon Krahnke <overlord@gmx.li>.
16351
16352 2007-01-13  Romain Francoise  <romain@orebokech.com>
16353
16354         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
16355         Update copyright.
16356
16357 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
16358
16359         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
16360
16361 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16362
16363         * gnus-registry.el (gnus-registry-unfollowed-groups)
16364         (gnus-registry-split-fancy-with-parent): Fix documentation.
16365
16366 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16367
16368         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
16369         from nnweb groups.
16370
16371 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16372
16373         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
16374         Xref urls.  Erase buffer before requesting head.
16375
16376         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16377
16378 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16379
16380         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
16381         customizable.
16382
16383 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
16384
16385         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
16386         no signing key is found.
16387         (mml2015-epg-encrypt): Ask user whether to skip or abort if
16388         no encrypting and/or signing key is found.
16389
16390 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16391
16392         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
16393
16394 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16395
16396         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
16397         headers read from disk with the ones newly found in the current search.
16398         This should no longer cause problems, because the article numbers in
16399         Gmane's `nov.php' output are ignored since the previous change.
16400
16401 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16402
16403         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
16404
16405 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16406
16407         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
16408         replace-regexp-in-string; bind url-version; fbind display-images-p and
16409         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
16410         find-face and set-itimer-function for Emacs; bind itimer-list for
16411         Emacs.
16412
16413         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16414
16415 2007-01-01  Romain Francoise  <romain@orebokech.com>
16416
16417         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
16418
16419 2006-12-31  Steve Youngs  <steve@sxemacs.org>
16420
16421         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
16422         `define-minor-mode' macro definition expanded properly.
16423         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
16424         exclude it there.
16425
16426         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
16427         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
16428         `fboundp' test.
16429         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
16430         This is OK to autoload in (S)XEmacs now.
16431
16432 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16433
16434         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
16435         keystroke.
16436         (gnus-summary-limit-to-singletons): Fix typo.
16437
16438         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
16439         else fails.
16440
16441 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16442
16443         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
16444         docstring.
16445
16446         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
16447         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
16448         (gnus-summary-insert-dormant-articles): Fix typo in message.
16449
16450 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
16451
16452         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
16453         nil for XEmacs.
16454         (gnus-message-citation-mode): Don't autoload in XEmacs.
16455
16456         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
16457
16458 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
16459
16460         * nnimap.el (nnimap-expunge-search-string):
16461         Mention nnimap-search-uids-not-since-is-evil in docstring.
16462
16463 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16464
16465         * spam.el: Revert to make-obsolete-variable because
16466         define-obsolete-variable-alias is not supported in Emacs 21.
16467
16468         * spam.el (spam-ifile-path, spam-ifile-database-path)
16469         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
16470         make-obsolete-variable.
16471         (spam-bsfilter-path, spam-bsfilter-program)
16472         (spam-spamassassin-path, spam-spamassassin-program)
16473         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
16474         Don't use "path" inappropriately.
16475         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
16476         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
16477         variable names.
16478
16479 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
16480
16481         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
16482         summary buffer.
16483
16484         * password.el (password-cache-remove): Use clear-string to burn
16485         password, if available.
16486
16487 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16488
16489         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
16490
16491         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
16492
16493         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
16494         (gnus-message-highlight-citation): Move defcustom here from
16495         gnus-cite.el.
16496         (gnus-message-citation-mode): Autoload.
16497
16498         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
16499         checks to make it compile with XEmacs.
16500         (gnus-message-citation-mode): New minor mode.
16501         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
16502         (gnus-message-highlight-citation): New variables.
16503         (gnus-message-search-citation-line)
16504         (gnus-message-add-citation-keywords)
16505         (gnus-message-remove-citation-keywords)
16506         (turn-on-gnus-message-citation-mode)
16507         (turn-off-gnus-message-citation-mode): New functions.
16508
16509 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
16510
16511         * gnus-cite.el: Enable highlighting of different citation levels in
16512         message-mode.
16513
16514 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16515
16516         * message.el (message-make-fqdn): Fix comment.
16517         (message-bogus-system-names): Add ".local".
16518
16519         * spam.el (spam-ifile-path, spam-ifile-program)
16520         (spam-ifile-database-path, spam-ifile-database)
16521         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
16522         Don't use "path" inappropriately.
16523         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
16524         strings.
16525         (spam-check-ifile, spam-ifile-register-with-ifile)
16526         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
16527         Use new variable names.
16528
16529         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
16530         (gnus-treat-display-smileys): Simplify using
16531         gnus-image-type-available-p.
16532
16533         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
16534         available.
16535
16536         * gnus-xmas.el (gnus-xmas-image-type-available-p):
16537         Use `display-images-p' if available.
16538
16539 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16540
16541         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
16542         one after turning on the buffer's multibyteness instead of decoding
16543         them directly in the unibyte buffer that causes unexpected conversion
16544         in Emacs 23 (unicode).
16545
16546 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16547
16548         * message.el (message-generate-hashcash): Fix custom type.
16549
16550 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16551
16552         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
16553
16554 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16555
16556         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
16557         disconnect icons.  Add help text.
16558
16559 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
16560
16561         * spam.el (spam-extra-header-to-number): CRM114 spam score is
16562         negated to be consistent with the others we handle.
16563
16564 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16565
16566         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
16567         version of gnus-summary-buffer to something, so that we can use two
16568         article buffers at the same time.
16569
16570 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
16571
16572         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
16573         trigger all the extra headers.
16574         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
16575         sorting.
16576
16577 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16578
16579         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
16580         solid groups.
16581
16582 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
16583
16584         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
16585
16586 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
16587
16588         * legacy-gnus-agent.el: Add Copyright notice.
16589
16590 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
16591
16592         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
16593
16594 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16595
16596         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
16597
16598         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
16599         to make it work reliably in CVS Emacs.
16600         (gnus-summary-limit-strange-charsets-predicate)
16601         (gnus-summary-limit-to-predicate): New functions.
16602
16603 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
16604
16605         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
16606         specifying array size.
16607         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
16608         array if it is too small.
16609         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
16610         (gnus-sort-threads-loop): New function.
16611
16612 2006-12-06  Chris Moore  <dooglus@gmail.com>
16613
16614         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
16615         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
16616
16617 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
16618
16619         * mm-url.el (mm-url-predefined-programs): Call curl with correct
16620         options.
16621
16622 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16623
16624         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
16625         DOS-ing the recipient.
16626
16627         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
16628         the headers when creating the mapping to avoid mismappings.
16629         (nnweb-gmane-create-mapping): Always nix out old mapping.
16630
16631 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16632
16633         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
16634         and mm-verify-option to never.
16635
16636 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16637
16638         * message.el (message-signed-or-encrypted-p): New function.
16639         (message-forward-make-body): Use it.
16640
16641         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
16642         Replace encode-coding-string with mm-encode-coding-string.
16643
16644 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16645
16646         * nneething.el (nneething-decode-file-name):
16647         Replace decode-coding-string with mm-decode-coding-string.
16648
16649         * gnus-int.el (gnus-open-server): Say failed server's name.
16650
16651 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16652
16653         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
16654         strings to a single string.  Quote `errors-file-name'.
16655         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
16656         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
16657         Adjust calls.  Use `shell-quote-argument'.
16658
16659 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
16660
16661         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
16662         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
16663
16664         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
16665         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
16666         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
16667         (gnus-group-make-directory-group, gnus-group-transpose-groups):
16668         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
16669         (gnus-subscribe-newsgroup, gnus-1):
16670         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
16671         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
16672         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
16673         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
16674
16675 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16676
16677         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
16678         keystroke.
16679         (gnus-summary-limit-to-bodies): Implement headersp.
16680
16681 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16682
16683         * dns.el (query-dns): Protect against "Process dns deleted" strings.
16684
16685 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16686
16687         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
16688
16689 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16690
16691         * message.el (message-generate-hashcash): Expand range of values to
16692         include `opportunistic'.
16693         (message-send-mail): Use it.
16694
16695 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16696
16697         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
16698         and comment it.
16699
16700         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
16701
16702 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
16703
16704         * gnus-util.el (gnus-extract-address-components): Improve comment.
16705
16706 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16707
16708         * gnus-util.el (gnus-extract-address-components): Work with address in
16709         which the name portion contains @.
16710
16711         * lpath.el: Fbind custom-autoload.
16712
16713 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16714
16715         * gnus.el (gnus-start): Move custom group up.
16716         (gnus-select-method): Don't autoload, but make it available for
16717         `customize-variable'.
16718         (gnus-getenv-nntpserver): Don't autoload.
16719
16720 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
16721
16722         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
16723
16724 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16725
16726         * message.el (message-sendmail-extra-arguments): New variable.
16727         (message-send-mail-with-sendmail): Use it.
16728
16729 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16730
16731         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
16732         mm-with-unibyte-current-buffer to make string unibyte.
16733
16734         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
16735         mm-string-as-multibyte.
16736
16737 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
16738
16739         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
16740         Reported by Werner Koch <wk@gnupg.org>.
16741
16742 2006-11-14  Daiki Ueno  <ueno@p360>
16743
16744         * mml2015.el: Autoload epa-select-keys when compiling.
16745
16746 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16747
16748         * mml2015.el (mml2015-epg-sign): Save the signing keys in
16749         message-options.
16750         (mml2015-epg-encrypt): Save the recipient keys in message-options.
16751
16752 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16753
16754         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
16755         EasyPG (< 0.0.6).
16756         (mml2015-always-trust): New user option.
16757         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
16758         prompt.
16759
16760 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16761
16762         * nntp.el (nntp-authinfo-force): New variable.
16763         (nntp-send-authinfo): Use it.
16764
16765 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
16766
16767         * message.el (message-strip-subject-encoded-words): Allow _not_ to
16768         decode encoded words.  Improve prompt.  Add comment about forwarding.
16769         (message-replacement-char): Move up.
16770
16771 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
16772
16773         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
16774         instead of gnus-intersection because arguments of gnus-sorted-nunion
16775         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
16776
16777 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
16778
16779         * message.el (message-strip-subject-encoded-words): Reformat prompt.
16780         (message-simplify-subject-functions):
16781         Enable message-strip-subject-encoded-words by default.
16782
16783 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
16784
16785         * message.el (message-strip-subject-encoded-words): New function.
16786         (message-simplify-subject-functions): New variable.
16787         (message-simplify-subject): Use it.  Fix typo in doc string.
16788         Support message-strip-subject-encoded-words.
16789
16790 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
16791
16792         * gnus-diary.el (gnus-diary-delay-format-function):
16793         * nndiary.el (nndiary-reminders):
16794         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
16795
16796 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16797
16798         * gnus-art.el (article-hide-boring-headers): Fetch date from
16799         gnus-original-article-buffer to avoid problems with localized date
16800         strings.
16801
16802 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16803
16804         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
16805
16806 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
16807
16808         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16809         New variables.
16810         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16811         (mm-charset-synonym-alist): Move some entries to
16812         mm-codepage-iso-8859-list.
16813         (mm-charset-synonym-alist, mm-charset-override-alist):
16814         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16815
16816 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16817
16818         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
16819
16820 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16821
16822         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
16823         with Emacs 21 and XEmacs.
16824
16825 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
16826
16827         * spam.el (spam-parse-address): New function for better parsing,
16828         catching errors, etc.
16829         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
16830
16831 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16832
16833         * mm-view.el: Add interactive arg to html2text autoload.
16834
16835 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16836
16837         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
16838
16839 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
16840
16841         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16842         New variables.
16843         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16844         (mm-charset-synonym-alist): Move some entries to
16845         mm-codepage-iso-8859-list.
16846
16847         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
16848
16849 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
16850
16851         * message.el (message-citation-line-format)
16852         (message-insert-formated-citation-line): Fix implementation of %E, %N
16853         and %n according to the doc string.
16854
16855 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
16856
16857         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16858         Use car-safe to avoid bad parses.
16859
16860 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16861
16862         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
16863         names.
16864
16865         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
16866
16867 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16868
16869         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
16870         header.
16871
16872         * message.el (message-draft-headers): Add Date.
16873         (message-headers-to-generate): Fix typo in docstring.
16874
16875         * nndraft.el (nndraft-required-headers): New variable.
16876         (nndraft-generate-headers): Use it.
16877
16878         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
16879
16880 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16881
16882         * gnus-registry.el (gnus-registry-wash-for-keywords)
16883         (gnus-registry-find-keywords): New functions to allow easy searching of
16884         articles that are in the registry.
16885
16886 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16887
16888         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16889         Use ietf-drums-parse-address instead of gnus-extract-address-components.
16890         Reported by Damien Elmes <damien@repose.cx>.
16891
16892 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
16893
16894         * gnus.el (gnus-mime): Remove unused custom group.
16895
16896 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16897
16898         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
16899         "blank line" when searching for end of armor headers.
16900
16901 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16902
16903         * gmm-utils.el (gmm-write-region): Fix variable name.
16904
16905 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
16906
16907         * gmm-utils.el (gmm-write-region): New function based on compatibility
16908         code from `mm-make-temp-file'.
16909
16910         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
16911
16912         * nnmaildir.el (nnmaildir--update-nov)
16913         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
16914         Use `gmm-write-region'.
16915
16916 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16917
16918         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
16919         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16920
16921         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
16922
16923         * message.el (message-replacement-char): New variable.
16924         (message-fix-before-sending): Use it.
16925         (message-simplify-subject): New function to remove duplicate code.
16926         (message-reply, message-followup): Use it.
16927
16928         * gnus-sum.el (gnus-summary-make-menu-bar):
16929         Clarify gnus-summary-limit-to-articles.
16930
16931 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16932
16933         * gnus-util.el (gnus-with-local-quit): New macro.
16934
16935         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
16936
16937 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
16938
16939         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
16940         ignore non-string data.
16941
16942 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
16943
16944         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
16945         non-string data (needs to be done in the registry too).
16946
16947 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16948
16949         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
16950         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
16951         (gnus-registry-split-fancy-with-parent)
16952         (gnus-registry-fetch-simplified-message-subject-fast)
16953         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
16954         Remove text properties on ingress into the registry and when it's saved.
16955         (gnus-registry-clean-empty-function): Fix bug with cleaning the
16956         registry from entries with no groups.
16957
16958 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16959
16960         * gnus-util.el (gnus-string-remove-all-properties): Add utility
16961         function to remove string properties.
16962
16963 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
16964
16965         * gmm-utils.el (gmm): Adjust custom version.
16966
16967         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
16968         Adjust custom version.
16969
16970         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
16971
16972 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
16973
16974         * gnus-art.el (gnus-insert-prev-page-button)
16975         (gnus-insert-next-page-button): Simplify.  Reformat.
16976
16977 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16978
16979         * gnus-art.el (gnus-insert-prev-page-button)
16980         (gnus-insert-next-page-button): Apply gnus-article-button-face.
16981
16982 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
16983
16984         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
16985
16986 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16987
16988         * gnus-art.el (gnus-insert-mime-button)
16989         (gnus-insert-mime-security-button):
16990         Apply gnus-article-button-face to MIME and security buttons.
16991
16992 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
16993
16994         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
16995         readable.
16996
16997 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16998
16999         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
17000
17001 2006-09-20  Steve Youngs  <steve@sxemacs.org>
17002
17003         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
17004         `browse-url-of-file' instead of `browse-url'.
17005
17006 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17007
17008         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
17009         regexp.  Articles containing quotation were cut prematurely.
17010
17011 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17012
17013         * message.el (message-cite-original-1): Use nobody by default for the
17014         value of From header.
17015         (message-reply): Ditto.
17016
17017 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
17018
17019         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
17020         to the gnus-info.  This fixes a bug of inline-PGP message verification.
17021         Reported by Michael Piotrowski <mxp@dynalabs.de>.
17022
17023 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
17024
17025         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
17026         mails in the doc string.  Add some URLs in comment.
17027         (pop3-movemail): Warn about pop3-leave-mail-on-server.
17028
17029 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17030
17031         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
17032         backslashes handling and the way to find boundaries of quoted strings.
17033
17034 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
17035
17036         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
17037         mml1991-encrypt-to-self is set and mml1991-signers is not set.
17038         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
17039         mml2015-encrypt-to-self is set and mml2015-signers is not set.
17040
17041 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
17042
17043         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
17044         doc string.
17045         (gnus-button-regexp, gnus-button-last): Remove unused variables.
17046
17047 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17048
17049         * lpath.el: Fbind epg-check-configuration.
17050
17051 2006-09-06  Simon Josefsson  <jas@extundo.com>
17052
17053         * mml2015.el (mml2015-use): Doc fix, mention epg.
17054
17055 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
17056
17057         * mml2015.el (mml2015-use): Default to epg, if available.
17058
17059 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
17060
17061         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
17062         message-sender.
17063         (mml1991-epg-encrypt): Ditto.
17064         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
17065         message-sender.
17066         (mml2015-epg-encrypt): Ditto.
17067
17068 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
17069
17070         * message.el (message-send-mail-with-sendmail): Look for sendmail in
17071         several common directories.
17072
17073 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
17074
17075         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
17076         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
17077
17078 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17079
17080         * gnus-art.el (article-decode-encoded-words): Make it fast.
17081
17082 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17083
17084         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
17085
17086         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
17087         in quoted string into `\'.
17088
17089 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17090
17091         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17092         Use standard-syntax-table.
17093
17094 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17095
17096         * gnus-art.el (gnus-decode-address-function): New variable.
17097         (article-decode-encoded-words): Use it to decode headers which are
17098         assumed to contain addresses.
17099         (gnus-mime-delete-part): Remove useless `or'.
17100
17101         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
17102         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
17103         (gnus-nov-parse-line): Use it to decode From header.
17104         (gnus-get-newsgroup-headers): Ditto.
17105         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
17106
17107         * mail-parse.el (mail-decode-encoded-address-region): New alias.
17108         (mail-decode-encoded-address-string): New alias.
17109
17110         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17111         New function.
17112         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
17113         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
17114         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
17115         (rfc2047-decode-string): Ditto.
17116         (rfc2047-decode-address-region): New function.
17117         (rfc2047-decode-address-string): New function.
17118
17119 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
17120
17121         * message.el (message-caesar-buffer-body): Allow rotating headers.
17122
17123         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
17124
17125         * message.el (message-insert-formated-citation-line): Fix %f.
17126         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
17127
17128 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17129
17130         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
17131         (gnus-bookmark-mouse-available-p): New macro.
17132         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
17133         (gnus-bookmark-bmenu-show-infos): Use it.
17134         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
17135         (gnus-bookmark-bmenu-hide-infos): Ditto.
17136         (gnus-bookmark-remove-properties): New function.
17137         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
17138         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
17139         (gnus-bookmark-write-file): Bind coding-system-for-write.
17140         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
17141         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
17142         group before selecting it.
17143         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
17144         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
17145         quit-window if it is not available; use gnus-mouse-2 and bind it to
17146         gnus-bookmark-bmenu-select-by-mouse.
17147         (gnus-bookmark-show-details): Remove unused variable `details-list'.
17148         (gnus-bookmark-bmenu-select-by-mouse): New function.
17149
17150 2006-08-13  Romain Francoise  <romain@orebokech.com>
17151
17152         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
17153         space.
17154
17155 2006-08-10  Romain Francoise  <romain@orebokech.com>
17156
17157         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
17158         (dns-mode-soa-auto-increment-serial): New user option.
17159         (dns-mode-soa-maybe-increment-serial): New function.
17160         (dns-mode): Add the latter to `write-contents-functions'.
17161
17162 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17163
17164         * compface.el (uncompface): Use binary rather than raw-text-unix.
17165
17166 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17167
17168         * compface.el (uncompface): Make sure the eol conversion doesn't take
17169         place when communicating with the external programs.
17170         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
17171
17172 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
17173
17174         * nnheader.el (nnheader-insert-head): Fix typo in comment.
17175
17176 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17177
17178         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17179         Make it more robust by parsing author and date independently.
17180
17181 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17182
17183         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
17184
17185 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
17186
17187         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
17188         first matching secret key.
17189         (mml2015-epg-encrypt): Ditto.
17190
17191         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
17192         first matching secret key.
17193         (mml1991-epg-encrypt): Ditto.
17194
17195         * mml2015.el (mml2015-encrypt-to-self): New user option.
17196         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
17197         mml2015-epg-encrypt-to-self is set.
17198
17199         * mml1991.el (mml1991-encrypt-to-self): New variable.
17200         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
17201         mml1991-epg-encrypt-to-self is set.
17202
17203         * mml2015.el (mml2015-signers): New user option.
17204         (mml2015-epg-sign): Reflect the value of mml2015-signers.
17205         (mml2015-epg-encrypt): Allow to select signing keys.
17206
17207         * mml1991.el (mml1991-signers): New variable.
17208         (mml1991-epg-sign): Reflect the value of mml1991-signers.
17209         (mml1991-epg-encrypt): Allow to select signing keys.
17210
17211 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17212
17213         * nnheader.el (nnheader-insert-head): Make it work even if the file
17214         uses CRLF for the line-break code.
17215
17216 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
17217
17218         * mml2015.el: Require mml-sec instead of password.
17219         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
17220         (mml2015-cache-passphrase): Inherit the default value from
17221         mml-secure-cache-passphrase.
17222         (mml2015-passphrase-cache-expiry): Inherit the default value from
17223         mml-secure-passphrase-cache-expiry.
17224
17225         * mml1991.el: Require mml-sec instead of password.
17226         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
17227         (mml1991-cache-passphrase): Inherit the default value from
17228         mml-secure-cache-passphrase.
17229         (mml1991-passphrase-cache-expiry): Inherit the default value from
17230         mml-secure-passphrase-cache-expiry.
17231
17232         * mml-sec.el: Require password.
17233         (mml-secure-verbose): New user option.
17234         (mml-secure-cache-passphrase): New user option.
17235         (mml-secure-passphrase-cache-expiry): New user option.
17236
17237 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
17238             Andreas Vögele  <andreas@altroot.de>   (tiny change)
17239
17240         * pgg-def.el (pgg-truncate-key-identifier):
17241         Truncate the key ID to 8 letters from the end.
17242
17243 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17244
17245         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
17246         workaround for the url package included with Emacs.
17247
17248         * nnweb.el (nnweb-google-create-mapping): Update regexp.
17249
17250 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17251
17252         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
17253         correctly.  This fixes a bug caused by the 2006-05-12 change.
17254
17255 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
17256
17257         * nnmail.el (nnmail-article-group): If splitting raises an error, give
17258         some information about the error when saying that the `bogus' mail
17259         group will be used.
17260
17261 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
17262
17263         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
17264         string.
17265
17266 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
17267
17268         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
17269
17270 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17271
17272         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
17273
17274 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17275
17276         * mml1991.el (mml1991-function-alist): Add epg.
17277         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
17278         (mml1991-epg-encrypt): New functions.
17279
17280 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17281
17282         * mml2015.el (mml2015-verbose): New variable.
17283         (mml2015-cache-passphrase): Ditto.
17284         (mml2015-passphrase-cache-expiry): Ditto.
17285         (mml2015-function-alist): Add epg.
17286         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
17287         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
17288         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
17289         New functions.
17290
17291 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17292
17293         * message.el (message-cite-original-1): Preserve region when removing
17294         quoted text due to X-No-Archive in order to avoid bogus attribution
17295         when citing multiple messages.
17296
17297 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17298
17299         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
17300         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
17301
17302 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
17303
17304         * gnus-diary.el (gnus-user-format-function-d)
17305         (gnus-user-format-function-D): Autoload.
17306
17307         * imap.el (Commentary): Fix typo.
17308
17309         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
17310         2006-04-22 contribution.
17311
17312 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17313
17314         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
17315         It didn't really fix the bogosity I'm seeing with solid web groups.
17316
17317 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17318
17319         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
17320         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
17321         created using server names.  If we use the feature without declaring
17322         it, Gnus does not properly manage server and group state.
17323
17324         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
17325         bound.
17326
17327 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17328
17329         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
17330         looking up the method using GROUP's prefix before inventing a new one.
17331         It is used on killed/unknown groups in various places where returning
17332         an all-new method isn't expected by the caller.
17333
17334         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
17335         and match semantics of gnus-group-real-prefix.
17336
17337 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
17338
17339         * nnmail.el (nnmail-broken-references-mailers): New variable.
17340         (nnmail-ignore-broken-references): New function generalizing
17341         nnmail-fix-eudora-headers.
17342         (nnmail-fix-eudora-headers): Now obsolete.
17343
17344         * gnus-art.el (gnus-button-handle-custom):
17345         Support `customize-apropos*'.
17346
17347 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17348
17349         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
17350
17351         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
17352         articles.
17353
17354 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
17355
17356         * message.el (message-cite-reply-above): New variable.
17357         (message-yank-original): Use it.
17358
17359 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17360
17361         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
17362
17363 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
17364
17365         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
17366         as read.
17367
17368         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
17369
17370 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
17371
17372         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
17373         (gnus-bookmark-default-file): Use gnus-directory.
17374         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
17375         Remove "*" in doc string.
17376         (gnus-bookmark-write-file): Simplify.
17377         (gnus-bookmark-maybe-sort-alist): Use `when'.
17378         (gnus-bookmark-get-bookmark): Fix typo in doc string.
17379         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
17380         Add FIXME about Emacs 21 and XEmacs compatibility.
17381         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
17382         compatibility.
17383         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
17384         compatibility.
17385         (gnus-bookmark-menu-heading): Fix version.
17386
17387 2006-06-19  Bastien Guerry  <bzg@altern.org>
17388
17389         * gnus-bookmark.el: New file.
17390
17391 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17392
17393         * message.el (message-syntax-checks): Doc fix.
17394
17395 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17396
17397         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
17398         unsubscribed groups as if they were killed ones.  It causes duplicate
17399         entries in gnus-newsrc-alist.
17400
17401 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17402
17403         * message.el (message-syntax-checks): Doc fix.
17404         (message-send-mail): Add check for continuation headers.
17405         (message-check-news-header-syntax): Fix regexp used to check for
17406         continuation headers.
17407
17408 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17409
17410         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
17411
17412 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
17413
17414         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
17415
17416 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17417
17418         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
17419         default-truncate-lines.
17420
17421 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17422
17423         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
17424         to fill the utf-8 entry.
17425
17426         * lpath.el: Fbind unicode-precedence-list.
17427
17428 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17429
17430         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17431
17432 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
17433
17434         * gnus-agent.el (directory-files-and-attributes): Move all the way
17435         forward (the third and final move).
17436         (gnus-agent-read-agentview): Trap reconstruction errors due to
17437         nonexistent directory.  Handle by returning nil.
17438
17439 2006-05-30  Didier Verna  <didier@xemacs.org>
17440
17441         * message.el (message-dont-reply-to-names): Update the custom type.
17442         * message.el (message-dont-reply-to-names): New defsubst: potentially
17443         convert a list of regexps into a single one.
17444         * message.el (message-get-reply-headers): Use it.
17445         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
17446
17447 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17448
17449         * gnus-agent.el (directory-files-and-attributes): Move forward.
17450
17451 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17452
17453         * gnus-ml.el (gnus-mailing-list-subscribe)
17454         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
17455         (gnus-mailing-list-message): Fix doc strings.
17456
17457 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17458
17459         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
17460         of doing it manually.
17461
17462 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17463
17464         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
17465         comment.
17466
17467 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
17468
17469         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
17470         (gnus-agent-read-agentview): Fix handling of end-of-file error.
17471         (gnus-agent-read-local): All symbols allocated in my-obarray.
17472         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
17473         (gnus-agent-regenerate-group): Check numeric names to see if they are
17474         messages or groups.
17475         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
17476         better way of do this...)
17477
17478         * gnus-cache.el (gnus-agent-total-fetched-for):
17479         Ignore 'dummy.group' (there should be a better way of do this...)
17480
17481 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17482
17483         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
17484         (gnus-saved-headers): Ditto.
17485         (gnus-default-article-saver): Mention functions may have properties.
17486         (gnus-article-save): Override gnus-save-all-headers and
17487         gnus-saved-headers by :headers property which saver function may have.
17488         (gnus-summary-save-in-file): Add :headers property.
17489         (gnus-summary-write-to-file): Ditto.
17490
17491         * gnus-sum.el (gnus-summary-save-article): Bind
17492         gnus-prompt-before-saving to t when saving many articles in a file;
17493         always show all headers.
17494
17495         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
17496
17497 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
17498
17499         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
17500         marks.
17501
17502         * message.el (message-indent-citation): Add optional arguments to allow
17503         using it outside of message buffers.
17504
17505         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
17506         (gnus-article-treat-unfold-headers): Use it.
17507         (gnus-article-truncate-lines): New variable.
17508         (gnus-article-mode): Use it.
17509         (gnus-article-toggle-truncate-lines): New function.
17510
17511         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
17512         Add gnus-article-toggle-truncate-lines.
17513
17514         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
17515         coding system in XEmacs, use binary.
17516
17517 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17518
17519         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
17520         after-load-alist.
17521
17522         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
17523         this function should save decoded articles.
17524         (gnus-summary-write-to-file): Use property to specify this function
17525         should save decoded articles and specify gnus-summary-save-in-file
17526         should be used to save articles other than the first one when saving
17527         many articles.
17528         (gnus-summary-save-body-in-file): Use property to specify this
17529         function should save decoded articles.
17530         (gnus-summary-write-body-to-file): Use property to specify this
17531         function should save decoded articles and specify
17532         gnus-summary-save-body-in-file should be used to save articles other
17533         than the first one when saving many articles.
17534
17535         * gnus-sum.el (gnus-summary-save-article): Simplify.
17536
17537 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17538
17539         * gnus-art.el (gnus-default-article-saver):
17540         Add gnus-summary-write-body-to-file.
17541         (gnus-article-save-coding-system): Don't use coding system object
17542         in XEmacs.
17543         (gnus-read-save-file-name): Add optional `dir-var' argument which
17544         specifies directory in which files are saved; work even if optional
17545         `variable' argument is not specified.
17546         (gnus-summary-write-to-file): Read file name.
17547         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
17548         (gnus-summary-write-body-to-file): New function.
17549
17550         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
17551         (gnus-summary-local-variables): Add it.
17552         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
17553         (gnus-summary-save-article): Remove optional `decode' argument;
17554         determine whether to decode articles by the value of
17555         gnus-default-article-saver; when saving many files using
17556         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
17557         it first and use gnus-summary-save-in-file or
17558         gnus-summary-save-body-in-file thereafter unless
17559         gnus-prompt-before-saving is always; move point to article which
17560         will be saved.
17561         (gnus-summary-save-article-file): Revert.
17562         (gnus-summary-write-article-file): Revert.
17563         (gnus-summary-save-article-body-file): Revert.
17564         (gnus-summary-write-article-body-file): New function.
17565
17566 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17567
17568         * gnus-art.el (gnus-default-article-saver): Doc fix.
17569         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
17570         from gnus-summary-save-article-coding-system, and default to a
17571         certain coding system.
17572         (gnus-output-to-file): Add coding cookie and encode text according
17573         to gnus-article-save-coding-system; don't use mm-append-to-file.
17574
17575         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
17576         gnus-art.el and rename to gnus-article-save-coding-system.
17577         (gnus-summary-save-article): Require gnus-art; don't show all
17578         headers if it decodes articles; don't add coding cookie here;
17579         don't bind mm-text-coding-system-for-write.
17580         (gnus-summary-save-article-file): Save decoded articles.
17581         (gnus-summary-write-article-file): When saving many files, use
17582         gnus-summary-write-to-file first and gnus-summary-save-in-file
17583         thereafter unless gnus-prompt-before-saving is always.
17584         (gnus-summary-save-article-body-file): Save decoded articles.
17585
17586         * lpath.el: Fbind select-safe-coding-system for XEmacs.
17587
17588 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17589
17590         * nnrss.el (nnrss-check-group): Bind hash-index.
17591
17592 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
17593
17594         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
17595         its hash index.  Store this hash in `nnrss-group-data'.
17596         (nnrss-read-group-data): Update accordingly.
17597
17598 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17599
17600         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
17601         entry.
17602
17603         * gnus-sum.el (gnus-summary-make-menu-bar):
17604         Add gnus-article-browse-html-article.
17605
17606 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
17607
17608         * gnus-sum.el (gnus-summary-mime-map):
17609         Add gnus-article-browse-html-article.
17610
17611         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
17612
17613 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17614
17615         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
17616         suitable coding systems in customize.
17617
17618 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
17619
17620         * mail-source.el (mail-sources): Fix custom type.
17621
17622 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17623
17624         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
17625         (gnus-summary-expire-articles-now): Shorten prompt.
17626
17627         * gmm-utils.el (wid-edit): Require.
17628         (defun-gmm): Rename from `gmm-defun-compat'.
17629         (gmm-image-search-load-path): Use it.
17630         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
17631
17632 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17633
17634         * gnus-sum.el (gnus-summary-save-article-coding-system):
17635         New variable.
17636         (gnus-summary-save-article): Add optional `decode' argument.
17637         If it is set and gnus-summary-save-article-coding-system is non-nil,
17638         save decoded article.
17639         (gnus-summary-write-article-file): Save decoded article if
17640         gnus-summary-save-article-coding-system is non-nil.
17641
17642         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
17643         type.
17644
17645 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17646
17647         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
17648
17649 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17650
17651         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
17652         first to test gnus-single-article-buffer which may be buffer-local.
17653
17654         * gnus-sum.el (gnus-summary-setup-buffer):
17655         Make gnus-single-article-buffer buffer-local and nil in ephemeral
17656         group; make gnus-article-buffer, gnus-article-current, and
17657         gnus-original-article-buffer always buffer-local.
17658         (gnus-summary-exit): Kill article buffer belonging to ephemeral
17659         group.
17660         (gnus-handle-ephemeral-exit): Don't move to next summary line.
17661
17662 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17663
17664         * nnml.el (nnml-request-compact-group): Compressed files might not
17665         have .gz extension.
17666
17667 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17668
17669         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
17670         (mm-copy-to-buffer): Use with-current-buffer.
17671         (mm-display-part): Simplify.
17672         (mm-inlinable-p): Add optional arg `type'.
17673
17674 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17675
17676         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
17677         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
17678         Try harder to show the attachment internally or externally using
17679         gnus-mime-view-part-as-type.
17680
17681 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17682
17683         * message.el (message-from-style, message-signature-separator)
17684         (message-user-organization-file, message-send-mail-function)
17685         (message-citation-line-function, message-yank-prefix)
17686         (message-indent-citation-function, message-signature)
17687         (message-signature-file, message-signature-insert-empty-line):
17688         Remove autoloads.
17689
17690         * gnus-art.el (gnus-buttonized-mime-types):
17691         Remove "multipart/signed".  Revert 2006-04-26 change.
17692
17693 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17694
17695         * gnus.el (gnus-version-number): Bump version.
17696
17697 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17698
17699         * gnus.el: No Gnus v0.5 is released.
17700
17701 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17702
17703         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
17704         fetching articles by message-id.
17705
17706 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17707
17708         * message.el (hashcash): Require hashcash as normal.
17709
17710         * ecomplete.el (ecomplete-highlight-match-line):
17711         Use point-at-eol.
17712         (ecomplete-highlight-match-line): Use `highlight', because that
17713         face exists in both Emacs and XEmacs.
17714
17715         * message.el (message-display-abbrev): Use point-at-bol.
17716
17717         * mail-source.el: Don't require timer/timer-funcs.
17718
17719         * gnus-async.el: Ditto.
17720
17721         * password.el: Ditto.
17722
17723         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
17724
17725         * mm-url.el: Ditto.
17726
17727         * gnus-xmas.el: Don't require timer-funcs.
17728
17729         * mm-util.el: Require timer/timer-funcs.
17730
17731 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17732
17733         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
17734         Close.
17735
17736 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17737
17738         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
17739         unibyte after clear-decrypt function runs.
17740
17741         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
17742         returns as a unibyte string.
17743
17744 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17745
17746         * lpath.el: Revert.
17747
17748         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
17749         (pgg-gpg-process-sentinel): Revert.
17750
17751         * pgg-pgp.el (pgg-pgp-process-region): Revert.
17752         (pgg-pgp-lookup-key): Revert.
17753
17754         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
17755         (pgg-pgp5-lookup-key): Revert.
17756
17757         * pgg.el (pgg-fetch-key): Revert.
17758
17759 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17760
17761         * lpath.el: Fbind string-as-multibyte for XEmacs.
17762
17763         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
17764         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
17765         (mml1991-pgg-encrypt): Ditto.
17766
17767         * pgg-gpg.el (pgg-string-to-multibyte): New function.
17768         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
17769         a multibyte buffer.
17770
17771         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
17772         (pgg-pgp-lookup-key): Ditto.
17773
17774         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
17775         (pgg-pgp5-lookup-key): Ditto.
17776
17777         * pgg.el (pgg-fetch-key): Ditto.
17778
17779 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
17780
17781         * message.el (message-user-organization-file): Check several
17782         locations of the organization file.
17783
17784         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
17785         Add gnus-article-view-part-as-type.
17786
17787         * gnus-art.el (gnus-article-view-part-as-type): New function.
17788
17789         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
17790         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
17791
17792         * mml.el: Simplify autoload.
17793         (mml-mode): defvar dnd-protocol-alist instead of using
17794         symbol-value.
17795         (mml-default-directory): New variable.
17796         (mml-minibuffer-read-file): Use it.
17797         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
17798
17799         * message.el (message-citation-line-format): New variable.
17800         (message-insert-formated-citation-line): New function.
17801         (message-citation-line-function):
17802         Add `message-insert-formated-citation-line' to custom type.
17803
17804         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
17805         to doc string.
17806
17807         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
17808         depending on mm-verify-option.
17809
17810 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17811
17812         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
17813         binding pgg-* variables; reimplement the section which prevents
17814         MIME header from being signed.
17815         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
17816         pgg-text-mode; remove a blank line at the top of body.
17817
17818         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
17819         lines at the top of body; use gnus-newsgroup-charset if there's no
17820         Charset header.
17821
17822 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17823
17824         * message.el (message-self-insert-commands): Doc fix.
17825
17826         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
17827         (mm-uu-pgp-encrypted-test): Ditto.
17828         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
17829         between header and body; return application/pgp-encrypted handle
17830         if decryption failed; decode decrypted body by charset.
17831
17832         * mm-decode.el (mm-automatic-display): Don't make application/pgp
17833         element match to application/pgp-*.
17834
17835 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17836
17837         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
17838         HTML.
17839
17840 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17841
17842         * mail-source.el (mail-source-call-script): Message the error
17843         string.
17844
17845 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17846
17847         * gnus-util.el (gnus-byte-compile): Use it.
17848
17849 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
17850
17851         * gnus-util.el (kill-empty-logs): New function.
17852
17853 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17854
17855         * message.el (message-mail-alias-type): Doc fix.
17856         (message-mail-alias-type-p): New function.
17857         (message-send): Use it.
17858         (message-mode): Ditto.
17859         (message-strip-forbidden-properties): Ditto.
17860
17861         * ecomplete.el (ecomplete-database-file-coding-system):
17862         New variable.
17863         (ecomplete-save): Use it.
17864         (ecomplete-setup): Use it.
17865
17866 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17867
17868         * message.el (message-self-insert-commands): New variable.
17869         (message-strip-forbidden-properties): Use it.
17870
17871 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17872
17873         * message.el (message-put-addresses-in-ecomplete): Use a regexp
17874         that doesn't make XEmacs choke.
17875
17876 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
17877
17878         * gnus-util.el (gnus-replace-in-string):
17879         Prefer replace-regexp-in-string over of replace-in-string.
17880
17881 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17882
17883         * gnus-util.el (gnus-select-frame-set-input-focus):
17884         Use select-frame-set-input-focus if it is available in XEmacs; use
17885         definition defined in Emacs 22 for old Emacsen.
17886
17887         * dgnushack.el: Autoload unmorse-region for XEmacs.
17888
17889         * lpath.el: Bind cursor-in-non-selected-windows and
17890         select-frame-set-input-focus for XEmacs.
17891
17892 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17893
17894         * mm-view.el (mm-inline-text): Use equal instead of equalp.
17895
17896 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
17897
17898         * gnus-registry.el (gnus-registry-cache-save): Remove text
17899         properties when saving via the temp buffer.
17900
17901 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17902
17903         * message.el (message-generate-hashcash): Honor custom type.
17904
17905 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17906
17907         * message.el (message-generate-hashcash): Default to non-nil when
17908         hashcash is found.
17909
17910         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
17911         (gnus-refer-thread-limit): Increase default to 500.
17912
17913         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
17914
17915         * flow-fill.el (fill-flowed): Allow delete-space.
17916
17917 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17918
17919         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17920         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
17921         Remove autoloads.
17922
17923 2006-04-18  Simon Josefsson  <jas@extundo.com>
17924
17925         * message.el (message-generate-hashcash): Default to.
17926
17927 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17928
17929         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
17930         concatenating segments rather than before concatenating them.
17931
17932 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17933
17934         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
17935
17936 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17937
17938         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
17939
17940         * message.el (message-forward-make-body-plain):
17941         Allow message-forward-ignored-headers to be a list.
17942         (message-remove-ignored-headers): Factor out into function.
17943         (message-forward-make-body-mml): Use it.
17944
17945         * imap.el (imap-quote-specials): New function.
17946         (imap-login-auth): Quote specials.
17947
17948         * rfc2231.el (rfc2231-parse-string): Remove dead code.
17949         (rfc2231-parse-string): Allow concatanation of parameters that
17950         aren't contiguous.  The test case is
17951           (mail-header-parse-content-type "message/external-body;
17952             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
17953             access-type=LOCAL-FILE;
17954             name*1*=plugh%2fhello-sailor%2fbing.pdf")
17955
17956 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17957
17958         * nntp.el (nntp-accept-process-output): Return the value of
17959         `nnheader-accept-process-output'.
17960
17961 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17962
17963         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
17964         (gnus-button-alist): Recognize more diff formats.
17965         (gnus-button-patch): Strip directory.
17966
17967 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17968
17969         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
17970         Emacs 22 when setting focus.
17971
17972 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17973
17974         * gnus-art.el (gnus-article-treat-types): Do treatment of
17975         text/x-verbatim parts.
17976         (gnus-button-patch): New command.
17977
17978         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
17979         addresses that contain invalid characters.
17980
17981 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17982
17983         * message.el (message-put-addresses-in-ecomplete):
17984         Use gnus-replace-in-string.
17985         (message-is-yours-p): Use the more correct
17986         mail-header-parse-address instead of
17987         mail-extract-address-components.
17988         (message-put-addresses-in-ecomplete): Fix typo.
17989
17990         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
17991         keystroke.
17992
17993         * gnus-art.el (gnus-treatment-function-alist): Change order of
17994         newsgroups/generic header folding to avoid double-folding.
17995
17996         * message.el (message-hidden-headers): Add X-Draft-From.
17997
17998         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
17999         New command.
18000         (gnus-summary-repeat-search-article-backward): New command.
18001
18002         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
18003         groups in the parent topic.
18004
18005 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
18006
18007         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
18008         (spam-extra-header-to-number): Return the CRM114 number as a
18009         number instead of a string.
18010
18011 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18012
18013         * gnus-art.el (gnus-face-properties-alist): Move here from
18014         gnus-fun.
18015
18016         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
18017
18018 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18019
18020         * message.el (message-strip-forbidden-properties): Only display on
18021         self-insert-command.
18022
18023         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
18024         reindent.
18025         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
18026
18027 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
18028
18029         * smiley.el (smiley-style): Fix typo.
18030
18031 2006-03-23  Kenichi Handa  <handa@m17n.org>
18032
18033         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
18034         instead of set-buffer-multibyte.
18035
18036 2006-03-23  Kenichi Handa  <handa@m17n.org>
18037
18038         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
18039         buffer and then decode the buffer text if necessary.
18040         (rfc2231-encode-string): Be sure to work on multibyte buffer at
18041         first, and after mm-encode-body, change the buffer to unibyte.
18042
18043 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18044
18045         * hashcash.el (hashcash-insert-payment-async-2):
18046         Use message-goto-eoh instead of doing it manually.
18047         (mail-add-payment): Use message-narrow-to-header instead of trying
18048         to do the same itself.
18049
18050         * message.el (message-hidden-headers): Add Face.
18051
18052         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
18053         reparenting code.
18054         (gnus-summary-reparent-children): Refactored out code.
18055         (gnus-summary-thread-map): New keystroke.
18056         (gnus-summary-reparent-children): Make into command.
18057
18058         * smiley.el (smiley-style): Default to `medium' if using a large
18059         font.
18060
18061         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
18062         does it itself.
18063
18064         * message.el (message-point-in-header-p): Simplify definition.
18065
18066 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18067
18068         * nnagent.el (nnagent-request-set-mark): Silence log file
18069         writing.
18070         (nnagent-request-set-mark): Use write-region instead of
18071         append-to-file.
18072
18073         * gnus-sum.el (gnus-read-header): Fudge article number if using a
18074         strange select method.
18075
18076         * ecomplete.el (ecomplete-display-matches): Get highlightling
18077         right.
18078         (ecomplete-display-matches): Use literals.
18079         (ecomplete-display-matches): Disable message logging.
18080
18081         * message.el (message-display-abbrev): Small optimization.
18082
18083         * ecomplete.el (ecomplete-display-matches): Allow automatic
18084         display.
18085
18086         * message.el (message-strip-forbidden-properties):
18087         Display abbrevs.
18088         (message-display-abbrev): Get automatic display right.
18089
18090         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
18091         keystrokes.
18092
18093 2006-04-13  Romain Francoise  <romain@orebokech.com>
18094
18095         TODO: Backport to v5-10!
18096
18097         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
18098         Move here (and rename) from gnus-registry.el.
18099
18100         * gnus-registry.el: Require gnus-util.
18101         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
18102
18103 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18104
18105         * gnus-group.el (gnus-group-catchup-current):
18106         Change if-then-else-if-then-else into cond.
18107         (gnus-group-catchup): Indent.
18108         (group-name-at-point): New function.
18109         (gnus-fetch-group): Provide default from thing at point.
18110
18111 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18112
18113         * message.el (message-display-abbrev): Fix regexp.
18114
18115         * ecomplete.el (ecomplete-highlight-match-line):
18116         Reimplement choosing.
18117         (ecomplete-highlight-match-line): Fix up code rewrite, remove
18118         dead variables.
18119
18120         * message.el (message-newline-and-indent): Remove debugging.
18121         (message-display-abbrev): Use new implementation.
18122
18123 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
18124
18125         * gnus-art.el (gnus-article-mode):
18126         Set cursor-in-non-selected-windows to nil.
18127
18128         * smiley.el: Revert previous change.
18129         (smiley-data-directory): defvar it before using it in the
18130         defcustom of `smiley-style'.
18131
18132 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18133
18134         * message.el (message-newline-and-indent): New function.
18135
18136         * ecomplete.el: Implement more bits.
18137
18138         * message.el (message-put-addresses-in-ecomplete): Clean up the
18139         string.
18140
18141         * ecomplete.el (ecomplete-add-item): Chop off decimals.
18142
18143         * gnus-sum.el (gnus-summary-save-parts):
18144         Bind gnus-summary-save-parts-counter and use it to make unique file
18145         names.
18146
18147         * gnus-art.el (gnus-ignored-headers): Add some more headers.
18148
18149         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
18150         parameter to say whether to actually parse the individual
18151         addresses.
18152
18153         * message.el (message-put-addresses-in-ecomplete): New function.
18154         (ecomplete): Require.
18155         (message-mail-alias-type): Add ecomplete as an option.
18156
18157 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
18158
18159         * flow-fill.el (fill-flowed): Remove trailing space from blank
18160         quoted lines.
18161
18162 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18163
18164         * smiley.el (smiley-style): Move definition later to avoid a
18165         compilation warning.
18166
18167 2006-04-12  Kenichi Handa  <handa@m17n.org>
18168
18169         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
18170         buffer and then decode the buffer text if necessary.
18171         (rfc2231-encode-string): Be sure to work on multibyte buffer at
18172         first, and after mm-encode-body, change the buffer to unibyte.
18173         Use mm-disable-multibyte instead of set-buffer-multibyte.
18174
18175 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18176
18177         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
18178         Content-Type header instead of Content-Disposition header.
18179         (gnus-mime-inline-part): Ditto.
18180         (gnus-mime-view-part-as-charset): Ignore charset that the part
18181         specifies.
18182
18183         * mm-decode.el (mm-display-part): Work with external parts and
18184         usual parts similarly.
18185
18186         * mm-extern.el (mm-inline-external-body): Use mm-display-part
18187         instead of gnus-display-mime.
18188
18189         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
18190         instead of with-temp-buffer.
18191
18192         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
18193         tag to summarized topics part in order to encode non-ASCII text.
18194
18195 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18196
18197         * smiley.el (smiley-style): New variable.
18198         (smiley-directory): New function.
18199         (smiley-data-directory): Derive from `smiley-style' using
18200         `smiley-directory'.
18201         (smiley-regexp-alist): Add new entries.
18202
18203         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
18204         (gnus-article-browse-delete-temp): Add :version.
18205
18206 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
18207
18208         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
18209         the sieve region.
18210
18211 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18212
18213         * gnus.el (gnus-version-number): Bump version.
18214
18215 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18216
18217         * gnus.el: No Gnus v0.4 is released.
18218
18219 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18220
18221         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
18222         layout.
18223
18224         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
18225         unknown charset.
18226
18227         * message.el (message-header-synonyms): Add Original-To to the
18228         default.
18229
18230         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
18231         optional parameter.
18232
18233 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
18234
18235         * gnus-fun.el (gnus): Require it for gnus-directory.
18236
18237 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18238
18239         * gnus-fun.el (gnus-face-properties-alist): Add :version.
18240
18241 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18242
18243         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
18244
18245 2006-04-05  Simon Josefsson  <jas@extundo.com>
18246
18247         * password.el (password-reset): New function.
18248
18249 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18250
18251         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
18252         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
18253
18254 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18255
18256         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18257         Some whitespace was matched into the url, which broke browsing hits
18258         > 100 when mm-url-use-external was nil.
18259
18260 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
18261
18262         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18263         Check gnus-extra-headers for 'Newsgroups.
18264
18265         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
18266         bound.
18267
18268 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
18269
18270         * pgg-gpg.el: Clean up process buffers every time gpg processes
18271         complete.
18272
18273 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
18274
18275         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
18276         doc string.
18277
18278 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
18279
18280         * pgg-gpg.el (pgg-gpg-process-filter)
18281         (pgg-gpg-wait-for-completion): Check if buffer is alive.
18282
18283         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
18284         lines, temporary fix.
18285
18286 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18287
18288         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
18289
18290 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
18291
18292         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
18293         default-enable-multibyte-characters.  This reverts the change from
18294         revision 6.17 which is no longer necessary because the passphrase
18295         is sent separately now.  GnuPG messages are unreadable under
18296         multibyte locales with default-enable-multibyte-characters set to
18297         nil.
18298
18299 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
18300
18301         * message.el (message-tool-bar-gnome): Move "spell".
18302
18303 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
18304
18305         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
18306         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
18307         instead.
18308
18309 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
18310
18311         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18312         Improve newsgroups handling for NNTP overviews which don't include
18313         Newsgroups.
18314
18315 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18316
18317         * message.el (message-resend): Bind message-generate-hashcash to nil.
18318
18319 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18320
18321         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
18322         when searching for already-paid recipients.
18323
18324 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
18325
18326         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
18327         passphrases when it is not needed.
18328         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
18329         passphrase stuff from gpg, should only be necessary when you use
18330         gpg with a smartcard.
18331
18332 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18333
18334         * mml.el (mml-insert-mime): Ignore cached contents of
18335         message/external-body part.
18336
18337         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
18338         (mm-insert-part): Ditto.
18339
18340 2006-03-23  Simon Josefsson  <jas@extundo.com>
18341
18342         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
18343         Reiner.
18344         (pgg-gpg-use-agent-p): Use it again.
18345
18346 2006-03-23  Simon Josefsson  <jas@extundo.com>
18347
18348         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
18349         older emacsen.
18350         (pgg-gpg-use-agent-p): Don't use it.
18351
18352 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
18353
18354         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
18355         if we can.
18356
18357 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
18358
18359         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
18360         (pgg-gpg-update-agent): New function.
18361         (pgg-gpg-use-agent-p): New function.
18362         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
18363         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
18364         (pgg-gpg-sign-region): Use it.
18365
18366 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18367
18368         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
18369         Reported by Ralf Wachinger <rwachinger@gmx.de>.
18370
18371 2006-03-21  Simon Josefsson  <jas@extundo.com>
18372
18373         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
18374         <wilde@sha-bang.de>.
18375         (pgg-gpg-use-agent): New variable.
18376         (pgg-gpg-process-region): Use it.
18377         (pgg-gpg-encrypt-region): Likewise.
18378         (pgg-gpg-encrypt-symmetric-region): Likewise.
18379         (pgg-gpg-decrypt-region): Likewise.
18380         (pgg-gpg-sign-region): Likewise.
18381         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
18382
18383 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
18384
18385         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
18386
18387         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18388         Add comment on version.
18389
18390 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
18391
18392         * smiley.el: Add missing test smiley.
18393
18394 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18395
18396         * mm-decode.el (mm-with-part): New macro.
18397         (mm-get-part): Use it; work with message/external-body as well.
18398         (mm-save-part): Treat name and filename equally.
18399
18400         * mm-extern.el (mm-extern-cache-contents): New function.
18401         (mm-inline-external-body): Use it; force the part to be displayed;
18402         move undisplayer added to the cached handle to the parent.
18403
18404         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
18405         (gnus-mime-view-part-as-type): Work with message/external-body.
18406
18407         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
18408
18409 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
18410
18411         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
18412         images in image-load-path.  [Sync with image.el, revision 1.60, in
18413         Emacs.]
18414
18415 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
18416
18417         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
18418         path rather than symbol.  Always return list of directories.
18419         Guarantee that image directory comes first.  [Sync with image.el,
18420         revision 1.59, in Emacs.]
18421
18422         * message.el (message-make-tool-bar): Adjust to new API of
18423         `gmm-image-load-path-for-library'.
18424
18425         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18426
18427         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18428
18429 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18430
18431         * gnus-art.el (gnus-article-only-boring-p):
18432         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
18433         intangible text.
18434         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
18435
18436 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
18437
18438         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
18439         Use `defun' instead of `gmm-defun-compat'.
18440
18441 2006-03-14  Simon Josefsson  <jas@extundo.com>
18442
18443         * message.el (message-unique-id): Don't use message-number-base36
18444         if (user-uid) is a float.
18445         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
18446
18447 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18448
18449         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
18450
18451         * gnus-art.el (gnus-mime-display-single): Make sure there is an
18452         empty line between a part and a message part.
18453
18454 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
18455
18456         * smiley.el: Add more test smileys.
18457         (smiley-data-directory, smiley-regexp-alist)
18458         (gnus-smiley-file-types): Fix doc strings.
18459         (smiley-update-cache): Clear smiley-cached-regexp-alist before
18460         adding new elements.
18461         (smiley-mouse-map): Unused code.  Make it a comment.
18462
18463 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18464
18465         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
18466         scan latest NoCeM messages instead of old ones.
18467         (gnus-nocem-check-article): Fix regexps so as to match to PGP
18468         delimiters that are recently used.
18469         (gnus-nocem-load-cache): Add autoload cookie.
18470
18471         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
18472
18473         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
18474         level which is larger than gnus-use-nocem is specified.
18475
18476         * gnus-group.el (gnus-group-get-new-news): Ditto.
18477
18478 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
18479
18480         * gnus-util.el (gnus-tool-bar-update): New function.
18481
18482         * gnus-group.el (gnus-group-update-tool-bar): New variable.
18483         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
18484
18485         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
18486
18487         * gnus-group.el (gnus-group-redraw-when-idle)
18488         (gnus-group-redraw-check): Remove.
18489         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
18490
18491 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18492
18493         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
18494         if optional last element is specified in splits (FIELD VALUE...).
18495
18496 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
18497
18498         * message.el (message-make-tool-bar): Rename gmm-image-load-path
18499         to gmm-image-load-path-for-library.  Call with no-error argument.
18500         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
18501
18502         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18503
18504         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18505
18506         * gmm-utils.el (gmm-image-load-path): Remove alias.
18507
18508 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
18509
18510         * gmm-utils.el (gmm-image-load-path): Add alias.
18511
18512         * nnml.el (nnml-generate-nov-databases-directory): Rename from
18513         nnml-generate-nov-databases-1.
18514         (nnml-generate-nov-databases): Use it.
18515         (nnml-generate-nov-databases-directory): Document no-active
18516         argument.
18517
18518         * gmm-utils.el (gmm-image-load-path-for-library): Return single
18519         directory if path is t.  Add no-error.
18520
18521         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
18522         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18523
18524         * gnus-art.el (gnus-article-browse-delete-temp-files):
18525         Simplify resetting gnus-article-browse-html-temp-list.
18526
18527         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
18528         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
18529         Add example to docstring.  Rename local variables.  Move error
18530         checks to default case in cond and simplify.
18531
18532 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18533
18534         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
18535         handle is multipart when calling it recursively.
18536         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
18537
18538 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
18539
18540         * nnimap.el (nnimap-request-update-info-internal): Optimize.
18541         Don't `gnus-uncompress-range' to avoid excessive memory usage.
18542
18543 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18544
18545         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
18546         is loaded.
18547
18548         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
18549         loaded.
18550
18551 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
18552
18553         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
18554         to "Emacs 23 (unicode)" in doc string.
18555
18556         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
18557         "Emacs 23 (unicode)" in comment.
18558
18559 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18560
18561         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
18562
18563         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
18564         characters 160 through 255 in Emacs 23.
18565
18566 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18567
18568         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
18569         gnus-article-browse-html-temp.
18570         (gnus-article-browse-delete-temp): Make it customizable.
18571         Add `file'.  Adjust doc string.
18572         (gnus-article-browse-delete-temp-files): Add argument.
18573         Allow query for each file.  Adjust doc string.
18574         (gnus-article-browse-html-parts):
18575         Add `gnus-article-browse-delete-temp-files' to
18576         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
18577
18578 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
18579
18580         * gnus-art.el (gnus-article-browse-html-temp)
18581         (gnus-article-browse-delete-temp): New variables.
18582         (gnus-article-browse-delete-temp-files): New function.
18583         (gnus-article-browse-html-parts): Use it.
18584
18585 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18586
18587         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
18588
18589         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
18590         string.
18591
18592         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
18593         gnus-summary-insert-new-articles when unplugged.
18594         Remove gnus-summary-search-article-forward.
18595
18596         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
18597         display-visual-class instead of display-color-cells.
18598
18599 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18600
18601         * dgnushack.el: Autoload customize-group for XEmacs.
18602
18603         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
18604         message/* containing non-ASCII text properly.
18605
18606 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
18607
18608         * message.el: Require gmm-utils, remove autoloads.
18609         (message-tool-bar): Set default based on
18610         gmm-tool-bar-style.
18611         (message-tool-bar-gnome): Add gmm-customize-mode.
18612
18613         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
18614         gmm-tool-bar-style.
18615         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
18616
18617         * gnus-group.el (gnus-group-tool-bar): Set default based on
18618         gmm-tool-bar-style.
18619         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
18620
18621         * gmm-utils.el (gmm-image-directory): Rename variable from
18622         gmm-image-load-path.
18623         (gmm-image-load-path): Use gmm-image-directory.
18624         (gmm-customize-mode): New function.
18625         (gmm-tool-bar-style): New variable.
18626
18627         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
18628         gnus-group-redraw-line-number.
18629         (gnus-group-redraw-check): Simplify.
18630         (gnus-group-tool-bar-update): Remove redraw check.
18631         (gnus-group-make-tool-bar): Add redraw check.
18632
18633 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
18634
18635         * gnus-art.el (gnus-button): Add missing parentheses.
18636
18637 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18638
18639         * lpath.el: Fbind line-number-at-pos.
18640
18641 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18642
18643         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
18644
18645 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18646
18647         * gnus-art.el (gnus-button): New face.
18648         (gnus-article-button-face): Use it.
18649
18650         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18651         Add gnus-summary-next-page.  Re-order.
18652
18653         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
18654         next-node are now included.
18655         (gnus-group-redraw-line-number): New internal variable.
18656         (gnus-group-redraw-check): Helper function for updating the tool
18657         bar.
18658         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
18659
18660         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
18661
18662         * spam.el (spam-spamassassin-score-regexp): New internal variable.
18663         (spam-extra-header-to-number, spam-check-spamassassin-headers):
18664         Use it to match format of Spamassassin 3.0 and later.
18665         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
18666         (spam-check-bogofilter)
18667         (spam-bogofilter-register-with-bogofilter): Fix args of
18668         `gnus-error' calls.
18669
18670 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18671
18672         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
18673         unnecessary interaction when sending queued mails.
18674         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
18675
18676 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
18677
18678         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
18679         first or last are nil.
18680
18681 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18682
18683         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
18684
18685 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18686
18687         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
18688
18689 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18690
18691         * dns.el (query-dns): Protect more against buggy tcp output.
18692
18693 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18694
18695         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
18696         nov.php.
18697
18698 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18699
18700         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
18701         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
18702         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
18703         output on the server side.
18704         (nnweb-google-create-mapping): Update regexps and add some
18705         progress indication.
18706
18707 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
18708
18709         * gnus-group.el (gnus-group-tool-bar-gnome):
18710         Fix gnus-agent-toggle-plugged.  Re-order icons.
18711         (gnus-group-tool-bar-gnome):
18712         Add gnus-group-{prev,next}-unread-group.
18713         (gnus-group-tool-bar-gnome): Re-order icons.
18714
18715         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18716         Move gnus-summary-insert-new-articles.
18717
18718         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
18719         Fix comments.
18720
18721         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
18722         also available in Emacs 21.3.
18723
18724         * message.el (message-fix-before-sending): Change "Emacs 22" to
18725         "Emacs 23 (unicode)" in comment.
18726
18727         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
18728         "Emacs 23 (unicode)" in comment.
18729
18730         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
18731         comment.
18732         (mm-coding-system-p): Add comment about no-MULE XEmacs.
18733
18734         * mm-view.el (mm-fill-flowed): Add :version.
18735
18736 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18737
18738         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
18739         and load-path.
18740
18741 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
18742
18743         * message.el: Autoload gmm-image-load-path.
18744         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
18745         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
18746         consitency.
18747
18748         * gmm-utils.el (gmm-image-load-path): Also search in
18749         "../etc/images".  Don't set gmm-image-load-path if we don't find
18750         the image.
18751
18752 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18753
18754         * gmm-utils.el (gmm-image-load-path): Don't make
18755         `gmm-image-load-path' include subdirectories which the second arg
18756         `image' might specify.
18757
18758         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
18759         subdirectory to icon file names.
18760
18761         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
18762
18763 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
18764
18765         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
18766         gmm-image-load-path calls.
18767
18768         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18769
18770         * message.el (message-make-tool-bar): Ditto.
18771
18772         * mml.el (mml-preview): Add comment concerning tool bar icons.
18773
18774         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
18775         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
18776
18777         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
18778         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
18779
18780         * message.el (message-tool-bar-gnome): Use new icon names.
18781         (message-make-tool-bar): Use `gmm-image-load-path'.
18782
18783         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
18784         New functions from MH-E.
18785         (gmm-image-load-path): New variable from MH-E.
18786         (gmm-image-load-path): New function from MH-E.  Add arguments
18787         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
18788         *-image-load-path-called-flag.
18789
18790 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
18791
18792         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
18793
18794 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
18795
18796         * nnimap.el (nnimap-request-move-article): Change folder back to
18797         source group before deleting.
18798
18799 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
18800
18801         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
18802
18803         * gnus-art.el (mm-url-insert-file-contents-external):
18804         Autoload mm-url.
18805
18806         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
18807
18808 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18809
18810         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
18811         coding system which mm-charset-to-coding-system returns for a
18812         given charset is valid.
18813
18814 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
18815
18816         * html2text.el (html2text-remove-tag-list):
18817         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
18818
18819 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
18820
18821         * gnus-cus.el: Revert 2005-10-17 change.
18822
18823 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18824
18825         * gnus-art.el (article-strip-banner):
18826         Call article-really-strip-banner only when the regexp match is made.
18827
18828 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18829
18830         * gnus-art.el (article-strip-banner):
18831         Use gnus-extract-address-components instead of
18832         mail-header-parse-addresses to make it work with non-ASCII text;
18833         remove mail-encode-encoded-word-string.
18834
18835         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
18836         values which are surrounded with \"...\"; make it never cause a
18837         Lisp error; give up parsing of parameters if it failed in
18838         extracting type.
18839
18840 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
18841
18842         * smime.el (smime-cert-by-ldap-1): Fix bug where
18843         `smime-ldap-search' returns results without userCertificates.
18844
18845 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18846
18847         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
18848
18849 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
18850
18851         * spam.el (spam-check-spamassassin-headers): Adapt format for
18852         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
18853         <ari@mbf.ocn.ne.jp>.
18854         (spam-list-of-processors): Add spam-use-gmane.
18855
18856 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18857
18858         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
18859         make-temp-file; make it work with XEmacs as well.
18860
18861         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
18862         mm-make-temp-file.
18863
18864         * mm-decode.el (mm-display-external): Use the 3rd arg of
18865         mm-make-temp-file.
18866         (mm-create-image-xemacs): Ditto.
18867
18868 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18869
18870         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
18871         with message-narrow-to-headers.
18872         (gnus-draft-setup): Narrow to header to run message-fetch-field.
18873         (gnus-draft-check-draft-articles): New function.
18874         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
18875
18876 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
18877
18878         * gnus-art.el (gnus-article-browse-html-parts):
18879         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
18880         Don't use suffix argument for mm-make-temp-file for Emacs 21
18881         compatibility.  Remove useless `format'.
18882
18883 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18884
18885         * nnweb.el (nnweb-google-wash-article): Update regexps.
18886         (nnweb-group-alist): Use defvoo instead of defvar.
18887
18888 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18889
18890         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
18891         re-loading nn* modules.
18892
18893 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
18894
18895         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
18896         for `tool-bar-mode' and don't check it's default-value.
18897
18898         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18899
18900         * message.el (message-make-tool-bar): Ditto.
18901
18902         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
18903         `substring'.  Shorten tmp-file name.
18904
18905         * gnus.el: Remove bogus comment.
18906
18907 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
18908
18909         * gnus-art.el (gnus-article-browse-html-parts): New function.
18910         (gnus-article-browse-html-article): New function for viewing html
18911         articles with a browser.
18912
18913 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
18914
18915         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
18916         in elisp.
18917         (pgg-gpg-encrypt-symmetric-region): Ditto.
18918         (pgg-gpg-sign-region): Ditto.
18919
18920         * pgg-def.el (pgg-text-mode): New variable.
18921
18922         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
18923         (mml2015-pgg-encrypt): Ditto.
18924
18925         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
18926         (mml1991-pgg-encrypt): Ditto.
18927
18928 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18929
18930         * nnfolder.el (nnfolder-insert-newsgroup-line):
18931         Use message-make-date instead of current-time-string.
18932
18933         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
18934         to gnus-decoded which mm-uu might set.
18935
18936 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18937
18938         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
18939         don't decode quoted parameters; remove misimported Emacs code.
18940         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18941         (rfc2231-decode-encoded-string): Don't use split-string which
18942         behaves differently according to Emacs version; use
18943         mm-decode-coding-region to convert charset to coding-system.
18944         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18945         (rfc2231-encode-string): Remove misimported Emacs code.
18946
18947 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18948
18949         * gnus-art.el (article-decode-charset): Don't use ignore-errors
18950         when calling mail-header-parse-content-type.
18951         (article-de-quoted-unreadable): Ditto.
18952         (article-de-base64-unreadable): Ditto.
18953         (article-wash-html): Ditto.
18954
18955         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
18956         calling mail-header-parse-content-type and
18957         mail-header-parse-content-disposition.
18958         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
18959         mail-header-parse-content-type.
18960
18961         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
18962         insert charset and format parameters; encode description after
18963         inserting it to buffer.
18964         (mml-insert-parameter): Fold lines properly even if a parameter is
18965         segmented into two or more lines; change the max column to 76.
18966
18967         * rfc1843.el (rfc1843-decode-article-body): Don't use
18968         ignore-errors when calling mail-header-parse-content-type.
18969
18970         * rfc2231.el (rfc2231-parse-string): Return at least type if
18971         possible; don't cause an error even if it fails in parsing of
18972         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18973         (rfc2231-encode-string): Don't break lines at the beginning, leave
18974         it to mml-insert-parameter.
18975
18976         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
18977         calling mail-header-parse-content-type.
18978
18979 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
18980
18981         * spam-report.el (spam-report-gmane-use-article-number):
18982         Improve doc string.
18983         (spam-report-gmane-internal): Check if a suitable header was found
18984         in the article.
18985
18986 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18987
18988         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
18989         (rfc2231-encode-string): Make param*=value always begin with LWSP.
18990
18991 2006-02-05  Romain Francoise  <romain@orebokech.com>
18992
18993         Update copyright notices of all files in the gnus directory.
18994
18995 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18996
18997         * nnweb.el (nnweb-request-group): Avoid growing overview files.
18998
18999 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19000
19001         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
19002         segmented lines of parameter value to cope with Thunderbird 1.5
19003         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
19004         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
19005         (rfc2231-encode-string): Don't make lines exceeding 76 column.
19006
19007 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
19008
19009         * mml.el (mml-generate-mime-1): Correct the order of inline signed
19010         parts.
19011
19012 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
19013
19014         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
19015         there's only one active file for all servers.
19016         (nnweb-request-scan): Make sure nnweb-articles is initialized on
19017         solid groups.  Gnus might have used a FAST request to select the group.
19018         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
19019         and nnweb-search redundantly in the active file.
19020         (nnweb-request-list): Don't list bogus groups.  There can only be one.
19021         (nnweb-request-create-group): Don't use ARGS.
19022         (nnweb-possibly-change-server, nnweb-request-group): Remove some
19023         initializations.  Let nnoo do the work.
19024
19025 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19026
19027         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
19028         Say the part has been decoded.
19029
19030         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
19031
19032 2006-01-31  Kevin Ryde  <user42@zip.com.au>
19033
19034         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
19035         mailcap-viewer-test-cache when there's no 'test clause, since that
19036         will invert the meaning of a "nil" test previously determined by
19037         mailcap-mailcap-entry-passes-test.
19038
19039 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19040
19041         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
19042         compiling.
19043
19044         * gnus-sum.el: Ditto.
19045
19046         * message.el: Don't bind tool-bar-map when compiling.
19047
19048 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
19049
19050         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
19051
19052 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
19053
19054         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
19055         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
19056         current Google Groups.
19057
19058 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
19059
19060         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
19061         and tool-bar-mode.
19062
19063         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
19064         and tool-bar-mode.
19065
19066         * message.el (message-tool-bar-update): Simplify.
19067         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
19068
19069         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
19070         gnus-summary-buffer.
19071         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
19072         gnus-summary-reply.
19073
19074         * gmm-utils.el (gmm): Add :version.
19075
19076 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19077
19078         * Makefile.in (clean): New rule.
19079         (distclean): Use it.
19080
19081 2006-01-26  Steve Youngs  <steve@sxemacs.org>
19082
19083         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
19084         Don't autoload.
19085
19086 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19087
19088         * gmm-utils.el (gmm-verbose): Add :group.
19089
19090 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
19091
19092         * message.el: Change some comments WRT tool-bars.
19093
19094         * gnus-sum.el (gnus-summary-tool-bar)
19095         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
19096         (gnus-summary-tool-bar-zap-list): New variables.
19097         (gnus-summary-make-tool-bar): Complete rewrite using
19098         `gmm-tool-bar-from-list'.
19099
19100         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
19101         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
19102         New variables.
19103         (gnus-group-make-tool-bar): Complete rewrite using
19104         `gmm-tool-bar-from-list'.
19105         (gnus-group-tool-bar-update): New function.
19106
19107         * message.el (message-mode-field-menu): Add "Show hidden Headers".
19108
19109 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19110
19111         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
19112         is dissected into a single part of which the type is the same as
19113         the given one; decode charset.
19114
19115 2006-01-21  Kevin Ryde  <user42@zip.com.au>
19116
19117         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
19118         into alists as symbol not string, since that's what
19119         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
19120         look for.
19121
19122 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
19123
19124         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
19125         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
19126
19127         * message.el (message-tool-bar-gnome): Use gmm-ignore.
19128
19129 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19130
19131         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
19132         (gnus-xmas-mime-security-button-menu): New function.
19133
19134         * gnus-art.el (gnus-mime-security-button-commands): New variable.
19135         (gnus-mime-security-button-menu): New definition.
19136         (gnus-mime-security-button-map): Use them.
19137         (gnus-mime-security-button-menu): New function.
19138         (gnus-insert-mime-security-button): Addition to help echo.
19139         (gnus-mime-security-run-function, gnus-mime-security-save-part)
19140         (gnus-mime-security-pipe-part): New functions.
19141
19142         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
19143         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
19144
19145         * mm-decode.el (mm-handle-set-disposition): Remove.
19146         (mm-handle-set-description): Remove.
19147
19148 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19149
19150         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
19151         (mm-w3m-standalone-supports-m17n-p): New function.
19152         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
19153         w3m usage.
19154
19155         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
19156         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
19157
19158 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
19159
19160         * message.el (message-tool-bar-zap-list):
19161         Use gmm-tool-bar-zap-list as custom type.
19162         (message-tool-bar-update): New function.
19163         (message-tool-bar, message-tool-bar-gnome)
19164         (message-tool-bar-retro): Add message-tool-bar-update.
19165         (message-tool-bar-gnome): Add flyspell-buffer.
19166
19167         * gnus-util.el (gnus-error): Describe `args'.
19168
19169         * gmm-utils.el (gmm-error): Describe `args'.
19170         (gmm-tool-bar-zap-list): New widget.
19171         (gmm-tool-bar-from-list): Improve description of `zap-list'.
19172
19173 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19174
19175         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
19176         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
19177         the number of recursive calls.
19178
19179         * mm-decode.el (mm-handle-set-disposition): New macro.
19180         (mm-handle-set-description): New macro.
19181
19182 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19183
19184         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
19185         encoding.
19186
19187 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19188
19189         * message.el (message-tool-bar-zap-list, message-tool-bar)
19190         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
19191         (message-tool-bar-local-item-from-menu): Remove.
19192         (message-tool-bar-map): Replace by `message-make-tool-bar'.
19193         (message-make-tool-bar): New function.
19194         (message-mode): Use `message-make-tool-bar'.
19195
19196         * gmm-utils.el: New file.
19197         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
19198         (gmm-lazy): New widget copied from `nnmail.el'.
19199         (gmm-tool-bar-from-list): New function for creating customizable
19200         tool bars.
19201         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
19202         output.
19203         (gmm): Add :prefix to defgroup.
19204
19205 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
19206
19207         * gmm-utils.el (gmm-widget-p): New function.
19208
19209 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19210
19211         * mml.el (mml-attach-file): Describe `description' in doc string.
19212         (mml-menu): Add Emacs MIME manual and PGG manual.
19213
19214 2006-01-20  Richard M. Stallman  <rms@gnu.org>
19215
19216         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
19217
19218 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
19219
19220         * nntp.el (nntp-end-of-line): Doc fix.
19221
19222 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
19223
19224         * imap.el (imap-open): Handle case where buffer is a buffer
19225         object.
19226
19227 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19228
19229         * gnus-delay.el (gnus-delay): Don't autoload.
19230         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19231         to be re-loaded when customizing the `gnus-delay' group.
19232
19233 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
19234
19235         * message.el (message-insert-citation-line): Use newlines.
19236
19237 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19238
19239         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
19240         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
19241         these routines, so the passphrase can be managed externally and
19242         passed in to the system.
19243         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
19244         pgg-add-passphrase-to-cache function.
19245
19246         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
19247         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
19248         these routines, so the passphrase can be managed externally and
19249         passed in to the system.
19250         (pgg-pgp5-sign-region): Use new name of
19251         pgg-add-passphrase-to-cache function.
19252
19253 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19254
19255         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
19256         part of the decoded armor to find the key-identifier.
19257         (pgg-gpg-lookup-key-owner): New function to return the
19258         human-readable identifier of a key owner.
19259         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
19260         itself.
19261         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
19262         the key value) if we have a key and can match it against a secret
19263         key.  Also, added a note pointing out fact that the prompt only
19264         indicates the first matching key.
19265
19266         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
19267         pgg-decrypt-region.
19268         (pgg-add-passphrase-to-cache): Rename from
19269         `pgg-add-passphrase-cache' to reduce confusion (all callers
19270         changed).
19271         (pgg-remove-passphrase-from-cache): Rename from
19272         `pgg-remove-passphrase-cache' to reduce confusion (all callers
19273         changed).
19274         (pgg-read-passphrase, pgg-add-passphrase-cache)
19275         (pgg-remove-passphrase-cache): Add informative docstrings.
19276         (pgg-decrypt): Convey provided passphrase in subordinate call to
19277         pgg-decrypt-region.
19278
19279 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
19280
19281         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
19282         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
19283         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
19284         'passphrase' argument, so the passphrase can be managed externally
19285         and then passed in to the system.
19286
19287         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
19288         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
19289         so the passphrase cache can be used reliably with identifiers
19290         besides a pgp packet's key id.
19291
19292         * pgg-gpg.el (pgg-gpg-encrypt-region)
19293         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19294         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
19295         these routines, so the passphrase can be managed externally and
19296         passed in to the system.
19297
19298         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
19299         'notruncate' argument, so the passphrase cache can be used
19300         reliably with identifiers besides a pgp packet's key id.
19301
19302 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
19303
19304         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
19305         symmetric encryption.
19306         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
19307         encrypted session key.
19308         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
19309         message ask for the passphrase in a proper way.
19310
19311         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
19312         New user commands for symmetric encryption.
19313
19314 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19315
19316         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
19317
19318         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
19319
19320 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
19321
19322         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
19323
19324 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19325
19326         * mm-decode.el (mm-inlined-types): Add application/pgp.
19327         (mm-automatic-display): Ditto.
19328
19329         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
19330         part as text.
19331
19332 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19333
19334         * nnrss.el: Update copyright.
19335         (nnrss-opml-import): Query whether to subscribe to each entry.
19336
19337         * gnus-art.el:
19338         * gnus-sum.el:
19339         * gnus-xmas.el:
19340         * messagexmas.el:
19341         * mm-uu.el:
19342         * mm-view.el: Update copyright.
19343
19344 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
19345
19346         * message.el (message-info): New function.
19347         (message-mode-menu): Add it.
19348         Update copyright.
19349
19350         * ChangeLog: Fix and update copyright.
19351
19352 2006-01-13  Romain Francoise  <romain@orebokech.com>
19353
19354         * message.el (message-forward-subject-name-subject): Prefer the
19355         address to 'nowhere' if the sender has no name.
19356         Fix typo.  Update copyright year.
19357
19358 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19359
19360         * gnus-art.el (article-wash-html):
19361         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
19362         (gnus-article-wash-html-with-w3m-standalone): New function.
19363
19364         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
19365         mm-inline-text-html-render-with-w3m-standalone.
19366         (mm-text-html-washer-alist): Map w3m-standalone to
19367         gnus-article-wash-html-with-w3m-standalone.
19368         (mm-inline-text-html-render-with-w3m-standalone): New function.
19369
19370 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
19371
19372         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
19373         Improve LaTeX.
19374
19375 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19376
19377         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
19378         (nnrss-request-article): Render text/plain parts as HTML.
19379
19380         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
19381         the buffer.
19382
19383 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
19384
19385         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
19386         custom definition of `gnus-posting-styles'.
19387
19388         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
19389         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
19390
19391 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19392
19393         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
19394         Use nntp for bug archive.
19395
19396 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19397
19398         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
19399         parts.
19400         (nnrss-normalize-date): New function converts ISO 8601 date into
19401         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19402         (nnrss-check-group): Use it.
19403
19404 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19405
19406         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
19407
19408         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
19409         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19410         (nnrss-insert-w3): Ditto.
19411
19412 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19413
19414         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
19415         the articles to be forwarded including the case where neither a
19416         number of articles nor a region is specified.
19417
19418 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19419
19420         * nnrss.el (nnrss-request-article): Fix last change; fill
19421         text/plain parts.
19422
19423 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19424
19425         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
19426         in text/plain part.
19427         (nnrss-check-group): Don't add excessive newline to dc:subject.
19428
19429 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
19430
19431         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
19432         article.
19433
19434 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
19435
19436         * nnml.el: Don't require gnus-bcklg.  Autoload it.
19437         (nnml-use-compressed-files, nnml-save-mail): Support other
19438         comression programs such as bzip2.
19439
19440 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19441
19442         * dns.el (query-dns): Make sure we check the buffer size before
19443         removing tcp headers.
19444
19445 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19446
19447         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
19448         remove MIME buttons associated with multipart/alternative parts.
19449         (gnus-mime-display-alternative): Tag buttons using `article-type'
19450         text property.
19451
19452         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
19453         associated with multipart/alternative parts.
19454
19455         * gnus-art.el (gnus-signature-separator): Fix custom type.
19456
19457         * mm-decode.el (mm-inlined-types): Fix custom type.
19458         (mm-keep-viewer-alive-types): Ditto.
19459         (mm-automatic-display): Ditto.
19460         (mm-attachment-override-types): Ditto.
19461         (mm-inline-override-types): Ditto.
19462         (mm-automatic-external-display): Ditto.
19463
19464 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
19465
19466         * spam-report.el (spam-report-user-mail-address)
19467         (spam-report-user-agent): New variables.
19468         (spam-report-url-ping-plain): Use spam-report-user-agent.
19469
19470 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
19471
19472         * gnus-art.el (gnus-button-handle-custom): Do not just use
19473         `customize-apropos' for any "M-x customize-*" button but the
19474         function called for.  Accept both the function name and its
19475         argument in order to achieve this.
19476         (gnus-button-alist): Remove support for "custom:" URL's.
19477         Pass function name to `gnus-button-handle-custom' in case of "M-x
19478         customize-*" buttons.
19479
19480 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19481
19482         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
19483         multipart/alternative and add xref to mm-discouraged-alternatives
19484         in doc string.
19485
19486         * mm-decode.el (mm-discouraged-alternatives): Add xref to
19487         gnus-buttonized-mime-types in doc string.
19488
19489 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
19490
19491         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
19492         Suggest image/.* in the doc string.
19493
19494 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
19495
19496         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
19497         message-marks (Debian bug #342521).
19498
19499 2005-12-12  Simon Josefsson  <jas@extundo.com>
19500
19501         * password.el (password-read-from-cache): Add.
19502         (password-read): Use it.
19503
19504 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19505
19506         * rfc2047.el (rfc2047-charset-to-coding-system):
19507         Recognize us-ascii as a MIME charset.
19508
19509         * mm-bodies.el (mm-decode-content-transfer-encoding):
19510         Protect against the case where the 2nd arg TYPE is nil.
19511
19512 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19513
19514         * pop3.el (pop3-stream-type): Fix custom version.
19515
19516         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
19517
19518 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19519
19520         * mm-decode.el (mm-display-external): Add missing cdr.
19521
19522 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19523
19524         * mm-decode.el (mm-display-external): Use nametemplate (defined in
19525         RFC1524) if it is in mailcap or add a suffix according to
19526         mailcap-mime-extensions when generating a temp filename; postpone
19527         deleting a temp file for 2 seconds for some wrappers, shell
19528         scripts, and so on, which might exit right after having started a
19529         viewer command as a background job.
19530
19531 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19532
19533         * nntp.el (nntp-marks-directory): Fix custom group.
19534
19535         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
19536         steps when < 10.
19537
19538         * gnus-start.el (gnus-no-server-1):
19539         Mention `gnus-level-default-subscribed' in doc string.
19540
19541 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19542
19543         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
19544         parens.
19545
19546 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19547
19548         * gnus-xmas.el (gnus-use-toolbar): Revert.
19549         (gnus-xmas-setup-toolbar): Use global default-toolbar if
19550         gnus-use-toolbar is default.
19551
19552         * messagexmas.el (message-use-toolbar): Revert.
19553         (message-setup-toolbar): Use global default-toolbar if
19554         message-use-toolbar is default.
19555
19556 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19557
19558         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
19559         according to default-toolbar-visible-p.
19560
19561         * messagexmas.el (message-use-toolbar): Ditto.
19562
19563 2005-11-26  Dave Love  <fx@gnu.org>
19564
19565         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
19566         (tls-program, tls-success): Provide openssl alternative.
19567
19568         * starttls.el: Doc fixes.
19569         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
19570         SERVICE to PORT.
19571
19572         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
19573         port null or service name.
19574         (starttls-negotiate): Autoload.
19575
19576 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19577
19578         * message.el (message-kill-to-signature): Fix interactive spec.
19579
19580 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19581
19582         * pop3.el (pop3-open-server): Recognize a string as a service name.
19583
19584 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
19585
19586         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
19587
19588 2005-11-23  Dave Love  <fx@gnu.org>
19589
19590         Add pop3s, pop3/starttls.
19591
19592         * pop3.el (pop3-authentication-scheme): Clarify doc.
19593         (open-tls-stream, starttls-open-stream): Autoload.
19594         (pop3-stream-type): New.
19595         (pop3-open-server): Use it.
19596
19597         * mail-source.el (mail-sources): Fix some :types.  Add stream type
19598         for POP.
19599         (mail-source-keyword-map): Add :stream for POP.
19600         (mail-source-fetch-pop): Use pop3-stream-type.
19601
19602 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19603
19604         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
19605         of current-time-string.
19606
19607 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
19608
19609         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
19610         date header.
19611
19612 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19613
19614         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
19615         it can seriously impact performance as it bypasses the agent's
19616         local caches.
19617
19618 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19619
19620         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
19621         must be explicitly online rather than "not explicitly offline" for
19622         its flags to be synchronized.
19623
19624         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
19625         that gnus-uu-unmark-thread will function correctly.
19626
19627         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
19628         1024K is instead displayed as 1M.
19629
19630 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19631
19632         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
19633
19634 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
19635
19636         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
19637
19638 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
19639
19640         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
19641         error message to display actual error condition.
19642         (gnus-agent-save-local): Avoid saving symbols that are bound to
19643         nil as they simply result in a warning message in
19644         gnus-agent-read-local.
19645
19646 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19647
19648         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
19649         rather than make-variable-buffer-local for file-precious-flag.
19650
19651 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19652
19653         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
19654         for duplicates which are removed.  The invalid sort check then
19655         triggers a rescan after the sort as sorting may have moved
19656         duplicate entries such that they can be cheaply detected.
19657
19658 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19659
19660         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
19661
19662 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19663
19664         * gnus-agent.el (gnus-agent-article-alist-save-format):
19665         Change internal variable to a custom variable.  Change default value
19666         from compressed(2) to uncompressed(1).
19667         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
19668         support for uncompressed agentview files.  Taken together, reading
19669         the agentview file should now be 6-7 times faster.
19670
19671 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
19672
19673         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
19674         as a buffer-local variable.  This avoids creating truncated
19675         dribble files as a result of a hang up, eg.
19676
19677 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
19678
19679         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
19680         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
19681         XEmacs.
19682
19683 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19684
19685         * gnus-start.el (gnus-start-draft-setup):
19686         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
19687
19688         * gnus.el (gnus-splash): Change custom group.
19689         (gnus-group-get-parameter, gnus-group-parameter-value):
19690         Describe allow-list argument.
19691
19692         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
19693         string.
19694
19695 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19696
19697         * gnus-art.el (gnus-default-article-saver): Add user-defined
19698         `function' to custom type.
19699
19700 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19701
19702         * imap.el (imap-open): Handle case where buffer is a buffer
19703         object.
19704
19705 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
19706
19707         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
19708         long lines.
19709         (gnus-cache-delete-group): Wrap doc strings.
19710
19711         * gnus-agent.el (gnus-agent-rename-group)
19712         (gnus-agent-delete-group): Wrap doc strings.
19713
19714 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19715
19716         * messagexmas.el (message-use-toolbar): Change the valid values
19717         into default, top, bottom, left, and right.
19718         (message-toolbar-thickness): New variable.
19719         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
19720         well.
19721         (message-setup-toolbar): Make it work.
19722
19723         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
19724         (gnus-use-toolbar): Change the valid values into default, top,
19725         bottom, left, and right.
19726         (gnus-toolbar-thickness): New variable.
19727         (gnus-xmas-setup-toolbar): New function.
19728         (gnus-xmas-setup-group-toolbar): Use it.
19729         (gnus-xmas-setup-summary-toolbar): Use it.
19730
19731 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19732
19733         * gnus-start.el (gnus-1): Add "native" to
19734         gnus-predefined-server-alist.
19735
19736         * gnus.el (gnus-method-to-server): Don't add "native" to the
19737         lists here, because that leads to problems when
19738         gnus-select-method is bound.
19739
19740 2005-11-09  Simon Josefsson  <jas@extundo.com>
19741
19742         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
19743         use (not sort-by-date) instead.
19744
19745 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19746
19747         * gnus-delay.el (gnus-delay-group): Don't autoload.
19748         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19749         to be re-loaded when customizing the `gnus-delay' group.
19750
19751 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
19752
19753         * message.el: Revert last changes.
19754         (message-insert-citation-line): Use newlines.
19755
19756 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
19757
19758         * message.el (message-courtesy-message)
19759         (message-mark-insert-begin, message-mark-insert-end)
19760         (message-elide-ellipsis, message-cancel-message)
19761         (message-add-header, message-change-subject)
19762         (message-cross-post-followup-to-header)
19763         (message-cross-post-insert-note, message-reduce-to-to-cc)
19764         (message-widen-reply, message-delete-not-region)
19765         (message-kill-to-signature, message-insert-signature)
19766         (message-insert-importance-high, message-insert-importance-low)
19767         (message-insert-or-toggle-importance)
19768         (message-insert-disposition-notification-to)
19769         (message-indent-citation, message-yank-original)
19770         (message-cite-original-without-signature, message-cite-original)
19771         (message-insert-citation-line, message-position-on-field)
19772         (message-fix-before-sending, message-send-mail-partially)
19773         (message-send-mail, message-send-mail-with-sendmail)
19774         (message-send-mail-with-qmail, message-send-news)
19775         (message-check-news-header-syntax, message-generate-headers)
19776         (message-insert-courtesy-copy, message-fill-address)
19777         (message-fill-header, message-shorten-references)
19778         (message-setup-1, message-cancel-news)
19779         (message-forward-make-body-plain, message-forward-make-body-mime)
19780         (message-forward-make-body-mml, message-encode-message-body)
19781         (message-forward-make-body-digest-plain)
19782         (message-forward-make-body-digest-mime)
19783         (message-use-alternative-email-as-from): Insert `hard-newline'
19784         instead of ordinary newlines.
19785
19786 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19787
19788         * message.el (message-generate-headers): Downcase the argument
19789         given to message-check-element.
19790
19791 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
19792
19793         * nntp.el (nntp-authinfo-rejected): New error condition.
19794         (nntp-wait-for): Use new error condition to signal authentication
19795         error.
19796         (nntp-retrieve-data): Rethrow new error condition to break out of
19797         recursive call to nntp-send-authinfo.
19798
19799 2005-11-08  Romain Francoise  <romain@orebokech.com>
19800
19801         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
19802         (gnus-summary-exit-map): Bind to `Z p'.
19803         (gnus-summary-make-menu-bar): Add menu item.
19804
19805 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
19806
19807         * gnus-art.el (gnus-article-treat-custom): Add `first'.
19808         (gnus-treat-*): Add `first' in all doc strings.
19809
19810         * gnus-group.el (gnus-group-compact-group): Fix typo.
19811
19812 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19813
19814         * gnus.el (gnus-parameters-case-fold-search): New variable.
19815         (gnus-parameters-get-parameter): Use it.
19816
19817         * gnus-score.el (gnus-home-score-file): Doc fix.
19818
19819 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
19820
19821         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
19822
19823 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19824
19825         * mm-util.el (mm-special-display-p): New function.
19826
19827         * mml.el (mml-preview): Use it; doc fix.
19828
19829 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19830
19831         * imap.el (imap-open): Handle case where buffer is a buffer object.
19832
19833 2005-10-29  Romain Francoise  <romain@orebokech.com>
19834
19835         * message.el (message-fix-before-sending): Fix comment.
19836
19837 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19838
19839         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
19840
19841 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19842
19843         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
19844         Used in gnus-score.el.
19845
19846 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
19847
19848         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
19849
19850 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
19851
19852         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
19853         whitespace removed in revision 7.8.  Use concatenated string to
19854         protect trailing whitespace.
19855
19856 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
19857
19858         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
19859         (nnimap-request-expire-articles): Use it to avoid sending 'UID
19860         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
19861         Courier IMAP ("some version from 2004").  Mostly based on similar
19862         code in the same function.
19863
19864 2005-10-26  Didier Verna  <didier@xemacs.org>
19865
19866         * gnus-group.el (gnus-group-compact-group): Invalidate original
19867         article buffer.
19868         * gnus-srvr.el (gnus-server-compact-server): Ditto.
19869         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
19870         NOV database and in article itself.
19871         Invalidate article backlog.
19872
19873 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
19874
19875         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
19876
19877 2005-10-26  Simon Josefsson  <jas@extundo.com>
19878
19879         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
19880         part of 2004-07-25 change.
19881
19882 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19883
19884         * message.el (message-display-completion-list): New function.
19885         (message-expand-group): Use it; make sure the Completions buffer
19886         is modifiable.
19887 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19888
19889         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
19890         user-mail-name is an empty string.
19891
19892 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19893
19894         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
19895         depending on gnus-score-decay-constant.
19896
19897         * encrypt.el (encrypt-insert-file-contents)
19898         (encrypt-write-file-contents): Don't use `gnus-message'.
19899
19900         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
19901         arguments.
19902         (mm-uu-type-alist): Add message-marks and insert-marks.
19903         Pass arguments to mm-uu-verbatim-marks-extract.
19904         (mm-uu-hide-markers): New variable.
19905         (mm-uu-extract): Use face similar to `gnus-cite-3'.
19906
19907         * gnus-fun.el (gnus-convert-image-to-x-face-command)
19908         (gnus-convert-image-to-face-command): Use "convert" by default to
19909         allow other input image formats.
19910         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
19911         accordingly.
19912
19913 2005-10-23  Simon Josefsson  <jas@extundo.com>
19914
19915         * imap.el (imap-gssapi-program): Align command line parameters
19916         with latest GNU SASL.
19917         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
19918
19919 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19920
19921         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
19922         HTML.
19923         (nnslashdot-request-article): Ditto.
19924
19925         * lpath.el (featurep): Add nobreak-char-display.
19926
19927 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
19928
19929         * mail-source.el (mail-source-fetch-pop): Require pop3.
19930         (mail-source-check-pop): Ditto.
19931
19932 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19933
19934         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
19935         errors.
19936
19937 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
19938
19939         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
19940         (gnus-treat-strip-leading-blank-lines): Improve doc string.
19941
19942         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
19943
19944         * mm-bodies.el (mm-decode-string):
19945         Call `mm-charset-to-coding-system' with allow-override argument.
19946
19947 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19948
19949         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
19950         (rfc2047-charset-to-coding-system): New function.
19951         (rfc2047-decode-encoded-words): New function.
19952         (rfc2047-decode-region): Use them.
19953         (rfc2047-decode-cte): Remove.
19954         (rfc2047-parse-and-decode): Remove.
19955         (rfc2047-decode): Remove.
19956
19957 2005-10-15  Kenichi Handa  <handa@m17n.org>
19958
19959         * rfc2047.el (rfc2047-decode-cte): New function.
19960         (rfc2047-decode-region): Change the way to decode successive
19961         encoded-words: decode B- or Q-encoding in each encoded-word,
19962         concatenate them, and decode it as charset.
19963
19964 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19965
19966         * lpath.el: Fbind codepage-setup for XEmacs.
19967
19968 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19969
19970         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
19971         widget-move-and-invoke.
19972         (gnus-custom-mode): Use gnus-custom-map.
19973
19974 2005-10-15  Bill Wohler  <wohler@newt.com>
19975
19976         * message.el (message-tool-bar-map): Rename image file from
19977         mail_send to mail/send.
19978
19979 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19980
19981         * message.el (message-expand-group): Pass the common
19982         prefix substring of completion to `display-completion-list'.
19983
19984 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
19985
19986         * mml-sec.el (mml-secure-method): New internal variable.
19987         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
19988         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
19989         New functions using mml-secure-method.
19990
19991         * mml.el (mml-mode-map): Add key bindings for those functions.
19992         (mml-menu): Simplify security menu entries.  Suggested by Jesper
19993         Harder <harder@myrealbox.com>.
19994         (mml-attach-file, mml-attach-buffer, mml-attach-external):
19995         Goto end of message if point is the headers of the message.
19996
19997         * message.el (message-in-body-p): New function.
19998
19999         * assistant.el: Autoload gnus-util and netrc.
20000
20001         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
20002         Use `mm-charset-override-alist' only when decoding.
20003
20004         * mm-bodies.el (mm-decode-body):
20005         Call `mm-charset-to-coding-system' with allow-override argument.
20006
20007         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
20008         `filename' from Content-Disposition if Content-Type doesn't
20009         provide `name'.
20010         (gnus-mime-view-part-as-type): Set default instead of
20011         initial-input.
20012
20013 2005-10-09  Daniel Brockman  <daniel@brockman.se>
20014
20015         * format-spec.el (format-spec): Propagate text properties of % spec.
20016
20017 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
20018
20019         * gnus-art.el (gnus-treat-predicate): Add `first'.
20020
20021 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
20022
20023         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
20024         (mm-charset-override-alist): New variable.
20025         (mm-charset-to-coding-system): Use it.
20026         (mm-codepage-setup): New helper function.
20027         (mm-charset-eval-alist): New variable.
20028         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
20029         Warn about unknown charsets.
20030
20031         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
20032
20033 2005-10-04  David Hansen  <david.hansen@gmx.net>
20034
20035         * nnrss.el (nnrss-request-article): Add support for the comments tag.
20036         (nnrss-check-group): Ditto.
20037
20038 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
20039
20040         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
20041         Rename x-gnus-verbatim to x-verbatim.
20042         (mm-uu-type-alist): Fix regexp for verbatim-marks.
20043
20044         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
20045         x-verbatim.
20046
20047         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
20048
20049         * gnus-util.el (gnus-remove-duplicates): Remove.
20050
20051         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
20052         instead of gnus-remove-duplicates.
20053
20054         * message.el (message-remove-duplicates): Remove.
20055         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
20056         message-remove-duplicates.
20057
20058         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
20059         available, else use implementation from `delete-dups'.
20060
20061         * message.el (message-insert-expires): New function.
20062         (message-mode-map): Add key binding.
20063         (message-mode-field-menu): Add menu entry.
20064         (message-mode): Document it.
20065         (message-make-expires-date): Use `message-make-date'.
20066
20067 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
20068
20069         * message.el (message-make-expires-date): New function.
20070
20071 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
20072
20073         * Makefile.in (list-installed-shadows): New entry.
20074         (install): Use it.
20075         (remove-installed-shadows): New entry.
20076
20077         * dgnushack.el (dgnushack-default-load-path): New variable.
20078         (dgnushack-find-lisp-shadows): New function.
20079         (dgnushack-remove-lisp-shadows): New function.
20080
20081 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20082
20083         * Makefile.in (install-el-elc): New entry.
20084         (install): Use it so that .el files are necessarily installed.
20085
20086 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20087
20088         * time-date.el: Autoload parse-time-string, XEmacs needs it.
20089
20090 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
20091
20092         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
20093         function rather than the diff-mode.el package.
20094         (mm-display-external): Use with-current-buffer.
20095         (mm-viewer-completion-map, mm-viewer-completion-map):
20096         Move initialization inside declaration.
20097
20098 2005-09-29  Simon Josefsson  <jas@extundo.com>
20099
20100         * spam.el: Load hashcash when compiling, to avoid warnings.
20101         Don't autoload mail-check-payment.
20102         (spam-check-hashcash): Define unconditionally, since hashcash.el
20103         is part of Gnus now.  Ignore errors from payment checking.
20104
20105 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
20106
20107         * message.el (message-bold-region, message-unbold-region):
20108         Rename from `bold-region' and `unbold-region'.
20109
20110         * message.el: Remove useless autoloads.
20111
20112 2005-09-28  Simon Josefsson  <jas@extundo.com>
20113
20114         * message.el (message-use-idna): Default to t.
20115         (message-use-idna): Test whether encoding works too.  Doc fix.
20116
20117 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20118
20119         * nntp.el (nntp-warn-about-losing-connection): Remove.
20120
20121 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
20122
20123         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
20124         customizable.  Change default value.
20125         (mm-uu-diff-groups-regexp): Change default value.
20126         (mm-uu-type-alist): Add doc string.
20127         (mm-uu-configure): Add doc string.  Make it interactive.
20128         (mm-uu-tex-groups-regexp): New variable.
20129         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
20130         (mm-uu-type-alist): Add LaTeX documents.
20131         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
20132         of "text/verbatim".
20133         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
20134
20135         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
20136         instead of "text/verbatim".
20137
20138         * message.el (message-mark-inserted-region)
20139         (message-mark-insert-file): Use slrn style marks when called with
20140         prefix argument.
20141
20142 2005-09-27  Simon Josefsson  <jas@extundo.com>
20143
20144         * message.el (message-idna-to-ascii-rhs-1): Reformat.
20145
20146 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
20147
20148         * message.el (message-remove-duplicates): New function.
20149         Implementation borrowed from `gnus-remove-duplicates'.
20150         (message-idna-to-ascii-rhs): Also encode idna addresses in
20151         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20152         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
20153         only ask about the same idna domain once per header and also tell
20154         in what header to replace the idna domain.
20155
20156         * gnus-art.el (article-decode-idna-rhs): Also decode idna
20157         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20158         (article-decode-idna-rhs): Fix regexp so that all idna-address in
20159         a header is decoded and not just the last one.
20160
20161 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20162
20163         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
20164         has been decoded.
20165
20166         * mm-decode.el (mm-automatic-display): Add text/verbatim.
20167         (mm-insert-part): Don't modify text if it has been decoded.
20168
20169         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
20170         decoded.
20171
20172         * mm-view.el (mm-inline-text): Don't strip text props unless
20173         decoding enriched or richtext parts.
20174
20175 2005-09-25  Romain Francoise  <romain@orebokech.com>
20176
20177         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
20178         * gnus-start.el (gnus-subscribe-interactively):
20179         * gnus-uu.el (gnus-uu-grab-articles):
20180         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
20181         space.
20182
20183 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
20184
20185         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
20186         * mm-view.el (mm-view-pkcs7-decrypt):
20187         * gnus-sum.el (gnus-summary-limit-to-extra)
20188         (gnus-summary-respool-article, gnus-read-move-group-name):
20189         * gnus-score.el (gnus-summary-increase-score):
20190         * gnus-util.el (gnus-completing-read-with-default):
20191         * gnus-art.el (gnus-read-save-file-name)
20192         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
20193         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
20194         * message.el (message-check-news-header-syntax):
20195         Follow convention for reading with the minibuffer.
20196
20197 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
20198
20199         * spam-report.el (spam-report-url-ping-plain):
20200         Use gnus-extended-version as User-Agent.
20201
20202         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
20203         default value is nil.
20204
20205         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
20206         (mm-uu-verbatim-marks-extract): New function.
20207         (mm-uu-extract): New face.
20208         (mm-uu-copy-to-buffer): Use it.
20209
20210         * spam-report.el (spam-report-gmane-ham): Rename from
20211         `spam-report-gmane-unspam'.
20212         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
20213         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
20214
20215         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
20216         Autoload.
20217         (spam-report-gmane-unregister-routine):
20218         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
20219
20220 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
20221
20222         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
20223         (spam-report-gmane-unregister-routine): Add support for gmane
20224         unregistration.
20225
20226         * spam-report.el (spam-report-gmane-unspam)
20227         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
20228         (spam-report-gmane): Change to take a single article and do unspam
20229         registration.
20230
20231 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20232
20233         * mm-url.el (mm-url-decode-entities): Fix regexp.
20234
20235 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20236
20237         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
20238         default to nil, to be able to use Gnus at all.  If the default
20239         switches to something else, then the function should be fixed not
20240         be exceedingly slow.
20241
20242 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
20243
20244         * gnus-start.el (gnus-activate-group): If the server is nil, don't
20245         fail hard.
20246
20247         * spam-report.el: Add better Keywords line.
20248
20249         * spam.el: Add Maintainer and better Keywords line.
20250
20251 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20252
20253         * gnus-art.el (gnus-article-replace-part)
20254         (gnus-mime-replace-part): New functions.
20255         (gnus-mime-action-alist, gnus-mime-button-commands)
20256         (gnus-mime-save-part-and-strip): Add file argument.
20257         (gnus-article-part-wrapper): Add interactive argument.
20258
20259         * gnus-sum.el (gnus-summary-mime-map):
20260         Add `gnus-article-replace-part'.
20261
20262 2005-09-19  Didier Verna  <didier@xemacs.org>
20263
20264         The nnml compaction feature:
20265         * nnml.el (nnml-request-compact-group): New function.
20266         * nnml.el (nnml-request-compact): New function.
20267         * gnus-int.el (gnus-request-compact-group): New function.
20268         * gnus-int.el (gnus-request-compact): New function.
20269         * gnus-group.el (gnus-group-compact-group): New function.
20270         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
20271         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
20272         * gnus-srvr.el (gnus-server-compact-server): New function.
20273         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
20274         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
20275
20276 2005-09-18  Deepak Goel  <deego@gnufans.org>
20277
20278         * sieve.el (sieve-help): Fix `message' call: first arg should be a
20279         format spec.
20280
20281 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20282
20283         * gnus.el (gnus-group-startup-message): Bind image-load-path.
20284
20285 2005-09-15  Romain Francoise  <romain@orebokech.com>
20286
20287         * message.el (message-fill-paragraph): Clarify docstring.
20288
20289 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20290
20291         * gnus-art.el (gnus-mime-display-part): Protect against broken
20292         MIME messages.
20293
20294 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20295
20296         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
20297         before parsing header.
20298
20299 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
20300
20301         * html2text.el (html2text-replace-list): Add new entities.
20302
20303 2005-09-11  Romain Francoise  <romain@orebokech.com>
20304
20305         * message.el (message-alternative-emails): Improve docstring.
20306         (message-setup-1): Call `message-use-alternative-email-as-from'
20307         after `message-setup-hook' to give it precedence over posting
20308         styles, etc.
20309         (message-use-alternative-email-as-from): Add docstring.
20310         Remove the original From header if present.
20311
20312         * nnml.el (nnml-compressed-files-size-threshold): New variable.
20313         (nnml-save-mail): Use it.
20314
20315         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
20316         articles.  Add new argument `silent'.
20317         (gnus-uu-mark-all): Report the total number of marked articles.
20318
20319 2005-09-10  Romain Francoise  <romain@orebokech.com>
20320
20321         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
20322         (gnus-uu-mark-series): Likewise.
20323
20324 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
20325
20326         * spam-report.el (spam-report-gmane): Fix generation of spam
20327         report URL.
20328
20329 2005-09-10  Simon Josefsson  <jas@extundo.com>
20330
20331         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
20332         t, based on discussion on the ding list with Robert Epprecht
20333         <epprecht@solnet.ch>.
20334
20335 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
20336
20337         * spam-report.el (spam-report-gmane): Make it work without
20338         X-Report-Spam header.  Gmane now only provides Archived-At.
20339         This is only used if `spam-report-gmane-use-article-number' is nil.
20340         (spam-report-gmane-spam-header): Remove.  Not used anymore.
20341
20342         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
20343         make `gnus-summary-sort-by-recipient' work with threading.
20344
20345         * nnweb.el (nnweb-google-wash-article): Print a message if article
20346         is not available.
20347
20348 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
20349
20350         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
20351         change.  Decode text/* parts content before displaying.
20352
20353 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
20354
20355         * mml-smime.el: Remove defvar of gnus-extract-address-components.
20356
20357 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20358
20359         * mm-view.el (mm-display-inline-fontify): Disable support modes.
20360
20361         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
20362         url-package-name, url-package-version,
20363         w3m-cid-retrieve-function-alist, w3m-current-buffer,
20364         w3m-display-inline-images, and w3m-minor-mode-map.
20365
20366 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
20367
20368         * message.el (message-tab-body-function): Fix mismatched custom type.
20369
20370         * gnus.el (gnus-group-change-level-function): Ditto.
20371
20372         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
20373
20374         * gnus-art.el (gnus-signature-limit)
20375         (gnus-article-mime-part-function): Ditto.
20376
20377 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20378
20379         * mml.el (mml-mode): Silence the byte compiler.
20380
20381         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
20382         using `(sit-for 0)' before moving the point to the specified part;
20383         skip unbuttonized parts.
20384         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
20385         return to the summary window if gnus-auto-select-part is non-nil.
20386
20387 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
20388
20389         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
20390         New variables.
20391         (mml-dnd-attach-file, mml-mode): Use them.
20392
20393         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
20394         Make fetching article by MID work again for Google Groups.
20395         Add FIXME concerning gnus-group-make-web-group.
20396
20397         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
20398         Don't depend on Gnus by using mail-extract-address-components if
20399         gnus-extract-address-components is not bound.
20400
20401 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20402
20403         * gnus-art.el (gnus-mime-display-security): Don't display the
20404         signature, but only the signed part.
20405
20406 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20407
20408         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
20409
20410         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
20411         list, not listp.
20412
20413 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
20414
20415         * mm-encode.el (mm-encode-content-transfer-encoding):
20416         Likewise when encoding.
20417
20418         * mm-bodies.el (mm-decode-content-transfer-encoding):
20419         De-canonicalize CRLF for all text content types, not just
20420         text/plain.
20421
20422 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20423
20424         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
20425         valid article; point arrow and cursor at the MIME button.
20426
20427 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20428
20429         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
20430         Suggested by Dan Christensen <jdc@uwo.ca>.
20431
20432         * mm-decode.el (mm-save-part): Enable change of prompt.
20433
20434 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
20435
20436         * gnus-msg.el (gnus-inews-add-send-actions):
20437         Make `message-post-method' lambda parameter ARG `&optional'.
20438
20439 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20440
20441         * gnus-sum.el (gnus-summary-mime-map):
20442         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
20443         gnus-article-jump-to-part.
20444
20445         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
20446         (gnus-article-edit-part): Use it.
20447         (gnus-article-part-wrapper): Add no-handle argument.
20448         (gnus-article-save-part-and-strip, gnus-article-delete-part):
20449         New functions.
20450
20451 2005-08-29  Romain Francoise  <romain@orebokech.com>
20452
20453         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20454         docstring.
20455         (gnus-face-from-file): Likewise.
20456
20457 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20458
20459         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
20460         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
20461         non-nil.
20462         (gnus-auto-select-part): New variable.
20463         (gnus-article-jump-to-part): New function.
20464         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
20465         (gnus-mime-delete-part): Allow selecting specified part after
20466         deleting or stripping parts.
20467         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
20468         part if argument is bogus.
20469
20470 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
20471
20472         * gnus-art.el (w3m-minor-mode-map):
20473         * gnus-spec.el (gnus-newsrc-file-version):
20474         * gnus-util.el (nnmail-active-file-coding-system)
20475         (gnus-original-article-buffer, gnus-user-agent):
20476         * gnus.el (gnus-ham-process-destinations)
20477         (gnus-parameter-ham-marks-alist)
20478         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
20479         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
20480         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
20481         * mm-decode.el (gnus-current-window-configuration):
20482         * mm-extern.el (gnus-article-mime-handles):
20483         * mm-url.el (url-current-object, url-package-name)
20484         (url-package-version):
20485         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
20486         (smime-keys, w3m-cid-retrieve-function-alist)
20487         (w3m-current-buffer, w3m-display-inline-images)
20488         (w3m-minor-mode-map):
20489         * mml-smime.el (gnus-extract-address-components):
20490         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
20491         (gnus-newsrc-hashtb, message-default-charset)
20492         (message-deletable-headers, message-options)
20493         (message-posting-charset, message-required-mail-headers)
20494         (message-required-news-headers):
20495         * mml1991.el (mc-pgp-always-sign):
20496         * mml2015.el (mc-pgp-always-sign):
20497         * nnheader.el (nnmail-extra-headers):
20498         * rfc1843.el (gnus-decode-encoded-word-function)
20499         (gnus-decode-header-function, gnus-newsgroup-name):
20500         * spam-stat.el (gnus-original-article-buffer): Add defvars.
20501
20502 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
20503
20504         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
20505         the end of the date treatments.
20506
20507 2005-08-15  Simon Josefsson  <jas@extundo.com>
20508
20509         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
20510         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
20511         Capello and Romain Francoise.
20512         (pgg-fetch-key-function): Remove, not used?
20513         (pgg-insert-url-with-w3): Require url, to get
20514         url-insert-file-contents regardless of where it is defined.
20515
20516 2005-08-13  Romain Francoise  <romain@orebokech.com>
20517
20518         * message.el (message-cite-original-1): New function.
20519         (message-cite-original): Use it.
20520         (message-cite-original-without-signature): Ditto.
20521
20522 2005-08-08  Romain Francoise  <romain@orebokech.com>
20523
20524         * message.el (message-yank-empty-prefix): New variable.
20525         (message-indent-citation): Use it.
20526         (message-cite-original-without-signature): Respect X-No-Archive.
20527
20528 2005-08-08  Simon Josefsson  <jas@extundo.com>
20529
20530         * pgg.el: Autoload url-insert-file-contents instead of loading
20531         w3/url.
20532         (pgg-insert-url-with-w3): Don't load url here.
20533
20534 2005-08-07  Jesper Harder  <harder@phys.au.dk>
20535
20536         * message.el (message-kill-to-signature): Don't insert newline at
20537         bol.
20538         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
20539
20540 2005-08-06  Romain Francoise  <romain@orebokech.com>
20541
20542         * message.el (message-user-fqdn): Fix typo in docstring.
20543
20544 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
20545
20546         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
20547
20548         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
20549
20550 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20551
20552         * mm-bodies.el (mm-encode-body): Use coding system rather than
20553         charset to encode text.
20554
20555         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
20556         number of charsets if utf-8 is available (XEmacs).
20557
20558 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
20559
20560         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
20561         taken from `gnus-button-mid-or-mail-regexp'.
20562         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
20563         (gnus-button-alist): Improve regexp for domain part of the MIDs
20564         for news:localpart@domain buttons.
20565         (gnus-button-ctan-directory-regexp): Update.
20566
20567 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20568
20569         * sieve-manage.el (sieve-manage-interactive-login):
20570         Use make-local-variable rather than make-variable-buffer-local.
20571         (sieve-manage-open): Ditto.
20572         (sieve-manage-authenticate): Ditto.
20573
20574         * mml.el (mml-generate-mime-1): Make the content type default to
20575         text/plain if the filename is not specified.
20576
20577 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20578
20579         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
20580         instead of insert-buffer.
20581
20582         * message.el (message-yank-original): Ditto; set the mark at the
20583         end of the yanked message.
20584
20585 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20586
20587         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
20588         lines to scroll rather than to stop it.
20589
20590         * mml.el (mml-generate-default-type): Add doc string.
20591         (mml-generate-mime-1): Use mm-default-file-encoding or make it
20592         default to application/octet-stream when determining the content
20593         type if it is not specified for the part or the mml contents; add
20594         a comment about mml-generate-default-type.
20595
20596 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
20597
20598         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
20599         make it default to application/octet-stream when determining the
20600         content type if it is not specified for the external contents.
20601
20602 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20603
20604         * rfc2231.el (rfc2231-parse-string): Take care that not only a
20605         segmented parameter but also other parameters might be there.
20606
20607 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20608
20609         * mm-decode.el (mm-display-external): Delete temp file, directory
20610         and buffer immediately if the external process is exited.
20611
20612 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20613
20614         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
20615         fewer lines than that of scroll-margin.
20616         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
20617
20618 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20619
20620         * gnus-art.el (gnus-article-next-page): Revert.
20621         (gnus-article-beginning-of-window): New macro.
20622         (gnus-article-next-page-1): Use it.
20623         (gnus-article-prev-page): Ditto.
20624         (gnus-article-edit-part): Use insert-buffer-substring instead of
20625         insert-buffer.
20626         (gnus-article-edit-exit): Ditto.
20627
20628         * gnus-util.el (gnus-beginning-of-window): Remove.
20629         (gnus-end-of-window): Remove.
20630
20631         * lpath.el: Don't bind header-line-format and scroll-margin.
20632
20633 2005-07-25  Simon Josefsson  <jas@extundo.com>
20634
20635         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
20636         to have the url package without w3.  Reported by Daiki Ueno
20637         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
20638
20639 2005-07-20  Didier Verna  <didier@xemacs.org>
20640
20641         * gnus-diary.el: Remove the description comment (nndiary is now
20642         properly documented in the Gnus manual).
20643         Fix the spelling of "Back End".
20644         * nndiary.el: Ditto.
20645         Fix the copyright notice.
20646
20647 2005-07-18  Romain Francoise  <romain@orebokech.com>
20648
20649         * gnus-sum.el (gnus-summary-to-prefix)
20650         (gnus-summary-newsgroup-prefix): New variables.
20651         (gnus-summary-from-or-to-or-newsgroups): Use them.
20652
20653 2005-07-17  Romain Francoise  <romain@orebokech.com>
20654
20655         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
20656         space as it's generally not especially interesting to the user.
20657
20658 2005-07-16  Romain Francoise  <romain@orebokech.com>
20659
20660         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
20661         nil to avoid prompting and file modification if one of the
20662         messages at the top of the nnfolder file contains a copyright
20663         notice.
20664         Update copyright notice.
20665
20666         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
20667         instead of `current-time-string' as the latter creates a time
20668         string that is not RFC 2822 compliant (it lacks the zone).
20669         Update copyright notice.
20670
20671 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20672
20673         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
20674         for text/rtf.  Display default in prompt.  Pass default for M-n.
20675
20676         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
20677
20678 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20679
20680         * gnus-msg.el (gnus-button-mailto):
20681         Remove save-selected-window-window hackery because it relies on
20682         save-selected-window internals.
20683
20684 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20685
20686         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
20687         (gnus-article-next-page-1): Use gnus-beginning-of-window.
20688         (gnus-article-prev-page): Ditto.
20689
20690         * gnus-util.el (gnus-beginning-of-window): New function.
20691         (gnus-end-of-window): New function.
20692
20693         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
20694
20695 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
20696
20697         * gnus-score.el (gnus-score-edit-all-score):
20698         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
20699         gnus-message.
20700
20701 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20702
20703         * gnus-msg.el (gnus-button-mailto):
20704         Remove save-selected-window-window hackery because it relies on
20705         save-selected-window internals.
20706
20707 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20708
20709         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
20710         add-minor-mode.
20711         (gnus-binary-mode): Ditto.
20712
20713         * gnus-topic.el (gnus-topic-mode): Ditto.
20714
20715 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
20716
20717         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
20718         (gnus-article-prev-page): Take scroll-margin into consideration.
20719
20720 2005-07-04  Lute Kamstra  <lute@gnu.org>
20721
20722         Update FSF's address in GPL notices.
20723
20724 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
20725
20726         * gnus.el (gnus-exit):
20727         * gnus-group.el (gnus-group-icons):
20728         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
20729
20730         * gnus-nocem.el (gnus-nocem):
20731         * message.el (message-various, message-buffers, message-sending)
20732         (message-interface, message-forwarding, message-insertion)
20733         (message-headers, message-news, message-mail):
20734         * pgg-gpg.el (pgg-gpg):
20735         * pgg-parse.el (pgg-parse):
20736         * pgg-pgp.el (pgg-pgp):
20737         * pgg-pgp5.el (pgg-pgp5):
20738         * pop3.el (pop3): Finish `defgroup' description with period.
20739
20740 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20741
20742         * gnus-art.el (article-display-face): Improve the efficiency.
20743         (article-display-x-face): Ditto; remove gray x-face stuff.
20744
20745 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20746
20747         * gnus-art.el (article-display-face): Correct the position in
20748         which Faces are inserted.
20749
20750 2005-06-29  Didier Verna  <didier@xemacs.org>
20751
20752         * gnus-art.el (article-display-face): Display faces in correct
20753         order.
20754
20755 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20756
20757         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
20758         (gnus-fill-real-hashtb): Use hash table instead of obarray.
20759         (gnus-nocem-check-article): Fetch the Type header.
20760         (gnus-nocem-message-wanted-p): Fix the way to examine types.
20761         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
20762         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
20763         make sure gnus-nocem-hashtb is initialized.
20764         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
20765         (gnus-nocem-unwanted-article-p): Ditto.
20766
20767         * pgg.el (pgg-verify): Return the verification result.
20768
20769 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20770
20771         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
20772         is ascii.
20773
20774 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
20775
20776         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
20777         `show-nonbreak-escape'.
20778
20779 2005-06-23  Lute Kamstra  <lute@gnu.org>
20780
20781         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
20782
20783         * dig.el (dig-mode):
20784         * smime.el (smime-mode): Use gnus-run-mode-hooks.
20785
20786 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
20787
20788         * nnimap.el (nnimap-split-download-body): Fix spellings.
20789
20790 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
20791
20792         * gnus-art.el (gnus-article-encrypt-body):
20793         * gnus-cus.el (gnus-score-customize):
20794         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
20795         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
20796
20797 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
20798
20799         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
20800         header by looking for magic "MII" at the beginning.
20801
20802 2005-06-16  Miles Bader  <miles@gnu.org>
20803
20804         * gnus-xmas.el (gnus-xmas-group-startup-message):
20805         Use renamed gnus-splash face.
20806
20807         * assistant.el (assistant-field): Remove "-face" suffix from face name.
20808         (assistant-field-face): New backward-compatibility alias for renamed
20809         face.
20810         (assistant-render-text): Use renamed assistant-field face.
20811
20812         * spam.el (spam): Remove "-face" suffix from face name.
20813         (spam-face): New backward-compatibility alias for renamed face.
20814         (spam-face, spam-initialize): Use renamed spam face.
20815
20816         * message.el (message-header-to, message-header-cc)
20817         (message-header-subject, message-header-newsgroups)
20818         (message-header-other, message-header-name)
20819         (message-header-xheader, message-separator, message-cited-text)
20820         (message-mml): Remove "-face" suffix from face names.
20821         (message-header-to-face, message-header-cc-face)
20822         (message-header-subject-face, message-header-newsgroups-face)
20823         (message-header-other-face, message-header-name-face)
20824         (message-header-xheader-face, message-separator-face)
20825         (message-cited-text-face, message-mml-face):
20826         New backward-compatibility aliases for renamed faces.
20827         (message-font-lock-keywords): Use renamed message faces.
20828
20829         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
20830         (sieve-test-commands, sieve-tagged-arguments):
20831         Remove "-face" suffix from face names.
20832         (sieve-control-commands-face, sieve-action-commands-face)
20833         (sieve-test-commands-face, sieve-tagged-arguments-face):
20834         New backward-compatibility aliases for renamed faces.
20835         (sieve-control-commands-face, sieve-action-commands-face)
20836         (sieve-test-commands-face, sieve-tagged-arguments-face):
20837         Use renamed sieve faces.
20838
20839         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
20840         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
20841         (gnus-group-news-3-empty, gnus-group-news-4)
20842         (gnus-group-news-4-empty, gnus-group-news-5)
20843         (gnus-group-news-5-empty, gnus-group-news-6)
20844         (gnus-group-news-6-empty, gnus-group-news-low)
20845         (gnus-group-news-low-empty, gnus-group-mail-1)
20846         (gnus-group-mail-1-empty, gnus-group-mail-2)
20847         (gnus-group-mail-2-empty, gnus-group-mail-3)
20848         (gnus-group-mail-3-empty, gnus-group-mail-low)
20849         (gnus-group-mail-low-empty, gnus-summary-selected)
20850         (gnus-summary-cancelled, gnus-summary-high-ticked)
20851         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
20852         (gnus-summary-high-ancient, gnus-summary-low-ancient)
20853         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
20854         (gnus-summary-low-undownloaded)
20855         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
20856         (gnus-summary-low-unread, gnus-summary-normal-unread)
20857         (gnus-summary-high-read, gnus-summary-low-read)
20858         (gnus-summary-normal-read, gnus-splash):
20859         Remove "-face" suffix from face names.
20860         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
20861         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
20862         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
20863         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
20864         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
20865         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
20866         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
20867         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
20868         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
20869         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
20870         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
20871         (gnus-summary-selected-face, gnus-summary-cancelled-face)
20872         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
20873         (gnus-summary-normal-ticked-face)
20874         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
20875         (gnus-summary-normal-ancient-face)
20876         (gnus-summary-high-undownloaded-face)
20877         (gnus-summary-low-undownloaded-face)
20878         (gnus-summary-normal-undownloaded-face)
20879         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
20880         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
20881         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
20882         (gnus-splash-face):
20883         New backward-compatibility aliases for renamed faces.
20884         (gnus-group-startup-message): Use renamed gnus faces.
20885
20886         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
20887         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
20888         (gnus-server-agent): Remove "-face" suffix from face names.
20889         (gnus-server-agent-face, gnus-server-opened-face)
20890         (gnus-server-closed-face, gnus-server-denied-face)
20891         (gnus-server-offline-face):
20892         New backward-compatibility aliases for renamed faces.
20893         (gnus-server-agent-face, gnus-server-opened-face)
20894         (gnus-server-closed-face, gnus-server-denied-face)
20895         (gnus-server-offline-face): Use renamed gnus faces.
20896
20897         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
20898         Remove "-face" suffix from face names.
20899         (gnus-picon-xbm-face, gnus-picon-face):
20900         New backward-compatibility aliases for renamed faces.
20901
20902         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
20903         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
20904         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
20905         (gnus-cite-11): Remove "-face" suffix from face names.
20906         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
20907         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
20908         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
20909         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
20910         New backward-compatibility aliases for renamed faces.
20911         (gnus-cite-attribution-face, gnus-cite-face-list)
20912         (gnus-article-boring-faces): Use renamed gnus faces.
20913
20914         * gnus-art.el (gnus-signature, gnus-header-from)
20915         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
20916         (gnus-header-content): Remove "-face" suffix from face names.
20917         (gnus-signature-face, gnus-header-from-face)
20918         (gnus-header-subject-face, gnus-header-newsgroups-face)
20919         (gnus-header-name-face, gnus-header-content-face):
20920         New backward-compatibility aliases for renamed faces.
20921         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
20922
20923         * gnus-sum.el (gnus-summary-selected-face)
20924         (gnus-summary-highlight): Use renamed gnus faces.
20925         * gnus-group.el (gnus-group-highlight): Likewise.
20926
20927 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
20928
20929         * gnus-sieve.el (gnus-sieve-article-add-rule):
20930         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
20931         * spam-stat.el (spam-stat-buffer-change-to-spam)
20932         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
20933
20934         * message.el (message-is-yours-p):
20935         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
20936
20937 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20938
20939         * mm-view.el (mm-inline-text): Withdraw the last change.
20940
20941 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
20942
20943         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
20944         executing enriched-decode.
20945
20946 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20947
20948         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
20949         charset of tar files.
20950
20951 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
20952
20953         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
20954
20955 2005-06-04  Lute Kamstra  <lute@gnu.org>
20956
20957         * nnfolder.el (nnfolder-read-folder): Make sure that undo
20958         information is never recorded.
20959
20960 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20961
20962         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
20963
20964 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20965
20966         * pop3.el (pop3-apop): Run md5 in the binary mode.
20967
20968         * starttls.el (starttls-set-process-query-on-exit-flag):
20969         Use eval-and-compile.
20970
20971 2005-05-31  Simon Josefsson  <jas@extundo.com>
20972
20973         * smime.el (smime-replace-in-string): Define.
20974         (smime-cert-by-ldap-1): Use it.
20975
20976 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20977
20978         * gnus-art.el (article-display-x-face): Replace
20979         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20980
20981         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
20982         set-process-query-on-exit-flag or process-kill-without-query.
20983
20984         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
20985         loop instead of replace-regexp.
20986
20987         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
20988         instead of process-kill-without-query if it is available.
20989
20990         * lpath.el: Fbind ldap-search-entries.
20991
20992         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
20993         instead of find-file-hooks if it is available.
20994
20995         * mml1991.el: Bind pgg-default-user-id when compiling.
20996
20997         * mml2015.el: Bind pgg-default-user-id when compiling.
20998
20999         * nndraft.el (nndraft-request-associate-buffer):
21000         Use write-contents-functions instead of write-contents-hooks if it is
21001         available.
21002
21003         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
21004         instead of find-file-hooks if it is available.
21005
21006         * nntp.el (nntp-open-connection): Replace
21007         process-kill-without-query by gnus-set-process-query-on-exit-flag.
21008         (nntp-open-ssl-stream): Ditto.
21009         (nntp-open-tls-stream): Ditto.
21010
21011         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
21012         set-process-query-on-exit-flag or process-kill-without-query.
21013         (starttls-open-stream-gnutls): Use it instead of
21014         process-kill-without-query.
21015         (starttls-open-stream): Ditto.
21016
21017 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
21018
21019         * smime.el (smime-cert-by-ldap-1): Don't use
21020         replace-regexp-in-string.
21021
21022 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
21023
21024         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
21025
21026         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
21027         in PEM format.  Adjust to the XEmacs compatibility.
21028
21029 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
21030
21031         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
21032         by `string-to-number'.
21033         * gnus-agent.el (gnus-agent-regenerate-group)
21034         (gnus-agent-fetch-articles): Ditto.
21035         * gnus-art.el (gnus-button-fetch-group): Ditto.
21036         * gnus-cache.el (gnus-cache-generate-active)
21037         (gnus-cache-articles-in-group): Ditto.
21038         * gnus-group.el (gnus-group-set-current-level)
21039         (gnus-group-insert-group-line): Ditto.
21040         * gnus-score.el (gnus-score-set-expunge-below)
21041         (gnus-score-set-mark-below, gnus-summary-score-effect)
21042         (gnus-summary-score-entry): Ditto.
21043         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
21044         (gnus-soup-pack): Ditto.
21045         * gnus-spec.el (gnus-xmas-format): Ditto.
21046         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
21047         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
21048         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
21049         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
21050         * nndb.el (nndb-get-remote-expire-response): Ditto.
21051         * nndiary.el (nndiary-parse-schedule-value)
21052         (nndiary-string-to-number, nndiary-request-replace-article)
21053         (nndiary-request-article): Ditto.
21054         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
21055         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
21056         * nneething.el (nneething-make-head): Ditto.
21057         * nnfolder.el (nnfolder-request-article)
21058         (nnfolder-retrieve-headers): Ditto.
21059         * nnheader.el (nnheader-file-to-number): Ditto.
21060         * nnkiboze.el (nnkiboze-request-article): Ditto.
21061         * nnmail.el (nnmail-process-unix-mail-format)
21062         (nnmail-process-babyl-mail-format): Ditto.
21063         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
21064         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
21065         (nnmh-request-create-group, nnmh-request-list-1)
21066         (nnmh-request-group, nnmh-request-article): Ditto.
21067         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
21068         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
21069         * nnsoup.el (nnsoup-make-active): Ditto.
21070         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
21071         * nntp.el (nntp-find-group-and-number)
21072         (nntp-retrieve-headers-with-xover): Ditto.
21073         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
21074         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
21075         (pgg-format-key-identifier): Ditto.
21076         * pop3.el (pop3-last, pop3-stat): Ditto.
21077         * qp.el (quoted-printable-decode-region): Ditto.
21078
21079         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
21080         of concat.
21081
21082 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21083
21084         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
21085
21086         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
21087
21088         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
21089
21090         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
21091
21092         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
21093
21094         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
21095
21096         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
21097         (gnus-carpal-mode): Ditto.
21098
21099         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
21100         (gnus-browse-mode): Ditto.
21101
21102         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
21103
21104         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
21105
21106 2005-05-29  Richard M. Stallman  <rms@gnu.org>
21107
21108         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
21109
21110 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21111
21112         * gnus-util.el (gnus-run-mode-hooks): New function.
21113
21114         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
21115
21116         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
21117         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
21118
21119 2005-05-27  Lute Kamstra  <lute@gnu.org>
21120
21121         * dns-mode.el (dns-mode): Specify customization group.
21122
21123 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
21124
21125         * gnus-agent.el (gnus-agent-make-mode-line-string):
21126         Use mode-line-highlight as mouse-face.
21127
21128 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21129
21130         * canlock.el (canlock): Change the parent group to news.
21131
21132         * deuglify.el (gnus-outlook-deuglify): Add :group.
21133
21134         * dig.el (dig): Add :group.
21135
21136         * dns-mode.el (dns-mode): Add :group.
21137
21138         * encrypt.el (encrypt): Add :group.
21139
21140         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
21141         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
21142         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
21143         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
21144         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
21145
21146         * gnus-diary.el (gnus-diary): Add :group.
21147
21148         * gnus.el (gnus-group-news-1-face): Add :group.
21149         (gnus-group-news-1-empty-face): Ditto.
21150         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
21151         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
21152         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
21153         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
21154         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
21155         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
21156         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
21157         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
21158         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
21159         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
21160         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
21161         (gnus-summary-high-ticked-face): Ditto.
21162         (gnus-summary-low-ticked-face): Ditto.
21163         (gnus-summary-normal-ticked-face): Ditto.
21164         (gnus-summary-high-ancient-face): Ditto.
21165         (gnus-summary-low-ancient-face): Ditto.
21166         (gnus-summary-normal-ancient-face): Ditto.
21167         (gnus-summary-high-undownloaded-face): Ditto.
21168         (gnus-summary-low-undownloaded-face): Ditto.
21169         (gnus-summary-normal-undownloaded-face): Ditto.
21170         (gnus-summary-high-unread-face): Ditto.
21171         (gnus-summary-low-unread-face): Ditto.
21172         (gnus-summary-normal-unread-face): Ditto.
21173         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
21174         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
21175
21176         * hashcash.el (hashcash): New custom group.
21177         (hashcash-default-payment): Add :group.
21178         (hashcash-payment-alist): Ditto.
21179         (hashcash-default-accept-payment): Ditto.
21180         (hashcash-accept-resources): Ditto.
21181         (hashcash-path): Ditto.
21182         (hashcash-extra-generate-parameters): Ditto.
21183         (hashcash-double-spend-database): Ditto.
21184         (hashcash-in-news): Ditto.
21185
21186         * message.el (message-minibuffer-local-map): Add :group.
21187
21188         * netrc.el (netrc): Add :group.
21189
21190         * sieve-manage.el (sieve-manage-log): Add :group.
21191         (sieve-manage-default-user): Diito.
21192         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
21193         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
21194         (sieve-manage-authenticators): Ditto.
21195         (sieve-manage-authenticator-alist): Ditto.
21196         (sieve-manage-default-port): Ditto.
21197
21198         * sieve-mode.el (sieve-control-commands-face): Add :group.
21199         (sieve-action-commands-face): Ditto.
21200         (sieve-test-commands-face): Ditto.
21201         (sieve-tagged-arguments-face): Ditto.
21202
21203         * smime.el (smime): Add :group.
21204
21205         * spam-report.el (spam-report): Add :group.
21206
21207         * spam.el (spam, spam-face): Add :group.
21208
21209 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21210
21211         * nntp.el (nntp-next-result-arrived-p): Some news servers may
21212         return \n.\n.\n at the end of articles.  Protect against that.
21213         (nntp-with-open-group): Allow debugging.
21214
21215         * nnheader.el (mail-header-set-extra): Make into a function
21216         because I just could't understand how to quote the list properly.
21217
21218         * dns.el (query-dns-cached): New function.
21219
21220 2005-05-26  Lute Kamstra  <lute@gnu.org>
21221
21222         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
21223
21224 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21225
21226         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
21227
21228         * gnus-art.el: Don't autoload mail-extract-address-components.
21229
21230         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
21231         eval-and-compile to evaluate it.
21232
21233         * hashcash.el: Don't autoload executable-find.
21234
21235         * nndb.el: Don't declare the nndb back end two or more times; don't
21236         autoload news-reply-mode, news-setup, cancel-timer and telnet.
21237
21238         * nntp.el: Autoload format-spec instead of format; use
21239         eval-and-compile to evaluate autoload forms.
21240
21241 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
21242
21243         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
21244
21245 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21246
21247         * gnus.el (gnus-version-number): Bump version.
21248
21249 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21250
21251         * gnus.el: No Gnus v0.3 is released.
21252
21253 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21254
21255         * lpath.el (featurep): Bind show-nonbreak-escape.
21256
21257 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21258
21259         * gnus-art.el (gnus-article-edit-part): Disable undo.
21260
21261 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21262
21263         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
21264         gnus-article-date-lapsed-new-header is t if date timer is active;
21265         skip headers in which the original date value is empty.
21266         (gnus-article-save-original-date): Redefine it as a macro.
21267         (gnus-display-mime): Use it.
21268
21269 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21270
21271         * gnus-art.el (article-date-ut): Support converting date in
21272         forwarded parts as well.
21273         (gnus-article-save-original-date): New function.
21274         (gnus-display-mime): Use it.
21275
21276 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
21277
21278         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
21279         enclosure element of <item>.
21280
21281 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
21282
21283         * message.el (message-kill-buffer-query): Rename from
21284         `message-kill-buffer-query-if-modified'.  Add :version.
21285
21286 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21287
21288         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
21289         window layout.
21290
21291 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21292
21293         * mml.el: Autoload dnd when compiling.
21294
21295 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
21296
21297         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
21298         x-dnd-*.
21299
21300 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21301
21302         * qp.el (quoted-printable-encode-region): Save excursion.
21303
21304 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
21305
21306         * message.el (message-kill-buffer-query-if-modified): Add new variable
21307         so the user can kill a modified message buffer quickly.
21308         (message-kill-buffer): Use it.
21309
21310 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21311
21312         * lpath.el: Fbind display-time-event-handler; don't fbind
21313         string-to-multibyte.
21314
21315         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
21316
21317 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21318
21319         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
21320         contained in text because xml.el decodes entities) with LFs.
21321
21322 2005-04-11  Lute Kamstra  <lute@gnu.org>
21323
21324         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
21325         differently.
21326
21327 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21328
21329         * mm-util.el (mm-detect-coding-region): Typo.
21330
21331 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
21332
21333         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
21334
21335 2005-04-06  Deepak Goel  <deego@gnufans.org>
21336
21337         * spam-stat.el (spam-stat-score-buffer): Add a call to a
21338         user-function allow user modifications of the scores.
21339         (spam-stat-score-buffer-user): New function, to allow
21340         user-computed modifications to the score.
21341         (spam-stat-score-buffer-user-functions): List of additional
21342         scoring functions.
21343         (spam-stat-error-holder): Global temporary error holder.
21344         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
21345         variable.
21346
21347 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
21348
21349         * gnus-registry.el (gnus-registry-clean-empty-function)
21350         (gnus-registry-trim, gnus-registry-fetch-groups)
21351         (gnus-registry-delete-group): Groups that match
21352         `gnus-registry-ignored-groups' are removed from the registry
21353         entries, not just ignored for splitting.  This helps clean up the
21354         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
21355         to get all the groups a message ID is in.
21356
21357         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
21358         (spam-stat-split-fancy): Change "threshhold" to "threshold".
21359         (spam-stat-score-buffer-user-functions): Add :number custom type.
21360
21361 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21362
21363         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
21364         argument in XEmacs.
21365
21366         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
21367         (nnrss-request-group): Decode group name first.
21368         (nnrss-request-article): Make a text/plain article if mml-to-mime
21369         failed.
21370         (nnrss-get-encoding): Return a compatible encoding according to
21371         nnrss-compatible-encoding-alist.
21372         (nnrss-find-el): Use consp instead of listp.
21373         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
21374
21375 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21376
21377         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
21378         which Emacs 20 doesn't support.
21379         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
21380
21381 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
21382
21383         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
21384         silence the byte compiler inside the defun.
21385
21386         * gnus-demon.el (parse-time-string): Add autoload.
21387
21388         * gnus-delay.el (parse-time-string): Add autoload.
21389
21390         * gnus-art.el (parse-time-string): Add autoload.
21391
21392         * nnultimate.el (parse-time): Require for `parse-time-string'.
21393
21394 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
21395
21396         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
21397
21398         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
21399
21400         * smime.el (smime-ldap-host-list): Add :version.
21401
21402 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
21403
21404         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
21405         pass it to `gnus-browse-read-group'.
21406         (gnus-browse-read-group): Add NUMBER argument and pass it to
21407         `gnus-group-read-ephemeral-group'.
21408
21409         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
21410         argument and pass it to `gnus-group-read-group'.
21411
21412 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
21413
21414         * mm-util.el (mm-xemacs-find-mime-charset): Only call
21415         mm-xemacs-find-mime-charset-1 if we have the mule feature
21416         available at runtime.
21417
21418 2005-03-25  Werner Lemberg  <wl@gnu.org>
21419
21420         * nnmaildir.el: Replace `illegal' with `invalid'.
21421
21422 2005-03-23  Lute Kamstra  <lute@gnu.org>
21423
21424         * time-date.el: Add comment on time value formats.
21425         Don't require parse-time.
21426         (with-decoded-time-value): New macro.
21427         (encode-time-value): New function.
21428         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
21429         (days-to-time): Return a valid time value when arg is huge.
21430         (time-since): Use time-subtract.
21431         (time-to-number-of-days): Use time-to-seconds.
21432
21433 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21434
21435         * gnus-start.el (gnus-display-time-event-handler):
21436         Check display-time-timer at runtime rather than only at load time
21437         in case display-time-mode is turned off in the mean time.
21438
21439 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
21440
21441         * nnimap.el (nnimap-open-connection): Print which authinfo file is
21442         used.
21443
21444         * nneething.el (nneething-map-file-directory): Derive from
21445         `gnus-directory'.
21446
21447         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
21448         the To/Cc button.
21449
21450 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
21451
21452         * nnmaildir.el (nnmaildir-request-accept-article):
21453         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
21454
21455 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21456
21457         * gnus-async.el: Require timer-funcs at compile time when in
21458         XEmacs for `run-with-idle-timer'.
21459
21460 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21461
21462         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
21463         autoloaded function.
21464
21465 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21466
21467         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
21468
21469 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
21470
21471         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
21472
21473 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21474
21475         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
21476         Add gnus-expert-user to default.
21477
21478 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
21479
21480         * nnimap.el (nnimap-open-server): Ditto.
21481
21482         * imap.el (imap-authenticate): Fix typo.
21483
21484 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
21485
21486         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
21487         buffer (since IMAP server might return FETCH response out of
21488         order, and the nntp buffer must be sorted).
21489
21490 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
21491
21492         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
21493         comparison on string.
21494
21495         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
21496         (gnus-agent-score): Rename category keywords to match gnus-cus.
21497         (gnus-agent-summary-fetch-series): Modify to protect against
21498         gnus-agent-summary-fetch-group clearing processable flags.
21499         (gnus-agent-synchronize-group-flags): Update live group buffer as
21500         synchronization may occur due to the user toggle the plugged
21501         status.
21502         (gnus-agent-fetch-group-1): Clear downloadable flag when article
21503         successfully downloaded.
21504         (gnus-agent-expire-group-1): Avoid using markers when the overview
21505         is in ascending order; greatly improves performance.
21506         (gnus-agent-regenerate-group):
21507         Use gnus-agent-synchronize-group-flags to reset read status in both
21508         gnus and server.
21509         (gnus-agent-update-files-total-fetched-for): Fix initial size.
21510
21511 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
21512
21513         * message.el: Don't autoload former message-utils variables.
21514         (message-strip-subject-trailing-was): Change doc string.
21515
21516         * nnweb.el: Fixes for `gnus-group-make-web-group'.
21517         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
21518         (nnweb-google-search): Add "hl=en" here.
21519         (nnweb-google-parse-1, nnweb-google-create-mapping):
21520         Don't hardcode URL.
21521
21522 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
21523
21524         * message.el (message-get-reply-headers, message-followup):
21525         Mention related variables `message-use-followup-to' and
21526         `message-use-mail-followup-to', in the information buffer.
21527
21528         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
21529         of broken groups(-beta).google.com.
21530
21531 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
21532
21533         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
21534         parameter to invoked gnus-request-move-article; remove the
21535         redundant gnus-sum-hint-move-is-internal variable; apply the marks
21536         all at once instead of once per article.
21537         (gnus-summary-remove-process-mark): Accept a list of articles as
21538         well as a single article for processing.
21539
21540         * gnus-int.el (gnus-request-move-article): Add move-is-internal
21541         parameter.
21542
21543         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
21544
21545         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
21546
21547         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
21548         parameter.
21549
21550         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
21551         parameter.
21552
21553         * nnimap.el (nnimap-request-move-article): Add move-is-internal
21554         parameter and remove the gnus-sum-hint-move-is-internal variable.
21555
21556         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
21557         parameter.
21558
21559         * nndraft.el (nndraft-request-move-article): Add move-is-internal
21560         parameter.
21561
21562         * nndiary.el (nndiary-request-move-article): Add move-is-internal
21563         parameter.
21564
21565         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
21566
21567         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
21568         parameter.
21569
21570         * nnagent.el (nnagent-request-move-article): Add move-is-internal
21571         parameter.
21572
21573 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21574
21575         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
21576         a more conservative way.
21577
21578 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21579
21580         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
21581         buffer, so it moves the window's cursor.
21582
21583 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
21584
21585         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
21586         `mm-dissect-multipart' and receive the from field as an (optional)
21587         argument from `mm-dissect-multipart'.
21588         (mm-dissect-multipart): Receive the from field as an argument and
21589         pass it on when we call `mm-dissect-buffer' on MIME parts.
21590         Fixes verification/decryption of signed/encrypted MIME parts.
21591
21592 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
21593
21594         * gnus-sum.el (gnus-summary-move-article):
21595         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
21596         whatever it calls (right now, only nnimap-request-move article
21597         respects it).
21598
21599         * nnimap.el (nnimap-request-move-article):
21600         When gnus-sum-hint-move-is-internal is set, don't do the extra
21601         nnimap-request-article.
21602
21603 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
21604
21605         * nnheader.el (nnheader-find-file-noselect): Add doc string.
21606
21607         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
21608         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
21609
21610         * gnus-sum.el (gnus-summary-caesar-message):
21611         Apply `gnus-treat-article' after rotation.
21612
21613         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
21614         doc string.
21615
21616 2005-02-22  Simon Josefsson  <jas@extundo.com>
21617
21618         * encrypt.el (encrypt-password-cache-expiry): Remove (use
21619         `password-cache-expiry' instead).  Reported by Arne Jørgensen
21620         <arne@arnested.dk>.
21621         (encrypt): Add password-cache and password-cache-expiry as group
21622         members.
21623
21624 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
21625
21626         * smime.el (smime-ldap-host-list): Doc fix.
21627         (smime-ask-passphrase): Use `password-read-and-add' to read (and
21628         cache) password.
21629         (smime-sign-region): Use it.
21630         (smime-decrypt-region): Use it.
21631         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
21632         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
21633         fails.
21634         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
21635         certificate from DER to PEM format rather than calling openssl.
21636
21637         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
21638
21639         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
21640         for signing/encryption.
21641
21642         * mml.el (mml-parse-1): Use them.
21643
21644 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
21645
21646         * nnrss.el (nnrss-verbose): Remove.
21647         (nnrss-request-group): Use `nnheader-message' instead.
21648
21649 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
21650
21651         * nnrss.el (nnrss-verbose): New variable.
21652         (nnrss-request-group): Make it say nnrss is requesting a group.
21653
21654 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
21655
21656         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
21657         Handle news URL with given port correctly.
21658
21659 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21660
21661         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
21662         containing special characters.
21663
21664         * gnus-sum.el (gnus-summary-edit-article): Ditto.
21665
21666         * mml.el (mime-to-mml): Ditto.
21667
21668         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
21669         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
21670         (rfc2047-decode-region): Quote decoded words containing special
21671         characters when rfc2047-quote-decoded-words-containing-tspecials
21672         is non-nil.
21673
21674 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
21675
21676         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
21677
21678         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
21679
21680 2005-02-15  Simon Josefsson  <jas@extundo.com>
21681
21682         * nnimap.el (nnimap-debug): Doc fix.
21683
21684         * imap.el (imap-debug): Doc fix.
21685
21686 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21687
21688         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
21689
21690 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
21691
21692         * gnus.el (spam-contents): Improve docs for spam-contents
21693         parameter in its variable incarnation.
21694
21695 2005-02-14  Simon Josefsson  <jas@extundo.com>
21696
21697         * smime-ldap.el: Use require instead of load-library for ldap.
21698         (smime-ldap-search): Indent.
21699         (smime-ldap-search-internal): Shorten line.
21700
21701         * smime.el (smime-cert-by-dns): Add doc-string.
21702         (smime-cert-by-ldap-1): Indent.
21703
21704         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
21705         mml-smime-get-dns-ldap.
21706         (mml-smime-encrypt-query): Use new function.  Default to ldap.
21707
21708 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
21709
21710         * smime.el: Require smime-ldap.
21711         (smime-ldap-host-list): New variable.
21712         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
21713
21714         * mml-smime.el (mml-smime-encrypt-query): New function.
21715         (mml-smime-encrypt-query): Use it.
21716
21717         * smime-ldap.el: New file.
21718
21719 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21720
21721         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
21722
21723 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
21724
21725         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
21726         argument in doc string.  Make query for type more clear.
21727
21728 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
21729
21730         * gnus.el (gnus-group-startup-message): Search for gnus images in
21731         etc/images/gnus.
21732         * mm-util.el (mm-image-load-path): Likewise.
21733         * smiley.el (smiley-data-directory): Search for smilies in
21734         etc/images/smilies.
21735
21736 2005-02-09  Kim F. Storm  <storm@cua.dk>
21737
21738         Change Emacs release version from 21.4 to 22.1 throughout.
21739         Change Emacs development version from 21.3.50 to 22.0.50.
21740
21741 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21742
21743         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
21744
21745         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
21746         non-Mule XEmacs as well.
21747         (mm-decompress-buffer): Signal an error intentionally if it does
21748         not decompress compressed data because auto-compression-mode is
21749         disabled.
21750
21751 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
21752
21753         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
21754         an ID in the registry even if it has no groups.
21755
21756 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21757
21758         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
21759         merge it into mm-decompress-buffer.
21760         (gnus-mime-copy-part): Use the MIME part charset, the value which
21761         a user specified or gnus-newsgroup-charset for decoding, like
21762         gnus-mime-inline-part does; set buffer-file-coding-system to tell
21763         save-buffer what was used.  Suggested by Kevin Ryde
21764         <user42@zip.com.au>.
21765         (gnus-mime-inline-part): Allow the name parameter as well as the
21766         filename parameter; force decompressing of compressed data; always
21767         display contents being not decoded as unibyte.
21768
21769         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
21770         as well as the filename parameter.
21771
21772         * mm-util.el (mm-decompress-buffer):
21773         Merge gnus-mime-jka-compr-maybe-uncompress.
21774         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
21775         of compressed data.
21776
21777 2005-02-08  Simon Josefsson  <jas@extundo.com>
21778
21779         * imap.el (imap-log): Doc fix.
21780
21781 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21782
21783         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
21784         the coding cookies; decompress compressed parts.
21785
21786         * mml.el (mml-generate-mime-1): Add the charset parameter according
21787         to the value which a user specified manually or the coding cookie.
21788
21789         * mm-util.el (mm-string-to-multibyte): New function.
21790         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
21791         (mm-coding-system-to-mime-charset): New function.
21792         (mm-decompress-buffer): New function.
21793         (mm-find-buffer-file-coding-system): New function.
21794
21795         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
21796         (mm-display-inline-fontify): Rewrite for decoding and decompressing
21797         parts.
21798
21799 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21800
21801         * mm-view.el (mm-display-inline-fontify): Decode a part according
21802         to the charset parameter.
21803
21804 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21805
21806         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
21807         prefix arg is neither nil nor a number, as info specifies.
21808
21809 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21810
21811         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
21812         timestamps.
21813
21814 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
21815
21816         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
21817         groups error checking and notify user.
21818
21819 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
21820
21821         * message.el (message-send-mail-function): Check existence of
21822         sendmail-program first before using default value
21823         `message-send-mail-with-sendmail'.  Otherwise use more generic
21824         `smtpmail-send-it'.
21825
21826 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21827
21828         * nntp.el (nntp-request-update-info): Always return nil.
21829
21830 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21831
21832         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
21833
21834 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21835
21836         * message.el (message-beginning-of-line): Change the behavior when
21837         invoked between BOL and : so that it first moves backward.
21838
21839 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21840
21841         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
21842         article buffer when editing of the article is discarded.
21843         (gnus-article-prepare): Revert.
21844
21845 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21846
21847         * gnus-art.el (gnus-article-prepare):
21848         Remove message-strip-forbidden-properties from the local hook.
21849
21850 2005-01-27  Simon Josefsson  <jas@extundo.com>
21851
21852         * password.el (password-cache-add): Only start one timer per key.
21853         Reported by Derek Atkins <warlord@MIT.EDU>.
21854
21855 2005-01-26  Steve Youngs  <steve@sxemacs.org>
21856
21857         * run-at-time.el: Remove.  It is no longer needed as
21858         timer-funcs.el in the xemacs-base package has a working version of
21859         `run-at-time'.
21860
21861         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
21862
21863         * password.el: Require timer-funcs instead of run-at-time in
21864         XEmacs.
21865         Remove `password-run-at-time' macro.
21866         (password-cache-add): Use `run-at-time' instead of
21867         `password-run-at-time'.
21868
21869         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
21870         Remove `nnheader-cancel-function-timers' alias,
21871         `cancel-function-timers' exists in XEmacs in timer-funcs.
21872
21873         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
21874         for `run-with-idle-timer'.
21875
21876         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
21877         for `run-at-time'.
21878
21879         * mm-url.el: Require timer-funcs at compile time when in XEmacs
21880         for `with-timeout'.
21881
21882         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
21883         the same as for XEmacs 21.4.
21884         No need to ignore `run-with-idle-timer', this function exists in
21885         XEmacs now in timer-funcs.el in the xemacs-base package.
21886         (dgnushack-compile): No need to delete
21887         run-at-time.el from the list of files to compile because it
21888         doesn't exist anymore.
21889
21890 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21891
21892         * mml.el (mml-generate-mime-1): Convert string into unibyte when
21893         inserting " *mml*" buffer's contents into a unibyte temp buffer.
21894
21895 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
21896
21897         * mail-source.el (mail-source-fetch-imap): Search for ^From case
21898         sensitively.
21899
21900 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
21901
21902         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
21903
21904 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21905
21906         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
21907         which will be inserted according to the multibyteness of a buffer
21908         rather than the type of contents.  Suggested by ARISAWA Akihiro
21909         <ari@mbf.ocn.ne.jp>.
21910
21911         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
21912         of string which old xml.el may return rather than a string.
21913
21914 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21915
21916         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
21917
21918 2005-01-16  Simon Josefsson  <jas@extundo.com>
21919
21920         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
21921         idn/idna.el isn't available.
21922         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
21923         <michael@waxrat.com>.
21924
21925         * hashcash.el: Remove non-FSF copyright header.
21926
21927         * hashcash.el (hashcash-extra-generate-parameters): New variable.
21928         (hashcash-generate-payment): Use it.
21929         (hashcash-generate-payment-async): Use it.
21930
21931 2005-01-15  Simon Josefsson  <jas@extundo.com>
21932
21933         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
21934         Suggested by Raymond Scholz <ray-2005@zonix.de>.
21935
21936         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
21937         gnus-summary-idna-message.
21938         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
21939         (gnus-summary-idna-message): New function.
21940
21941 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
21942
21943         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
21944         gnus-novice-user.
21945
21946 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21947
21948         * nnrss.el (nnrss-request-delete-group): Delete entries in
21949         nnrss-group-alist as well.
21950         (nnrss-save-server-data): Insert newline.
21951
21952 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
21953
21954         * gnus.el (gnus-user-agent): Use list of symbols instead of
21955         symbols.  Display full version number for (S)XEmacs.
21956         Optionally display (S)XEmacs codename.
21957
21958         * gnus-util.el (gnus-emacs-version): Update for new
21959         `gnus-user-agent'.
21960
21961         * gnus-msg.el (gnus-extended-version): Make it possible to omit
21962         Gnus version.
21963
21964 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21965
21966         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
21967         which is unreadable in some setups.
21968
21969 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21970
21971         * gnus-spec.el (gnus-update-format-specifications): Flush the
21972         group format spec cache if it doesn't support decoded group names.
21973
21974 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
21975
21976         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
21977         Allow to apply decay on score files matching a regexp.
21978
21979 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21980
21981         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
21982         compatibility in %g and %c.
21983
21984 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21985
21986         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
21987         name for only %g and %c.
21988         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
21989         of gnus-tmp-group to decoded group name.
21990         (gnus-group-make-rss-group): Exclude `/'s from group names.
21991
21992 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21993
21994         * nnrss.el (nnrss-get-encoding): Fix regexp.
21995
21996 2004-12-27  Simon Josefsson  <jas@extundo.com>
21997
21998         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
21999         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
22000         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
22001
22002 2004-12-17  Kim F. Storm  <storm@cua.dk>
22003
22004         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
22005
22006         * gnus-sum.el (gnus-summary-mode-map): Likewise.
22007
22008 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
22009
22010         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
22011
22012 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22013
22014         * nnrss.el: Require rfc2047 and mml.
22015         (nnrss-file-coding-system): New variable.
22016         (nnrss-format-string): Redefine it as an inline function.
22017         (nnrss-decode-group-name): New function.
22018         (nnrss-string-as-multibyte): Remove.
22019         (nnrss-retrieve-headers): Decode group name; don't use
22020         nnrss-format-string.
22021         (nnrss-request-group): Decode group name.
22022         (nnrss-request-article): Decode group name; allow a Message-ID as
22023         well as an article number; don't use nnrss-format-string; encode a
22024         Message-ID string which may contain non-ASCII characters; use
22025         mml-to-mime to compose a MIME article.
22026         (nnrss-request-expire-articles): Decode group name.
22027         (nnrss-request-delete-group): Decode group name.
22028         (nnrss-fetch): Clarify error message.
22029         (nnrss-read-server-data): Use insert-file-contents instead of load;
22030         bind file-name-coding-system; use multibyte buffer.
22031         (nnrss-save-server-data): Bind coding-system-for-write to the
22032         value of nnrss-file-coding-system; bind file-name-coding-system;
22033         add coding cookie.
22034         (nnrss-read-group-data): Use insert-file-contents instead of load;
22035         bind file-name-coding-system; use multibyte buffer.
22036         (nnrss-save-group-data): Bind coding-system-for-write to the
22037         value of nnrss-file-coding-system; bind file-name-coding-system.
22038         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
22039         make it work with non-ASCII text.
22040         (nnrss-find-el): Make it work with old xml.el as well.
22041
22042 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
22043
22044         * nnrss.el (nnrss-get-encoding): New function.
22045         (nnrss-fetch): Use unibyte buffer initially; bind
22046         coding-system-for-read while performing mm-url-insert; remove ^Ms;
22047         decode contents according to the encoding attribute.
22048         (nnrss-save-group-data): Add coding cookie.
22049         (nnrss-mime-encode-string): New function.
22050         (nnrss-check-group): Use it to encode subject and author.
22051
22052 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
22053
22054         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
22055         imaginary variable.
22056
22057 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22058
22059         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
22060         correctly even if there are wide characters.
22061
22062 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
22063
22064         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
22065         downcased symbol names; make a new cache instead of reusing
22066         bbdb-hashtable.
22067
22068 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22069
22070         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
22071         concatenating segments rather than before concatenating them.
22072         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
22073
22074         * message.el (message-get-reply-headers): Bind `extra'.
22075
22076 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22077
22078         * message.el (message-extra-wide-headers): New variable.
22079         (message-get-reply-headers): Use it.
22080
22081 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
22082
22083         * gnus-agent.el (gnus-agent-group-path): Decode group name.
22084         (gnus-agent-group-pathname): Ditto.
22085
22086         * gnus-cache.el (gnus-cache-file-name): Decode group name.
22087
22088         * gnus-group.el (gnus-group-make-group): Decode group name.
22089         (gnus-group-make-rss-group): Register the group data after opening
22090         the nnrss group.
22091
22092 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
22093
22094         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
22095         by expiry now get marked as read.
22096
22097 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22098
22099         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
22100
22101 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
22102
22103         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
22104         unify Latin characters in XEmacs.
22105         (mm-find-mime-charset-region): Use it.
22106
22107 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22108
22109         * gnus-util.el (gnus-delete-directory): New function.
22110
22111         * gnus-agent.el (gnus-agent-delete-group): Use it.
22112
22113         * gnus-cache.el (gnus-cache-delete-group): Use it.
22114
22115 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22116
22117         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
22118         names.
22119
22120 2004-12-16  Simon Josefsson  <jas@extundo.com>
22121
22122         * hashcash.el (hashcash-payment-alist): Fix custom :type.
22123
22124 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22125
22126         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
22127
22128         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
22129         (gnus-group-set-current-level): Decode group name.
22130
22131 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
22132
22133         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
22134         failed.
22135
22136 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22137
22138         * gnus-group.el (gnus-group-delete-group): Decode group name.
22139         (gnus-group-make-rss-group): Encode group name.
22140         (gnus-group-catchup-current): Decode group name.
22141         (gnus-group-kill-group): Decode group name.
22142
22143 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22144
22145         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
22146
22147 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22148
22149         * gnus-group.el (gnus-group-make-rss-group):
22150         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
22151
22152         * gnus-start.el (gnus-setup-news): Honor user's setting to
22153         gnus-message-archive-method.  Suggested by Lute Kamstra
22154         <lute@gnu.org>.
22155
22156 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
22157
22158         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
22159         global counterparts of the buffer-local variables.
22160
22161 2004-11-16  Romain Francoise  <romain@orebokech.com>
22162
22163         * gnus-sum.el (gnus-summary-exit): Don't clear the global
22164         counterparts of the buffer-local variables.
22165
22166 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22167
22168         * message.el (message-forbidden-properties): Fix typo in doc
22169         string.
22170
22171 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22172
22173         * gnus-util.el (gnus-replace-in-string): Add doc string.
22174
22175         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
22176         to avoid problems when splitting mails with many recipients.
22177
22178 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22179
22180         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
22181         pop-to-buffer, covered by the subsequent gnus-configure-windows.
22182
22183 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
22184
22185         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
22186         if there is no hashtable in memory or file modification time is
22187         newer than cached timestamp.
22188
22189 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
22190
22191         * gnus-sum.el (gnus-summary-limit-to-recipient):
22192         Implement not-matching option.
22193
22194 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
22195
22196         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
22197         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
22198         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
22199         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
22200         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
22201         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
22202
22203 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22204
22205         * message.el (message-forward-make-body-mml): Remove headers
22206         according to message-forward-ignored-headers if a message is decoded.
22207
22208 2004-12-02  Romain Francoise  <romain@orebokech.com>
22209
22210         * message.el (message-forward-make-body-plain): Always remove
22211         headers according to message-forward-ignored-headers.
22212
22213 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
22214
22215         * spam.el (spam-summary-prepare-exit): Remove the
22216         gnus-summary-limit pop for now, it has problems with ham marks for
22217         me.
22218
22219 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
22220
22221         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
22222         correctly.
22223
22224 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
22225
22226         * format-spec.el (format-spec): Message the char.
22227
22228 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
22229
22230         * gnus-art.el (gnus-split-methods): Reformat comments.
22231
22232         * spam.el (spam-summary-prepare-exit): Remove article limits
22233         before exiting the summary buffer.
22234
22235 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22236
22237         * lpath.el: Remove bbdb-create-internal, bbdb-records,
22238         spam-BBDB-register-routine and spam-enter-ham-BBDB.
22239
22240         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
22241         order to silence the byte compiler.
22242
22243         * spam.el: Fix the way to silence the byte compiler, which
22244         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
22245         bbdb-search-simple, spam-BBDB-register-routine,
22246         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
22247         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
22248         spam-stat-buffer-is-spam, spam-stat-load,
22249         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
22250         spam-stat-save and spam-stat-split-fancy.
22251
22252 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22253
22254         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
22255         which may confuse users.
22256         (canlock-password-for-verify): Ditto.
22257
22258         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
22259
22260         * gnus-art.el (gnus-emphasis-alist): Ditto.
22261
22262         * gnus-registry.el (gnus-registry-max-entries): Ditto.
22263
22264         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
22265
22266         * gnus-start.el (gnus-save-killed-list): Ditto.
22267
22268         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
22269         (gnus-sum-thread-tree-root): Ditto.
22270         (gnus-sum-thread-tree-false-root): Ditto.
22271         (gnus-sum-thread-tree-single-indent): Ditto.
22272
22273         * message.el (message-courtesy-message): Ditto.
22274         (message-archive-note): Ditto.
22275         (message-subscribed-address-file): Ditto.
22276         (message-user-fqdn): Ditto.
22277
22278         * spam-report.el (spam-report-gmane-regex): Ditto.
22279
22280         * spam.el (spam-blackhole-good-server-regex): Ditto.
22281
22282 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22283
22284         * mml.el (mml-preview): Widen the message buffer before copying
22285         the contents to the preview buffer; sort headers before previewing.
22286
22287         * message.el (message-hidden-headers): Fix the way to avoid a bug
22288         in the `repeat' widget in Emacs 21.3 or earlier.
22289
22290 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22291
22292         * message.el (message-hidden-headers): Default to "^References:".
22293         Improve customization type.  Suggested by Reiner Steib
22294         <Reiner.Steib@gmx.de>.
22295
22296 2004-11-25  Romain Francoise  <romain@orebokech.com>
22297
22298         * message.el (message-strip-forbidden-properties): Remove check for
22299         obsolete `message-hidden' text property, hidden headers are not
22300         accessible in the buffer anymore.
22301
22302 2004-11-22  Romain Francoise  <romain@orebokech.com>
22303
22304         * message.el (message-header-format-alist): Add `From' in list
22305         so that it can be sorted.
22306         (message-fix-before-sending): Widen and sort headers before
22307         sending.
22308         (message-hide-headers): Use narrowing to hide headers by moving
22309         them to the top of the buffer and narrowing to the region
22310         underneath.
22311
22312 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22313
22314         * message.el (message-strip-forbidden-properties):
22315         Bind buffer-read-only (etc) to nil.
22316
22317 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
22318
22319         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
22320         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
22321
22322 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
22323
22324         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
22325
22326 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22327
22328         * dns.el (query-dns): Use sit-for to time instead of
22329         accept-process-output, since that doesn't seem to work on udp
22330         sockets.
22331
22332 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22333
22334         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
22335
22336 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
22337
22338         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
22339         doc string.  Improve doc string.
22340
22341 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22342
22343         * nntp.el (nntp-request-update-info): Return nil if
22344         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
22345         may not call gnus-activate-group which uselessly issues the GROUP
22346         commands for all nntp groups and wastes time.  Reported by Romain
22347         Francoise <romain@orebokech.com>.
22348
22349         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
22350
22351 2004-11-15  Simon Josefsson  <jas@extundo.com>
22352
22353         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
22354         headers separately.
22355         (gnus-button-openpgp): New function, inspired by Jochen Küpper
22356         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
22357
22358 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
22359
22360         * gnus-start.el (gnus-convert-old-newsrc):
22361         Assign legacy-gnus-agent to 5.10.7.
22362
22363 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22364
22365         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
22366         start of the lines.
22367
22368 2004-11-14  Magnus Henoch  <mange@freemail.hu>
22369
22370         * hashcash.el (hashcash-default-payment): Change default to 20.
22371         (hashcash-default-accept-payment): Change default to 20.
22372         (hashcash-process-alist): New variable.
22373         (hashcash-generate-payment-async): Add.
22374         (hashcash-already-paid-p): Add.
22375         (hashcash-insert-payment): Don't generate payments twice.
22376         (hashcash-insert-payment-async): Add.
22377         (hashcash-insert-payment-async-2): Add.
22378         (hashcash-cancel-async): Add.
22379         (hashcash-wait-async): Add.
22380         (hashcash-processes-running-p): Add.
22381         (hashcash-wait-or-cancel): Add.
22382         (mail-add-payment): New optional argument.  Conditionally start
22383         asynchronous calculation.
22384         (mail-add-payment-async): Add.
22385
22386         * message.el (message-send-mail): Wait for asynchronous hashcash
22387         results.  Don't clobber existing X-Hashcash headers.
22388         (message-setup-1): Call mail-add-payment-async when
22389         message-generate-hashcash is non-nil.
22390
22391 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
22392
22393         * message.el (message-use-alternative-email-as-from): Examine the
22394         From header as well; use message-make-from in order to include a
22395         user's full name.
22396
22397 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
22398
22399         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
22400         default; improve customization type.
22401         (gnus-emphasis-custom-with-format): New macro.
22402         (gnus-emphasis-custom-value-to-external): New function.
22403         (gnus-emphasis-custom-value-to-internal): New function.
22404
22405 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22406
22407         * dns.el (query-dns): Resolve reverse addresses.
22408
22409 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22410
22411         * gnus-group.el (gnus-group-get-new-news): Use it.
22412
22413         * gnus-start.el (gnus-check-reasonable-setup): New function.
22414
22415 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22416
22417         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
22418         "Args out of range" error.  Reported by Arnaud Giersch
22419         <arnaud.giersch@free.fr>.
22420
22421 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
22422
22423         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
22424
22425 2004-11-04  Richard M. Stallman  <rms@gnu.org>
22426
22427         * spam.el (spam group): Add :version.
22428
22429         * pgg-def.el (pgg group): Add :version.
22430
22431 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22432
22433         * gnus-art.el (gnus-article-edit-article): Don't associate the
22434         article buffer with a draft file.  This is a temporary measure
22435         against the 2004-08-22 change to gnus-article-edit-mode.
22436
22437 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22438
22439         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
22440         (html2text-format-tags): Remove unused variable `attr'.
22441
22442 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
22443
22444         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
22445
22446         * tls.el (tls-process-connection-type, tls-success)
22447         (tls-certtool-program): Add :version.
22448
22449         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
22450         (starttls-extra-arguments, starttls-process-connection-type)
22451         (starttls-connect, starttls-failure, starttls-success): Add :version.
22452
22453         * spam-stat.el (spam-stat): Add :version.
22454
22455         * sieve.el (sieve): Add :version.
22456
22457         * sha1.el (sha1): Add :version.
22458         (sha1-use-external): Remove redundant version.
22459
22460         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
22461         (nnmail-cache-ignore-groups, nnmail-spool-hook)
22462         (nnmail-split-fancy-match-partial-words)
22463         (nnmail-split-lowercase-expanded): Add :version.
22464
22465         * nndiary.el (nndiary): Add :version.
22466
22467         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
22468
22469         * mml-sec.el (mml-default-sign-method)
22470         (mml-default-encrypt-method, mml-signencrypt-style-alist):
22471         Add :version.
22472
22473         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
22474
22475         * mm-url.el (mm-url-use-external, mm-url-program)
22476         (mm-url-arguments): Add :version.
22477
22478         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
22479         (mm-attachment-file-modes, mm-decrypt-option)
22480         (mm-w3m-safe-url-regexp): Add :version.
22481
22482         * message.el (message-cite-prefix-regexp)
22483         (message-sendmail-envelope-from, message-minibuffer-local-map)
22484         (message-user-fqdn, message-completion-alist): Add :version.
22485
22486         * gnus-win.el (gnus-configure-windows-hook)
22487         (gnus-use-frames-on-any-display): Add :version.
22488
22489         * gnus-art.el (gnus-article-address-banner-alist)
22490         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
22491         (gnus-treat-from-picon, gnus-treat-mail-picon)
22492         (gnus-treat-x-pgp-sig): Add :version.
22493
22494         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
22495         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
22496         (gnus-summary-article-delete-hook)
22497         (gnus-summary-display-while-building): Add :version.
22498
22499         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
22500         (gnus-get-top-new-news-hook): Add :version.
22501
22502         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
22503         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
22504
22505         * gnus-registry.el (gnus-registry): Add :version.
22506
22507         * gnus-spec.el (gnus-use-correct-string-widths)
22508         (gnus-make-format-preserve-properties): Add :version.
22509
22510         * gnus.el (gnus-group-charter-alist)
22511         (gnus-group-fetch-control-use-browse-url)
22512         (gnus-install-group-spam-parameters): Add :version.
22513
22514         * gnus-diary.el (gnus-diary): Add :version.
22515
22516         * gnus-delay.el (gnus-delay): Add :version.
22517
22518         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
22519         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
22520         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
22521         Add :version.
22522
22523         * gnus-agent.el (gnus-agent-max-fetch-size)
22524         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
22525         (gnus-agent-prompt-send-queue): Add :version.
22526
22527         * deuglify.el (gnus-outlook-deuglify): Add :version.
22528
22529         * html2text.el: Beautify code.  Improve doc strings.
22530         Some checkdoc cleanup.
22531         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
22532
22533 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
22534
22535         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
22536
22537 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
22538
22539         * gnus-registry.el (gnus-registry-hashtb): Create the registry
22540         when package is loaded.
22541
22542         * spam.el (spam-summary-score-preferred-header): Add global preference
22543         for people who want to override the default SpamAssassin over
22544         Bogofilter preference (when both are set).
22545         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
22546         (spam-user-format-function-S):
22547         Check spam-summary-score-preferred-header.
22548         (spam-extra-header-to-number): Add X-Bogosity header parsing.
22549         (spam-user-format-function-S): Format the score correctly.
22550
22551 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22552
22553         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
22554         signature file.  Suggested by Manoj Srivastava
22555         <srivasta@golden-gryphon.com>.
22556
22557         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
22558         iso-2022-jp even in the Japanese language environment.
22559         Suggested by Jason Rumney <jasonr@gnu.org>.
22560
22561 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22562
22563         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
22564         use the same characters as the dummy marks; make it free from
22565         getting affected by the language environment.
22566         (gnus-summary-read-group-1): Update mark positions only when the
22567         format spec is updated.
22568
22569         * gnus-spec.el (gnus-update-format-specifications): Return a list
22570         of updated types.
22571
22572 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22573
22574         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
22575         of boundp to check if display-warning is available.
22576
22577 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
22578
22579         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
22580
22581 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22582
22583         * nnspool.el (nnspool-spool-directory): Use news-path if the
22584         news-directory variable is not bound.
22585
22586         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
22587         function instead of display-warning if it is not available.
22588
22589 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
22590
22591         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
22592         v5-10: Use `point-at-bol'.
22593
22594 2004-10-26  Simon Josefsson  <jas@extundo.com>
22595
22596         * hashcash.el: Fix URL in comment, reported by Cheng Gao
22597         <chenggao@gmail.com>.
22598
22599 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
22600
22601         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
22602         instead.
22603
22604 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
22605
22606         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
22607         to remove a server from the nnimap-server-buffer-alist.
22608         (nnimap-open-connection, nnimap-close-server): Use it.
22609
22610         * gnus-encrypt.el: Remove file in favor of encrypt.el.
22611
22612 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22613
22614         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
22615         running the major-mode function.
22616
22617 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22618
22619         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
22620         dummy marks in the right way.
22621
22622 2004-10-18  David Edmondson  <dme@dme.org>
22623
22624         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
22625         excessively.
22626
22627 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
22628
22629         * gnus-util.el (gnus-split-references): Accept a nil references
22630         string and go on blissfully.
22631
22632         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
22633         cases where the references string is non-nil but has no references.
22634
22635         * encrypt.el: Add autoload tags.
22636
22637         * spam.el (spam-resolve-registrations-routine): Remove article
22638         from unregistration list too.  Reported by David Hanak
22639         <dhanak@isis.vanderbilt.edu>
22640
22641 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
22642
22643         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
22644         nil.  Change custom type.
22645
22646 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
22647
22648         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
22649
22650         * gnus-sum.el (gnus-summary-move-article): Use it.
22651
22652 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
22653
22654         * encrypt.el: Add autoload cookies.
22655
22656         * spam.el (spam-backend-article-list-property)
22657         (spam-backend-get-article-todo-list)
22658         (spam-backend-put-article-todo-list)
22659         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
22660         Resolve registrations separately.
22661         (spam-register-routine): Format comments.
22662         (spam-unregister-routine, spam-register-routine): Always call with
22663         specific-articles, no default list.
22664         (spam-summary-prepare-exit): Use the spam-classifications function.
22665
22666         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
22667         gnus-encrypt.el.
22668
22669         * encrypt.el: Copied from gnus-encrypt.el.
22670
22671         * gnus-encrypt.el: Commented that it's obsolete.
22672
22673 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22674
22675         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
22676         (gnus-score-save): Use it.
22677
22678         * message.el (message-bury): Use `window-dedicated-p'.
22679
22680 2004-10-15  Simon Josefsson  <jas@extundo.com>
22681
22682         * pop3.el (top-level): Don't require nnheader.
22683         (pop3-read-timeout): Add.
22684         (pop3-accept-process-output): Add.
22685         (pop3-read-response, pop3-retr): Use it.
22686
22687 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
22688
22689         * spam.el (spam-register-routine): Move comment.
22690         (spam-verify-bogofilter): Use 'unknown for the initial
22691         spam-bogofilter-valid state, not 'never.
22692
22693         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
22694         for netrc-machine.
22695
22696         * nnimap.el (nnimap-open-connection):
22697         Use netrc-machine-user-or-password.
22698
22699 2004-10-17  Richard M. Stallman  <rms@gnu.org>
22700
22701         * gnus-registry.el (gnus-registry-unload-hook):
22702         Set as a variable with add-hook.
22703
22704         * nnspool.el (nnspool-spool-directory): Use news-directory instead
22705         of news-path.
22706
22707         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
22708
22709         * spam.el: Delete duplicate `provide'.
22710         (spam-unload-hook): Set as a variable with add-hook.
22711
22712 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22713
22714         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
22715         in the doc string.
22716
22717         * message.el (message-ignored-news-headers)
22718         (message-ignored-supersedes-headers)
22719         (message-ignored-resent-headers)
22720         (message-forward-ignored-headers): Improve custom type.
22721
22722 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22723
22724         * message.el (message-tokenize-header): Fix 2004-09-06 change
22725         which used point-min in the wrong place.
22726
22727 2004-10-12  Simon Josefsson  <jas@extundo.com>
22728
22729         * tls.el (tls-certtool-program): New variable.
22730         (tls-certificate-information): New function, based on
22731         ssl-certificate-information.
22732
22733 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22734
22735         * compface.el: Move the version of ELisp-based uncompface program
22736         to the contrib directory because of the copyright problem.
22737
22738 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22739
22740         * message.el (message-kill-buffer): Raise the current frame.
22741
22742 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
22743
22744         * gnus-sum.el: Mention that multibyte characters don't work as marks.
22745
22746         * gnus.el (message-y-or-n-p): Autoload.
22747
22748         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
22749         (pop3-password-required, pop3-authentication-scheme)
22750         (pop3-leave-mail-on-server): Make customizable.
22751         (pop3): New custom group.
22752         (pop3-retr): Remove `sleep-for' statements.
22753         Suggested by Dave Love <fx@gnu.org>.
22754
22755         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
22756         Windows/DOS.
22757
22758         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
22759         (imap-parse-body): Fix incorrect use of `assert'.
22760         Suggested by Dave Love <fx@gnu.org>.
22761
22762         * mml.el (mml-minibuffer-read-disposition): Require match.
22763         Suggested by Dave Love <fx@gnu.org>.
22764
22765 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22766
22767         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
22768         doc string.
22769
22770 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22771
22772         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
22773
22774 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22775
22776         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
22777         instead of calling `mm-insert-inline', to decode text/* parts
22778         before displaying them.
22779
22780 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22781
22782         * mm-uu.el (mm-uu-text-plain-type): New variable.
22783         (mm-uu-pgp-signed-extract-1): Use it.
22784         (mm-uu-pgp-encrypted-extract-1): Use it.
22785         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
22786         bind mm-uu-text-plain-type with that value.
22787         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
22788         mm-uu-dissect.
22789
22790 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22791
22792         * gnus-group.el (gnus-update-group-mark-positions):
22793         * gnus-sum.el (gnus-update-summary-mark-positions):
22794         * message.el (message-check-news-body-syntax):
22795         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
22796         of string-as-multibyte.
22797
22798 2004-10-05  Juri Linkov  <juri@jurta.org>
22799
22800         * gnus-group.el (gnus-update-group-mark-positions):
22801         * gnus-sum.el (gnus-update-summary-mark-positions):
22802         * message.el (message-check-news-body-syntax):
22803         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
22804         8-bit unibyte values to a multibyte string for search functions.
22805
22806 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22807
22808         * mm-uu.el (mm-uu-dissect): Allow optional arg.
22809         (mm-uu-dissect-text-parts): New function.
22810
22811         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
22812         dissect text parts.
22813
22814         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
22815         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
22816
22817         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
22818
22819         * gnus-topic.el (gnus-topic-hierarchical-parameters):
22820         Use gnus-current-topics instead of gnus-current-topic.
22821
22822 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
22823
22824         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
22825
22826 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
22827
22828         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
22829         where appropriate.
22830
22831         * nnml.el (nnml-generate-active-info): do.
22832
22833         * nndiary.el (nndiary-generate-active-info): do.
22834
22835         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
22836         (gnus-topic-move): do.
22837
22838         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
22839         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
22840
22841         * gnus-srvr.el (gnus-server-prepare)
22842         (gnus-server-open-all-servers): do.
22843
22844         * gnus-msg.el (gnus-summary-cancel-article)
22845         (gnus-summary-resend-message)
22846         (gnus-summary-mail-crosspost-complaint): do.
22847
22848         * gnus-move.el (gnus-change-server): do.
22849
22850         * gnus-group.el (gnus-group-unmark-all-groups)
22851         (gnus-group-set-current-level): do.
22852
22853 2004-10-04  Simon Josefsson  <jas@extundo.com>
22854
22855         * message.el (message-generate-hashcash): Doc fix.
22856
22857 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
22858
22859         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
22860         avoid infinite recursion via gnus-get-function.
22861
22862 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
22863
22864         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
22865
22866         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
22867
22868         * nnmail.el (nnmail-split-history): do.
22869
22870         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
22871         (nnml-request-delete-group): do.
22872
22873         * nnslashdot.el (nnslashdot-read-groups): do.
22874
22875         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
22876         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
22877
22878         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
22879         (nnspool-sift-nov-with-sed): Use last.
22880         (nnspool-retrieve-headers-with-nov): Use mapc.
22881         (nnspool-request-newgroups): Use dolist.
22882         (nnspool-request-group): Use last.
22883
22884         * nntp.el (nntp-read-server-type): Use dolist.
22885
22886         * nnvirtual.el (nnvirtual-create-mapping)
22887         (nnvirtual-update-read-and-marked): Use dolist.
22888         (nnvirtual-convert-headers): Simplify.
22889
22890 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22891
22892         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22893         Add support for sync'ing tick marks.
22894
22895 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22896
22897         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
22898         there's no visible header.
22899
22900 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22901
22902         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22903         When necessary, pass full group name to gnus-request-set-marks.
22904
22905 2004-10-01  Simon Josefsson  <jas@extundo.com>
22906
22907         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
22908         acroread.
22909
22910 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22911
22912         * spam-report.el (spam-report-gmane): Fix interactive.
22913
22914         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
22915
22916         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
22917         when writing file.
22918         (gnus-agent-synchronize-flags): Don't default to being
22919         interactive.
22920
22921 2004-09-30  Simon Josefsson  <jas@extundo.com>
22922
22923         * message.el (message-generate-hashcash): Add.
22924         (message-send-mail): Use it, call mail-add-payment.
22925
22926 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
22927
22928         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
22929
22930 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
22931
22932         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
22933         gnus-requst-update-info with explicit code to sync the in-memory
22934         info read flags with the marks being sync'd to the backend.
22935
22936         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
22937
22938 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22939
22940         * spam.el (spam-verify-bogofilter): Add new function.
22941         (spam-check-bogofilter)
22942         (spam-bogofilter-register-with-bogofilter): Use it.
22943         (spam-verify-bogofilter): Add small fixes.
22944
22945 2004-09-28  Simon Josefsson  <jas@extundo.com>
22946
22947         * hashcash.el (hashcash-generate-payment): Revert.
22948
22949 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22950
22951         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
22952         Use gnus-extract-references instead of gnus-split-references.
22953
22954         * gnus-util.el (gnus-extract-references): Add new function, analogous
22955         to gnus-split-references but extracts only the message-ID without
22956         anything extra.
22957
22958         * hashcash.el (hashcash-generate-payment)
22959         (hashcash-check-payment): Do the right thing if hashcash-path is
22960         nil (because the hashcash program could not be found).
22961
22962         * spam.el (spam-use-hashcash): Remove comment.
22963
22964 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
22965
22966         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
22967         (gnus-cache-enter-article, gnus-cache-remove-article)
22968         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
22969
22970         * gnus-async.el (gnus-async-prefetch-remove-group): do.
22971
22972         * gnus-art.el (article-hide-boring-headers)
22973         (article-translate-strings, article-display-face)
22974         (gnus-article-mime-match-handle-first)
22975         (gnus-article-highlight-headers)
22976         (gnus-article-add-buttons-to-head): do.
22977
22978 2004-09-27  Simon Josefsson  <jas@extundo.com>
22979
22980         * hashcash.el: New version, from
22981         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
22982         ../contrib/.
22983
22984 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22985
22986         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
22987
22988 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
22989
22990         * gnus-dup.el (gnus-dup-open): Use mapc.
22991         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
22992
22993         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
22994         Reported by Stefan Wiens <s.wi@gmx.net>.
22995
22996         * gnus.el (gnus-shutdown): Use dolist.
22997
22998         * gnus-undo.el (gnus-undo): Use mapc.
22999
23000         * nnrss.el (nnrss-generate-active): do.
23001
23002         * message.el (message-cite-original-without-signature)
23003         (message-cite-original): Use mapc.
23004         (message-do-actions, message-make-forward-subject): Use dolist.
23005
23006 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
23007
23008         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
23009         deletion to remove entire duplicate line.  Fixes merged article
23010         number bug.
23011
23012 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
23013
23014         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
23015         servers that are offline.  Avoids having gnus-agent-toggle-plugged
23016         first ask if you want to open a server and then, even when you
23017         responded with no, asking if you want to synchronize the server's
23018         flags.
23019         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
23020         multi-line expressions.
23021         (gnus-agent-synchronize-group-flags): New internal function.
23022         Updates marks in memory (in the info structure) AND in the
23023         backend.
23024
23025         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
23026
23027         * nnagent.el (nnagent-request-set-mark):
23028         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
23029         method, to ensure that synchronization updates marks in the
23030         backend and in the info (in memory) structure.
23031
23032 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23033
23034         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
23035         convention fully; don't miss the root article of a thread; make
23036         the X-Draft-From header with correct article numbers.
23037
23038 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
23039
23040         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
23041         unless plugged.  Disable the agent so that an open failure causes
23042         an error.
23043
23044         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
23045         Revert 2004-09-21 change.  The backend must be opened while
23046         synchronizing flags even when the backend stores the flags
23047         locally.
23048
23049 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
23050
23051         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
23052         in `header' match.  Reported by Svend Tollak Munkejord.
23053
23054         * message.el (message-cite-original): Fix use of
23055         `message-cite-articles-with-x-no-archive'.
23056
23057 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23058
23059         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
23060         (gnus-window-to-buffer): Ditto.
23061
23062         * mml.el (mml-preview-buffer): New variable.
23063         (mml-preview): Manage window layout with gnus-buffer-configuration.
23064
23065         * gnus-msg.el (gnus-setup-message): Put article numbers into the
23066         X-Draft-From header even if those articles aren't quoted.
23067
23068 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
23069
23070         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
23071         (gnus-request-set-mark, gnus-request-update-mark): Use new
23072         g-s-t-u-l-m to decide to use backend even when unplugged.
23073
23074 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23075
23076         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
23077         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
23078
23079 2004-09-20  Simon Josefsson  <jas@extundo.com>
23080
23081         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
23082         "utf-16-le".
23083
23084 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23085
23086         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
23087
23088 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
23089
23090         * uudecode.el (uudecode-use-external): Add :version.
23091
23092         * smime.el (smime-CA-file, smime-encrypt-cipher)
23093         (smime-dns-server): Add :version.
23094
23095         * smiley.el (gnus-smiley-file-types): Add :version.
23096
23097         * sha1.el (sha1-use-external): Add :version.
23098
23099         * pgg-def.el (pgg-query-keyserver): Add :version.
23100
23101         * nnmail.el (nnmail-fancy-expiry-targets)
23102         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
23103         Add :version.
23104
23105         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
23106         (nnimap-retrieve-groups-asynchronous): Add :version.
23107         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
23108
23109         * mml.el (mml-content-disposition-parameters)
23110         (mml-insert-mime-headers-always): Add :version.
23111
23112         * mm-util.el (mm-coding-system-priorities): Add :version.
23113
23114         * mm-decode.el (mm-inline-text-html-with-images)
23115         (mm-keep-viewer-alive-types, mm-external-terminal-program)
23116         (mm-verify-option): Add :version.
23117         (mm-text-html-renderer): Change :version.
23118
23119         * message.el (message-fcc-externalize-attachments)
23120         (message-required-headers, message-draft-headers)
23121         (message-subject-trailing-was-query)
23122         (message-subject-trailing-was-ask-regexp)
23123         (message-subject-trailing-was-regexp, message-mark-insert-begin)
23124         (message-mark-insert-end, message-archive-header)
23125         (message-archive-note, message-cross-post-default)
23126         (message-cross-post-note, message-followup-to-note)
23127         (message-cross-post-note-function, message-use-mail-followup-to)
23128         (message-subscribed-address-functions)
23129         (message-subscribed-address-file, message-subscribed-addresses)
23130         (message-subscribed-regexps, message-allow-no-recipients)
23131         (message-yank-cited-prefix, message-signature-insert-empty-line)
23132         (message-hidden-headers, message-hierarchical-addresses)
23133         (message-mail-user-agent, message-use-idna)
23134         (message-valid-fqdn-regexp)
23135         (message-strip-special-text-properties, message-header-synonyms)
23136         (message-beginning-of-line, message-tab-body-function): Add :version.
23137         (message-insert-canlock, message-wide-reply-confirm-recipients):
23138         Change :version.
23139
23140         * mail-source.el (mail-source-ignore-errors): Add :group, :type
23141         and :version.
23142         (mail-source-delete-old-incoming-confirm)
23143         (mail-source-movemail-program): Add :version.
23144
23145         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
23146         (gnus-agent-cache, gnus-agent): Change :version.
23147
23148         * gnus-util.el (gnus-use-byte-compile): Change :version.
23149
23150         * gnus-sum.el (gnus-summary-make-false-root-always)
23151         (gnus-summary-default-high-score)
23152         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
23153         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
23154         (gnus-read-all-available-headers, gnus-article-emulate-mime)
23155         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
23156         (gnus-sum-thread-tree-single-indent)
23157         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
23158         (gnus-sum-thread-tree-leaf-with-other)
23159         (gnus-sum-thread-tree-single-leaf): Add :version.
23160         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
23161         (gnus-article-loose-mime): Change :version.
23162
23163         * gnus-start.el (gnus-backup-startup-file)
23164         (gnus-save-startup-file-via-temp-buffer): Add :version.
23165
23166         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
23167         (gnus-server-offline-face): Add :version.
23168
23169         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
23170
23171         * gnus-msg.el (gnus-gcc-externalize-attachments)
23172         (gnus-debug-files, gnus-debug-exclude-variables)
23173         (gnus-discouraged-post-methods): Change :version.
23174         (gnus-confirm-mail-reply-to-news)
23175         (gnus-confirm-treat-mail-like-news): Add :version.
23176
23177         * gnus-int.el (gnus-server-unopen-status): Add :version.
23178
23179         * gnus-group.el (gnus-group-jump-to-group-prompt)
23180         (gnus-large-ephemeral-newsgroup)
23181         (gnus-fetch-old-ephemeral-headers): Add :version.
23182
23183         * gnus-fun.el (gnus-x-face-directory)
23184         (gnus-convert-pbm-to-x-face-command)
23185         (gnus-convert-image-to-x-face-command)
23186         (gnus-convert-image-to-face-command): Add :version.
23187
23188         * gnus-delay.el (gnus-delay-default-hour): Add :version.
23189
23190         * gnus-cite.el (gnus-cite-blank-line-after-header)
23191         (gnus-article-boring-faces): Add :version.
23192
23193         * gnus-art.el (gnus-buttonized-mime-types)
23194         (gnus-inhibit-mime-unbuttonizing)
23195         (gnus-treat-display-face)
23196         (gnus-treat-body-boundary): Change :version.
23197         (gnus-body-boundary-delimiter, gnus-picon-databases)
23198         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
23199         (gnus-treat-date-english, gnus-treat-fold-headers)
23200         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
23201         (gnus-treat-mail-picon, gnus-treat-wash-html)
23202         (gnus-article-encrypt-protocol)
23203         (gnus-use-idna, gnus-article-over-scroll)
23204         (gnus-mime-display-multipart-alternative-as-mixed)
23205         (gnus-mime-display-multipart-related-as-mixed)
23206         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
23207         (gnus-ctan-url, gnus-button-ctan-handler)
23208         (gnus-button-handle-ctan-bogus-regexp)
23209         (gnus-button-ctan-directory-regexp)
23210         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
23211         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
23212         (gnus-button-man-level, gnus-button-emacs-level)
23213         (gnus-button-message-level, gnus-button-browse-level): Add :version.
23214
23215         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
23216         (gnus-agent-go-online): Change :version.
23217         (gnus-agent-expire-unagentized-dirs)
23218         (gnus-agent-auto-agentize-methods): Add :version.
23219
23220         * flow-fill.el (fill-flowed-display-column)
23221         (fill-flowed-encode-column): Add :version.
23222
23223         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
23224         (gnus-outlook-deuglify-unwrap-max)
23225         (gnus-outlook-deuglify-cite-marks)
23226         (gnus-outlook-deuglify-unwrap-stop-chars)
23227         (gnus-outlook-deuglify-no-wrap-chars)
23228         (gnus-outlook-deuglify-attrib-cut-regexp)
23229         (gnus-outlook-deuglify-attrib-verb-regexp)
23230         (gnus-outlook-deuglify-attrib-end-regexp)
23231         (gnus-outlook-display-hook): Add :version.
23232
23233         * binhex.el (binhex-use-external): Add :version.
23234
23235 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
23236
23237         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
23238         and `invisible'.
23239
23240 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
23241
23242         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
23243         in gnus-registry-trim.
23244
23245 2004-09-13  Simon Josefsson  <jas@extundo.com>
23246
23247         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
23248
23249         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
23250
23251         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
23252         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23253         <yamaoka@jpl.org>.
23254         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
23255         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23256         <yamaoka@jpl.org>.
23257
23258         * sieve.el (sieve-manage-mode): Ditto.
23259
23260 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
23261
23262         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
23263
23264 2004-09-11  Simon Josefsson  <jas@extundo.com>
23265
23266         * dns-mode.el: Add.
23267
23268         * mm-view.el (mm-display-dns-inline): Add.
23269
23270         * mm-decode.el (mm-inline-media-tests): Add text/dns.
23271         (mm-automatic-display): Ditto.
23272
23273         * mailcap.el (mailcap-mime-data): Add text/dns.
23274         (mailcap-mime-extensions): Map .soa to text/dns.
23275
23276 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
23277
23278         * gnus-art.el (article-decode-mime-words, article-babel)
23279         (gnus-article-highlight-signature, gnus-article-add-buttons)
23280         (gnus-signature-toggle): Remove unnecessary bindings of
23281         `inhibit-read-only' inherited from v5.10 merge.
23282
23283 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
23284
23285         * nntp.el (nntp): New customization group.
23286         (nntp-authinfo-file): Add customization group.
23287
23288         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
23289
23290         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
23291
23292         * gnus.el (to-address, to-list, subscribed)
23293         (large-newsgroup-initial): Ditto.
23294
23295         * flow-fill.el (fill-flowed-display-column)
23296         (fill-flowed-encode-column): Ditto.
23297
23298 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23299
23300         * message.el (message-tokenize-header, message-send-mail-with-qmail):
23301         Use point-min rather than 1.
23302         (message-send-mail): Use buffer-size rather than point-max.
23303
23304         * gnus-sum.el (gnus-summary-search-article-forward):
23305         Signal a specific `search-failed' rather than a generic `error'.
23306
23307         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
23308         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
23309         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
23310
23311 2004-09-10  Simon Josefsson  <jas@extundo.com>
23312
23313         * nndb.el (require): Remove tcp and duplicate cl.
23314
23315 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23316
23317         * gnus-agent.el (directory-files-and-attributes): Move forward.
23318
23319 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23320
23321         * gnus-agent.el (directory-files-and-attributes):
23322         Optionally defined to support XEmacs.
23323
23324 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23325
23326         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
23327         to avoid run-time CL dependencies.
23328         (gnus-agent-unfetch-articles): New function.
23329         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
23330         article numbers even when local .overview file is missing.
23331         (gnus-agent-read-article-number): New function.  Only accepts
23332         27-bit article numbers.
23333         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
23334         Use gnus-agent-read-article-number.
23335         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
23336         from backend while recognizing that article numbers in .overview
23337         must be valid.
23338         (gnus-agent-update-files-total-fetched-for):
23339         Use directory-files-and-attributes to improve performance.
23340         * gnus-int.el (gnus-request-move-article):
23341         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
23342         improve performance.
23343
23344         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
23345         some users confused by references to .newsrc when they only have a
23346         .newsrc.eld file.
23347         (gnus-convert-mark-converter-prompt)
23348         (gnus-convert-converter-needs-prompt): Fix use of property list.
23349         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
23350         New function.  Used internally to only display 'gnus converting
23351         files' message when actually necessary.
23352
23353         * gnus-sum.el (): Remove (require 'gnus-agent) as required
23354         methods now autoloaded.
23355
23356 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23357
23358         * gnus-sum.el (gnus-summary-insert-subject): Remove list
23359         identifiers.
23360
23361 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
23362
23363         * gnus-picon.el: Fix indentation and closing parenthesis.
23364
23365 2004-09-01  Simon Josefsson  <jas@extundo.com>
23366
23367         * message.el (message-canlock-generate): Require sha1, not
23368         sha1-el.  (Can we get rid of this require altogether?  It is ugly
23369         to require within a function.  Sadly, if sha1.el isn't loaded, the
23370         let binding in m-c-g will hide the defcustom definition, which is
23371         bad.)
23372
23373         * canlock.el: Require sha1, not sha1-el.
23374
23375         * message.el: Don't autoload sha1 (there is a autoload cookie in
23376         sha1.el).
23377
23378         * sha1-el.el: Rename to sha1.el.
23379
23380 2004-08-30  Juanma Barranquero  <lektu@terra.es>
23381
23382         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
23383
23384 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23385
23386         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
23387
23388 2004-08-30  Kim F. Storm  <storm@cua.dk>
23389
23390         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
23391
23392         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
23393         Add :group 'nnimap.
23394
23395 2004-08-30  Andreas Schwab  <schwab@suse.de>
23396
23397         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
23398         ?* and ?\;.
23399
23400         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
23401         and ?\' to symbol instead of whitespace.
23402
23403 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23404
23405         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
23406
23407         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
23408         instead of re-search-forward.
23409
23410         * gnus-uu.el (gnus-uu-save-article): Ditto.
23411         (gnus-uu-post-encode-uuencode): Ditto.
23412
23413         * html2text.el (html2text-clean-list-items): Ditto.
23414         (html2text-clean-dtdd): Ditto.
23415         (html2text-format-tags): Ditto.
23416
23417         * message.el (message-send-mail-with-sendmail): Fix regexp.
23418         (message-fill-field-general): Use search-forward instead of
23419         re-search-forward.
23420         (unbold-region): Ditto.
23421
23422         * nnrss.el (nnrss-request-article): Ditto.
23423
23424         * nnslashdot.el (nnslashdot-request-article): Ditto.
23425
23426         * nnweb.el (nnweb-gmane-wash-article): Ditto.
23427
23428         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
23429         "Unrecognized menu descriptor" error in XEmacs.
23430
23431 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23432
23433         * gnus-sum.el (gnus-read-header): Don't remove a header for the
23434         parent article of a sparse article in the thread hashtb.
23435
23436 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
23437
23438         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
23439         (nnmail-expand-newtext): Lowercase expanded entries if
23440         nnmail-split-lowercase-expanded is non-nil.
23441
23442 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23443
23444         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
23445
23446         * gnus-group.el (gnus-group-line-format-alist): Convert the value
23447         of gnus-tmp-news-method into string under XEmacs.  It will be
23448         passed to gnus-correct-length which takes only a string argument.
23449
23450 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23451
23452         * gnus-util.el (gnus-bind-print-variables): New macro.
23453         (gnus-prin1): Use it.
23454         (gnus-prin1-to-string): Use it.
23455         (gnus-pp): New function.
23456         (gnus-pp-to-string): New function.
23457
23458         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
23459         Replace pp-to-string with gnus-pp-to-string.
23460         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
23461         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
23462         * gnus-msg.el (gnus-debug): Ditto.
23463         * gnus-score.el (gnus-score-save): Ditto.
23464         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
23465         gnus-pp-to-string.
23466         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
23467         with gnus-pp.
23468         * score-mode.el (gnus-score-pretty-print): Ditto.
23469         * webmail.el (webmail-debug): Ditto.
23470
23471 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23472
23473         * gnus-art.el (article-display-face, article-display-x-face):
23474         Use buffer-read-only.
23475
23476 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23477
23478         * gnus-art.el (article-hide-list-identifiers):
23479         Bind inhibit-read-only as t.
23480
23481 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
23482
23483         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
23484
23485 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23486
23487         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
23488         (gnus-narrow-to-page): Don't assume point-min == 1.
23489         (gnus-article-edit-mode): Derive from message-mode.
23490
23491         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
23492         point-min == 1.
23493
23494         * imap.el (imap-parse-address-list, imap-parse-body-ext):
23495         Disable incorrect use of `assert'.
23496
23497         * message.el (message-mode): Set comment-start-skip.
23498
23499
23500 2004-08-22  Sam Steingold  <sds@gnu.org>
23501
23502         * pop3.el (pop3-leave-mail-on-server): New user variable.
23503         (pop3-movemail): Delete mail only when it is nil.
23504
23505 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
23506
23507         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
23508
23509         * mml.el (mml-preview): Use `pop-to-buffer'.
23510
23511         * message.el (message-goto-mail-followup-to): Insert after "To".
23512         (message-carefully-insert-headers): Add comment.
23513
23514         * gnus.el: Remove unused variable `gnus-article-check-size'.
23515
23516         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
23517
23518         * gnus-art.el (gnus-button-alist):
23519         Improve `gnus-button-handle-library' entry.
23520
23521 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
23522
23523         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
23524         Use downcase, since XEmacs capitalizes error messages differently.
23525
23526 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
23527
23528         * nntp.el: Add (require 'gnus) due to reference to
23529         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
23530
23531 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
23532
23533         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
23534         Bind `mm-fill-flowed'.
23535
23536         * mm-decode.el (mm-dissect-singlepart): Check it.
23537
23538 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
23539
23540         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
23541         'imap' for netrc parsing.
23542
23543 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
23544
23545         * mailcap.el (mailcap-mime-data): Mark as risky.
23546
23547 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23548
23549         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
23550         may be included in the encoded word.
23551         (rfc2047-encode): Don't append a space if the encoded word
23552         includes close parenthesis.
23553
23554 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23555
23556         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
23557         of text within parentheses.
23558
23559 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
23560
23561         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
23562         (gnus-encrypt-write-file-contents): Make the password key the file
23563         name PLUS the cipher, not just the cipher.  Also remove failed
23564         passwords from the cache.
23565
23566 2004-08-06  Simon Josefsson  <jas@extundo.com>
23567
23568         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
23569         Doc fix.
23570
23571 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
23572
23573         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
23574         LWSP.
23575
23576 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
23577
23578         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
23579         Try to append in-reply-to: data to the references: header.
23580
23581         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
23582         (netrc-parse): Use gnus-encrypt.el functions.
23583
23584         * gnus-encrypt.el: Add new file for encryption support; currently
23585         does only a few GPG ciphers and an internal XOR cipher.
23586
23587         * password.el: Add comments on using password-read-and-add.
23588         (password-read-and-add): Add function to read and add the
23589         password to the cache at once.
23590
23591 2004-07-28  Simon Josefsson  <jas@extundo.com>
23592
23593         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
23594         parameter (but don't use it, for now).
23595
23596         * imap.el (imap-ssl-open): Use imap-process-connection-type,
23597         instead of hard coding to nil.
23598
23599 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23600
23601         * mm-view.el (mm-inline-image-emacs): Open lines under an image
23602         as mm-inline-image-xemacs does.
23603
23604 2004-07-26  Simon Josefsson  <jas@extundo.com>
23605
23606         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
23607         Revert part of 2004-07-17 change below.
23608
23609 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23610
23611         * rfc2047.el (rfc2047-encode-region): Don't infloop.
23612         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
23613
23614 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23615
23616         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
23617         quotes that actually start with ">" at the beginning of the
23618         lines.
23619
23620 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23621
23622         * rfc2047.el (rfc2047-encode-region): Fix last change.
23623         (rfc2047-encode-parameter): Remove useless concat.
23624
23625 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23626
23627         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
23628         encode special characters; fix some kind of misconfigured headers;
23629         signal a real error if debug-on-quit or debug-on-error is non-nil.
23630         (rfc2047-encode-max-chars): New variable.
23631         (rfc2047-encode-1): Use it.
23632         (rfc2047-encode-parameter): New function.
23633
23634         * mml.el (mml-insert-parameter): Remove an excessive space.
23635
23636 2004-07-17  Simon Josefsson  <jas@extundo.com>
23637
23638         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
23639         Kai Grossjohann <kai@emptydomain.de>.
23640         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
23641         (gnus-group-make-menu-bar): Ditto.
23642
23643         * gnus-util.el (gnus-group-server): Add.
23644
23645 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
23646
23647         * message.el (message-clone-locals): Clone sendmail and smtp
23648         variables.
23649
23650 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23651
23652         * rfc2047.el (rfc2047-encode-region): Fix last change.
23653
23654 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23655
23656         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
23657         characters as non-special.
23658
23659 2004-07-09  Simon Josefsson  <jas@extundo.com>
23660
23661         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
23662         Users will lose all flag changes made while unplugged with
23663         e.g. nntp unless flag synchronization happens, thus `nil' is not a
23664         good default.  See numerous reports on ding mailing list.
23665
23666 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23667
23668         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
23669         add generate-head-function and generate-article-function to the
23670         rfc822-forward entry.
23671         (nndoc-rfc822-forward-generate-article): New function.
23672         (nndoc-rfc822-forward-generate-head): New function.
23673
23674         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
23675
23676 2004-07-06  Dan Christensen  <jdc@uwo.ca>
23677
23678         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
23679         respect display group parameter and gnus-summary-expunge-below.
23680         (gnus-articles-to-read): Remove unused reference to display group
23681         parameter.
23682
23683 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23684
23685         * nnheader.el (nnheader-uniquify-message-id): New experimental
23686         variable.
23687         (nnheader-nov-read-message-id): Use it.
23688
23689         * spam-report.el (spam-report-gmane): Add interactive.
23690
23691 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23692
23693         * mm-encode.el (mm-content-transfer-encoding-defaults):
23694         Use qp-or-base64 for the application/* types.
23695
23696 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
23697
23698         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
23699
23700 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
23701
23702         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
23703         trim value.
23704
23705 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
23706
23707         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
23708         New macro and function.
23709         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
23710
23711 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23712
23713         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
23714         after-load-alist.
23715
23716 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23717
23718         * gnus-group.el (gnus-group-get-new-news-this-group):
23719         Don't update info that isn't there.
23720
23721 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
23722
23723         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
23724         entry.
23725
23726 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23727
23728         * mm-view.el (mm-inline-render-with-function): Use multibyte
23729         buffer; decode html source by charset.
23730
23731         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
23732
23733         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
23734         Mule-UCS is loaded under XEmacs.
23735         (mm-mime-mule-charset-alist): Avoid duplicated entries.
23736
23737 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
23738
23739         * nnheader.el (nnheader-max-head-length): Increase to 8192.
23740
23741 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23742
23743         * mm-util.el (mm-coding-system-p): Return a coding-system.
23744         (mm-mime-mule-charset-alist): Use shift_jis instead of
23745         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
23746         entries for the mime charsets iso-2022-jp-3 and shift_jis.
23747         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
23748         instead of japanese-shift-jis and iso-latin-1 respectively in
23749         order to share the default value with both Emacs and XEmacs-mule.
23750         (mm-mule-charset-to-mime-charset):
23751         Make mm-coding-system-priorities effective.
23752         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
23753         while predicating of candidates upon the priorities.
23754
23755 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
23756
23757         * gnus-sum.el (gnus-summary-make-menu-bar):
23758         Add gnus-uu-invert-processable.
23759
23760         * gnus.el: Autoload gnus-uu-invert-processable.
23761
23762 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23763
23764         * mm-util.el (mm-with-multibyte-buffer): New macro.
23765
23766         * rfc2047.el (rfc2047-encode-string): Use it.
23767         (rfc2047-encode-region): Move point to the end of the region after
23768         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
23769
23770 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23771
23772         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
23773         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
23774
23775 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23776
23777         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
23778         (gnus-cite-parse): Ignore quoted envelope From_.
23779         Suggested by Karl Chen <quarl@nospam.quarl.org>.
23780
23781 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
23782
23783         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
23784         invalid addresses.
23785
23786 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
23787
23788         * spam.el: Change section markers, revise TODO list.
23789         (spam-backends): Make new master list of all installed backends.
23790         (spam-summary-exit-behavior): Add new variable to determine how
23791         messages moves are done at summary exit.
23792         (spam-move-spam-nonspam-groups-only)
23793         (spam-process-ham-in-nonham-groups)
23794         (spam-process-ham-in-spam-groups): Remove variables, the
23795         spam-summary-exit-behavior variable should be used to manage this
23796         behavior.
23797         (spam-old-ham-articles, spam-old-spam-articles): Remove.
23798         (spam-old-articles): Add variable, replacing spam-old-ham-articles
23799         and spam-old-spam-articles.
23800         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
23801         Add empty variables, placeholders for the backends they represent.
23802         (spam-set-difference): Move, unchanged.
23803         (spam-list-of-processors): Declare OBSOLETE, not used anymore
23804         unless the user has a processor variable.
23805         (spam-classifications, spam-classification-valid-p)
23806         (spam-backend-properties, spam-backend-property-valid-p)
23807         (spam-backend-function-type-valid-p)
23808         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
23809         (spam-report-articles-gmane, spam-report-articles-resend):
23810         Remove functions, they are not needed.
23811         (spam-install-backend-super, spam-backend-list)
23812         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
23813         (spam-backend-function, spam-backend-ham-registration-function)
23814         (spam-backend-spam-registration-function)
23815         (spam-backend-ham-unregistration-function)
23816         (spam-backend-spam-unregistration-function)
23817         (spam-backend-statistical-p, spam-backend-mover-p)
23818         (spam-install-backend-alias, spam-install-checkonly-backend)
23819         (spam-install-mover-backend, spam-install-nocheck-backend)
23820         (spam-install-backend, spam-install-statistical-backend)
23821         (spam-install-statistical-checkonly-backend): Add backend installation
23822         support.
23823         (spam-summary-prepare-exit): Rewrite to use the new backend code.
23824         (spam-group-processor-p): Use the new backend code and respect the
23825         summary exit behavior.
23826         (spam-mark-spam-as-expired-and-move-routine): Remove.
23827         (spam-summary-prepare): Change to use the new spam-old-articles
23828         variable.
23829         (spam-copy-or-move-routine, spam-copy-spam-routine)
23830         (spam-move-spam-routine, spam-copy-ham-routine)
23831         (spam-move-ham-routine): Add code to copy/move ham or spam.
23832         (spam-fetch-field-fast): Improve doc and code, plus allow the
23833         'number request.
23834         (spam-list-of-checks, spam-list-of-statistical-checks):
23835         Remove variables.
23836         (spam-split, spam-find-spam): Use the new backend code.
23837         (spam-registration-functions): Remove variable.
23838         (spam-unregister-routine): Add convenience wrapper.
23839         (spam-log-undo-registration, spam-register-routine)
23840         (spam-log-processing-to-registry)
23841         (spam-log-unregistration-needed-p): Rename "check" to "backend"
23842         where possible.
23843         (spam-check-gmane-xref, spam-check-regex-headers)
23844         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
23845         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
23846         (spam-check-bogofilter-headers, spam-check-spamoracle)
23847         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
23848         (spam-check-crm114-headers): Use the spam-split-group that
23849         spam-split prepares, no need to determine it every time.
23850
23851         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
23852         to the nnheader-parse-naked-head call.
23853
23854         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
23855
23856         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
23857         the nnheader-nov-read-message-id call.
23858
23859 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23860
23861         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
23862         gnus-activate-group twice.  Suggested by Markus Peter
23863         <warp@spin.de>.
23864
23865 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23866
23867         * gnus-art.el (gnus-article-time-format): Exchange the order of
23868         day and month in the default value; fix customization type.
23869         (article-date-ut): Use add-text-properties.
23870         (article-make-date-line): Use message-make-date instead of
23871         current-time-string.
23872
23873         * message.el (message-fetch-field): Don't use set-text-properties.
23874         (message-make-date): Simplify.
23875
23876         * messagexmas.el (message-xmas-make-date): New function.
23877         (message-xmas-redefine): Defalias message-make-date to it.
23878
23879 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23880
23881         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
23882         (rfc2047-encode-region): Treat text within parentheses as special;
23883         show the original text when error has occurred.
23884
23885         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
23886         already-computed method to gnus-activate-group.
23887
23888         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
23889         same select-methods identical Lisp objects.
23890
23891         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
23892         object when modifying the info.
23893
23894 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23895
23896         * gnus-srvr.el (gnus-server-set-info): Remove the server from
23897         gnus-opened-servers since it has never been opened with the new
23898         configuration yet.
23899
23900 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23901
23902         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
23903         arg to nnheader-generate-fake-message-id.
23904
23905 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
23906
23907         * nnheader.el (nnheader-generate-fake-message-id): Accept a
23908         number and build a fake message ID localized to a group and
23909         article number (so it's repeatable from that point on).
23910         (nnheader-fake-message-id-p): Change regex to accomodate new fake
23911         ID format.
23912
23913         * gnus-sum.el (gnus-get-newsgroup-headers):
23914         Call nnheader-generate-fake-message-id with the article number.
23915
23916 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
23917
23918         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
23919         end-of-buffer.
23920
23921 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23922
23923         * message.el (message-ignored-supersedes-headers): Add Approved.
23924
23925 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23926
23927         * rfc2047.el (rfc2047-encode-message-header): Remove useless
23928         goto-char.
23929         (rfc2047-encode): Fold the line before encoding.
23930
23931 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23932
23933         * rfc2047.el (rfc2047-encode-message-header): Disabled header
23934         folding -- not all headers can be folded, and this should be done
23935         by the message composition mode.  Probably.  I think.
23936
23937 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23938
23939         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
23940         fast.
23941
23942         * gnus-ems.el (gnus-remove-image): Don't use
23943         message-text-with-property; remove only the image found first.
23944
23945         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
23946         found first.
23947
23948 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
23949
23950         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
23951
23952 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23953
23954         * message.el (message-text-with-property): Make it fast and accept
23955         optional arguments.
23956         (message-strip-forbidden-properties): Use it.
23957         (message-fix-before-sending): Follow the m-t-w-p change.
23958
23959         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
23960
23961 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
23962
23963         * gnus-art.el (article-hide-headers): Don't change the buffer
23964         mistakenly when performing mml-preview even if
23965         gnus-single-article-buffer is nil.
23966
23967 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
23968
23969         * message.el (message-expand-name-databases): New user option.
23970         (message-expand-name): Use it.
23971
23972 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
23973
23974         * spam.el (spam-report-articles-resend)
23975         (spam-report-resend-register-routine): Allow ham reporting.
23976         (spam-report-resend-register-ham-routine): Add wrapper.
23977         (spam-registration-functions): Add ham resending functions.
23978         (spam-list-of-processors): Add ham resend processor.
23979
23980         * gnus.el (ham-resend-to): Add new group parameter.
23981         (spam-process): Add ham resend option.
23982
23983         * spam-report.el (spam-report-resend): Allow reporting ham.
23984         (spam-report-resend-ham): Add wrapper.
23985
23986 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23987
23988         * message.el (message-cite-articles-with-x-no-archive):
23989         New variable.
23990         (message-cite-original): Use it.
23991
23992 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23993
23994         * message.el (message-cite-original): Respect X-No-Archive.
23995
23996 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23997
23998         * gnus-art.el (article-hide-headers): Refer to the values for
23999         gnus-ignored-headers and gnus-visible-headers in the summary
24000         buffer since a user may have set them as group parameters.
24001
24002 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
24003
24004         * assistant.el (assistant-node-name): Add convenience function.
24005         (assistant-render-text, assistant-render-node): Add error handling,
24006         plus handle multiple next nodes.
24007         (assistant-find-next-node): Comment out for now.
24008         (assistant-find-next-nodes): Add function, returns list of next
24009         nodes.
24010
24011 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
24012
24013         * mail-source.el (mail-source-directory): Fix doc-string.
24014
24015 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
24016
24017         * assistant.el (assistant-render-text, assistant-eval): Add :set
24018         widget type, which is different because it takes and returns a
24019         list.  Much hilarity ensues.
24020
24021 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
24022
24023         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
24024
24025         * gnus-group.el (gnus-group-get-new-news-this-group):
24026         Add doc-string.
24027
24028         * gnus-start.el (gnus-activate-group): Add doc-string.
24029
24030 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24031
24032         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
24033
24034 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
24035
24036         * assistant.el (assistant-render-text): Try to add a :set
24037         widget, more to come.
24038
24039         * spam.el (spam-group-spam-contents-p): Handle empty groupname
24040         strings.
24041         (spam-report-articles-resend)
24042         (spam-register-routine): Do registration iff any articles warrant
24043         it.
24044         (spam-summary-prepare-exit): Change log message for nil group
24045         destinations.
24046
24047 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
24048
24049         * spam.el (spam-report-resend-register-routine):
24050         Allow spam-report-resend-to to be a group parameter or a global value.
24051
24052 2004-05-26  Simon Josefsson  <jas@extundo.com>
24053
24054         * starttls.el: Merge with my GNUTLS based starttls.el.
24055         (starttls-gnutls-program, starttls-use-gnutls)
24056         (starttls-extra-arguments, starttls-process-connection-type)
24057         (starttls-connect, starttls-failure, starttls-success):
24058         New variables.
24059         (starttls-program, starttls-extra-args): Doc fix.
24060         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
24061         New functions.
24062         (starttls-negotiate, starttls-open-stream):
24063         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
24064         function if it is set.
24065
24066 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24067
24068         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
24069         structured fields.
24070
24071 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24072
24073         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
24074
24075 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
24076
24077         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
24078         Add variable.
24079         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
24080         assigning the spam-mark to new messages.
24081
24082 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
24083
24084         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
24085
24086 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24087
24088         * dgnushack.el: Autoload customize-set-variable for XEmacs.
24089
24090         * rfc2047.el (rfc2047-encodable-p): Don't move point.
24091         (rfc2047-decode): Treat the ascii coding-system as raw-text by
24092         default.
24093
24094 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
24095
24096         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
24097         correct data.
24098
24099 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
24100
24101         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
24102         (spam-group-processor-p): Fix function.
24103         (spam-group-processor-multiple-p)
24104         (spam-group-spam-processor-report-gmane-p)
24105         (spam-group-spam-processor-report-resend-p)
24106         (spam-group-spam-processor-bogofilter-p)
24107         (spam-group-spam-processor-blacklist-p)
24108         (spam-group-spam-processor-ifile-p)
24109         (spam-group-ham-processor-ifile-p)
24110         (spam-group-spam-processor-spamoracle-p)
24111         (spam-group-spam-processor-crm114-p)
24112         (spam-group-ham-processor-bogofilter-p)
24113         (spam-group-spam-processor-stat-p)
24114         (spam-group-ham-processor-stat-p)
24115         (spam-group-ham-processor-whitelist-p)
24116         (spam-group-ham-processor-BBDB-p)
24117         (spam-group-ham-processor-spamoracle-p)
24118         (spam-group-ham-processor-copy-p): Remove functions with some
24119         prejudice against unneeded code.
24120         (spam-report-articles-resend)
24121         (spam-report-resend-register-routine): Allow the group/topic
24122         spam-resend-to value to override spam-report-resend-to.
24123         (spam-summary-prepare-exit): Invoke spam-group-processor-p
24124         properly now.
24125
24126         * gnus.el (spam-resend-to): Add group/topic parameter.
24127         (spam-process): Move the OBSOLETE processors to the end of the
24128         choices.
24129
24130 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
24131
24132         * spam-report.el (spam-report-resend-to, spam-report-resend):
24133         Start with resend-to set to nil, and then ask the user if necessary.
24134         (spam-report-resend): spam-report-resend takes a list of articles, not
24135         separate article numbers.
24136
24137 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24138
24139         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
24140         addition to emacs-w3m.
24141
24142 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24143
24144         * assistant.el (assistant-authinfo-data): New function.
24145         (assistant-eval): Eval for entire assistant.
24146
24147         * netrc.el (netrc-services-file): New variable.
24148         (netrc-parse-services): New function.
24149         (netrc-find-service-name): New function.
24150         (netrc-find-service-number): New function.
24151         (netrc-port-equal): New function.
24152         (netrc-machine): Use it.
24153
24154         * nnimap.el (nnimap-open-connection): Use netrc.
24155
24156         * gnus-util.el (gnus-netrc-get): Remove aliases.
24157
24158         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
24159
24160         * assistant.el (wid-edit): Fix compilation.
24161
24162         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
24163
24164 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
24165
24166         * gnus-util.el (gnus-set-file-modes): New function.  (small
24167         patch).
24168
24169 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24170
24171         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
24172
24173         * assistant.el (assistant-render-node): Fix up rendering and
24174         read-only text.
24175         (assistant-render-node): Reset.
24176         (assistant-make-read-only): Not sticky.
24177
24178 2004-05-20  Danny Siu  <dsiu@adobe.com>
24179
24180         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
24181         centered even when gnus-auto-center-summary is t.
24182
24183 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24184
24185         * dns.el (dns-get-txt-answer): New function.
24186         (dns-read-txt): Ditto.
24187         (query-dns): Use it.
24188
24189 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24190
24191         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
24192         active for foreign groups even if the group level is higher than
24193         the specified value.
24194
24195 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24196
24197         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
24198         non-active groups.
24199
24200         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
24201
24202 2004-05-20  Magnus Henoch  <mange@freemail.hu>
24203
24204         * dns.el (dns-read-type): Add support for SVR.  (small patch)
24205
24206 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
24207
24208         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
24209         (spam-crm114-header, spam-crm114-spam-switch)
24210         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
24211         (spam-crm114-positive-spam-header)
24212         (spam-crm114-database-directory, spam-list-of-processors)
24213         (spam-group-spam-processor-crm114-p)
24214         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
24215         (spam-generic-score, spam-list-of-checks)
24216         (spam-list-of-statistical-checks, spam-registration-functions)
24217         (spam-check-crm114-headers, spam-crm114-score)
24218         (spam-check-crm114, spam-crm114-register-with-crm114)
24219         (spam-crm114-register-spam-routine)
24220         (spam-crm114-unregister-spam-routine)
24221         (spam-crm114-register-ham-routine)
24222         (spam-crm114-unregister-ham-routine): Add CRM114 support.
24223
24224 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
24225
24226         * gnus.el: Add spam-use-crm114.
24227
24228         * spam.el (spam-list-of-processors, spam-registration-functions):
24229         Add spam-use-resend.
24230         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
24231         (spam-report-articles-gmane): Add doc fix.
24232         (spam-report-articles-resend, spam-report-resend-register-routine):
24233         Add wrappers around spam-report-resend-to.
24234
24235         * spam-report.el (spam-report-resend-to, spam-report-resend):
24236         Add support for resending spam.
24237         (spam-report-gmane): Fix line length >80.
24238
24239         * gnus.el (spam-process): Add spam-use-resend.
24240
24241 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24242
24243         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
24244         number of processed spam messages.
24245         (spam-ham-copy-or-move-routine): Return the number of processed
24246         ham messages.
24247         (spam-summary-prepare-exit): Use the above values to decide
24248         whether status messages shouled be displayed.
24249
24250 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24251
24252         * rfc2047.el (rfc2047-encode-function-alist): Rename from
24253         `rfc2047-encoding-function-alist' in order to avoid conflicting
24254         with the old version.
24255         (rfc2047-encode-region): Concatenate words containing non-ASCII
24256         characters in structured fields; don't encode space-delimited
24257         ASCII words even in unstructured fields; don't break words at
24258         char-category boundaries.
24259         (rfc2047-encode-1): New function.
24260         (rfc2047-encode): Use it; encode text so that it occupies the
24261         maximum width within 76-column; work correctly on Q encoding for
24262         iso-2022-* charsets.
24263         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
24264         sure not to break a line just after the header name.
24265         (rfc2047-b-encode-region): Remove.
24266         (rfc2047-b-encode-string): New function.
24267         (rfc2047-q-encode-region): Remove.
24268         (rfc2047-q-encode-string): New function.
24269
24270         * mm-util.el (mm-replace-in-string): New function.
24271
24272 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24273
24274         * gnus-msg.el (gnus-inews-make-draft-meta-information):
24275         Really get it right.
24276         (gnus-inews-make-draft): Really.
24277
24278 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
24279
24280         * nnmh.el (nnmh-request-list-1): Don't check the link count
24281         before descending.  (small patch)
24282
24283 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24284
24285         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
24286         stuff.
24287
24288         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
24289         Match on real group name.
24290
24291         * gnus-art.el (gnus-signature-limit): Doc fix.
24292
24293         * gnus-msg.el (gnus-inews-make-draft): Quote list.
24294
24295         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
24296
24297 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
24298
24299         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
24300         isn't a string.
24301
24302 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24303
24304         * gnus-draft.el (gnus-draft-send):
24305         Bind rfc2047-encode-encoded-words.
24306
24307         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
24308         (rfc2047-encodable-p): Say that =? needs encoding.
24309         (rfc2047-encode-encoded-words): New variable.
24310
24311         * gnus-group.el (gnus-group-select-group): Doc fix.
24312
24313         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
24314
24315         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
24316         to nil.
24317
24318         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
24319
24320         * nnheader.el (nnheader-get-lines-and-char): New function.
24321
24322 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
24323
24324         * gnus-msg.el (gnus-summary-followup-with-original):
24325         Document yanking of region when active.
24326
24327 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24328
24329         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
24330         groups if the group level is higher than the specified value.
24331
24332 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24333
24334         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
24335         (gnus-group-jump-to-group): Add prefix argument using
24336         `gnus-group-jump-to-group-prompt'.  Query before jumping to
24337         non-active group.
24338
24339         * compface.el (uncompface): Be verbose when changing
24340         `uncompface-use-external'.
24341
24342         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
24343         handle manual section.
24344
24345 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24346
24347         * gnus-art.el (gnus-button-alist): Revert previous change.
24348
24349 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24350
24351         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
24352
24353 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24354
24355         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
24356         whether backend can accept message.
24357
24358         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
24359
24360 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
24361
24362         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24363         Avoid creating directory when nntp-marks-is-evil is true.
24364         Reported by Reiner Steib.
24365
24366 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24367
24368         * gnus-picon.el (gnus-picon-insert-glyph):
24369         Add optional `nostring' argument.
24370
24371 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24372
24373         * gnus-picon.el (gnus-picon-style): New variable.
24374         (gnus-picon-transform-address): Support `gnus-picon-style'.
24375
24376 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24377
24378         * message.el (message-fill-field): Return point.
24379         (message-generate-headers): Go to end of field.
24380
24381         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
24382         stuff for non-living groups.
24383
24384 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24385
24386         * gnus-art.el (gnus-article-followup-with-original)
24387         (gnus-article-reply-with-original): gnus-mark-active-p ->
24388         gnus-region-active-p.
24389
24390 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
24391
24392         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
24393         only when there is spam or ham to be processed.
24394
24395 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24396
24397         * mail-source.el (mail-source-delete-crash-box): Refactor.
24398         (mail-source-fetch): Use it.
24399         (mail-source-fetch-file): Ditto.
24400         (mail-source-fetch-directory): Run postscript in loop.
24401         (mail-source-fetch-pop): Delete.
24402         (mail-source-fetch-maildir): Ditto.
24403         (mail-source-fetch-imap): Ditto.
24404
24405         * imap.el (imap-authenticators): Comment out sasl.
24406
24407         * message.el (message-skip-to-next-address): New function.
24408         (message-fill-header-address): Refactor.
24409         (message-fill-address): Use it.
24410         (message-delete-address): Use it.
24411         (message-fill-header-general): Refactor.
24412         (message-fill-field-address): Rename.
24413         (message-narrow-to-field): Find the start of the header.
24414         (message-header-format-alist): Don't pre-fill.
24415         (message-fill-header): Remove.
24416         (message-insert-header): New function.
24417         (message-shorten-references): Use it.
24418
24419         * rfc2047.el (rfc2047-field-value): Strip props.
24420
24421         * mail-parse.el (mail-header-make-address): New alias.
24422
24423         * ietf-drums.el (ietf-drums-make-address): New function.
24424
24425         * imap.el: Add compiler directives.
24426
24427         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
24428
24429         * gnus-art.el (article-decode-idna-rhs): Don't use
24430         message-idna-inside-rhs-p.
24431
24432 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24433
24434         * message.el (message-idna-inside-rhs-p): Remove.
24435         (message-idna-to-ascii-rhs-1): Use proper address parsing.
24436
24437         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
24438         false positives.
24439
24440 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
24441
24442         * imap.el (imap-sasl-make-mechanisms): Use sasl.
24443
24444 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24445
24446         * nneething.el (nneething-file-name): Don't create spurious
24447         files.
24448
24449         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
24450         (gnus-inews-do-gcc): Remove sleep.
24451
24452         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
24453         part under point.
24454
24455         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
24456         (gnus-agent-regenerate-group): Using nil messages aren't valid.
24457
24458 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
24459
24460         * spam.el (spam-summary-prepare-exit): Fix (length).
24461
24462 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
24463
24464         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
24465         as expired without moving it" message when there are spam
24466         messages left.
24467
24468 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
24469
24470         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
24471         header is not nil.
24472
24473 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
24474
24475         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24476         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
24477         (nntp-marks-changed-p): New arg SERVER.
24478         (nntp-request-update-info): Adjust caller.
24479
24480 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
24481
24482         * nntp.el (nntp-save-marks): Pass missing arg.
24483
24484 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
24485
24486         * nntp.el: Support marks.
24487         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
24488         (nntp-marks-modtime, nntp-marks-directory): New variables.
24489         (nntp-request-set-mark, nntp-request-update-info)
24490         (nntp-possibly-create-directory, nntp-marks-changed-p)
24491         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
24492         New functions.
24493
24494 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
24495
24496         * gnus-xmas.el (gnus-xmas-select-lowest-window)
24497         (gnus-xmas-redefine): Rename.
24498
24499         * gnus-score.el (gnus-score-insert-help):
24500         Use gnus-select-lowest-window.
24501
24502         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
24503         appt-select-lowest-window and rename to gnus-select-lowest-window.
24504
24505         * gnus.el: do.
24506
24507 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24508
24509         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
24510         encodings of MIME-encoded words, in order to improve
24511         interoperability with several broken MUAs.
24512
24513 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24514
24515         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
24516         tags, only when charsets are not specified in headers.
24517         (mm-inline-text-html-render-with-w3m): Ditto.
24518
24519         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
24520         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
24521
24522 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24523
24524         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
24525         instead of MIME-decoded from fields when checking
24526         `gnus-article-address-banner-alist'.
24527
24528 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
24529
24530         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
24531         description rather than subject.
24532
24533 2004-05-02  Steve Youngs  <steve@youngs.au.com>
24534
24535         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
24536
24537 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24538
24539         * gnus.el (gnus-version-number): Bump.
24540
24541 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
24542
24543         * gnus.el: No Gnus v0.2 is released.
24544
24545 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24546
24547         * gnus-agent.el (gnus-agent-read-agentview):
24548         Inline gnus-uncompress-range.
24549
24550 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24551
24552         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
24553         `exec-installed-p'.
24554
24555 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24556
24557         * gnus.el (spam-process, spam-autodetect-methods):
24558         Add bsfilter and bsfilter-headers.
24559
24560         * spam.el (spam-bsfilter): New customize group.
24561         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
24562         (spam-bsfilter-header, spam-bsfilter-probability-header)
24563         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
24564         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
24565         (spam-bsfilter-database-directory): New options.
24566         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
24567         (spam-list-of-statistical-checks, spam-registration-functions):
24568         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
24569         (spam-bsfilter-score): New command.
24570         (spam-check-bsfilter-headers, spam-check-bsfilter)
24571         (spam-bsfilter-register-with-bsfilter)
24572         (spam-bsfilter-register-spam-routine)
24573         (spam-bsfilter-unregister-spam-routine)
24574         (spam-bsfilter-register-ham-routine)
24575         (spam-bsfilter-unregister-ham-routine): New functions.
24576         (spam-generic-score): Support bsfilter; Accept an optional argument
24577         to recalcurate spam score even if scoring header has already been
24578         added.
24579         (spam-bogofilter-score, spam-spamassassin-score): Accept an
24580         optional argument to recalcurate spam score even if scoring header
24581         has already been added.
24582
24583 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
24584
24585         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
24586         strings!  Reported by David D. Smith <davidsmith@acm.org>.
24587         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
24588         link is missing.
24589
24590 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
24591
24592         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
24593         (html2text-get-attr): Rewrite.
24594
24595         * message.el (message-setup-1): Remove redundant put-text-property
24596         on mail-header-separator.
24597
24598 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
24599
24600         * gnus-registry.el (gnus-registry-cache-whitespace)
24601         (gnus-registry-action, gnus-registry-spool-action)
24602         (gnus-registry-split-fancy-with-parent): Change message levels
24603         from 5 to 3 or 7, as needed.
24604
24605         * spam.el (spam-summary-prepare-exit)
24606         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
24607         (spam-split, spam-find-spam, spam-log-undo-registration)
24608         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
24609         level from 5 to 6.
24610
24611 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24612
24613         * gnus-ems.el: Autoload appt-select-lowest-window (revert
24614         2004-03-04 change).
24615
24616 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
24617
24618         * sieve-manage.el (sieve-manage-open):
24619         * nnweb.el (nnweb-insert-html):
24620         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
24621         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
24622         * nnspool.el (nnspool-request-group):
24623         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
24624         * nnml.el (nnml-request-update-info):
24625         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
24626         (nnmh-request-create-group, nnmh-update-gnus-unreads):
24627         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
24628         (nnimap-request-set-mark):
24629         * nnfolder.el (nnfolder-request-update-info):
24630         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
24631         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
24632         * gnus-uu.el (gnus-uu-find-articles-matching):
24633         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
24634         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
24635         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
24636         * gnus-nocem.el (gnus-nocem-scan-groups):
24637         * gnus-int.el (gnus-start-news-server):
24638         * gnus-group.el (gnus-group-make-kiboze-group)
24639         (gnus-group-browse-foreign-server):
24640         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
24641         Use mapc when appropriate.
24642
24643 2004-04-22  Dan Christensen  <jdc@uwo.ca>
24644             Adam Sjøgren  <asjo@koldfront.dk>
24645             Wes Hardaker  <wes@hardakers.net>
24646             Michael Shields  <shields@msrl.com>
24647
24648         * spam.el (spam-necessary-extra-headers): Get the extra headers we
24649         may need for spam sorting and scoring.
24650         (spam-user-format-function-S): Add user format function suitable for
24651         general use.
24652         (spam-article-sort-by-spam-status): Add sorting function for summary
24653         sorting.
24654         (spam-extra-header-to-number): Add function to get a score from a
24655         header.
24656         (spam-summary-score): Add function to get a numeric score from the
24657         headers.
24658         (spam-generic-score): Fix function doc, was in wrong place.
24659         (spam-initialize): Take symbols when it's run, and install the
24660         extra headers that spam-necessary-extra-headers thinks we need.
24661
24662 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
24663
24664         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
24665         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
24666
24667 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
24668
24669         * gnus-sum.el (gnus-set-global-variables)
24670         (gnus-build-all-threads, gnus-get-newsgroup-headers)
24671         (gnus-article-get-xrefs, gnus-summary-best-group)
24672         (gnus-summary-next-article, gnus-summary-enter-digest-group)
24673         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
24674         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
24675         Use with-current-buffer.
24676
24677 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
24678
24679         * spam.el (spam-summary-prepare-exit): Simplify logic.
24680         (spam-fetch-article-header): Read the article header if it's not
24681         available.
24682         (spam-list-articles): Simplify logic.
24683         (spam-filelist-register-routine): Fix bug with unregister-list.
24684
24685         * gnus-registry.el: Fix comments at beginning.
24686
24687 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
24688
24689         * message.el (message-cater-to-broken-inn): Remove.
24690         (message-shorten-references): Make sure the total folded length of
24691         References is shorter than 998 characters to cater to a bug in INN
24692         2.3.  Also, don't pretend that references aren't folded -- this
24693         hasn't worked for a while.
24694
24695 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24696
24697         * gnus-agent.el (gnus-agentize):
24698         gnus-agent-send-mail-real-function no longer set to current value
24699         of message-send-mail-function but rather a lambda that calls
24700         message-send-mail-function.  The change makes the agent real-time
24701         responsive to user changes to message-send-mail-function.
24702
24703 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24704
24705         * legacy-gnus-agent.el
24706         (gnus-agent-convert-to-compressed-agentview): Fix typos with
24707         help from Florian Weimer <fw@deneb.enyo.de>
24708
24709 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24710
24711         * nnmail.el (nnmail-cache-insert): Revert last change.
24712
24713 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24714
24715         * nnmail.el (nnmail-cache-insert): Always check whether
24716         nnmail-cache-ignore-groups matches a group name.
24717
24718 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
24719
24720         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
24721         (spam-find-spam, spam-log-processing-to-registry)
24722         (spam-log-registered-p, spam-log-unregistration-needed-p)
24723         (spam-log-undo-registration): Use gnus-message instead of
24724         gnus-error, none of these errors are fatal.
24725
24726         * gnus-registry.el (gnus-registry-clean-empty-function)
24727         (gnus-registry-clean-empty): Remove only empty entries without
24728         extra data.
24729
24730 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
24731
24732         * spam-stat.el (spam-stat-buffer-change-to-spam)
24733         (spam-stat-buffer-change-to-non-spam): Change (error) to
24734         (gnus-message 8) invocation.
24735
24736 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24737
24738         * nntp.el (nntp-via-netcat-command): New variable.
24739         (nntp-via-netcat-switches): New variable.
24740         (nntp-open-via-rlogin-and-netcat): New function.
24741         (nntp-open-connection-function): Doc fix.
24742         (nntp-telnet-command): Doc fix.
24743         (nntp-end-of-line): Doc fix.
24744         (nntp-via-rlogin-command): Doc fix.
24745         (nntp-via-user-name): Doc fix.
24746         (nntp-via-address): Doc fix.
24747
24748 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24749
24750         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
24751         error in Emacs 21.1.
24752
24753 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
24754
24755         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
24756
24757 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24758
24759         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
24760         (gnus-agent-with-refreshed-group): New macro.
24761         (gnus-agent-rename-group): New function.
24762         (gnus-agent-delete-group): New function.
24763         (gnus-agent-save-group-info): Use gnus-command-method when
24764         `method' parameter is nil.  Don't write nil entries into the
24765         active file.
24766         (gnus-agent-get-group-info): New function.
24767         (gnus-agent-fetch-articles):
24768         Use gnus-agent-update-files-total-fetched-for to increment disk space
24769         used.
24770         (gnus-agent-fetch-headers, gnus-agent-save-alist):
24771         Use gnus-agent-update-view-total-fetched-for to increment disk space
24772         used.
24773         (gnus-agent-get-local): Add optional parameters to avoid calling
24774         gnus-group-real-name and gnus-find-method-for-group.
24775         (gnus-agent-set-local): Delete stored entry if either min, or max,
24776         are nil.
24777         (gnus-agent-fetch-session): Reworded error/quit messages.
24778         On quit, use gnus-agent-regenerate-group to record existance of any
24779         articles fetched to disk before the quit occurred.
24780         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
24781         gnus-agent-update-view-total-fetched-for, and
24782         gnus-agent-update-files-total-fetched-for to decrement disk space
24783         used.
24784         (gnus-agent-retrieve-headers):
24785         Use gnus-agent-update-view-total-fetched-for to increment disk space
24786         used.
24787         (gnus-agent-regenerate-group): Replace gnus-group-update-group
24788         with gnus-agent-update-files-total-fetched-for to decrement disk
24789         space and fresh group buffer.
24790         (gnus-agent-inhibit-update-total-fetched-for): New variable.
24791         (gnus-agent-need-update-total-fetched-for): New variable.
24792         (gnus-agent-update-files-total-fetched-for): New function.
24793         (gnus-agent-update-view-total-fetched-for): New function.
24794         (gnus-agent-total-fetched-for): New function.
24795
24796         * gnus-cache.el (gnus-cache-save-buffers):
24797         Use gnus-cache-update-overview-total-fetched-for to change disk space
24798         used by this group.
24799         (gnus-cache-possibly-enter-article):
24800         Use gnus-cache-update-file-total-fetched-for to increment disk space
24801         used by this group.
24802         (gnus-cache-possibly-remove-article):
24803         Use gnus-cache-update-file-total-fetched-for to decrement disk space
24804         used by this group.
24805         (gnus-cache-generate-nov-databases): Purge total fetched cache.
24806         (gnus-cache-rename-group): New function.
24807         (gnus-cache-delete-group): New function.
24808         (gnus-cache-inhibit-update-total-fetched-for): New variable.
24809         (gnus-cache-need-update-total-fetched-for): New variable.
24810         (gnus-cache-with-refreshed-group): New macro.
24811         (gnus-cache-update-file-total-fetched-for): New function.
24812         (gnus-cache-update-overview-total-fetched-for): New function.
24813         (gnus-cache-rename-group-total-fetched-for): New function.
24814         (gnus-cache-delete-group-total-fetched-for): New function.
24815         (gnus-cache-total-fetched-for): New function.
24816
24817         * gnus-group.el: Require gnus-sum and autoload functions to
24818         resolve warnings when gnus-group.el compiled alone.
24819         (gnus-group-line-format): Documented new %F.
24820         (size of Fetched data) group line format; identifies disk space
24821         used by agent and cache.
24822         (gnus-group-line-format-alist): Defined new F format.
24823         (gnus-total-fetched-for): New function.
24824         (gnus-group-delete-group): No longer update
24825         gnus-cache-active-altered as gnus-request-delete-group now keeps
24826         the cache in sync.
24827         (gnus-group-list-active): Let the agent store a server's active
24828         list if currently plugged.
24829
24830         * gnus-int.el (gnus-request-delete-group):
24831         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
24832         local disk in sync with the server.
24833         (gnus-request-rename-group):
24834         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
24835         local disk in sync with the server.
24836
24837         * gnus-start.el (gnus-get-unread-articles):
24838         Cosmetic simplification to logic.
24839
24840         * gnus-util.el (gnus-rename-file): New function.
24841
24842 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
24843
24844         * mm-util.el (mm-image-load-path): Handle nil in load-path.
24845
24846 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
24847
24848         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
24849         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
24850
24851 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
24852
24853         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
24854         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
24855
24856 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
24857
24858         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
24859
24860 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
24861
24862         * spam.el (spam-set-difference): Add function to replace
24863         gnus-set-difference in spam.el.
24864         (spam-summary-prepare-exit): Use spam-set-difference.
24865
24866 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
24867
24868         * gnus-registry.el (gnus-registry-cache-file): Update to use
24869         gnus-dribble-directory OR gnus-home-directory OR ~.
24870         (gnus-registry-split-fancy-with-parent): Fix doc.
24871
24872 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24873
24874         * message.el (message-exchange-point-and-mark):
24875         Use message-mark-active-p.  Suggested by Jesper Harder
24876         <harder@ifa.au.dk>.
24877
24878 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24879
24880         * message.el (message-exchange-point-and-mark): Don't activate
24881         region if it was inactive.  Suggested by Hiroshi Fujishima
24882         <pooh@nature.tsukuba.ac.jp>.
24883
24884 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24885
24886         * gnus-art.el (article-display-face): Display Faces in the same
24887         order as X-Faces.
24888
24889 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24890
24891         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
24892
24893 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24894
24895         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
24896         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
24897         (gnus-article-mime-hierarchy): Remove.
24898         (gnus-article-mime-hierarchy-next): Remove.
24899         (gnus-article-mode): Revert 2004-03-19 change.
24900         (gnus-article-setup-buffer): Revert 2004-03-19 change.
24901         (gnus-insert-mime-button): Revert 2004-03-19 change.
24902         (gnus-mime-accumulate-hierarchy): Remove.
24903         (gnus-mime-enter-multipart): Remove.
24904         (gnus-mime-leave-multipart): Remove.
24905         (gnus-mime-display-part): Revert 2004-03-19 change.
24906         (gnus-mime-display-alternative): Revert 2004-03-19 change.
24907
24908         * mml.el (mml-preview): Revert 2004-03-19 change.
24909
24910 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
24911
24912         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
24913
24914 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24915
24916         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
24917         t while entering a file name using the mm-with-multibyte macro.
24918         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24919
24920         * mm-util.el (mm-with-multibyte): New macro.
24921
24922 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24923
24924         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
24925         New user option.
24926         (gnus-mime-multipart-functions): Doc and customization fix.
24927         (gnus-article-mime-hierarchy): New variable.
24928         (gnus-article-mime-hierarchy-next): New variable.
24929         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
24930         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
24931         gnus-article-mime-hierarchy-next to nil.
24932         (gnus-insert-mime-button): Show hierarchy numbers.
24933         (gnus-mime-accumulate-hierarchy): New function.
24934         (gnus-mime-enter-multipart): New function.
24935         (gnus-mime-leave-multipart): New function.
24936         (gnus-mime-display-part): Recompute hierarchical MIME structure.
24937         (gnus-mime-display-alternative): Show hierarchy numbers.
24938
24939         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
24940         gnus-article-mime-hierarchy-next to nil.
24941
24942 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
24943
24944         * dns.el: Don't require gnus-xmas.
24945
24946 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
24947
24948         * mml.el (mml-generate-mime-1): Don't use format=flowed with
24949         inline PGP.
24950         (mml-menu): Disable mml-quote-region if mark is inactive.
24951
24952 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24953
24954         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
24955         when the group's active is not available.
24956
24957 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24958
24959         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
24960         error.
24961
24962 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
24963
24964         * imap.el (imap-store-password): New variable.
24965         (imap-interactive-login): Use it.
24966         Suggested by Mark Plaksin <happy@mcplaksin.org>.
24967
24968 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24969
24970         * gnus-art.el (gnus-article-read-summary-keys): Restore new
24971         window-start and hscroll to summary window.
24972
24973 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24974
24975         * gnus-start.el (gnus-convert-old-newsrc): Only write the
24976         conversion message to newsrc-dribble when an actual conversion is
24977         performed.
24978
24979 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
24980
24981         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
24982
24983 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24984
24985         * mm-decode.el (mm-complicated-handles): New function reviving
24986         former definition of mm-multiple-handles.
24987
24988         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
24989         (gnus-mime-delete-part): Use it.
24990
24991 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24992
24993         * gnus-agent.el (gnus-agent-read-local):
24994         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
24995         avoid the implicit assumption that they will always be equal.
24996         (gnus-agent-save-local): Bind buffer-file-coding-system, not
24997         coding-system-for-write, as the with-temp-file macro first prints
24998         to a buffer then saves the buffer.
24999
25000 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
25001
25002         * gnus-art.el (gnus-article-edit-part): New function.
25003         (gnus-mime-save-part-and-strip): Use it; do query instead of
25004         signaling an error; don't use mm-multiple-handles.
25005         (gnus-mime-delete-part): Ditto.
25006
25007 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25008
25009         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
25010         old file versions.
25011         (gnus-group-prepare-hook): Remove function that converted list
25012         form of gnus-agent-expire-days to group properties.
25013
25014         * gnus-int.el: Autoload gnus-agent-regenerate-group.
25015         (gnus-request-accept-article): Re-indented.
25016
25017         * gnus-start.el (gnus-convert-old-newsrc): Registered new
25018         converters to handle old agent file formats.  Add logic for a
25019         "backup before upgrading warning".
25020         (gnus-convert-mark-converter-prompt): Developers can mark
25021         functions as needing (default), or not needing,
25022         gnus-convert-old-newsrc's "backup before upgrading warning".
25023         (gnus-convert-converter-needs-prompt): Tests whether the user
25024         should be protected from potentially irreversable changes by the
25025         function.
25026
25027         * legacy-gnus-agent.el: New.  Provides converters that are only
25028         loaded when gnus-convert-old-newsrc needs to call them.
25029
25030 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25031
25032         * mail-source.el (mail-source-touch-pop): Doc fix.
25033
25034         * message.el (message-smtpmail-send-it): Doc fix.
25035
25036 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
25037
25038         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
25039
25040         * nnmail.el (nnmail-split-fancy): do.
25041
25042         * gnus-kill.el (gnus-kill, gnus-execute): do.
25043
25044 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
25045
25046         * gnus-sum.el (gnus-widget-reversible-match)
25047         (gnus-widget-reversible-to-internal)
25048         (gnus-widget-reversible-to-external): New functions.
25049         (gnus-widget-reversible): New widget.
25050         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
25051
25052 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
25053
25054         * gnus-sum.el (gnus-thread-sort-functions)
25055         (gnus-article-sort-functions): Document `(not F)' items.
25056
25057 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
25058
25059         * spam.el (spam-use-gmane-xref): Add new backend.
25060         (spam-gmane-xref-spam-group): Add variable to control the name of the
25061         Gmane spam group.
25062         (spam-blackhole-servers, spam-blackhole-good-server-regex)
25063         (spam-regex-headers-spam, spam-regex-headers-ham)
25064         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
25065         (spam-list-of-checks): Add spam-use-gmane-xref to list of
25066         backends and checks.
25067         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
25068
25069         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
25070         an autodetect method.
25071
25072 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25073
25074         * gnus-int.el (gnus-request-accept-article): Inform the agent that
25075         articles are being added to a group.
25076         (gnus-request-replace-article): Inform the agent that articles
25077         need to be uncached as the cached contents are no longer valid.
25078
25079 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25080
25081         * binhex.el: Don't autoload executable-find.
25082
25083         * canlock.el: Don't autoload mail-fetch-field.
25084
25085         * dgnushack.el: Autoload c-mode for XEmacs.
25086
25087         * gnus-ems.el: Don't autoload appt-select-lowest-window.
25088
25089         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
25090         rmail-dont-reply-to and rmail-output.
25091
25092         * gnus-score.el: Don't autoload ffap-string-at-point.
25093
25094         * gnus-setup.el: Don't autoload sc-cite-original.
25095
25096         * imap.el: Don't autoload base64-decode-string,
25097         base64-encode-string and md5.
25098
25099         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
25100         and rmail-msg-restore-non-pruned-header.
25101
25102         * mm-decode.el: Don't autoload executable-find.
25103
25104         * mm-url.el: Don't autoload executable-find.
25105
25106         * mm-view.el: Don't autoload diff-mode.
25107
25108         * nndb.el: Don't autoload news-reply-mode, news-setup,
25109         cancel-timer and telnet.
25110
25111         * password.el: Don't autoload run-at-time for Emacs.
25112
25113         * sha1-el.el: Don't autoload executable-find.
25114
25115         * sieve-mode.el: Don't autoload c-mode.
25116
25117         * uudecode.el: Don't autoload executable-find.
25118
25119 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25120
25121         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
25122         (gnus-agent-possibly-alter-active): Avoid null in numeric
25123         comparison.
25124         (gnus-agent-set-local): Refuse to save null in local object table.
25125         (gnus-agent-regenerate-group): The REREAD parameter can now be a
25126         list of articles that will be marked as unread.
25127
25128 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25129
25130         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
25131
25132 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
25133
25134         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
25135         language tags.
25136
25137 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
25138
25139         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
25140         Don't bind "obarray".
25141
25142         * gnus-sum.el (gnus-thread-sort-functions):
25143         Add `gnus-thread-sort-by-most-recent-number' and
25144         `gnus-thread-sort-by-most-recent-date'.
25145         Reported by Kai Grossjohann <kai@emptydomain.de>.
25146
25147 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
25148
25149         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
25150
25151 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25152
25153         * gnus-cus.el (gnus-agent-customize-category):
25154         Remove ignore-errors macro reference that required cl to be loaded at
25155         run-time.
25156
25157         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
25158         single-interval range of the form (min . max).  Previously the
25159         range had to look like ((min . max)).  Likewise, return
25160         (min . max) rather than ((min . max)).
25161         (gnus-range-map): Use gnus-range-normalize to accept
25162         single-interval range.
25163
25164         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
25165         the cache, but not the agent, now appear with their usual face.
25166
25167         * dgnushack.el (loaddir): New variable that is bound to the
25168         directory containing the dgnushack.el file. Use loaddir, rather
25169         than srcdir, to update load-path. Change lets dgnushack compile
25170         code in directories other than GNUS/lisp.
25171
25172 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
25173
25174         * lpath.el: Don't bind w3m-safe-url-regexp.
25175
25176         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
25177         w3m-safe-url-regexp variable buffer-local.
25178
25179         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25180
25181 2004-02-27  Simon Josefsson  <jas@extundo.com>
25182
25183         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
25184         gnus-group-real-prefix.
25185         (gnus-summary-move-article): Use it, instead of
25186         gnus-group-real-prefix.
25187
25188 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25189
25190         * lpath.el: Bind w3m-safe-url-regexp.
25191
25192         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
25193         w3m-safe-url-regexp variable buffer-local and set it as the value
25194         of mm-w3m-safe-url-regexp.
25195
25196         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25197
25198         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
25199         parsing gnus-posting-styles when the message is not for replying.
25200
25201         * dgnushack.el: Autoload sgml-mode for XEmacs.
25202
25203         * nnrss.el (nnrss-opml-export):
25204         Use mm-set-buffer-file-coding-system instead of
25205         set-buffer-file-coding-system.
25206
25207 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
25208
25209         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
25210         of checkdoc.el).
25211         * nnrss.el: do.
25212         * gnus-mlspl.el: do.
25213         * gnus-ml.el: do.
25214         * gnus-srvr.el: do.
25215
25216         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
25217
25218 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
25219
25220         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
25221         Corrections to custom-manual links.
25222
25223         * gnus-art.el (gnus-article): Ditto.
25224
25225         * mm-decode.el (mime-display, mime-security): Ditto.
25226
25227 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25228
25229         * flow-fill.el: Typo.
25230
25231 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
25232
25233         * spam-wash.el: New file.
25234
25235 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
25236
25237         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
25238
25239 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
25240
25241         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
25242         to be run with new-articles as LIST1, not LIST2.
25243         (spam-registration-functions): Add spam-use-ham-copy as a nil
25244         registration backend.
25245
25246 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25247
25248         * spam-stat.el (spam-stat-washing-hook): New option.
25249         (spam-stat-buffer-words): Use it.
25250         (spam-stat-process-directory, spam-stat-test-directory):
25251         Use insert-file-contents-literally.
25252         (spam-stat-coding-system): New variable.
25253         (spam-stat-load, spam-stat-save): Use it.
25254
25255 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
25256
25257         * spam-report.el (spam-report-plug-agent):
25258         Quote spam-report-url-to-file and spam-report-url-ping-plain.
25259
25260 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
25261
25262         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
25263         Allow / in mailto URLs.
25264
25265 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
25266
25267         * spam-report.el (spam-report-process-queue): Fix interactive use.
25268         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
25269         (spam-report-unplug-agent): Doc fixes.
25270         (spam-report-url-ping-mm-url, spam-report-url-to-file)
25271         (spam-report-agentize, spam-report-deagentize): Autoload.
25272
25273 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25274
25275         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
25276
25277         * message.el (message-setup-fill-variables): Add mml tags to
25278         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
25279         <ajk@iu.edu>.
25280         (message-mode): Don't modify paragraph-separate there.
25281
25282 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25283
25284         * compface.el (uncompface-use-external): Default to undecided.
25285         (uncompface-use-external-threshold): New variable.
25286         (uncompface-float-time): New macro.
25287         (uncompface): Determine whether to use the external decoder if
25288         uncompface-use-external is undecided.
25289
25290 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25291
25292         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
25293         after images.
25294
25295         * gnus-art.el (gnus-mime-display-single): Remove dead code.
25296
25297 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
25298
25299         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
25300
25301         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
25302
25303         * gnus-sum.el (gnus-summary-limit-to-age)
25304         (gnus-summary-limit-children): do.
25305
25306         * gnus-int.el (gnus-request-scan): do.
25307
25308         * gnus-group.el (gnus-group-suspend): do.
25309
25310         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
25311
25312         * gnus-cite.el (gnus-cite-parse-attributions): do.
25313
25314         * gnus-agent.el (gnus-summary-set-agent-mark)
25315         (gnus-agent-regenerate-group): do.
25316
25317         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
25318
25319         * binhex.el (binhex-decode-region-internal): do.
25320
25321 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25322
25323         * gnus-fun.el (gnus-face-properties-alist): New user option.
25324         (gnus-display-x-face-in-from): Use it.
25325
25326         * gnus-art.el (article-display-face): Ditto.
25327
25328         * compface.el (uncompface-use-external): Default to nil.
25329
25330 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
25331
25332         * nntp.el (nntp-erase-buffer): New function.
25333         (nntp-retrieve-data, nntp-send-command)
25334         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
25335         (nntp-possibly-change-group): Use it.
25336
25337         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
25338         Use with-current-buffer.
25339
25340 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
25341
25342         * compface.el: Merge the ELisp-based uncompface program.
25343         (compface): New customization group.
25344         (uncompface-use-external): New user option.
25345         (uncompface): Call uncompface-internal if uncompface-use-external
25346         is nil.
25347         (uncompface-internal): New function.  Note that there are also
25348         some other functions and variables added for this function.
25349
25350 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
25351
25352         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
25353         if necessary.
25354
25355 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
25356
25357         * spam-report.el (spam-report-unplug-agent)
25358         (spam-report-plug-agent, spam-report-deagentize)
25359         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
25360         Add support for the Agent in spam-report: when unplugged, report to a
25361         file; when plugged, submit all the requests.
25362
25363         * spam.el (spam-register-routine): Fix message about
25364         registration.
25365
25366 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
25367
25368         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
25369         dependencies.
25370         (rfc2047-encode): Use it.
25371
25372         * gnus-art.el (gnus-button-marker-list): Move before first
25373         reference.
25374
25375         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
25376         (imap-parse-body): Fix format string mismatch.
25377
25378         * gnus-score.el (gnus-summary-increase-score): do.
25379
25380         * nnrss.el (nnrss-close): New function.
25381
25382 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
25383
25384         * nnrss.el (nnrss-make-filename): New function.
25385         (nnrss-request-delete-group, nnrss-read-server-data)
25386         (nnrss-save-server-data, nnrss-read-group-data)
25387         (nnrss-save-group-data): Use it.
25388         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
25389         (nnrss-read-server-data, nnrss-read-group-data): Use load.
25390         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
25391
25392 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
25393
25394         * mml.el (mml-compute-boundary-1): Don't uncompress files.
25395
25396 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
25397
25398         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
25399         files.
25400
25401         * message.el (message-generate-headers-first): Don't quote nil
25402         and t in docstrings.
25403
25404         * imap.el (imap-id): do.
25405
25406         * gnus-agent.el (gnus-agent-consider-all-articles)
25407         (gnus-agent-queue-mail): do.
25408
25409 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
25410
25411         * spam-report.el (spam-report-process-queue): New function.
25412         Process requests from `spam-report-requests-file'.
25413         (spam-report-process-queue): Doc fix.
25414
25415 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
25416
25417         * spam.el (spam-register-routine)
25418         (spam-log-processing-to-registry, spam-log-registered-p)
25419         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25420         Change "check" to "spam-check" for semi-clarity.
25421
25422 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
25423
25424         * pop3.el: Require nnheader.
25425
25426         * mml-smime.el: Require cl.  Autoload message-fetch-field.
25427
25428         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
25429
25430         * gnus-picon.el: Require cl.
25431
25432         * gnus-fun.el: Require gnus-ems and gnus-util.
25433
25434         * gnus.el (gnus-method-to-server): Move defsubst before first use.
25435
25436         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
25437
25438         * gnus-art.el (gnus-article-edit-mode): Define before first
25439         reference.
25440
25441 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
25442
25443         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
25444         (gnus-uu-post-encoded): Use point-at-bol.
25445
25446         * gnus-topic.el (gnus-group-active-topic-p): do.
25447
25448         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
25449
25450         * gnus-group.el (gnus-group-kill-region): do.
25451
25452         * gnus-art.el (article-date-ut): do.
25453
25454         * message.el (message-fetch-field): Remove redundant
25455         case-fold-search binding.
25456         (message-narrow-to-field): Simplify.
25457
25458 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
25459
25460         * spam.el (spam-directory): Derive from `gnus-directory'.
25461
25462         * spam-report.el (spam-report-url-to-file)
25463         (spam-report-requests-file): New function and variable for offline
25464         reporting.
25465         (spam-report-url-ping-function): Add `spam-report-url-to-file'
25466         and user defined function.
25467         (spam-report-url-ping-mm-url): Remove doubled slash.
25468
25469 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
25470
25471         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
25472
25473 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
25474
25475         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
25476         Fix format string mismatch.
25477
25478         * sieve.el (sieve-deactivate-all): do.
25479
25480         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
25481
25482         * nnlistserv.el (nnlistserv-kk-wash-article): do.
25483
25484         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
25485
25486         * mm-bodies.el (mm-7bit-chars): Don't include \r.
25487
25488 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
25489
25490         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
25491         the list of checks.
25492
25493 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
25494
25495         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
25496         padding.
25497
25498 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
25499
25500         * mm-view.el (mm-fill-flowed): New variable.
25501         (mm-inline-text): Use it.
25502
25503 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
25504
25505         * spam.el (spam-spamassassin-register-ham-routine)
25506         (spam-spamassassin-register-spam-routine): Fix function names.
25507
25508 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25509
25510         * gnus.el (gnus-tmp-grouplens): Remove.
25511         (gnus-summary-line-format): Remove grouplens.
25512
25513         * gnus-group.el (gnus-group-line-format): Ditto.
25514
25515         * gnus-spec.el (gnus-format-specs): Ditto.
25516         (gnus-update-format-specifications): Flush the group format spec
25517         cache if there's the grouplens stuff.
25518         (gnus-parse-simple-format): Replace %l with the empty string.
25519
25520 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
25521
25522         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
25523         omission.
25524
25525 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25526
25527         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
25528         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
25529
25530 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25531
25532         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
25533         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
25534         New macros and functions.
25535         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
25536         Handle > NLINK_MAX messages.
25537         * nnmaildir.el (nnmaildir-request-set-mark):
25538         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
25539
25540 2004-01-25  Alex Schroeder  <alex@gnu.org>
25541
25542         * spam-stat.el (spam-stat-process-directory-age): New option.
25543         (spam-stat-process-directory): Use it.
25544
25545 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
25546
25547         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
25548         (spam-stat-save): Accept prefix argument.
25549
25550 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
25551
25552         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
25553         links" error.
25554
25555 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25556
25557         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
25558         the rest of the and/or forms.
25559
25560 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25561
25562         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
25563         compatibility with old .newsrc.eld files.
25564
25565         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
25566
25567         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
25568
25569         * gnus-start.el (gnus-1): do.
25570
25571         * gnus-group.el (gnus-group-line-format-alist): do.
25572
25573         * gnus.el (gnus-use-grouplens, gnus-visual): do.
25574
25575         * gnus-gl.el: Remove.
25576
25577 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25578
25579         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
25580         marks consisting of a single range {for example, (3 . 5)} rather
25581         than a list of a single range { ((3 . 5)) }.
25582
25583 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25584
25585         * spam-stat.el (spam-stat-store-gnus-article-buffer):
25586         Use with-current-buffer.
25587         (spam-stat-store-current-buffer): Use insert-buffer-substring to
25588         avoid consing a string.
25589
25590         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
25591         Remove obsolete entries for big5 and gb2312.
25592
25593 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25594
25595         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
25596         uncompressed list.
25597
25598 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
25599
25600         * spam-stat.el (spam-stat-strip-xref): New function.
25601         (spam-stat-process-directory): Use it.
25602
25603         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
25604         here -- it's done in message-fetch-field.
25605
25606 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25607
25608         * gnus-agent.el (gnus-agent-queue-mail)
25609         (gnus-agent-prompt-send-queue): New variables.
25610         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
25611         * gnus-draft.el (gnus-group-send-queue): Pass the group name
25612         "nndraft:queue" along to gnus-draft-send.
25613         Use gnus-agent-prompt-send-queue.
25614         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
25615         is "nndraft:queue".  Suggested by Gaute Strokkenes
25616         <gs234@srcf.ucam.org>
25617
25618         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
25619         (agent-enable-undownloaded-faces): Add.
25620         (gnus-agent-cat-groups): Use eval-and-compile, not
25621         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
25622         method of gnus-agent-cat-groups even when the buffer has been
25623         evaled.
25624         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
25625         delete gnus-agent-save-active-1.
25626         (gnus-agent-save-groups): Delete.  Identical to
25627         gnus-agent-save-active.
25628         (gnus-agent-write-active): No longer adjust agent's copy of active
25629         file as agent's adjustments are now stored in their own
25630         file.  Remove optional parameter.
25631         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
25632         servers.  Add use of min/max range limits from server's local
25633         file.
25634         (gnus-agent-save-alist): Remove unused optional argument.
25635         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
25636         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
25637         (gnus-agent-set-local): A per-server file that keeps min/max range
25638         limits for articles known to the agent.  Provides a fast mechanism
25639         for altering many active ranges.
25640         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
25641         active file (local makes it unnecessary).
25642         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
25643
25644         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
25645         (agent-enable-undownloaded-faces): Add.
25646
25647         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
25648         disable it when sending to "nndraft:queue".
25649         (gnus-group-send-queue): Add safety check to avoid sending queue
25650         when unplugged.
25651
25652         * gnus-group.el (gnus-group-catchup): Use new
25653         gnus-sequence-of-unread-articles, not
25654         gnus-list-of-unread-articles, to avoid exhausting memory with huge
25655         numbers of articles.  Use gnus-range-map to avoid having to
25656         uncompress the unread list.
25657         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
25658         Fix invalid ange-ftp reference.
25659
25660         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
25661         (gnus-sorted-range-intersection): Intersection of two ranges
25662         without requiring that they first be uncompressed.
25663
25664         * gnus-start.el (gnus-activate-group): Unless blocked by the
25665         caller, possibly expand the active range to include both cached
25666         and agentized articles.
25667         (gnus-convert-old-newsrc): Rewrote in anticipation of having
25668         multiple version-dependent converters.
25669         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
25670         gnus-agent-save-active.
25671         (gnus-save-newsrc-file): Save dirty agent range limits.
25672
25673         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
25674         gnus-agent-possibly-alter-active.
25675         (gnus-adjust-marked-articles): Faster handling of simple lists.
25676
25677 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
25678
25679         * spam-stat.el (spam-stat-test-directory): New optional argument
25680         displays a list of files detected.  Suggested by Andrew Cohen
25681         <cohen@andy.bu.edu>.
25682         (spam-stat-buffer-words-with-scores): Don't narrow and change
25683         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
25684
25685 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
25686
25687         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
25688         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
25689         (spam-spamassassin-arguments)
25690         (spam-spamassassin-spam-flag-header)
25691         (spam-spamassassin-positive-spam-flag-header)
25692         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
25693         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
25694         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
25695         (spam-list-of-processors, spam-list-of-checks)
25696         (spam-list-of-statistical-checks, spam-registration-functions)
25697         (spam-check-spamassassin-headers, spam-check-spamassassin)
25698         (spam-spamassassin-score)
25699         (spam-spamassassin-register-with-sa-learn)
25700         (spam-spamassassin-register-spam-routine)
25701         (spam-spamassassin-register-ham-routine)
25702         (spam-assassin-register-spam-routine)
25703         (spam-assassin-register-ham-routine): Add SpamAssassin support.
25704         (spam-bogofilter-score): Fix to show article before scoring.
25705
25706 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
25707
25708         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
25709         default scoring function.
25710         (spam-generic-score): Call spam-spamassassin-score if
25711         spam-use-spamassassin or spam-use-spamassassin-headers is on;
25712         spam-bogofilter-score otherwise.
25713
25714         * gnus.el (spam-process, spam-autodetect-methods):
25715         Add spamassassin and spamassassin-headers.
25716
25717 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
25718
25719         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25720         Suppress unnecessary messages.
25721
25722 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
25723
25724         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
25725         make-hash-table.
25726
25727 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25728
25729         * canlock.el (base64-encode-string): Don't autoload it.
25730
25731 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25732
25733         * run-at-time.el: Remove useless (require 'itimer),
25734         eval-and-compile and (featurep 'xemacs).
25735
25736 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
25737
25738         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
25739         GROUP is a virtual group.
25740
25741 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
25742
25743         * gnus.el: Autoload `message-y-or-n-p'.
25744
25745 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
25746
25747         * pgg-parse.el: Remove unnecessary (require 'custom).
25748
25749         * pgg-def.el: do.
25750
25751         * nnmail.el: do.
25752
25753         * gnus-undo.el: do.
25754
25755         * gnus-picon.el: do.
25756
25757         * gnus-util.el: do.
25758
25759 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
25760
25761         * gnus-sum.el (gnus-pick-line-number): Add autoload.
25762
25763 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25764
25765         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
25766         handle, as well as a list.
25767
25768         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
25769         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
25770         (mm-w3m-cid-retrieve): Simplify.
25771
25772 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
25773
25774         * message.el (message-kill-to-signature): Allow prefix arg to
25775         specify number of lines to keep before signature.
25776
25777 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
25778
25779         * message.el (message-kill-to-signature): Change docstring.
25780
25781 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
25782
25783         * canlock.el: Always require sha1-el.
25784         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
25785
25786         * message.el: Autoload sha1 only when compiling.
25787
25788         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
25789         eudc-expand-inline for XEmacs.
25790
25791 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
25792
25793         * message.el (message-canlock-generate): Require sha1-el.
25794
25795 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
25796
25797         * message.el (message-expand-name): Silence the byte compiler.
25798
25799         * lpath.el: Add detect-coding-system.
25800
25801         * dgnushack.el (dgnushack-compile): Remove obsolete check for
25802         cus-edit.
25803
25804 2004-01-13  Simon Josefsson  <jas@extundo.com>
25805
25806         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
25807         Invoke gnus-score-mode.
25808         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
25809
25810         * gnus-range.el (gnus-compress-sequence): Doc fix.
25811         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
25812
25813 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25814
25815         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
25816
25817 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
25818
25819         * spam.el (spam-get-article-as-string): Update to use
25820         gnus-request-article-this-buffer, much simpler.
25821         (spam-get-article-as-buffer): Remove.
25822
25823 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
25824
25825         * message.el (message-expand-name): Use EUDC if the user uses that.
25826
25827 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25828
25829         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
25830         character for the encoding to avoid consing a string.
25831
25832         * rfc2047.el (rfc2047-decode-string): Don't cons a string
25833         unnecessarily.
25834
25835         * mm-util.el (mm-replace-chars-in-string): Remove.
25836
25837         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
25838         of mm-replace-chars-in-string.
25839
25840 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
25841
25842         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
25843
25844         * mm-util.el (mm-subst-char-in-string): Support inplace.
25845
25846         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
25847         a new string in every iteration.  Use shy groups.
25848
25849 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
25850
25851         * gnus-srvr.el (gnus-browse-unsubscribe-group):
25852         * gnus-soup.el (gnus-soup-group-brew):
25853         * gnus-msg.el (gnus-put-message):
25854         * gnus-move.el (gnus-group-move-group-to-server):
25855         * gnus-kill.el (gnus-batch-score):
25856         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
25857         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
25858         (gnus-group-update-group, gnus-group-read-group)
25859         (gnus-group-make-group, gnus-group-make-help-group)
25860         (gnus-group-make-archive-group, gnus-group-make-directory-group)
25861         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
25862         (gnus-group-sort-by-unread, gnus-group-catchup)
25863         (gnus-group-unsubscribe-group, gnus-group-kill-group)
25864         (gnus-group-yank-group, gnus-group-set-info)
25865         (gnus-group-list-groups):
25866         * gnus.el (gnus-generate-new-group-name):
25867         * gnus-delay.el (gnus-delay-send-queue):
25868         * nnvirtual.el (nnvirtual-catchup-group):
25869         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
25870         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
25871         (gnus-group-prepare-topics, gnus-topic-check-topology):
25872         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
25873         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
25874         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
25875         (gnus-group-make-articles-read):
25876         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
25877         (gnus-group-change-level, gnus-kill-newsgroup)
25878         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
25879         (gnus-get-unread-articles, gnus-make-articles-unread)
25880         (gnus-make-ascending-articles-unread): Use accessor
25881         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
25882         to get group information for improved readability.
25883
25884
25885 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25886
25887         * gnus-art.el (article-decode-mime-words, article-babel)
25888         (gnus-article-highlight-signature, gnus-article-add-buttons)
25889         (gnus-signature-toggle): Use gnus-with-article-buffer.
25890
25891         * gnus-art.el (gnus-article-highlight-headers)
25892         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
25893
25894         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
25895         (gnus-article-set-globals, gnus-request-article-this-buffer)
25896         (gnus-button-message-id, gnus-article-maybe-hide-headers)
25897         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
25898         (gnus-mime-display-alternative): Use with-current-buffer.
25899
25900 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25901
25902         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
25903         also under 80 char limit, and call gnus-error if needed.
25904         (spam-fetch-article-header): Fix - it was a
25905         buffer-local variable (gnus-newsgroup-data).
25906         (spam-find-spam): Use spam-generate-fake-headers, forget about
25907         spam-insert-fake-headers.
25908         (spam-insert-fake-headers): Remove.
25909
25910 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25911
25912         * deuglify.el (gnus-article-outlook-unwrap-lines)
25913         (gnus-outlook-rearrange-article)
25914         (gnus-outlook-repair-attribution-outlook)
25915         (gnus-outlook-repair-attribution-block)
25916         (gnus-outlook-repair-attribution-other): Remove redundant
25917         save-excursion.
25918
25919 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25920
25921         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
25922         (spam-fetch-field-subject-fast)
25923         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
25924         (spam-fetch-article-header): Add functions to deal with Gnus
25925         internals for fast retrieval of article header data.
25926         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
25927
25928 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25929
25930         * pop3.el (pop3-md5): Remove.
25931         (pop3-apop): Replace pop3-md5 with md5.
25932
25933         * mm-bodies.el: base64 is always built-in.
25934
25935         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
25936         Use with-current-buffer.
25937
25938 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25939
25940         * canlock.el (canlock-insert-header): Remove excessive grouping in
25941         regexp.
25942
25943         * gnus-sum.el (gnus-summary-read-document): Ditto.
25944
25945         * gnus-uu.el (gnus-uu-part-number): Ditto.
25946
25947         * html2text.el (html2text-remove-tags): Ditto.
25948         (html2text-format-tags): Ditto.
25949         (html2text-format-single-elements): Ditto.
25950
25951         * mml.el (mml-parse-1): Ditto.
25952
25953 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25954
25955         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
25956
25957         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
25958
25959         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
25960
25961         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
25962
25963 2003-11-15  Simon Josefsson  <jas@extundo.com>
25964
25965         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
25966         (pgg-gpg-lookup-key): Use regexp match instead of
25967         split-string (split-string is different between emacs 21.2 and
25968         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
25969
25970 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25971
25972         * gnus-art.el (gnus-mime-view-all-parts)
25973         (gnus-article-part-wrapper, gnus-article-view-part):
25974         Use with-current-buffer.
25975
25976 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25977
25978         * spam.el (spam-disable-spam-split-during-ham-respool)
25979         (spam-spamoracle-database, spam-cache-lookups)
25980         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
25981         (spam-group-ham-mark-p, spam-group-spam-mark-p)
25982         (spam-group-ham-marks, spam-group-spam-marks)
25983         (spam-group-spam-contents-p, spam-group-ham-contents-p)
25984         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
25985         also add spam-use-blackholes to the statistical checks.
25986         (spam-fetch-field-fast): Add interface to fetching fields, may
25987         become a macro.
25988         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
25989         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
25990         (spam-insert-fake-headers): Fake an article when needed.
25991         (spam-find-spam): Fake article when possible.
25992         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
25993         (spam-check-bogofilter-headers): Use message-fetch-field instead
25994         of nnmail-fetch-field.
25995
25996 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
25997
25998         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
25999
26000 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
26001
26002         * spam.el (spam-split): Do not require spam-use-CHECK to be
26003         enabled if that check is passed to spam-split explicitly; also
26004         fix so 'spam doesn't get converted to spam-split-group when
26005         spam-split-symbolic-return is t.
26006         (spam-find-spam): Find registrations of the article and use those
26007         instead of re-running spam-split to find the spam/ham
26008         classification of the article.
26009         (spam-log-processing-to-registry, spam-log-registered-p)
26010         (spam-log-unregistration-needed-p, spam-log-undo-registration):
26011         Use gnus-error instead of gnus-message.
26012         (spam-log-registration-type): Add function to determine the
26013         classification of a message based on registry entries; will
26014         return nil if both 'spam and 'ham are found.
26015         (spam-check-BBDB): Expand all the BBDB macros here so we can have
26016         a reasonably fast local cache without the loading errors.
26017         (spam-cache-lookups): Set to t by default.
26018         (spam-find-spam): Don't try to guess spam-cache-lookups.
26019         (spam-enter-whitelist, spam-enter-blacklist): Clear the
26020         spam-caches entry.
26021         (spam-filelist-build-cache, spam-filelist-check-cache):
26022         Fix caching of whitelist/blacklist entries.
26023         (spam-check-whitelist, spam-check-blacklist):
26024         Invoke spam-from-listed-p with a type, not a cache variable.
26025         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
26026
26027 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
26028
26029         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
26030
26031         * nnmail.el (nnmail-split-fancy): do.
26032
26033         * mml.el (mml-parse): do.
26034
26035         * gnus-score.el (gnus-enter-score-words-into-hashtb)
26036         (gnus-score-adaptive): do.
26037
26038 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
26039
26040         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
26041         (gnus-mime-button-map): Don't set keymap parent.
26042         (gnus-button-ctan-directory-regexp): Use shy grouping.
26043         (gnus-prev-page-map): Don't set keymap parent.
26044         (gnus-prev-page-map): Remove duplicated one.
26045         (gnus-next-page-map): Don't set keymap parent.
26046         (gnus-mime-security-button-map): Ditto.
26047
26048         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
26049         version number.
26050
26051         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
26052
26053 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
26054
26055         * canlock.el (canlock-sha1-function): Remove.
26056         (canlock-sha1-function-for-verify): Remove.
26057         (canlock-openssl-program): Remove.
26058         (canlock-openssl-args): Remove.
26059         (canlock-ignore-errors): Remove.
26060         (canlock-sha1-with-openssl): Remove.
26061         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
26062         (canlock-verify): Don't use canlock-ignore-errors.
26063
26064         * sha1-el.el (sha1-string-external): Make it can return a string
26065         in binary form.
26066         (sha1-region-external): Ditto.
26067         (sha1-string-internal): Ditto.
26068         (sha1-region-internal): Ditto.
26069         (sha1-region): Ditto.
26070         (sha1-string): Ditto.
26071         (sha1): Ditto.
26072
26073 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26074
26075         * spam.el (spam-report-articles-gmane): New command.
26076
26077 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
26078
26079         * gnus.el: Don't make unnecessary *Group* buffer when loading.
26080
26081         * run-at-time.el (run-at-time-saved): Remove.
26082         (run-at-time): Doc fix.
26083
26084 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
26085
26086         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
26087         (gnus-summary-limit-map): Add it.
26088         (gnus-summary-make-menu-bar): do.
26089
26090 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
26091
26092         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
26093         Make attempt at some caching support (done for BBDB only now).
26094         (spam-find-spam): Set spam-cache-lookups if there are more than 2
26095         addresses to be checked.
26096         (spam-clear-cache-BBDB): Add function, to be invoked by
26097         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
26098         (spam-check-BBDB): Check and use the caches, if
26099         spam-cache-lookups is on, remove superfluous (provide).
26100
26101 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
26102
26103         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
26104
26105 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
26106
26107         * run-at-time.el (run-at-time-saved): Move to after the definition
26108         of `run-at-time'.
26109
26110         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
26111
26112 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26113
26114         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
26115         mm-w3m-local-map-property.
26116
26117         * mm-view.el (mm-w3m-mode-map): Remove.
26118         (mm-w3m-local-map-property): Remove.
26119         (mm-inline-text-html-render-with-w3m): Don't use
26120         mm-w3m-local-map-property.
26121
26122 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26123
26124         * run-at-time.el: New file.
26125
26126         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
26127         under Emacs.
26128
26129         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
26130         of gnus-set-text-properties.
26131
26132         * gnus-uu.el (gnus-uu-save-article): Ditto.
26133
26134         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
26135
26136         * gnus-cite.el (gnus-cite-parse): Ditto.
26137
26138         * gnus-art.el (gnus-button-push): Use set-text-properties instead
26139         of gnus-.
26140
26141         * gnus-xmas.el (run-at-time): Require run-at-time.
26142
26143         * gnus.el: Change calls to nnheader-run-at-time and
26144         password-run-at-time throughout to use run-at-time directly.
26145
26146         * password.el: Remove definition of run-at-time.
26147
26148         * nnheaderxm.el: Remove definition of run-at-time.
26149
26150 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
26151
26152         * mml.el (mml-minibuffer-read-disposition): Show attachment type
26153         in prompt.
26154
26155 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26156
26157         * messagexmas.el (message-xmas-redefine): Alias
26158         `message-make-caesar-translation-table' to
26159         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
26160         version.
26161
26162         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
26163         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
26164         `gnus-xmas-set-text-properties'.
26165         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
26166         `gnus-xmas-completing-read'.
26167         (gnus-xmas-completing-read): Removed.
26168         (gnus-xmas-open-network-stream): Removed.
26169
26170         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
26171         XEmacs version.
26172
26173         * dns.el (dns-make-network-process): Use `open-network-stream'
26174         instead of `gnus-xmas-open-network-stream'.
26175
26176         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
26177
26178         * .cvsignore: Add auto-autoloads.el, custom-load.el.
26179
26180 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26181
26182         * gnus-art.el (gnus-mime-display-alternative)
26183         (gnus-insert-mime-button, gnus-insert-mime-security-button)
26184         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
26185         Don't use gnus-local-map-property.
26186
26187         * gnus-util.el (gnus-local-map-property): Remove.
26188
26189         * mm-view.el (mm-view-pkcs7-decrypt):
26190         Replace gnus-completing-read-maybe-default with completing-read.
26191
26192         * gnus-util.el (gnus-completing-read): do.
26193         (gnus-completing-read-maybe-default): Remove.
26194
26195 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26196
26197         * password.el: Only autoload `run-at-time' if not XEmacs.
26198         Only autoload the itimer functions if XEmacs.
26199
26200 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26201
26202         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
26203         XEmacsen.
26204
26205         * dgnushack.el: Autoload executable-find for XEmacs.
26206
26207 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26208
26209         * gnus-art.el (gnus-read-string): Remove.
26210         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
26211         read-string.
26212
26213 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
26214
26215         * netrc.el: Autoload password-read.
26216         (netrc): Add configuration group.
26217         (netrc-encoding-method, netrc-openssl-path):
26218         Add variables for encoding and decoding of files with symmetric
26219         ciphers.
26220         (netrc-encode): Add assistant function to encode a file with
26221         netrc-encoding-method.
26222         (netrc-parse): Add interactive parameter, added optional
26223         decoding if netrc-encoding-method is non-nil but otherwise
26224         behavior is standard.
26225         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
26226         Do s/encode/encrypt/ everywhere.
26227
26228         * spam.el: Remove executable-find autoload.
26229
26230 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26231
26232         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
26233
26234         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
26235
26236 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
26237
26238         * gnus-art.el (gnus-treat-ansi-sequences)
26239         (article-treat-ansi-sequences): New variable and function.
26240         Suggested by Dan Jacobson <jidanni@jidanni.org>.
26241
26242         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
26243         Use it.
26244
26245 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26246
26247         * mm-util.el (mm-quote-arg): Remove.
26248
26249         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
26250         shell-quote-argument.
26251
26252         * gnus-uu.el (gnus-uu-command): do.
26253
26254         * gnus-sum.el (gnus-summary-insert-pseudos): do.
26255
26256         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
26257         with make-char.
26258
26259         * mm-util.el (mm-make-char): Remove.
26260
26261         * mml.el (mml-mode): Replace gnus-add-minor-mode with
26262         add-minor-mode.
26263
26264         * gnus-undo.el (gnus-undo-mode): do.
26265
26266         * gnus-topic.el (gnus-topic-mode): do.
26267
26268         * gnus-sum.el (gnus-dead-summary-mode): do.
26269
26270         * gnus-start.el (gnus-slave-mode): do.
26271
26272         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
26273
26274         * gnus-ml.el (gnus-mailing-list-mode): do.
26275
26276         * gnus-gl.el (gnus-grouplens-mode): do.
26277
26278         * gnus-draft.el (gnus-draft-mode): do.
26279
26280         * gnus-dired.el (gnus-dired-mode): do.
26281
26282         * gnus-ems.el (gnus-add-minor-mode): Remove.
26283
26284         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26285         Replace gnus-char-width with char-width.
26286
26287         * gnus-ems.el (gnus-char-width): Remove.
26288
26289         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26290         Replace gnus-char-width with char-width.
26291
26292         * gnus-ems.el (gnus-char-width): Remove.
26293
26294         * spam-stat.el (with-syntax-table): Remove with-syntax-table
26295         definition.
26296         Remove Emacs 20 hash table compatibility code.
26297
26298         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
26299         20 compatibility code.
26300
26301         * spam.el (spam-point-at-eol): Replace with point-at-eol.
26302
26303         * smime.el (smime-point-at-eol): Replace with point-at-eol.
26304
26305         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
26306         Replace with point-at-{eol,bol}.
26307
26308         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
26309
26310         * imap.el (imap-point-at-eol): Replace with point-at-eol.
26311
26312         * flow-fill.el (fill-flowed-point-at-bol)
26313         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
26314
26315         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
26316         Replace with point-at-{eol,bol} throughout all files.
26317
26318 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
26319
26320         * ntlm.el (ntlm-string-as-unibyte): New macro.
26321         (ntlm-build-auth-response): Use it.
26322
26323         Remove Emacs 20 stuff:
26324         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
26325         (butlast, mapc, remove): Remove the compiler macros.
26326         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
26327         of delq and copy-sequence.
26328         * gnus-art.el (popup-menu): Remove the compiler macro.
26329         * nnmail.el (nnmail-split-fancy): Don't support customizing with
26330         Emacs 20.
26331
26332 2004-01-05  Simon Josefsson  <jas@extundo.com>
26333
26334         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
26335         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
26336         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
26337         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
26338         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
26339         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
26340         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
26341         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
26342         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
26343         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
26344         ntlm-string-permute, string-lshift into ntlm-string-lshift,
26345         string-xor into ntlm-string-xor.
26346         Suggested by Jesper Harder <harder@myrealbox.com>.
26347
26348         * ntlm.el: Don't include poem.
26349
26350         * md4.el (print-int32, print-string-hexa): Remove.
26351         Suggested by Jesper Harder <harder@myrealbox.com>.
26352
26353         * sasl-ntlm.el, ntlm.el, md4.el: New files.
26354
26355         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
26356         probably breaks emacs with DL patch, but do we care? Is anyone
26357         still using the DL stuff?)
26358
26359         * sieve-manage.el: Use the password package.
26360         (sieve-manage-read-passwd): Remove.
26361         (sieve-manage-interactive-login): Use password.  Re-add
26362         condition-case around loop.
26363
26364         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
26365         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
26366         Use the password package.
26367
26368 2003-02-19  Simon Josefsson  <jas@extundo.com>
26369
26370         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
26371         token.
26372
26373 2002-08-07  Simon Josefsson  <jas@extundo.com>
26374
26375         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
26376         (sieve-manage-authenticators):
26377         (sieve-manage-authenticator-alist): Add some SASL mechs.
26378         (sieve-sasl-auth): New function.
26379         (sieve-manage-cram-md5-auth):
26380         (sieve-manage-plain-auth): Rewrite using SASL library.
26381         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
26382         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
26383         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
26384         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
26385
26386 2004-01-05  Simon Josefsson  <jas@extundo.com>
26387
26388         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
26389         New files.
26390
26391 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26392
26393         * gnus-group.el (gnus-no-groups-message): Update.
26394
26395         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
26396
26397 2003-11-09  Simon Josefsson  <jas@extundo.com>
26398
26399         * imap.el: Support for ID IMAP extension (RFC 2971).
26400         (imap-local-variables): Add imap-id.
26401         (imap-id): New variable.
26402         (imap-id): New function.
26403         (imap-parse-response): Parse untagged ID response.
26404         * nnimap.el (nnimap-id): New variable.
26405         (nnimap-open-connection): Use it.
26406
26407 2003-12-28  Simon Josefsson  <jas@extundo.com>
26408
26409         * gnus-score.el (gnus-score-edit-all-score): New.
26410         * gnus-group.el (gnus-group-score-map): Bind it to W e.
26411
26412 2004-01-04  Simon Josefsson  <jas@extundo.com>
26413
26414         * password.el: Add.
26415
26416 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
26417
26418         * dns.el (dns-query-types): Fix typo.
26419         (dns-query-types): New function.
26420         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
26421         PTR and SOA replies, see RFC 1035.
26422
26423 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26424
26425         * gnus.el (gnus-logo-color-style): Change colors to `no'.
26426
26427         * Move to Changelog.2.
26428
26429 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26430
26431         * gnus.el (gnus-version-number): Bump version.
26432
26433 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26434
26435         * gnus.el: No Gnus v0.1 is released.
26436
26437 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26438
26439         * gnus.el: No Gnus v0.0 is released.
26440
26441 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26442
26443         * gnus.el (gnus-version-number): Bump.
26444         (gnus-version): No.
26445
26446 See ChangeLog.2 for earlier changes.
26447
26448   Copyright (C) 2004-2013 Free Software Foundation, Inc.
26449
26450   This file is part of GNU Emacs.
26451
26452   GNU Emacs is free software: you can redistribute it and/or modify
26453   it under the terms of the GNU General Public License as published by
26454   the Free Software Foundation, either version 3 of the License, or
26455   (at your option) any later version.
26456
26457   GNU Emacs is distributed in the hope that it will be useful,
26458   but WITHOUT ANY WARRANTY; without even the implied warranty of
26459   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26460   GNU General Public License for more details.
26461
26462   You should have received a copy of the GNU General Public License
26463   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
26464
26465 ;; Local Variables:
26466 ;; coding: utf-8
26467 ;; fill-column: 79
26468 ;; add-log-time-zone-rule: t
26469 ;; End: